87b3d1d37b8e2dd238c02c5f2f31a7c1c587bcc5
[roojs1] / roojs-bootstrap-debug.js
1 /**
2  * set the version of bootstrap based on the stylesheet...
3  *
4  */
5
6 Roo.bootstrap.version = (
7         function() {
8                 var ret=3;
9                 Roo.each(document.styleSheets, function(s) {
10                     if (s.href.match(/css-bootstrap4/)) {
11                         ret=4;
12                     }
13                 });
14         return ret;
15 })(); /*
16  * - LGPL
17  *
18  * base class for bootstrap elements.
19  * 
20  */
21
22 Roo.bootstrap = Roo.bootstrap || {};
23 /**
24  * @class Roo.bootstrap.Component
25  * @extends Roo.Component
26  * Bootstrap Component base class
27  * @cfg {String} cls css class
28  * @cfg {String} style any extra css
29  * @cfg {Object} xattr extra attributes to add to 'element' (used by builder to store stuff.)
30  * @cfg {Boolean} can_build_overlaid  True if element can be rebuild from a HTML page
31  * @cfg {string} dataId cutomer id
32  * @cfg {string} name Specifies name attribute
33  * @cfg {string} tooltip  Text for the tooltip
34  * @cfg {string} container_method method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)
35  * @cfg {string|object} visibilityEl (el|parent) What element to use for visibility (@see getVisibilityEl())
36  
37  * @constructor
38  * Do not use directly - it does not do anything..
39  * @param {Object} config The config object
40  */
41
42
43
44 Roo.bootstrap.Component = function(config){
45     Roo.bootstrap.Component.superclass.constructor.call(this, config);
46        
47     this.addEvents({
48         /**
49          * @event childrenrendered
50          * Fires when the children have been rendered..
51          * @param {Roo.bootstrap.Component} this
52          */
53         "childrenrendered" : true
54         
55         
56         
57     });
58     
59     
60 };
61
62 Roo.extend(Roo.bootstrap.Component, Roo.BoxComponent,  {
63     
64     
65     allowDomMove : false, // to stop relocations in parent onRender...
66     
67     cls : false,
68     
69     style : false,
70     
71     autoCreate : false,
72     
73     tooltip : null,
74     /**
75      * Initialize Events for the element
76      */
77     initEvents : function() { },
78     
79     xattr : false,
80     
81     parentId : false,
82     
83     can_build_overlaid : true,
84     
85     container_method : false,
86     
87     dataId : false,
88     
89     name : false,
90     
91     parent: function() {
92         // returns the parent component..
93         return Roo.ComponentMgr.get(this.parentId)
94         
95         
96     },
97     
98     // private
99     onRender : function(ct, position)
100     {
101        // Roo.log("Call onRender: " + this.xtype);
102         
103         Roo.bootstrap.Component.superclass.onRender.call(this, ct, position);
104         
105         if(this.el){
106             if (this.el.attr('xtype')) {
107                 this.el.attr('xtypex', this.el.attr('xtype'));
108                 this.el.dom.removeAttribute('xtype');
109                 
110                 this.initEvents();
111             }
112             
113             return;
114         }
115         
116          
117         
118         var cfg = Roo.apply({},  this.getAutoCreate());
119         
120         cfg.id = this.id || Roo.id();
121         
122         // fill in the extra attributes 
123         if (this.xattr && typeof(this.xattr) =='object') {
124             for (var i in this.xattr) {
125                 cfg[i] = this.xattr[i];
126             }
127         }
128         
129         if(this.dataId){
130             cfg.dataId = this.dataId;
131         }
132         
133         if (this.cls) {
134             cfg.cls = (typeof(cfg.cls) == 'undefined') ? this.cls : cfg.cls + ' ' + this.cls;
135         }
136         
137         if (this.style) { // fixme needs to support more complex style data.
138             cfg.style = this.style;
139         }
140         
141         if(this.name){
142             cfg.name = this.name;
143         }
144         
145         this.el = ct.createChild(cfg, position);
146         
147         if (this.tooltip) {
148             this.tooltipEl().attr('tooltip', this.tooltip);
149         }
150         
151         if(this.tabIndex !== undefined){
152             this.el.dom.setAttribute('tabIndex', this.tabIndex);
153         }
154         
155         this.initEvents();
156         
157     },
158     /**
159      * Fetch the element to add children to
160      * @return {Roo.Element} defaults to this.el
161      */
162     getChildContainer : function()
163     {
164         return this.el;
165     },
166     /**
167      * Fetch the element to display the tooltip on.
168      * @return {Roo.Element} defaults to this.el
169      */
170     tooltipEl : function()
171     {
172         return this.el;
173     },
174         
175     addxtype  : function(tree,cntr)
176     {
177         var cn = this;
178         
179         cn = Roo.factory(tree);
180         //Roo.log(['addxtype', cn]);
181            
182         cn.parentType = this.xtype; //??
183         cn.parentId = this.id;
184         
185         cntr = (typeof(cntr) == 'undefined' ) ? 'getChildContainer' : cntr;
186         if (typeof(cn.container_method) == 'string') {
187             cntr = cn.container_method;
188         }
189         
190         
191         var has_flexy_each =  (typeof(tree['flexy:foreach']) != 'undefined');
192         
193         var has_flexy_if =  (typeof(tree['flexy:if']) != 'undefined');
194         
195         var build_from_html =  Roo.XComponent.build_from_html;
196           
197         var is_body  = (tree.xtype == 'Body') ;
198           
199         var page_has_body = (Roo.get(document.body).attr('xtype') == 'Roo.bootstrap.Body');
200           
201         var self_cntr_el = Roo.get(this[cntr](false));
202         
203         // do not try and build conditional elements 
204         if ((has_flexy_each || has_flexy_if || this.can_build_overlaid == false ) && build_from_html) {
205             return false;
206         }
207         
208         if (!has_flexy_each || !build_from_html || is_body || !page_has_body) {
209             if(!has_flexy_if || typeof(tree.name) == 'undefined' || !build_from_html || is_body || !page_has_body){
210                 return this.addxtypeChild(tree,cntr, is_body);
211             }
212             
213             var echild =self_cntr_el ? self_cntr_el.child('>*[name=' + tree.name + ']') : false;
214                 
215             if(echild){
216                 return this.addxtypeChild(Roo.apply({}, tree),cntr);
217             }
218             
219             Roo.log('skipping render');
220             return cn;
221             
222         }
223         
224         var ret = false;
225         if (!build_from_html) {
226             return false;
227         }
228         
229         // this i think handles overlaying multiple children of the same type
230         // with the sam eelement.. - which might be buggy..
231         while (true) {
232             var echild =self_cntr_el ? self_cntr_el.child('>*[xtype]') : false;
233             
234             if (!echild) {
235                 break;
236             }
237             
238             if (echild && echild.attr('xtype').split('.').pop() != cn.xtype) {
239                 break;
240             }
241             
242             ret = this.addxtypeChild(Roo.apply({}, tree),cntr);
243         }
244        
245         return ret;
246     },
247     
248     
249     addxtypeChild : function (tree, cntr, is_body)
250     {
251         Roo.debug && Roo.log('addxtypeChild:' + cntr);
252         var cn = this;
253         cntr = (typeof(cntr) == 'undefined' ) ? 'getChildContainer' : cntr;
254         
255         
256         var has_flexy = (typeof(tree['flexy:if']) != 'undefined') ||
257                     (typeof(tree['flexy:foreach']) != 'undefined');
258           
259     
260         
261         skip_children = false;
262         // render the element if it's not BODY.
263         if (!is_body) {
264             
265             // if parent was disabled, then do not try and create the children..
266             if(!this[cntr](true)){
267                 tree.items = [];
268                 return tree;
269             }
270            
271             cn = Roo.factory(tree);
272            
273             cn.parentType = this.xtype; //??
274             cn.parentId = this.id;
275             
276             var build_from_html =  Roo.XComponent.build_from_html;
277             
278             
279             // does the container contain child eleemnts with 'xtype' attributes.
280             // that match this xtype..
281             // note - when we render we create these as well..
282             // so we should check to see if body has xtype set.
283             if (build_from_html && Roo.get(document.body).attr('xtype') == 'Roo.bootstrap.Body') {
284                
285                 var self_cntr_el = Roo.get(this[cntr](false));
286                 var echild =self_cntr_el ? self_cntr_el.child('>*[xtype]') : false;
287                 if (echild) { 
288                     //Roo.log(Roo.XComponent.build_from_html);
289                     //Roo.log("got echild:");
290                     //Roo.log(echild);
291                 }
292                 // there is a scenario where some of the child elements are flexy:if (and all of the same type)
293                 // and are not displayed -this causes this to use up the wrong element when matching.
294                 // at present the only work around for this is to nest flexy:if elements in another element that is always rendered.
295                 
296                 
297                 if (echild && echild.attr('xtype').split('.').pop() == cn.xtype) {
298                   //  Roo.log("found child for " + this.xtype +": " + echild.attr('xtype') );
299                   
300                   
301                   
302                     cn.el = echild;
303                   //  Roo.log("GOT");
304                     //echild.dom.removeAttribute('xtype');
305                 } else {
306                     Roo.debug && Roo.log("MISSING " + cn.xtype + " on child of " + (this.el ? this.el.attr('xbuilderid') : 'no parent'));
307                     Roo.debug && Roo.log(self_cntr_el);
308                     Roo.debug && Roo.log(echild);
309                     Roo.debug && Roo.log(cn);
310                 }
311             }
312            
313             
314            
315             // if object has flexy:if - then it may or may not be rendered.
316             if (build_from_html && has_flexy && !cn.el &&  cn.can_build_overlaid) {
317                 // skip a flexy if element.
318                 Roo.debug && Roo.log('skipping render');
319                 Roo.debug && Roo.log(tree);
320                 if (!cn.el) {
321                     Roo.debug && Roo.log('skipping all children');
322                     skip_children = true;
323                 }
324                 
325              } else {
326                  
327                 // actually if flexy:foreach is found, we really want to create 
328                 // multiple copies here...
329                 //Roo.log('render');
330                 //Roo.log(this[cntr]());
331                 // some elements do not have render methods.. like the layouts...
332                 /*
333                 if(this[cntr](true) === false){
334                     cn.items = [];
335                     return cn;
336                 }
337                 */
338                 cn.render && cn.render(this[cntr](true));
339                 
340              }
341             // then add the element..
342         }
343          
344         // handle the kids..
345         
346         var nitems = [];
347         /*
348         if (typeof (tree.menu) != 'undefined') {
349             tree.menu.parentType = cn.xtype;
350             tree.menu.triggerEl = cn.el;
351             nitems.push(cn.addxtype(Roo.apply({}, tree.menu)));
352             
353         }
354         */
355         if (!tree.items || !tree.items.length) {
356             cn.items = nitems;
357             //Roo.log(["no children", this]);
358             
359             return cn;
360         }
361          
362         var items = tree.items;
363         delete tree.items;
364         
365         //Roo.log(items.length);
366             // add the items..
367         if (!skip_children) {    
368             for(var i =0;i < items.length;i++) {
369               //  Roo.log(['add child', items[i]]);
370                 nitems.push(cn.addxtype(Roo.apply({}, items[i])));
371             }
372         }
373         
374         cn.items = nitems;
375         
376         //Roo.log("fire childrenrendered");
377         
378         cn.fireEvent('childrenrendered', this);
379         
380         return cn;
381     },
382     
383     /**
384      * Set the element that will be used to show or hide
385      */
386     setVisibilityEl : function(el)
387     {
388         this.visibilityEl = el;
389     },
390     
391      /**
392      * Get the element that will be used to show or hide
393      */
394     getVisibilityEl : function()
395     {
396         if (typeof(this.visibilityEl) == 'object') {
397             return this.visibilityEl;
398         }
399         
400         if (typeof(this.visibilityEl) == 'string') {
401             return this.visibilityEl == 'parent' ? this.parent().getEl() : this.getEl();
402         }
403         
404         return this.getEl();
405     },
406     
407     /**
408      * Show a component - removes 'hidden' class
409      */
410     show : function()
411     {
412         if(!this.getVisibilityEl()){
413             return;
414         }
415          
416         this.getVisibilityEl().removeClass(['hidden','d-none']);
417         
418         this.fireEvent('show', this);
419         
420         
421     },
422     /**
423      * Hide a component - adds 'hidden' class
424      */
425     hide: function()
426     {
427         if(!this.getVisibilityEl()){
428             return;
429         }
430         
431         this.getVisibilityEl().addClass(['hidden','d-none']);
432         
433         this.fireEvent('hide', this);
434         
435     }
436 });
437
438  /*
439  * - LGPL
440  *
441  * Body
442  *
443  */
444
445 /**
446  * @class Roo.bootstrap.Body
447  * @extends Roo.bootstrap.Component
448  * Bootstrap Body class
449  *
450  * @constructor
451  * Create a new body
452  * @param {Object} config The config object
453  */
454
455 Roo.bootstrap.Body = function(config){
456
457     config = config || {};
458
459     Roo.bootstrap.Body.superclass.constructor.call(this, config);
460     this.el = Roo.get(config.el ? config.el : document.body );
461     if (this.cls && this.cls.length) {
462         Roo.get(document.body).addClass(this.cls);
463     }
464 };
465
466 Roo.extend(Roo.bootstrap.Body, Roo.bootstrap.Component,  {
467
468     is_body : true,// just to make sure it's constructed?
469
470         autoCreate : {
471         cls: 'container'
472     },
473     onRender : function(ct, position)
474     {
475        /* Roo.log("Roo.bootstrap.Body - onRender");
476         if (this.cls && this.cls.length) {
477             Roo.get(document.body).addClass(this.cls);
478         }
479         // style??? xttr???
480         */
481     }
482
483
484
485
486 });
487 /*
488  * - LGPL
489  *
490  * button group
491  * 
492  */
493
494
495 /**
496  * @class Roo.bootstrap.ButtonGroup
497  * @extends Roo.bootstrap.Component
498  * Bootstrap ButtonGroup class
499  * @cfg {String} size lg | sm | xs (default empty normal)
500  * @cfg {String} align vertical | justified  (default none)
501  * @cfg {String} direction up | down (default down)
502  * @cfg {Boolean} toolbar false | true
503  * @cfg {Boolean} btn true | false
504  * 
505  * 
506  * @constructor
507  * Create a new Input
508  * @param {Object} config The config object
509  */
510
511 Roo.bootstrap.ButtonGroup = function(config){
512     Roo.bootstrap.ButtonGroup.superclass.constructor.call(this, config);
513 };
514
515 Roo.extend(Roo.bootstrap.ButtonGroup, Roo.bootstrap.Component,  {
516     
517     size: '',
518     align: '',
519     direction: '',
520     toolbar: false,
521     btn: true,
522
523     getAutoCreate : function(){
524         var cfg = {
525             cls: 'btn-group',
526             html : null
527         };
528         
529         cfg.html = this.html || cfg.html;
530         
531         if (this.toolbar) {
532             cfg = {
533                 cls: 'btn-toolbar',
534                 html: null
535             };
536             
537             return cfg;
538         }
539         
540         if (['vertical','justified'].indexOf(this.align)!==-1) {
541             cfg.cls = 'btn-group-' + this.align;
542             
543             if (this.align == 'justified') {
544                 console.log(this.items);
545             }
546         }
547         
548         if (['lg','sm','xs'].indexOf(this.size)!==-1) {
549             cfg.cls += ' btn-group-' + this.size;
550         }
551         
552         if (this.direction == 'up') {
553             cfg.cls += ' dropup' ;
554         }
555         
556         return cfg;
557     },
558     /**
559      * Add a button to the group (similar to NavItem API.)
560      */
561     addItem : function(cfg)
562     {
563         var cn = new Roo.bootstrap.Button(cfg);
564         //this.register(cn);
565         cn.parentId = this.id;
566         cn.onRender(this.el, null);
567         return cn;
568     }
569    
570 });
571
572  /*
573  * - LGPL
574  *
575  * button
576  * 
577  */
578
579 /**
580  * @class Roo.bootstrap.Button
581  * @extends Roo.bootstrap.Component
582  * Bootstrap Button class
583  * @cfg {String} html The button content
584  * @cfg {String} weight (default | primary | secondary | success | info | warning | danger | link ) default
585  * @cfg {String} badge_weight (default | primary | secondary | success | info | warning | danger | link ) default (same as button)
586  * @cfg {Boolean} outline default false (except for weight=default which emulates old behaveiour with an outline)
587  * @cfg {String} size ( lg | sm | xs)
588  * @cfg {String} tag ( a | input | submit)
589  * @cfg {String} href empty or href
590  * @cfg {Boolean} disabled default false;
591  * @cfg {Boolean} isClose default false;
592  * @cfg {String} glyphicon depricated - use fa
593  * @cfg {String} fa fontawesome icon - eg. 'comment' - without the fa/fas etc..
594  * @cfg {String} badge text for badge
595  * @cfg {String} theme (default|glow)  
596  * @cfg {Boolean} inverse dark themed version
597  * @cfg {Boolean} toggle is it a slidy toggle button
598  * @cfg {Boolean} pressed (true|false) default null - if the button ahs active state
599  * @cfg {String} ontext text for on slidy toggle state
600  * @cfg {String} offtext text for off slidy toggle state
601  * @cfg {Boolean} preventDefault  default true (stop click event triggering the URL if it's a link.)
602  * @cfg {Boolean} removeClass remove the standard class..
603  * @cfg {String} target  target for a href. (_self|_blank|_parent|_top| other)
604  * 
605  * @constructor
606  * Create a new button
607  * @param {Object} config The config object
608  */
609
610
611 Roo.bootstrap.Button = function(config){
612     Roo.bootstrap.Button.superclass.constructor.call(this, config);
613     this.weightClass = ["btn-default btn-outline-secondary", 
614                        "btn-primary", 
615                        "btn-success", 
616                        "btn-info", 
617                        "btn-warning",
618                        "btn-danger",
619                        "btn-link"
620                       ],  
621     this.addEvents({
622         // raw events
623         /**
624          * @event click
625          * When a butotn is pressed
626          * @param {Roo.bootstrap.Button} btn
627          * @param {Roo.EventObject} e
628          */
629         "click" : true,
630          /**
631          * @event toggle
632          * After the button has been toggles
633          * @param {Roo.bootstrap.Button} btn
634          * @param {Roo.EventObject} e
635          * @param {boolean} pressed (also available as button.pressed)
636          */
637         "toggle" : true
638     });
639 };
640
641 Roo.extend(Roo.bootstrap.Button, Roo.bootstrap.Component,  {
642     html: false,
643     active: false,
644     weight: '',
645     badge_weight: '',
646     outline : false,
647     size: '',
648     tag: 'button',
649     href: '',
650     disabled: false,
651     isClose: false,
652     glyphicon: '',
653     fa: '',
654     badge: '',
655     theme: 'default',
656     inverse: false,
657     
658     toggle: false,
659     ontext: 'ON',
660     offtext: 'OFF',
661     defaulton: true,
662     preventDefault: true,
663     removeClass: false,
664     name: false,
665     target: false,
666      
667     pressed : null,
668      
669     
670     getAutoCreate : function(){
671         
672         var cfg = {
673             tag : 'button',
674             cls : 'roo-button',
675             html: ''
676         };
677         
678         if (['a', 'button', 'input', 'submit'].indexOf(this.tag) < 0) {
679             throw "Invalid value for tag: " + this.tag + ". must be a, button, input or submit.";
680             this.tag = 'button';
681         } else {
682             cfg.tag = this.tag;
683         }
684         cfg.html = '<span class="roo-button-text">' + (this.html || cfg.html) + '</span>';
685         
686         if (this.toggle == true) {
687             cfg={
688                 tag: 'div',
689                 cls: 'slider-frame roo-button',
690                 cn: [
691                     {
692                         tag: 'span',
693                         'data-on-text':'ON',
694                         'data-off-text':'OFF',
695                         cls: 'slider-button',
696                         html: this.offtext
697                     }
698                 ]
699             };
700             
701             if (['default', 'secondary' , 'primary', 'success', 'info', 'warning', 'danger', 'link'].indexOf(this.weight) > -1) {
702                 cfg.cls += ' '+this.weight;
703             }
704             
705             return cfg;
706         }
707         
708         if (this.isClose) {
709             cfg.cls += ' close';
710             
711             cfg["aria-hidden"] = true;
712             
713             cfg.html = "&times;";
714             
715             return cfg;
716         }
717         
718          
719         if (this.theme==='default') {
720             cfg.cls = 'btn roo-button';
721             
722             //if (this.parentType != 'Navbar') {
723             this.weight = this.weight.length ?  this.weight : 'default';
724             //}
725             if (['default', 'primary', 'secondary', 'success', 'info', 'warning', 'danger', 'link'].indexOf(this.weight) > -1) {
726                 
727                 var outline = this.outline || this.weight == 'default' ? 'outline-' : '';
728                 var weight = this.weight == 'default' ? 'secondary' : this.weight;
729                 cfg.cls += ' btn-' + outline + weight;
730                 if (this.weight == 'default') {
731                     // BC
732                     cfg.cls += ' btn-' + this.weight;
733                 }
734             }
735         } else if (this.theme==='glow') {
736             
737             cfg.tag = 'a';
738             cfg.cls = 'btn-glow roo-button';
739             
740             if (['default', 'primary', 'success', 'info', 'warning', 'danger', 'link'].indexOf(this.weight) > -1) {
741                 
742                 cfg.cls += ' ' + this.weight;
743             }
744         }
745    
746         
747         if (this.inverse) {
748             this.cls += ' inverse';
749         }
750         
751         
752         if (this.active || this.pressed === true) {
753             cfg.cls += ' active';
754         }
755         
756         if (this.disabled) {
757             cfg.disabled = 'disabled';
758         }
759         
760         if (this.items) {
761             Roo.log('changing to ul' );
762             cfg.tag = 'ul';
763             this.glyphicon = 'caret';
764             if (Roo.bootstrap.version == 4) {
765                 this.fa = 'caret-down';
766             }
767             
768         }
769         
770         cfg.cls += this.size.length ? (' btn-' + this.size) : '';
771          
772         //gsRoo.log(this.parentType);
773         if (this.parentType === 'Navbar' && !this.parent().bar) {
774             Roo.log('changing to li?');
775             
776             cfg.tag = 'li';
777             
778             cfg.cls = '';
779             cfg.cn =  [{
780                 tag : 'a',
781                 cls : 'roo-button',
782                 html : this.html,
783                 href : this.href || '#'
784             }];
785             if (this.menu) {
786                 cfg.cn[0].html = this.html  + ' <span class="caret"></span>';
787                 cfg.cls += ' dropdown';
788             }   
789             
790             delete cfg.html;
791             
792         }
793         
794        cfg.cls += this.parentType === 'Navbar' ?  ' navbar-btn' : '';
795         
796         if (this.glyphicon) {
797             cfg.html = ' ' + cfg.html;
798             
799             cfg.cn = [
800                 {
801                     tag: 'span',
802                     cls: 'glyphicon glyphicon-' + this.glyphicon
803                 }
804             ];
805         }
806         if (this.fa) {
807             cfg.html = ' ' + cfg.html;
808             
809             cfg.cn = [
810                 {
811                     tag: 'i',
812                     cls: 'fa fas fa-' + this.fa
813                 }
814             ];
815         }
816         
817         if (this.badge) {
818             cfg.html += ' ';
819             
820             cfg.tag = 'a';
821             
822 //            cfg.cls='btn roo-button';
823             
824             cfg.href=this.href;
825             
826             var value = cfg.html;
827             
828             if(this.glyphicon){
829                 value = {
830                     tag: 'span',
831                     cls: 'glyphicon glyphicon-' + this.glyphicon,
832                     html: this.html
833                 };
834             }
835             if(this.fa){
836                 value = {
837                     tag: 'i',
838                     cls: 'fa fas fa-' + this.fa,
839                     html: this.html
840                 };
841             }
842             
843             var bw = this.badge_weight.length ? this.badge_weight :
844                 (this.weight.length ? this.weight : 'secondary');
845             bw = bw == 'default' ? 'secondary' : bw;
846             
847             cfg.cn = [
848                 value,
849                 {
850                     tag: 'span',
851                     cls: 'badge badge-' + bw,
852                     html: this.badge
853                 }
854             ];
855             
856             cfg.html='';
857         }
858         
859         if (this.menu) {
860             cfg.cls += ' dropdown';
861             cfg.html = typeof(cfg.html) != 'undefined' ?
862                     cfg.html + ' <span class="caret"></span>' : '<span class="caret"></span>';
863         }
864         
865         if (cfg.tag !== 'a' && this.href !== '') {
866             throw "Tag must be a to set href.";
867         } else if (this.href.length > 0) {
868             cfg.href = this.href;
869         }
870         
871         if(this.removeClass){
872             cfg.cls = '';
873         }
874         
875         if(this.target){
876             cfg.target = this.target;
877         }
878         
879         return cfg;
880     },
881     initEvents: function() {
882        // Roo.log('init events?');
883 //        Roo.log(this.el.dom);
884         // add the menu...
885         
886         if (typeof (this.menu) != 'undefined') {
887             this.menu.parentType = this.xtype;
888             this.menu.triggerEl = this.el;
889             this.addxtype(Roo.apply({}, this.menu));
890         }
891
892
893        if (this.el.hasClass('roo-button')) {
894             this.el.on('click', this.onClick, this);
895        } else {
896             this.el.select('.roo-button').on('click', this.onClick, this);
897        }
898        
899        if(this.removeClass){
900            this.el.on('click', this.onClick, this);
901        }
902        
903        this.el.enableDisplayMode();
904         
905     },
906     onClick : function(e)
907     {
908         if (this.disabled) {
909             return;
910         }
911         
912         Roo.log('button on click ');
913         if(this.preventDefault){
914             e.preventDefault();
915         }
916         
917         if (this.pressed === true || this.pressed === false) {
918             this.toggleActive(e);
919         }
920         
921         
922         this.fireEvent('click', this, e);
923     },
924     
925     /**
926      * Enables this button
927      */
928     enable : function()
929     {
930         this.disabled = false;
931         this.el.removeClass('disabled');
932     },
933     
934     /**
935      * Disable this button
936      */
937     disable : function()
938     {
939         this.disabled = true;
940         this.el.addClass('disabled');
941     },
942      /**
943      * sets the active state on/off, 
944      * @param {Boolean} state (optional) Force a particular state
945      */
946     setActive : function(v) {
947         
948         this.el[v ? 'addClass' : 'removeClass']('active');
949         this.pressed = v;
950     },
951      /**
952      * toggles the current active state 
953      */
954     toggleActive : function(e)
955     {
956         this.setActive(!this.pressed);
957         this.fireEvent('toggle', this, e, !this.pressed);
958     },
959      /**
960      * get the current active state
961      * @return {boolean} true if it's active
962      */
963     isActive : function()
964     {
965         return this.el.hasClass('active');
966     },
967     /**
968      * set the text of the first selected button
969      */
970     setText : function(str)
971     {
972         this.el.select('.roo-button-text',true).first().dom.innerHTML = str;
973     },
974     /**
975      * get the text of the first selected button
976      */
977     getText : function()
978     {
979         return this.el.select('.roo-button-text',true).first().dom.innerHTML;
980     },
981     
982     setWeight : function(str)
983     {
984         this.el.removeClass(this.weightClass);
985         this.weight = str;
986         var outline = this.outline ? 'outline-' : '';
987         if (str == 'default') {
988             this.el.addClass('btn-default btn-outline-secondary');        
989             return;
990         }
991         this.el.addClass('btn-' + outline + str);        
992     }
993     
994     
995 });
996
997  /*
998  * - LGPL
999  *
1000  * column
1001  * 
1002  */
1003
1004 /**
1005  * @class Roo.bootstrap.Column
1006  * @extends Roo.bootstrap.Component
1007  * Bootstrap Column class
1008  * @cfg {Number} xs colspan out of 12 for mobile-sized screens or 0 for hidden
1009  * @cfg {Number} sm colspan out of 12 for tablet-sized screens or 0 for hidden
1010  * @cfg {Number} md colspan out of 12 for computer-sized screens or 0 for hidden
1011  * @cfg {Number} lg colspan out of 12 for large computer-sized screens or 0 for hidden
1012  * @cfg {Number} xsoff colspan offset out of 12 for mobile-sized screens or 0 for hidden
1013  * @cfg {Number} smoff colspan offset out of 12 for tablet-sized screens or 0 for hidden
1014  * @cfg {Number} mdoff colspan offset out of 12 for computer-sized screens or 0 for hidden
1015  * @cfg {Number} lgoff colspan offset out of 12 for large computer-sized screens or 0 for hidden
1016  *
1017  * 
1018  * @cfg {Boolean} hidden (true|false) hide the element
1019  * @cfg {String} alert (success|info|warning|danger) type alert (changes background / border...)
1020  * @cfg {String} fa (ban|check|...) font awesome icon
1021  * @cfg {Number} fasize (1|2|....) font awsome size
1022
1023  * @cfg {String} icon (info-sign|check|...) glyphicon name
1024
1025  * @cfg {String} html content of column.
1026  * 
1027  * @constructor
1028  * Create a new Column
1029  * @param {Object} config The config object
1030  */
1031
1032 Roo.bootstrap.Column = function(config){
1033     Roo.bootstrap.Column.superclass.constructor.call(this, config);
1034 };
1035
1036 Roo.extend(Roo.bootstrap.Column, Roo.bootstrap.Component,  {
1037     
1038     xs: false,
1039     sm: false,
1040     md: false,
1041     lg: false,
1042     xsoff: false,
1043     smoff: false,
1044     mdoff: false,
1045     lgoff: false,
1046     html: '',
1047     offset: 0,
1048     alert: false,
1049     fa: false,
1050     icon : false,
1051     hidden : false,
1052     fasize : 1,
1053     
1054     getAutoCreate : function(){
1055         var cfg = Roo.apply({}, Roo.bootstrap.Column.superclass.getAutoCreate.call(this));
1056         
1057         cfg = {
1058             tag: 'div',
1059             cls: 'column'
1060         };
1061         
1062         var settings=this;
1063         ['xs','sm','md','lg'].map(function(size){
1064             //Roo.log( size + ':' + settings[size]);
1065             
1066             if (settings[size+'off'] !== false) {
1067                 cfg.cls += ' col-' + size + '-offset-' + settings[size+'off'] ;
1068             }
1069             
1070             if (settings[size] === false) {
1071                 return;
1072             }
1073             
1074             if (!settings[size]) { // 0 = hidden
1075                 cfg.cls += ' hidden-' + size;
1076                 return;
1077             }
1078             cfg.cls += ' col-' + size + '-' + settings[size];
1079             
1080         });
1081         
1082         if (this.hidden) {
1083             cfg.cls += ' hidden';
1084         }
1085         
1086         if (this.alert && ["success","info","warning", "danger"].indexOf(this.alert) > -1) {
1087             cfg.cls +=' alert alert-' + this.alert;
1088         }
1089         
1090         
1091         if (this.html.length) {
1092             cfg.html = this.html;
1093         }
1094         if (this.fa) {
1095             var fasize = '';
1096             if (this.fasize > 1) {
1097                 fasize = ' fa-' + this.fasize + 'x';
1098             }
1099             cfg.html = '<i class="fa fa-'+this.fa + fasize + '"></i>' + (cfg.html || '');
1100             
1101             
1102         }
1103         if (this.icon) {
1104             cfg.html = '<i class="glyphicon glyphicon-'+this.icon + '"></i>' +  (cfg.html || '');
1105         }
1106         
1107         return cfg;
1108     }
1109    
1110 });
1111
1112  
1113
1114  /*
1115  * - LGPL
1116  *
1117  * page container.
1118  * 
1119  */
1120
1121
1122 /**
1123  * @class Roo.bootstrap.Container
1124  * @extends Roo.bootstrap.Component
1125  * Bootstrap Container class
1126  * @cfg {Boolean} jumbotron is it a jumbotron element
1127  * @cfg {String} html content of element
1128  * @cfg {String} well (lg|sm|md) a well, large, small or medium.
1129  * @cfg {String} panel (default|primary|success|info|warning|danger) render as panel  - type - primary/success.....
1130  * @cfg {String} header content of header (for panel)
1131  * @cfg {String} footer content of footer (for panel)
1132  * @cfg {String} sticky (footer|wrap|push) block to use as footer or body- needs css-bootstrap/sticky-footer.css
1133  * @cfg {String} tag (header|aside|section) type of HTML tag.
1134  * @cfg {String} alert (success|info|warning|danger) type alert (changes background / border...)
1135  * @cfg {String} fa font awesome icon
1136  * @cfg {String} icon (info-sign|check|...) glyphicon name
1137  * @cfg {Boolean} hidden (true|false) hide the element
1138  * @cfg {Boolean} expandable (true|false) default false
1139  * @cfg {Boolean} expanded (true|false) default true
1140  * @cfg {String} rheader contet on the right of header
1141  * @cfg {Boolean} clickable (true|false) default false
1142
1143  *     
1144  * @constructor
1145  * Create a new Container
1146  * @param {Object} config The config object
1147  */
1148
1149 Roo.bootstrap.Container = function(config){
1150     Roo.bootstrap.Container.superclass.constructor.call(this, config);
1151     
1152     this.addEvents({
1153         // raw events
1154          /**
1155          * @event expand
1156          * After the panel has been expand
1157          * 
1158          * @param {Roo.bootstrap.Container} this
1159          */
1160         "expand" : true,
1161         /**
1162          * @event collapse
1163          * After the panel has been collapsed
1164          * 
1165          * @param {Roo.bootstrap.Container} this
1166          */
1167         "collapse" : true,
1168         /**
1169          * @event click
1170          * When a element is chick
1171          * @param {Roo.bootstrap.Container} this
1172          * @param {Roo.EventObject} e
1173          */
1174         "click" : true
1175     });
1176 };
1177
1178 Roo.extend(Roo.bootstrap.Container, Roo.bootstrap.Component,  {
1179     
1180     jumbotron : false,
1181     well: '',
1182     panel : '',
1183     header: '',
1184     footer : '',
1185     sticky: '',
1186     tag : false,
1187     alert : false,
1188     fa: false,
1189     icon : false,
1190     expandable : false,
1191     rheader : '',
1192     expanded : true,
1193     clickable: false,
1194   
1195      
1196     getChildContainer : function() {
1197         
1198         if(!this.el){
1199             return false;
1200         }
1201         
1202         if (this.panel.length) {
1203             return this.el.select('.panel-body',true).first();
1204         }
1205         
1206         return this.el;
1207     },
1208     
1209     
1210     getAutoCreate : function(){
1211         
1212         var cfg = {
1213             tag : this.tag || 'div',
1214             html : '',
1215             cls : ''
1216         };
1217         if (this.jumbotron) {
1218             cfg.cls = 'jumbotron';
1219         }
1220         
1221         
1222         
1223         // - this is applied by the parent..
1224         //if (this.cls) {
1225         //    cfg.cls = this.cls + '';
1226         //}
1227         
1228         if (this.sticky.length) {
1229             
1230             var bd = Roo.get(document.body);
1231             if (!bd.hasClass('bootstrap-sticky')) {
1232                 bd.addClass('bootstrap-sticky');
1233                 Roo.select('html',true).setStyle('height', '100%');
1234             }
1235              
1236             cfg.cls += 'bootstrap-sticky-' + this.sticky;
1237         }
1238         
1239         
1240         if (this.well.length) {
1241             switch (this.well) {
1242                 case 'lg':
1243                 case 'sm':
1244                     cfg.cls +=' well well-' +this.well;
1245                     break;
1246                 default:
1247                     cfg.cls +=' well';
1248                     break;
1249             }
1250         }
1251         
1252         if (this.hidden) {
1253             cfg.cls += ' hidden';
1254         }
1255         
1256         
1257         if (this.alert && ["success","info","warning", "danger"].indexOf(this.alert) > -1) {
1258             cfg.cls +=' alert alert-' + this.alert;
1259         }
1260         
1261         var body = cfg;
1262         
1263         if (this.panel.length) {
1264             cfg.cls += ' panel panel-' + this.panel;
1265             cfg.cn = [];
1266             if (this.header.length) {
1267                 
1268                 var h = [];
1269                 
1270                 if(this.expandable){
1271                     
1272                     cfg.cls = cfg.cls + ' expandable';
1273                     
1274                     h.push({
1275                         tag: 'i',
1276                         cls: (this.expanded ? 'fa fa-minus' : 'fa fa-plus') 
1277                     });
1278                     
1279                 }
1280                 
1281                 h.push(
1282                     {
1283                         tag: 'span',
1284                         cls : 'panel-title',
1285                         html : (this.expandable ? '&nbsp;' : '') + this.header
1286                     },
1287                     {
1288                         tag: 'span',
1289                         cls: 'panel-header-right',
1290                         html: this.rheader
1291                     }
1292                 );
1293                 
1294                 cfg.cn.push({
1295                     cls : 'panel-heading',
1296                     style : this.expandable ? 'cursor: pointer' : '',
1297                     cn : h
1298                 });
1299                 
1300             }
1301             
1302             body = false;
1303             cfg.cn.push({
1304                 cls : 'panel-body' + (this.expanded ? '' : ' hide'),
1305                 html : this.html
1306             });
1307             
1308             
1309             if (this.footer.length) {
1310                 cfg.cn.push({
1311                     cls : 'panel-footer',
1312                     html : this.footer
1313                     
1314                 });
1315             }
1316             
1317         }
1318         
1319         if (body) {
1320             body.html = this.html || cfg.html;
1321             // prefix with the icons..
1322             if (this.fa) {
1323                 body.html = '<i class="fa fa-'+this.fa + '"></i>' + body.html ;
1324             }
1325             if (this.icon) {
1326                 body.html = '<i class="glyphicon glyphicon-'+this.icon + '"></i>' + body.html ;
1327             }
1328             
1329             
1330         }
1331         if ((!this.cls || !this.cls.length) && (!cfg.cls || !cfg.cls.length)) {
1332             cfg.cls =  'container';
1333         }
1334         
1335         return cfg;
1336     },
1337     
1338     initEvents: function() 
1339     {
1340         if(this.expandable){
1341             var headerEl = this.headerEl();
1342         
1343             if(headerEl){
1344                 headerEl.on('click', this.onToggleClick, this);
1345             }
1346         }
1347         
1348         if(this.clickable){
1349             this.el.on('click', this.onClick, this);
1350         }
1351         
1352     },
1353     
1354     onToggleClick : function()
1355     {
1356         var headerEl = this.headerEl();
1357         
1358         if(!headerEl){
1359             return;
1360         }
1361         
1362         if(this.expanded){
1363             this.collapse();
1364             return;
1365         }
1366         
1367         this.expand();
1368     },
1369     
1370     expand : function()
1371     {
1372         if(this.fireEvent('expand', this)) {
1373             
1374             this.expanded = true;
1375             
1376             //this.el.select('.panel-body',true).first().setVisibilityMode(Roo.Element.DISPLAY).show();
1377             
1378             this.el.select('.panel-body',true).first().removeClass('hide');
1379             
1380             var toggleEl = this.toggleEl();
1381
1382             if(!toggleEl){
1383                 return;
1384             }
1385
1386             toggleEl.removeClass(['fa-minus', 'fa-plus']).addClass(['fa-minus']);
1387         }
1388         
1389     },
1390     
1391     collapse : function()
1392     {
1393         if(this.fireEvent('collapse', this)) {
1394             
1395             this.expanded = false;
1396             
1397             //this.el.select('.panel-body',true).first().setVisibilityMode(Roo.Element.DISPLAY).hide();
1398             this.el.select('.panel-body',true).first().addClass('hide');
1399         
1400             var toggleEl = this.toggleEl();
1401
1402             if(!toggleEl){
1403                 return;
1404             }
1405
1406             toggleEl.removeClass(['fa-minus', 'fa-plus']).addClass(['fa-plus']);
1407         }
1408     },
1409     
1410     toggleEl : function()
1411     {
1412         if(!this.el || !this.panel.length || !this.header.length || !this.expandable){
1413             return;
1414         }
1415         
1416         return this.el.select('.panel-heading .fa',true).first();
1417     },
1418     
1419     headerEl : function()
1420     {
1421         if(!this.el || !this.panel.length || !this.header.length){
1422             return;
1423         }
1424         
1425         return this.el.select('.panel-heading',true).first()
1426     },
1427     
1428     bodyEl : function()
1429     {
1430         if(!this.el || !this.panel.length){
1431             return;
1432         }
1433         
1434         return this.el.select('.panel-body',true).first()
1435     },
1436     
1437     titleEl : function()
1438     {
1439         if(!this.el || !this.panel.length || !this.header.length){
1440             return;
1441         }
1442         
1443         return this.el.select('.panel-title',true).first();
1444     },
1445     
1446     setTitle : function(v)
1447     {
1448         var titleEl = this.titleEl();
1449         
1450         if(!titleEl){
1451             return;
1452         }
1453         
1454         titleEl.dom.innerHTML = v;
1455     },
1456     
1457     getTitle : function()
1458     {
1459         
1460         var titleEl = this.titleEl();
1461         
1462         if(!titleEl){
1463             return '';
1464         }
1465         
1466         return titleEl.dom.innerHTML;
1467     },
1468     
1469     setRightTitle : function(v)
1470     {
1471         var t = this.el.select('.panel-header-right',true).first();
1472         
1473         if(!t){
1474             return;
1475         }
1476         
1477         t.dom.innerHTML = v;
1478     },
1479     
1480     onClick : function(e)
1481     {
1482         e.preventDefault();
1483         
1484         this.fireEvent('click', this, e);
1485     }
1486 });
1487
1488  /*
1489  * - LGPL
1490  *
1491  * image
1492  * 
1493  */
1494
1495
1496 /**
1497  * @class Roo.bootstrap.Img
1498  * @extends Roo.bootstrap.Component
1499  * Bootstrap Img class
1500  * @cfg {Boolean} imgResponsive false | true
1501  * @cfg {String} border rounded | circle | thumbnail
1502  * @cfg {String} src image source
1503  * @cfg {String} alt image alternative text
1504  * @cfg {String} href a tag href
1505  * @cfg {String} target (_self|_blank|_parent|_top)target for a href.
1506  * @cfg {String} xsUrl xs image source
1507  * @cfg {String} smUrl sm image source
1508  * @cfg {String} mdUrl md image source
1509  * @cfg {String} lgUrl lg image source
1510  * 
1511  * @constructor
1512  * Create a new Input
1513  * @param {Object} config The config object
1514  */
1515
1516 Roo.bootstrap.Img = function(config){
1517     Roo.bootstrap.Img.superclass.constructor.call(this, config);
1518     
1519     this.addEvents({
1520         // img events
1521         /**
1522          * @event click
1523          * The img click event for the img.
1524          * @param {Roo.EventObject} e
1525          */
1526         "click" : true
1527     });
1528 };
1529
1530 Roo.extend(Roo.bootstrap.Img, Roo.bootstrap.Component,  {
1531     
1532     imgResponsive: true,
1533     border: '',
1534     src: 'about:blank',
1535     href: false,
1536     target: false,
1537     xsUrl: '',
1538     smUrl: '',
1539     mdUrl: '',
1540     lgUrl: '',
1541
1542     getAutoCreate : function()
1543     {   
1544         if(this.src || (!this.xsUrl && !this.smUrl && !this.mdUrl && !this.lgUrl)){
1545             return this.createSingleImg();
1546         }
1547         
1548         var cfg = {
1549             tag: 'div',
1550             cls: 'roo-image-responsive-group',
1551             cn: []
1552         };
1553         var _this = this;
1554         
1555         Roo.each(['xs', 'sm', 'md', 'lg'], function(size){
1556             
1557             if(!_this[size + 'Url']){
1558                 return;
1559             }
1560             
1561             var img = {
1562                 tag: 'img',
1563                 cls: (_this.imgResponsive) ? 'img-responsive' : '',
1564                 html: _this.html || cfg.html,
1565                 src: _this[size + 'Url']
1566             };
1567             
1568             img.cls += ' roo-image-responsive-' + size;
1569             
1570             var s = ['xs', 'sm', 'md', 'lg'];
1571             
1572             s.splice(s.indexOf(size), 1);
1573             
1574             Roo.each(s, function(ss){
1575                 img.cls += ' hidden-' + ss;
1576             });
1577             
1578             if (['rounded','circle','thumbnail'].indexOf(_this.border)>-1) {
1579                 cfg.cls += ' img-' + _this.border;
1580             }
1581             
1582             if(_this.alt){
1583                 cfg.alt = _this.alt;
1584             }
1585             
1586             if(_this.href){
1587                 var a = {
1588                     tag: 'a',
1589                     href: _this.href,
1590                     cn: [
1591                         img
1592                     ]
1593                 };
1594
1595                 if(this.target){
1596                     a.target = _this.target;
1597                 }
1598             }
1599             
1600             cfg.cn.push((_this.href) ? a : img);
1601             
1602         });
1603         
1604         return cfg;
1605     },
1606     
1607     createSingleImg : function()
1608     {
1609         var cfg = {
1610             tag: 'img',
1611             cls: (this.imgResponsive) ? 'img-responsive' : '',
1612             html : null,
1613             src : 'about:blank'  // just incase src get's set to undefined?!?
1614         };
1615         
1616         cfg.html = this.html || cfg.html;
1617         
1618         cfg.src = this.src || cfg.src;
1619         
1620         if (['rounded','circle','thumbnail'].indexOf(this.border)>-1) {
1621             cfg.cls += ' img-' + this.border;
1622         }
1623         
1624         if(this.alt){
1625             cfg.alt = this.alt;
1626         }
1627         
1628         if(this.href){
1629             var a = {
1630                 tag: 'a',
1631                 href: this.href,
1632                 cn: [
1633                     cfg
1634                 ]
1635             };
1636             
1637             if(this.target){
1638                 a.target = this.target;
1639             }
1640             
1641         }
1642         
1643         return (this.href) ? a : cfg;
1644     },
1645     
1646     initEvents: function() 
1647     {
1648         if(!this.href){
1649             this.el.on('click', this.onClick, this);
1650         }
1651         
1652     },
1653     
1654     onClick : function(e)
1655     {
1656         Roo.log('img onclick');
1657         this.fireEvent('click', this, e);
1658     },
1659     /**
1660      * Sets the url of the image - used to update it
1661      * @param {String} url the url of the image
1662      */
1663     
1664     setSrc : function(url)
1665     {
1666         this.src =  url;
1667         
1668         if(this.src || (!this.xsUrl && !this.smUrl && !this.mdUrl && !this.lgUrl)){
1669             this.el.dom.src =  url;
1670             return;
1671         }
1672         
1673         this.el.select('img', true).first().dom.src =  url;
1674     }
1675     
1676     
1677    
1678 });
1679
1680  /*
1681  * - LGPL
1682  *
1683  * image
1684  * 
1685  */
1686
1687
1688 /**
1689  * @class Roo.bootstrap.Link
1690  * @extends Roo.bootstrap.Component
1691  * Bootstrap Link Class
1692  * @cfg {String} alt image alternative text
1693  * @cfg {String} href a tag href
1694  * @cfg {String} target (_self|_blank|_parent|_top) target for a href.
1695  * @cfg {String} html the content of the link.
1696  * @cfg {String} anchor name for the anchor link
1697  * @cfg {String} fa - favicon
1698
1699  * @cfg {Boolean} preventDefault (true | false) default false
1700
1701  * 
1702  * @constructor
1703  * Create a new Input
1704  * @param {Object} config The config object
1705  */
1706
1707 Roo.bootstrap.Link = function(config){
1708     Roo.bootstrap.Link.superclass.constructor.call(this, config);
1709     
1710     this.addEvents({
1711         // img events
1712         /**
1713          * @event click
1714          * The img click event for the img.
1715          * @param {Roo.EventObject} e
1716          */
1717         "click" : true
1718     });
1719 };
1720
1721 Roo.extend(Roo.bootstrap.Link, Roo.bootstrap.Component,  {
1722     
1723     href: false,
1724     target: false,
1725     preventDefault: false,
1726     anchor : false,
1727     alt : false,
1728     fa: false,
1729
1730
1731     getAutoCreate : function()
1732     {
1733         var html = this.html || '';
1734         
1735         if (this.fa !== false) {
1736             html = '<i class="fa fa-' + this.fa + '"></i>';
1737         }
1738         var cfg = {
1739             tag: 'a'
1740         };
1741         // anchor's do not require html/href...
1742         if (this.anchor === false) {
1743             cfg.html = html;
1744             cfg.href = this.href || '#';
1745         } else {
1746             cfg.name = this.anchor;
1747             if (this.html !== false || this.fa !== false) {
1748                 cfg.html = html;
1749             }
1750             if (this.href !== false) {
1751                 cfg.href = this.href;
1752             }
1753         }
1754         
1755         if(this.alt !== false){
1756             cfg.alt = this.alt;
1757         }
1758         
1759         
1760         if(this.target !== false) {
1761             cfg.target = this.target;
1762         }
1763         
1764         return cfg;
1765     },
1766     
1767     initEvents: function() {
1768         
1769         if(!this.href || this.preventDefault){
1770             this.el.on('click', this.onClick, this);
1771         }
1772     },
1773     
1774     onClick : function(e)
1775     {
1776         if(this.preventDefault){
1777             e.preventDefault();
1778         }
1779         //Roo.log('img onclick');
1780         this.fireEvent('click', this, e);
1781     }
1782    
1783 });
1784
1785  /*
1786  * - LGPL
1787  *
1788  * header
1789  * 
1790  */
1791
1792 /**
1793  * @class Roo.bootstrap.Header
1794  * @extends Roo.bootstrap.Component
1795  * Bootstrap Header class
1796  * @cfg {String} html content of header
1797  * @cfg {Number} level (1|2|3|4|5|6) default 1
1798  * 
1799  * @constructor
1800  * Create a new Header
1801  * @param {Object} config The config object
1802  */
1803
1804
1805 Roo.bootstrap.Header  = function(config){
1806     Roo.bootstrap.Header.superclass.constructor.call(this, config);
1807 };
1808
1809 Roo.extend(Roo.bootstrap.Header, Roo.bootstrap.Component,  {
1810     
1811     //href : false,
1812     html : false,
1813     level : 1,
1814     
1815     
1816     
1817     getAutoCreate : function(){
1818         
1819         
1820         
1821         var cfg = {
1822             tag: 'h' + (1 *this.level),
1823             html: this.html || ''
1824         } ;
1825         
1826         return cfg;
1827     }
1828    
1829 });
1830
1831  
1832
1833  /*
1834  * Based on:
1835  * Ext JS Library 1.1.1
1836  * Copyright(c) 2006-2007, Ext JS, LLC.
1837  *
1838  * Originally Released Under LGPL - original licence link has changed is not relivant.
1839  *
1840  * Fork - LGPL
1841  * <script type="text/javascript">
1842  */
1843  
1844 /**
1845  * @class Roo.bootstrap.MenuMgr
1846  * Provides a common registry of all menu items on a page so that they can be easily accessed by id.
1847  * @singleton
1848  */
1849 Roo.bootstrap.MenuMgr = function(){
1850    var menus, active, groups = {}, attached = false, lastShow = new Date();
1851
1852    // private - called when first menu is created
1853    function init(){
1854        menus = {};
1855        active = new Roo.util.MixedCollection();
1856        Roo.get(document).addKeyListener(27, function(){
1857            if(active.length > 0){
1858                hideAll();
1859            }
1860        });
1861    }
1862
1863    // private
1864    function hideAll(){
1865        if(active && active.length > 0){
1866            var c = active.clone();
1867            c.each(function(m){
1868                m.hide();
1869            });
1870        }
1871    }
1872
1873    // private
1874    function onHide(m){
1875        active.remove(m);
1876        if(active.length < 1){
1877            Roo.get(document).un("mouseup", onMouseDown);
1878             
1879            attached = false;
1880        }
1881    }
1882
1883    // private
1884    function onShow(m){
1885        var last = active.last();
1886        lastShow = new Date();
1887        active.add(m);
1888        if(!attached){
1889           Roo.get(document).on("mouseup", onMouseDown);
1890            
1891            attached = true;
1892        }
1893        if(m.parentMenu){
1894           //m.getEl().setZIndex(parseInt(m.parentMenu.getEl().getStyle("z-index"), 10) + 3);
1895           m.parentMenu.activeChild = m;
1896        }else if(last && last.isVisible()){
1897           //m.getEl().setZIndex(parseInt(last.getEl().getStyle("z-index"), 10) + 3);
1898        }
1899    }
1900
1901    // private
1902    function onBeforeHide(m){
1903        if(m.activeChild){
1904            m.activeChild.hide();
1905        }
1906        if(m.autoHideTimer){
1907            clearTimeout(m.autoHideTimer);
1908            delete m.autoHideTimer;
1909        }
1910    }
1911
1912    // private
1913    function onBeforeShow(m){
1914        var pm = m.parentMenu;
1915        if(!pm && !m.allowOtherMenus){
1916            hideAll();
1917        }else if(pm && pm.activeChild && active != m){
1918            pm.activeChild.hide();
1919        }
1920    }
1921
1922    // private this should really trigger on mouseup..
1923    function onMouseDown(e){
1924         Roo.log("on Mouse Up");
1925         
1926         if(lastShow.getElapsed() > 50 && active.length > 0 && !e.getTarget(".dropdown-menu") && !e.getTarget('.user-menu')){
1927             Roo.log("MenuManager hideAll");
1928             hideAll();
1929             e.stopEvent();
1930         }
1931         
1932         
1933    }
1934
1935    // private
1936    function onBeforeCheck(mi, state){
1937        if(state){
1938            var g = groups[mi.group];
1939            for(var i = 0, l = g.length; i < l; i++){
1940                if(g[i] != mi){
1941                    g[i].setChecked(false);
1942                }
1943            }
1944        }
1945    }
1946
1947    return {
1948
1949        /**
1950         * Hides all menus that are currently visible
1951         */
1952        hideAll : function(){
1953             hideAll();  
1954        },
1955
1956        // private
1957        register : function(menu){
1958            if(!menus){
1959                init();
1960            }
1961            menus[menu.id] = menu;
1962            menu.on("beforehide", onBeforeHide);
1963            menu.on("hide", onHide);
1964            menu.on("beforeshow", onBeforeShow);
1965            menu.on("show", onShow);
1966            var g = menu.group;
1967            if(g && menu.events["checkchange"]){
1968                if(!groups[g]){
1969                    groups[g] = [];
1970                }
1971                groups[g].push(menu);
1972                menu.on("checkchange", onCheck);
1973            }
1974        },
1975
1976         /**
1977          * Returns a {@link Roo.menu.Menu} object
1978          * @param {String/Object} menu The string menu id, an existing menu object reference, or a Menu config that will
1979          * be used to generate and return a new Menu instance.
1980          */
1981        get : function(menu){
1982            if(typeof menu == "string"){ // menu id
1983                return menus[menu];
1984            }else if(menu.events){  // menu instance
1985                return menu;
1986            }
1987            /*else if(typeof menu.length == 'number'){ // array of menu items?
1988                return new Roo.bootstrap.Menu({items:menu});
1989            }else{ // otherwise, must be a config
1990                return new Roo.bootstrap.Menu(menu);
1991            }
1992            */
1993            return false;
1994        },
1995
1996        // private
1997        unregister : function(menu){
1998            delete menus[menu.id];
1999            menu.un("beforehide", onBeforeHide);
2000            menu.un("hide", onHide);
2001            menu.un("beforeshow", onBeforeShow);
2002            menu.un("show", onShow);
2003            var g = menu.group;
2004            if(g && menu.events["checkchange"]){
2005                groups[g].remove(menu);
2006                menu.un("checkchange", onCheck);
2007            }
2008        },
2009
2010        // private
2011        registerCheckable : function(menuItem){
2012            var g = menuItem.group;
2013            if(g){
2014                if(!groups[g]){
2015                    groups[g] = [];
2016                }
2017                groups[g].push(menuItem);
2018                menuItem.on("beforecheckchange", onBeforeCheck);
2019            }
2020        },
2021
2022        // private
2023        unregisterCheckable : function(menuItem){
2024            var g = menuItem.group;
2025            if(g){
2026                groups[g].remove(menuItem);
2027                menuItem.un("beforecheckchange", onBeforeCheck);
2028            }
2029        }
2030    };
2031 }();/*
2032  * - LGPL
2033  *
2034  * menu
2035  * 
2036  */
2037
2038 /**
2039  * @class Roo.bootstrap.Menu
2040  * @extends Roo.bootstrap.Component
2041  * Bootstrap Menu class - container for MenuItems
2042  * @cfg {String} type (dropdown|treeview|submenu) type of menu
2043  * @cfg {bool} hidden  if the menu should be hidden when rendered.
2044  * @cfg {bool} stopEvent (true|false)  Stop event after trigger press (default true)
2045  * @cfg {bool} isLink (true|false)  the menu has link disable auto expand and collaspe (default false)
2046  * 
2047  * @constructor
2048  * Create a new Menu
2049  * @param {Object} config The config object
2050  */
2051
2052
2053 Roo.bootstrap.Menu = function(config){
2054     Roo.bootstrap.Menu.superclass.constructor.call(this, config);
2055     if (this.registerMenu && this.type != 'treeview')  {
2056         Roo.bootstrap.MenuMgr.register(this);
2057     }
2058     
2059     
2060     this.addEvents({
2061         /**
2062          * @event beforeshow
2063          * Fires before this menu is displayed (return false to block)
2064          * @param {Roo.menu.Menu} this
2065          */
2066         beforeshow : true,
2067         /**
2068          * @event beforehide
2069          * Fires before this menu is hidden (return false to block)
2070          * @param {Roo.menu.Menu} this
2071          */
2072         beforehide : true,
2073         /**
2074          * @event show
2075          * Fires after this menu is displayed
2076          * @param {Roo.menu.Menu} this
2077          */
2078         show : true,
2079         /**
2080          * @event hide
2081          * Fires after this menu is hidden
2082          * @param {Roo.menu.Menu} this
2083          */
2084         hide : true,
2085         /**
2086          * @event click
2087          * Fires when this menu is clicked (or when the enter key is pressed while it is active)
2088          * @param {Roo.menu.Menu} this
2089          * @param {Roo.menu.Item} menuItem The menu item that was clicked
2090          * @param {Roo.EventObject} e
2091          */
2092         click : true,
2093         /**
2094          * @event mouseover
2095          * Fires when the mouse is hovering over this menu
2096          * @param {Roo.menu.Menu} this
2097          * @param {Roo.EventObject} e
2098          * @param {Roo.menu.Item} menuItem The menu item that was clicked
2099          */
2100         mouseover : true,
2101         /**
2102          * @event mouseout
2103          * Fires when the mouse exits this menu
2104          * @param {Roo.menu.Menu} this
2105          * @param {Roo.EventObject} e
2106          * @param {Roo.menu.Item} menuItem The menu item that was clicked
2107          */
2108         mouseout : true,
2109         /**
2110          * @event itemclick
2111          * Fires when a menu item contained in this menu is clicked
2112          * @param {Roo.menu.BaseItem} baseItem The BaseItem that was clicked
2113          * @param {Roo.EventObject} e
2114          */
2115         itemclick: true
2116     });
2117     this.menuitems = new Roo.util.MixedCollection(false, function(o) { return o.el.id; });
2118 };
2119
2120 Roo.extend(Roo.bootstrap.Menu, Roo.bootstrap.Component,  {
2121     
2122    /// html : false,
2123     //align : '',
2124     triggerEl : false,  // is this set by component builder? -- it should really be fetched from parent()???
2125     type: false,
2126     /**
2127      * @cfg {Boolean} registerMenu True (default) - means that clicking on screen etc. hides it.
2128      */
2129     registerMenu : true,
2130     
2131     menuItems :false, // stores the menu items..
2132     
2133     hidden:true,
2134         
2135     parentMenu : false,
2136     
2137     stopEvent : true,
2138     
2139     isLink : false,
2140     
2141     getChildContainer : function() {
2142         return this.el;  
2143     },
2144     
2145     getAutoCreate : function(){
2146          
2147         //if (['right'].indexOf(this.align)!==-1) {
2148         //    cfg.cn[1].cls += ' pull-right'
2149         //}
2150         
2151         
2152         var cfg = {
2153             tag : 'ul',
2154             cls : 'dropdown-menu' ,
2155             style : 'z-index:1000'
2156             
2157         };
2158         
2159         if (this.type === 'submenu') {
2160             cfg.cls = 'submenu active';
2161         }
2162         if (this.type === 'treeview') {
2163             cfg.cls = 'treeview-menu';
2164         }
2165         
2166         return cfg;
2167     },
2168     initEvents : function() {
2169         
2170        // Roo.log("ADD event");
2171        // Roo.log(this.triggerEl.dom);
2172         
2173         this.triggerEl.on('click', this.onTriggerClick, this);
2174         
2175         this.triggerEl.on(Roo.isTouch ? 'touchstart' : 'mouseup', this.onTriggerPress, this);
2176         
2177         
2178         if (this.triggerEl.hasClass('nav-item')) {
2179             // dropdown toggle on the 'a' in BS4?
2180             this.triggerEl.select('.nav-link',true).first().addClass('dropdown-toggle');
2181         } else {
2182             this.triggerEl.addClass('dropdown-toggle');
2183         }
2184         if (Roo.isTouch) {
2185             this.el.on('touchstart'  , this.onTouch, this);
2186         }
2187         this.el.on('click' , this.onClick, this);
2188
2189         this.el.on("mouseover", this.onMouseOver, this);
2190         this.el.on("mouseout", this.onMouseOut, this);
2191         
2192     },
2193     
2194     findTargetItem : function(e)
2195     {
2196         var t = e.getTarget(".dropdown-menu-item", this.el,  true);
2197         if(!t){
2198             return false;
2199         }
2200         //Roo.log(t);         Roo.log(t.id);
2201         if(t && t.id){
2202             //Roo.log(this.menuitems);
2203             return this.menuitems.get(t.id);
2204             
2205             //return this.items.get(t.menuItemId);
2206         }
2207         
2208         return false;
2209     },
2210     
2211     onTouch : function(e) 
2212     {
2213         Roo.log("menu.onTouch");
2214         //e.stopEvent(); this make the user popdown broken
2215         this.onClick(e);
2216     },
2217     
2218     onClick : function(e)
2219     {
2220         Roo.log("menu.onClick");
2221         
2222         var t = this.findTargetItem(e);
2223         if(!t || t.isContainer){
2224             return;
2225         }
2226         Roo.log(e);
2227         /*
2228         if (Roo.isTouch && e.type == 'touchstart' && t.menu  && !t.disabled) {
2229             if(t == this.activeItem && t.shouldDeactivate(e)){
2230                 this.activeItem.deactivate();
2231                 delete this.activeItem;
2232                 return;
2233             }
2234             if(t.canActivate){
2235                 this.setActiveItem(t, true);
2236             }
2237             return;
2238             
2239             
2240         }
2241         */
2242        
2243         Roo.log('pass click event');
2244         
2245         t.onClick(e);
2246         
2247         this.fireEvent("click", this, t, e);
2248         
2249         var _this = this;
2250         
2251         if(!t.href.length || t.href == '#'){
2252             (function() { _this.hide(); }).defer(100);
2253         }
2254         
2255     },
2256     
2257     onMouseOver : function(e){
2258         var t  = this.findTargetItem(e);
2259         //Roo.log(t);
2260         //if(t){
2261         //    if(t.canActivate && !t.disabled){
2262         //        this.setActiveItem(t, true);
2263         //    }
2264         //}
2265         
2266         this.fireEvent("mouseover", this, e, t);
2267     },
2268     isVisible : function(){
2269         return !this.hidden;
2270     },
2271     onMouseOut : function(e){
2272         var t  = this.findTargetItem(e);
2273         
2274         //if(t ){
2275         //    if(t == this.activeItem && t.shouldDeactivate(e)){
2276         //        this.activeItem.deactivate();
2277         //        delete this.activeItem;
2278         //    }
2279         //}
2280         this.fireEvent("mouseout", this, e, t);
2281     },
2282     
2283     
2284     /**
2285      * Displays this menu relative to another element
2286      * @param {String/HTMLElement/Roo.Element} element The element to align to
2287      * @param {String} position (optional) The {@link Roo.Element#alignTo} anchor position to use in aligning to
2288      * the element (defaults to this.defaultAlign)
2289      * @param {Roo.menu.Menu} parentMenu (optional) This menu's parent menu, if applicable (defaults to undefined)
2290      */
2291     show : function(el, pos, parentMenu)
2292     {
2293         if (false === this.fireEvent("beforeshow", this)) {
2294             Roo.log("show canceled");
2295             return;
2296         }
2297         this.parentMenu = parentMenu;
2298         if(!this.el){
2299             this.render();
2300         }
2301         
2302         this.showAt(this.el.getAlignToXY(el, pos || this.defaultAlign), parentMenu, false);
2303     },
2304      /**
2305      * Displays this menu at a specific xy position
2306      * @param {Array} xyPosition Contains X & Y [x, y] values for the position at which to show the menu (coordinates are page-based)
2307      * @param {Roo.menu.Menu} parentMenu (optional) This menu's parent menu, if applicable (defaults to undefined)
2308      */
2309     showAt : function(xy, parentMenu, /* private: */_e){
2310         this.parentMenu = parentMenu;
2311         if(!this.el){
2312             this.render();
2313         }
2314         if(_e !== false){
2315             this.fireEvent("beforeshow", this);
2316             //xy = this.el.adjustForConstraints(xy);
2317         }
2318         
2319         //this.el.show();
2320         this.hideMenuItems();
2321         this.hidden = false;
2322         this.triggerEl.addClass('open');
2323         this.el.addClass('show');
2324         
2325         // reassign x when hitting right
2326         if(this.el.getWidth() + xy[0] >= Roo.lib.Dom.getViewWidth()){
2327             xy[0] = xy[0] - this.el.getWidth() + this.triggerEl.getWidth();
2328         }
2329         
2330         // reassign y when hitting bottom
2331         if(this.el.getHeight() + xy[1] >= Roo.lib.Dom.getViewHeight()){
2332             xy[1] = xy[1] - this.el.getHeight() - this.triggerEl.getHeight();
2333         }
2334         
2335         // but the list may align on trigger left or trigger top... should it be a properity?
2336         
2337         if(this.el.getStyle('top') != 'auto' && this.el.getStyle('top').slice(-1) != "%"){
2338             this.el.setXY(xy);
2339         }
2340         
2341         this.focus();
2342         this.fireEvent("show", this);
2343     },
2344     
2345     focus : function(){
2346         return;
2347         if(!this.hidden){
2348             this.doFocus.defer(50, this);
2349         }
2350     },
2351
2352     doFocus : function(){
2353         if(!this.hidden){
2354             this.focusEl.focus();
2355         }
2356     },
2357
2358     /**
2359      * Hides this menu and optionally all parent menus
2360      * @param {Boolean} deep (optional) True to hide all parent menus recursively, if any (defaults to false)
2361      */
2362     hide : function(deep)
2363     {
2364         if (false === this.fireEvent("beforehide", this)) {
2365             Roo.log("hide canceled");
2366             return;
2367         }
2368         this.hideMenuItems();
2369         if(this.el && this.isVisible()){
2370            
2371             if(this.activeItem){
2372                 this.activeItem.deactivate();
2373                 this.activeItem = null;
2374             }
2375             this.triggerEl.removeClass('open');;
2376             this.el.removeClass('show');
2377             this.hidden = true;
2378             this.fireEvent("hide", this);
2379         }
2380         if(deep === true && this.parentMenu){
2381             this.parentMenu.hide(true);
2382         }
2383     },
2384     
2385     onTriggerClick : function(e)
2386     {
2387         Roo.log('trigger click');
2388         
2389         var target = e.getTarget();
2390         
2391         Roo.log(target.nodeName.toLowerCase());
2392         
2393         if(target.nodeName.toLowerCase() === 'i'){
2394             e.preventDefault();
2395         }
2396         
2397     },
2398     
2399     onTriggerPress  : function(e)
2400     {
2401         Roo.log('trigger press');
2402         //Roo.log(e.getTarget());
2403        // Roo.log(this.triggerEl.dom);
2404        
2405         // trigger only occurs on normal menu's -- if it's a treeview or dropdown... do not hide/show..
2406         var pel = Roo.get(e.getTarget());
2407         if (pel.findParent('.dropdown-menu') || pel.findParent('.treeview-menu') ) {
2408             Roo.log('is treeview or dropdown?');
2409             return;
2410         }
2411         
2412         if(e.getTarget().nodeName.toLowerCase() !== 'i' && this.isLink){
2413             return;
2414         }
2415         
2416         if (this.isVisible()) {
2417             Roo.log('hide');
2418             this.hide();
2419         } else {
2420             Roo.log('show');
2421             this.show(this.triggerEl, '?', false);
2422         }
2423         
2424         if(this.stopEvent || e.getTarget().nodeName.toLowerCase() === 'i'){
2425             e.stopEvent();
2426         }
2427         
2428     },
2429        
2430     
2431     hideMenuItems : function()
2432     {
2433         Roo.log("hide Menu Items");
2434         if (!this.el) { 
2435             return;
2436         }
2437         
2438         this.el.select('.open',true).each(function(aa) {
2439             
2440             aa.removeClass('open');
2441          
2442         });
2443     },
2444     addxtypeChild : function (tree, cntr) {
2445         var comp= Roo.bootstrap.Menu.superclass.addxtypeChild.call(this, tree, cntr);
2446           
2447         this.menuitems.add(comp);
2448         return comp;
2449
2450     },
2451     getEl : function()
2452     {
2453         Roo.log(this.el);
2454         return this.el;
2455     },
2456     
2457     clear : function()
2458     {
2459         this.getEl().dom.innerHTML = '';
2460         this.menuitems.clear();
2461     }
2462 });
2463
2464  
2465  /*
2466  * - LGPL
2467  *
2468  * menu item
2469  * 
2470  */
2471
2472
2473 /**
2474  * @class Roo.bootstrap.MenuItem
2475  * @extends Roo.bootstrap.Component
2476  * Bootstrap MenuItem class
2477  * @cfg {String} html the menu label
2478  * @cfg {String} href the link
2479  * @cfg {Boolean} preventDefault do not trigger A href on clicks (default false).
2480  * @cfg {Boolean} isContainer is it a container - just returns a drop down item..
2481  * @cfg {Boolean} active  used on sidebars to highlight active itesm
2482  * @cfg {String} fa favicon to show on left of menu item.
2483  * @cfg {Roo.bootsrap.Menu} menu the child menu.
2484  * 
2485  * 
2486  * @constructor
2487  * Create a new MenuItem
2488  * @param {Object} config The config object
2489  */
2490
2491
2492 Roo.bootstrap.MenuItem = function(config){
2493     Roo.bootstrap.MenuItem.superclass.constructor.call(this, config);
2494     this.addEvents({
2495         // raw events
2496         /**
2497          * @event click
2498          * The raw click event for the entire grid.
2499          * @param {Roo.bootstrap.MenuItem} this
2500          * @param {Roo.EventObject} e
2501          */
2502         "click" : true
2503     });
2504 };
2505
2506 Roo.extend(Roo.bootstrap.MenuItem, Roo.bootstrap.Component,  {
2507     
2508     href : false,
2509     html : false,
2510     preventDefault: false,
2511     isContainer : false,
2512     active : false,
2513     fa: false,
2514     
2515     getAutoCreate : function(){
2516         
2517         if(this.isContainer){
2518             return {
2519                 tag: 'li',
2520                 cls: 'dropdown-menu-item '
2521             };
2522         }
2523         var ctag = {
2524             tag: 'span',
2525             html: 'Link'
2526         };
2527         
2528         var anc = {
2529             tag : 'a',
2530             cls : 'dropdown-item',
2531             href : '#',
2532             cn : [  ]
2533         };
2534         
2535         if (this.fa !== false) {
2536             anc.cn.push({
2537                 tag : 'i',
2538                 cls : 'fa fa-' + this.fa
2539             });
2540         }
2541         
2542         anc.cn.push(ctag);
2543         
2544         
2545         var cfg= {
2546             tag: 'li',
2547             cls: 'dropdown-menu-item',
2548             cn: [ anc ]
2549         };
2550         if (this.parent().type == 'treeview') {
2551             cfg.cls = 'treeview-menu';
2552         }
2553         if (this.active) {
2554             cfg.cls += ' active';
2555         }
2556         
2557         
2558         
2559         anc.href = this.href || cfg.cn[0].href ;
2560         ctag.html = this.html || cfg.cn[0].html ;
2561         return cfg;
2562     },
2563     
2564     initEvents: function()
2565     {
2566         if (this.parent().type == 'treeview') {
2567             this.el.select('a').on('click', this.onClick, this);
2568         }
2569         
2570         if (this.menu) {
2571             this.menu.parentType = this.xtype;
2572             this.menu.triggerEl = this.el;
2573             this.menu = this.addxtype(Roo.apply({}, this.menu));
2574         }
2575         
2576     },
2577     onClick : function(e)
2578     {
2579         Roo.log('item on click ');
2580         
2581         if(this.preventDefault){
2582             e.preventDefault();
2583         }
2584         //this.parent().hideMenuItems();
2585         
2586         this.fireEvent('click', this, e);
2587     },
2588     getEl : function()
2589     {
2590         return this.el;
2591     } 
2592 });
2593
2594  
2595
2596  /*
2597  * - LGPL
2598  *
2599  * menu separator
2600  * 
2601  */
2602
2603
2604 /**
2605  * @class Roo.bootstrap.MenuSeparator
2606  * @extends Roo.bootstrap.Component
2607  * Bootstrap MenuSeparator class
2608  * 
2609  * @constructor
2610  * Create a new MenuItem
2611  * @param {Object} config The config object
2612  */
2613
2614
2615 Roo.bootstrap.MenuSeparator = function(config){
2616     Roo.bootstrap.MenuSeparator.superclass.constructor.call(this, config);
2617 };
2618
2619 Roo.extend(Roo.bootstrap.MenuSeparator, Roo.bootstrap.Component,  {
2620     
2621     getAutoCreate : function(){
2622         var cfg = {
2623             cls: 'divider',
2624             tag : 'li'
2625         };
2626         
2627         return cfg;
2628     }
2629    
2630 });
2631
2632  
2633
2634  
2635 /*
2636 * Licence: LGPL
2637 */
2638
2639 /**
2640  * @class Roo.bootstrap.Modal
2641  * @extends Roo.bootstrap.Component
2642  * Bootstrap Modal class
2643  * @cfg {String} title Title of dialog
2644  * @cfg {String} html - the body of the dialog (for simple ones) - you can also use template..
2645  * @cfg {Roo.Template} tmpl - a template with variables. to use it, add a handler in show:method  adn
2646  * @cfg {Boolean} specificTitle default false
2647  * @cfg {Array} buttons Array of buttons or standard button set..
2648  * @cfg {String} buttonPosition (left|right|center) default right (DEPRICATED) - use mr-auto on buttons to put them on the left
2649  * @cfg {Boolean} animate default true
2650  * @cfg {Boolean} allow_close default true
2651  * @cfg {Boolean} fitwindow default false
2652  * @cfg {String} size (sm|lg) default empty
2653  * @cfg {Number} max_width set the max width of modal
2654  *
2655  *
2656  * @constructor
2657  * Create a new Modal Dialog
2658  * @param {Object} config The config object
2659  */
2660
2661 Roo.bootstrap.Modal = function(config){
2662     Roo.bootstrap.Modal.superclass.constructor.call(this, config);
2663     this.addEvents({
2664         // raw events
2665         /**
2666          * @event btnclick
2667          * The raw btnclick event for the button
2668          * @param {Roo.EventObject} e
2669          */
2670         "btnclick" : true,
2671         /**
2672          * @event resize
2673          * Fire when dialog resize
2674          * @param {Roo.bootstrap.Modal} this
2675          * @param {Roo.EventObject} e
2676          */
2677         "resize" : true
2678     });
2679     this.buttons = this.buttons || [];
2680
2681     if (this.tmpl) {
2682         this.tmpl = Roo.factory(this.tmpl);
2683     }
2684
2685 };
2686
2687 Roo.extend(Roo.bootstrap.Modal, Roo.bootstrap.Component,  {
2688
2689     title : 'test dialog',
2690
2691     buttons : false,
2692
2693     // set on load...
2694
2695     html: false,
2696
2697     tmp: false,
2698
2699     specificTitle: false,
2700
2701     buttonPosition: 'right',
2702
2703     allow_close : true,
2704
2705     animate : true,
2706
2707     fitwindow: false,
2708     
2709      // private
2710     dialogEl: false,
2711     bodyEl:  false,
2712     footerEl:  false,
2713     titleEl:  false,
2714     closeEl:  false,
2715
2716     size: '',
2717     
2718     max_width: 0,
2719     
2720     max_height: 0,
2721     
2722     fit_content: false,
2723
2724     onRender : function(ct, position)
2725     {
2726         Roo.bootstrap.Component.superclass.onRender.call(this, ct, position);
2727
2728         if(!this.el){
2729             var cfg = Roo.apply({},  this.getAutoCreate());
2730             cfg.id = Roo.id();
2731             //if(!cfg.name){
2732             //    cfg.name = typeof(this.name) == 'undefined' ? this.id : this.name;
2733             //}
2734             //if (!cfg.name.length) {
2735             //    delete cfg.name;
2736            // }
2737             if (this.cls) {
2738                 cfg.cls += ' ' + this.cls;
2739             }
2740             if (this.style) {
2741                 cfg.style = this.style;
2742             }
2743             this.el = Roo.get(document.body).createChild(cfg, position);
2744         }
2745         //var type = this.el.dom.type;
2746
2747
2748         if(this.tabIndex !== undefined){
2749             this.el.dom.setAttribute('tabIndex', this.tabIndex);
2750         }
2751
2752         this.dialogEl = this.el.select('.modal-dialog',true).first();
2753         this.bodyEl = this.el.select('.modal-body',true).first();
2754         this.closeEl = this.el.select('.modal-header .close', true).first();
2755         this.headerEl = this.el.select('.modal-header',true).first();
2756         this.titleEl = this.el.select('.modal-title',true).first();
2757         this.footerEl = this.el.select('.modal-footer',true).first();
2758
2759         this.maskEl = Roo.DomHelper.append(document.body, {tag: "div", cls:"x-dlg-mask"}, true);
2760         
2761         //this.el.addClass("x-dlg-modal");
2762
2763         if (this.buttons.length) {
2764             Roo.each(this.buttons, function(bb) {
2765                 var b = Roo.apply({}, bb);
2766                 b.xns = b.xns || Roo.bootstrap;
2767                 b.xtype = b.xtype || 'Button';
2768                 if (typeof(b.listeners) == 'undefined') {
2769                     b.listeners = { click : this.onButtonClick.createDelegate(this)  };
2770                 }
2771
2772                 var btn = Roo.factory(b);
2773
2774                 btn.render(this.getButtonContainer());
2775
2776             },this);
2777         }
2778         // render the children.
2779         var nitems = [];
2780
2781         if(typeof(this.items) != 'undefined'){
2782             var items = this.items;
2783             delete this.items;
2784
2785             for(var i =0;i < items.length;i++) {
2786                 nitems.push(this.addxtype(Roo.apply({}, items[i])));
2787             }
2788         }
2789
2790         this.items = nitems;
2791
2792         // where are these used - they used to be body/close/footer
2793
2794
2795         this.initEvents();
2796         //this.el.addClass([this.fieldClass, this.cls]);
2797
2798     },
2799
2800     getAutoCreate : function()
2801     {
2802         var bdy = {
2803                 cls : 'modal-body',
2804                 html : this.html || ''
2805         };
2806
2807         var title = {
2808             tag: 'h4',
2809             cls : 'modal-title',
2810             html : this.title
2811         };
2812
2813         if(this.specificTitle){
2814             title = this.title;
2815
2816         }
2817
2818         var header = [];
2819         if (this.allow_close && Roo.bootstrap.version == 3) {
2820             header.push({
2821                 tag: 'button',
2822                 cls : 'close',
2823                 html : '&times'
2824             });
2825         }
2826
2827         header.push(title);
2828
2829         if (this.allow_close && Roo.bootstrap.version == 4) {
2830             header.push({
2831                 tag: 'button',
2832                 cls : 'close',
2833                 html : '&times'
2834             });
2835         }
2836         
2837         var size = '';
2838
2839         if(this.size.length){
2840             size = 'modal-' + this.size;
2841         }
2842         
2843         var footer = Roo.bootstrap.version == 3 ?
2844             {
2845                 cls : 'modal-footer',
2846                 cn : [
2847                     {
2848                         tag: 'div',
2849                         cls: 'btn-' + this.buttonPosition
2850                     }
2851                 ]
2852
2853             } :
2854             {  // BS4 uses mr-auto on left buttons....
2855                 cls : 'modal-footer'
2856             };
2857
2858             
2859
2860         
2861         
2862         var modal = {
2863             cls: "modal",
2864              cn : [
2865                 {
2866                     cls: "modal-dialog " + size,
2867                     cn : [
2868                         {
2869                             cls : "modal-content",
2870                             cn : [
2871                                 {
2872                                     cls : 'modal-header',
2873                                     cn : header
2874                                 },
2875                                 bdy,
2876                                 footer
2877                             ]
2878
2879                         }
2880                     ]
2881
2882                 }
2883             ]
2884         };
2885
2886         if(this.animate){
2887             modal.cls += ' fade';
2888         }
2889
2890         return modal;
2891
2892     },
2893     getChildContainer : function() {
2894
2895          return this.bodyEl;
2896
2897     },
2898     getButtonContainer : function() {
2899         
2900          return Roo.bootstrap.version == 4 ?
2901             this.el.select('.modal-footer',true).first()
2902             : this.el.select('.modal-footer div',true).first();
2903
2904     },
2905     initEvents : function()
2906     {
2907         if (this.allow_close) {
2908             this.closeEl.on('click', this.hide, this);
2909         }
2910         Roo.EventManager.onWindowResize(this.resize, this, true);
2911
2912
2913     },
2914   
2915
2916     resize : function()
2917     {
2918         this.maskEl.setSize(
2919             Roo.lib.Dom.getViewWidth(true),
2920             Roo.lib.Dom.getViewHeight(true)
2921         );
2922         
2923         if (this.fitwindow) {
2924             
2925            
2926             this.setSize(
2927                 this.width || Roo.lib.Dom.getViewportWidth(true) - 30,
2928                 this.height || Roo.lib.Dom.getViewportHeight(true) // catering margin-top 30 margin-bottom 30
2929             );
2930             return;
2931         }
2932         
2933         if(this.max_width !== 0) {
2934             
2935             var w = Math.min(this.max_width, Roo.lib.Dom.getViewportWidth(true) - 30);
2936             
2937             if(this.height) {
2938                 this.setSize(w, this.height);
2939                 return;
2940             }
2941             
2942             if(this.max_height) {
2943                 this.setSize(w,Math.min(
2944                     this.max_height,
2945                     Roo.lib.Dom.getViewportHeight(true) - 60
2946                 ));
2947                 
2948                 return;
2949             }
2950             
2951             if(!this.fit_content) {
2952                 this.setSize(w, Roo.lib.Dom.getViewportHeight(true) - 60);
2953                 return;
2954             }
2955             
2956             this.setSize(w, Math.min(
2957                 60 +
2958                 this.headerEl.getHeight() + 
2959                 this.footerEl.getHeight() + 
2960                 this.getChildHeight(this.bodyEl.dom.childNodes),
2961                 Roo.lib.Dom.getViewportHeight(true) - 60)
2962             );
2963         }
2964         
2965     },
2966
2967     setSize : function(w,h)
2968     {
2969         if (!w && !h) {
2970             return;
2971         }
2972         
2973         this.resizeTo(w,h);
2974     },
2975
2976     show : function() {
2977
2978         if (!this.rendered) {
2979             this.render();
2980         }
2981
2982         //this.el.setStyle('display', 'block');
2983         this.el.removeClass('hideing');
2984         this.el.dom.style.display='block';
2985         
2986         Roo.get(document.body).addClass('modal-open');
2987  
2988         if(this.animate){  // element has 'fade'  - so stuff happens after .3s ?- not sure why the delay?
2989             
2990             (function(){
2991                 this.el.addClass('show');
2992                 this.el.addClass('in');
2993             }).defer(50, this);
2994         }else{
2995             this.el.addClass('show');
2996             this.el.addClass('in');
2997         }
2998
2999         // not sure how we can show data in here..
3000         //if (this.tmpl) {
3001         //    this.getChildContainer().dom.innerHTML = this.tmpl.applyTemplate(this);
3002         //}
3003
3004         Roo.get(document.body).addClass("x-body-masked");
3005         
3006         this.maskEl.setSize(Roo.lib.Dom.getViewWidth(true),   Roo.lib.Dom.getViewHeight(true));
3007         this.maskEl.setStyle('z-index', Roo.bootstrap.Modal.zIndex++);
3008         this.maskEl.dom.style.display = 'block';
3009         this.maskEl.addClass('show');
3010         
3011         
3012         this.resize();
3013         
3014         this.fireEvent('show', this);
3015
3016         // set zindex here - otherwise it appears to be ignored...
3017         this.el.setStyle('z-index', Roo.bootstrap.Modal.zIndex++);
3018
3019         (function () {
3020             this.items.forEach( function(e) {
3021                 e.layout ? e.layout() : false;
3022
3023             });
3024         }).defer(100,this);
3025
3026     },
3027     hide : function()
3028     {
3029         if(this.fireEvent("beforehide", this) !== false){
3030             
3031             this.maskEl.removeClass('show');
3032             
3033             this.maskEl.dom.style.display = '';
3034             Roo.get(document.body).removeClass("x-body-masked");
3035             this.el.removeClass('in');
3036             this.el.select('.modal-dialog', true).first().setStyle('transform','');
3037
3038             if(this.animate){ // why
3039                 this.el.addClass('hideing');
3040                 this.el.removeClass('show');
3041                 (function(){
3042                     if (!this.el.hasClass('hideing')) {
3043                         return; // it's been shown again...
3044                     }
3045                     
3046                     this.el.dom.style.display='';
3047
3048                     Roo.get(document.body).removeClass('modal-open');
3049                     this.el.removeClass('hideing');
3050                 }).defer(150,this);
3051                 
3052             }else{
3053                 this.el.removeClass('show');
3054                 this.el.dom.style.display='';
3055                 Roo.get(document.body).removeClass('modal-open');
3056
3057             }
3058             this.fireEvent('hide', this);
3059         }
3060     },
3061     isVisible : function()
3062     {
3063         
3064         return this.el.hasClass('show') && !this.el.hasClass('hideing');
3065         
3066     },
3067
3068     addButton : function(str, cb)
3069     {
3070
3071
3072         var b = Roo.apply({}, { html : str } );
3073         b.xns = b.xns || Roo.bootstrap;
3074         b.xtype = b.xtype || 'Button';
3075         if (typeof(b.listeners) == 'undefined') {
3076             b.listeners = { click : cb.createDelegate(this)  };
3077         }
3078
3079         var btn = Roo.factory(b);
3080
3081         btn.render(this.getButtonContainer());
3082
3083         return btn;
3084
3085     },
3086
3087     setDefaultButton : function(btn)
3088     {
3089         //this.el.select('.modal-footer').()
3090     },
3091
3092     resizeTo: function(w,h)
3093     {
3094         this.dialogEl.setWidth(w);
3095         
3096         var diff = this.headerEl.getHeight() + this.footerEl.getHeight() + 60; // dialog margin-bottom: 30  
3097
3098         this.bodyEl.setHeight(h - diff);
3099         
3100         this.fireEvent('resize', this);
3101     },
3102     
3103     setContentSize  : function(w, h)
3104     {
3105
3106     },
3107     onButtonClick: function(btn,e)
3108     {
3109         //Roo.log([a,b,c]);
3110         this.fireEvent('btnclick', btn.name, e);
3111     },
3112      /**
3113      * Set the title of the Dialog
3114      * @param {String} str new Title
3115      */
3116     setTitle: function(str) {
3117         this.titleEl.dom.innerHTML = str;
3118     },
3119     /**
3120      * Set the body of the Dialog
3121      * @param {String} str new Title
3122      */
3123     setBody: function(str) {
3124         this.bodyEl.dom.innerHTML = str;
3125     },
3126     /**
3127      * Set the body of the Dialog using the template
3128      * @param {Obj} data - apply this data to the template and replace the body contents.
3129      */
3130     applyBody: function(obj)
3131     {
3132         if (!this.tmpl) {
3133             Roo.log("Error - using apply Body without a template");
3134             //code
3135         }
3136         this.tmpl.overwrite(this.bodyEl, obj);
3137     },
3138     
3139     getChildHeight : function(child_nodes)
3140     {
3141         if(
3142             !child_nodes ||
3143             child_nodes.length == 0
3144         ) {
3145             return;
3146         }
3147         
3148         var child_height = 0;
3149         
3150         for(var i = 0; i < child_nodes.length; i++) {
3151             
3152             /*
3153             * for modal with tabs...
3154             if(child_nodes[i].classList.contains('roo-layout-panel')) {
3155                 
3156                 var layout_childs = child_nodes[i].childNodes;
3157                 
3158                 for(var j = 0; j < layout_childs.length; j++) {
3159                     
3160                     if(layout_childs[j].classList.contains('roo-layout-panel-body')) {
3161                         
3162                         var layout_body_childs = layout_childs[j].childNodes;
3163                         
3164                         for(var k = 0; k < layout_body_childs.length; k++) {
3165                             
3166                             if(layout_body_childs[k].classList.contains('navbar')) {
3167                                 child_height += layout_body_childs[k].offsetHeight;
3168                                 continue;
3169                             }
3170                             
3171                             if(layout_body_childs[k].classList.contains('roo-layout-tabs-body')) {
3172                                 
3173                                 var layout_body_tab_childs = layout_body_childs[k].childNodes;
3174                                 
3175                                 for(var m = 0; m < layout_body_tab_childs.length; m++) {
3176                                     
3177                                     if(layout_body_tab_childs[m].classList.contains('roo-layout-active-content')) {
3178                                         child_height += this.getChildHeight(layout_body_tab_childs[m].childNodes);
3179                                         continue;
3180                                     }
3181                                     
3182                                 }
3183                                 
3184                             }
3185                             
3186                         }
3187                     }
3188                 }
3189                 continue;
3190             }
3191             */
3192             
3193             child_height += child_nodes[i].offsetHeight;
3194             // Roo.log(child_nodes[i].offsetHeight);
3195         }
3196         
3197         return child_height;
3198     }
3199
3200 });
3201
3202
3203 Roo.apply(Roo.bootstrap.Modal,  {
3204     /**
3205          * Button config that displays a single OK button
3206          * @type Object
3207          */
3208         OK :  [{
3209             name : 'ok',
3210             weight : 'primary',
3211             html : 'OK'
3212         }],
3213         /**
3214          * Button config that displays Yes and No buttons
3215          * @type Object
3216          */
3217         YESNO : [
3218             {
3219                 name  : 'no',
3220                 html : 'No'
3221             },
3222             {
3223                 name  :'yes',
3224                 weight : 'primary',
3225                 html : 'Yes'
3226             }
3227         ],
3228
3229         /**
3230          * Button config that displays OK and Cancel buttons
3231          * @type Object
3232          */
3233         OKCANCEL : [
3234             {
3235                name : 'cancel',
3236                 html : 'Cancel'
3237             },
3238             {
3239                 name : 'ok',
3240                 weight : 'primary',
3241                 html : 'OK'
3242             }
3243         ],
3244         /**
3245          * Button config that displays Yes, No and Cancel buttons
3246          * @type Object
3247          */
3248         YESNOCANCEL : [
3249             {
3250                 name : 'yes',
3251                 weight : 'primary',
3252                 html : 'Yes'
3253             },
3254             {
3255                 name : 'no',
3256                 html : 'No'
3257             },
3258             {
3259                 name : 'cancel',
3260                 html : 'Cancel'
3261             }
3262         ],
3263         
3264         zIndex : 10001
3265 });
3266 /*
3267  * - LGPL
3268  *
3269  * messagebox - can be used as a replace
3270  * 
3271  */
3272 /**
3273  * @class Roo.MessageBox
3274  * Utility class for generating different styles of message boxes.  The alias Roo.Msg can also be used.
3275  * Example usage:
3276  *<pre><code>
3277 // Basic alert:
3278 Roo.Msg.alert('Status', 'Changes saved successfully.');
3279
3280 // Prompt for user data:
3281 Roo.Msg.prompt('Name', 'Please enter your name:', function(btn, text){
3282     if (btn == 'ok'){
3283         // process text value...
3284     }
3285 });
3286
3287 // Show a dialog using config options:
3288 Roo.Msg.show({
3289    title:'Save Changes?',
3290    msg: 'Your are closing a tab that has unsaved changes. Would you like to save your changes?',
3291    buttons: Roo.Msg.YESNOCANCEL,
3292    fn: processResult,
3293    animEl: 'elId'
3294 });
3295 </code></pre>
3296  * @singleton
3297  */
3298 Roo.bootstrap.MessageBox = function(){
3299     var dlg, opt, mask, waitTimer;
3300     var bodyEl, msgEl, textboxEl, textareaEl, progressEl, pp;
3301     var buttons, activeTextEl, bwidth;
3302
3303     
3304     // private
3305     var handleButton = function(button){
3306         dlg.hide();
3307         Roo.callback(opt.fn, opt.scope||window, [button, activeTextEl.dom.value], 1);
3308     };
3309
3310     // private
3311     var handleHide = function(){
3312         if(opt && opt.cls){
3313             dlg.el.removeClass(opt.cls);
3314         }
3315         //if(waitTimer){
3316         //    Roo.TaskMgr.stop(waitTimer);
3317         //    waitTimer = null;
3318         //}
3319     };
3320
3321     // private
3322     var updateButtons = function(b){
3323         var width = 0;
3324         if(!b){
3325             buttons["ok"].hide();
3326             buttons["cancel"].hide();
3327             buttons["yes"].hide();
3328             buttons["no"].hide();
3329             dlg.footerEl.hide();
3330             
3331             return width;
3332         }
3333         dlg.footerEl.show();
3334         for(var k in buttons){
3335             if(typeof buttons[k] != "function"){
3336                 if(b[k]){
3337                     buttons[k].show();
3338                     buttons[k].setText(typeof b[k] == "string" ? b[k] : Roo.bootstrap.MessageBox.buttonText[k]);
3339                     width += buttons[k].el.getWidth()+15;
3340                 }else{
3341                     buttons[k].hide();
3342                 }
3343             }
3344         }
3345         return width;
3346     };
3347
3348     // private
3349     var handleEsc = function(d, k, e){
3350         if(opt && opt.closable !== false){
3351             dlg.hide();
3352         }
3353         if(e){
3354             e.stopEvent();
3355         }
3356     };
3357
3358     return {
3359         /**
3360          * Returns a reference to the underlying {@link Roo.BasicDialog} element
3361          * @return {Roo.BasicDialog} The BasicDialog element
3362          */
3363         getDialog : function(){
3364            if(!dlg){
3365                 dlg = new Roo.bootstrap.Modal( {
3366                     //draggable: true,
3367                     //resizable:false,
3368                     //constraintoviewport:false,
3369                     //fixedcenter:true,
3370                     //collapsible : false,
3371                     //shim:true,
3372                     //modal: true,
3373                 //    width: 'auto',
3374                   //  height:100,
3375                     //buttonAlign:"center",
3376                     closeClick : function(){
3377                         if(opt && opt.buttons && opt.buttons.no && !opt.buttons.cancel){
3378                             handleButton("no");
3379                         }else{
3380                             handleButton("cancel");
3381                         }
3382                     }
3383                 });
3384                 dlg.render();
3385                 dlg.on("hide", handleHide);
3386                 mask = dlg.mask;
3387                 //dlg.addKeyListener(27, handleEsc);
3388                 buttons = {};
3389                 this.buttons = buttons;
3390                 var bt = this.buttonText;
3391                 buttons["ok"] = dlg.addButton(bt["ok"], handleButton.createCallback("ok"));
3392                 buttons["yes"] = dlg.addButton(bt["yes"], handleButton.createCallback("yes"));
3393                 buttons["no"] = dlg.addButton(bt["no"], handleButton.createCallback("no"));
3394                 buttons["cancel"] = dlg.addButton(bt["cancel"], handleButton.createCallback("cancel"));
3395                 //Roo.log(buttons);
3396                 bodyEl = dlg.bodyEl.createChild({
3397
3398                     html:'<span class="roo-mb-text"></span><br /><input type="text" class="roo-mb-input" />' +
3399                         '<textarea class="roo-mb-textarea"></textarea>' +
3400                         '<div class="roo-mb-progress-wrap"><div class="roo-mb-progress"><div class="roo-mb-progress-bar">&#160;</div></div></div>'
3401                 });
3402                 msgEl = bodyEl.dom.firstChild;
3403                 textboxEl = Roo.get(bodyEl.dom.childNodes[2]);
3404                 textboxEl.enableDisplayMode();
3405                 textboxEl.addKeyListener([10,13], function(){
3406                     if(dlg.isVisible() && opt && opt.buttons){
3407                         if(opt.buttons.ok){
3408                             handleButton("ok");
3409                         }else if(opt.buttons.yes){
3410                             handleButton("yes");
3411                         }
3412                     }
3413                 });
3414                 textareaEl = Roo.get(bodyEl.dom.childNodes[3]);
3415                 textareaEl.enableDisplayMode();
3416                 progressEl = Roo.get(bodyEl.dom.childNodes[4]);
3417                 progressEl.enableDisplayMode();
3418                 
3419                 // This is supposed to be the progessElement.. but I think it's controlling the height of everything..
3420                 var pf = progressEl.dom.firstChild;
3421                 if (pf) {
3422                     pp = Roo.get(pf.firstChild);
3423                     pp.setHeight(pf.offsetHeight);
3424                 }
3425                 
3426             }
3427             return dlg;
3428         },
3429
3430         /**
3431          * Updates the message box body text
3432          * @param {String} text (optional) Replaces the message box element's innerHTML with the specified string (defaults to
3433          * the XHTML-compliant non-breaking space character '&amp;#160;')
3434          * @return {Roo.MessageBox} This message box
3435          */
3436         updateText : function(text)
3437         {
3438             if(!dlg.isVisible() && !opt.width){
3439                 dlg.dialogEl.setStyle({ 'max-width' : this.maxWidth});
3440                 // dlg.resizeTo(this.maxWidth, 100); // forcing the height breaks long alerts()
3441             }
3442             msgEl.innerHTML = text || '&#160;';
3443       
3444             var cw =  Math.max(msgEl.offsetWidth, msgEl.parentNode.scrollWidth);
3445             //Roo.log("guesed size: " + JSON.stringify([cw,msgEl.offsetWidth, msgEl.parentNode.scrollWidth]));
3446             var w = Math.max(
3447                     Math.min(opt.width || cw , this.maxWidth), 
3448                     Math.max(opt.minWidth || this.minWidth, bwidth)
3449             );
3450             if(opt.prompt){
3451                 activeTextEl.setWidth(w);
3452             }
3453             if(dlg.isVisible()){
3454                 dlg.fixedcenter = false;
3455             }
3456             // to big, make it scroll. = But as usual stupid IE does not support
3457             // !important..
3458             
3459             if ( bodyEl.getHeight() > (Roo.lib.Dom.getViewHeight() - 100)) {
3460                 bodyEl.setHeight ( Roo.lib.Dom.getViewHeight() - 100 );
3461                 bodyEl.dom.style.overflowY = 'auto' + ( Roo.isIE ? '' : ' !important');
3462             } else {
3463                 bodyEl.dom.style.height = '';
3464                 bodyEl.dom.style.overflowY = '';
3465             }
3466             if (cw > w) {
3467                 bodyEl.dom.style.get = 'auto' + ( Roo.isIE ? '' : ' !important');
3468             } else {
3469                 bodyEl.dom.style.overflowX = '';
3470             }
3471             
3472             dlg.setContentSize(w, bodyEl.getHeight());
3473             if(dlg.isVisible()){
3474                 dlg.fixedcenter = true;
3475             }
3476             return this;
3477         },
3478
3479         /**
3480          * Updates a progress-style message box's text and progress bar.  Only relevant on message boxes
3481          * initiated via {@link Roo.MessageBox#progress} or by calling {@link Roo.MessageBox#show} with progress: true.
3482          * @param {Number} value Any number between 0 and 1 (e.g., .5)
3483          * @param {String} text (optional) If defined, the message box's body text is replaced with the specified string (defaults to undefined)
3484          * @return {Roo.MessageBox} This message box
3485          */
3486         updateProgress : function(value, text){
3487             if(text){
3488                 this.updateText(text);
3489             }
3490             
3491             if (pp) { // weird bug on my firefox - for some reason this is not defined
3492                 pp.setWidth(Math.floor(value*progressEl.dom.firstChild.offsetWidth));
3493                 pp.setHeight(Math.floor(progressEl.dom.firstChild.offsetHeight));
3494             }
3495             return this;
3496         },        
3497
3498         /**
3499          * Returns true if the message box is currently displayed
3500          * @return {Boolean} True if the message box is visible, else false
3501          */
3502         isVisible : function(){
3503             return dlg && dlg.isVisible();  
3504         },
3505
3506         /**
3507          * Hides the message box if it is displayed
3508          */
3509         hide : function(){
3510             if(this.isVisible()){
3511                 dlg.hide();
3512             }  
3513         },
3514
3515         /**
3516          * Displays a new message box, or reinitializes an existing message box, based on the config options
3517          * passed in. All functions (e.g. prompt, alert, etc) on MessageBox call this function internally.
3518          * The following config object properties are supported:
3519          * <pre>
3520 Property    Type             Description
3521 ----------  ---------------  ------------------------------------------------------------------------------------
3522 animEl            String/Element   An id or Element from which the message box should animate as it opens and
3523                                    closes (defaults to undefined)
3524 buttons           Object/Boolean   A button config object (e.g., Roo.MessageBox.OKCANCEL or {ok:'Foo',
3525                                    cancel:'Bar'}), or false to not show any buttons (defaults to false)
3526 closable          Boolean          False to hide the top-right close button (defaults to true).  Note that
3527                                    progress and wait dialogs will ignore this property and always hide the
3528                                    close button as they can only be closed programmatically.
3529 cls               String           A custom CSS class to apply to the message box element
3530 defaultTextHeight Number           The default height in pixels of the message box's multiline textarea if
3531                                    displayed (defaults to 75)
3532 fn                Function         A callback function to execute after closing the dialog.  The arguments to the
3533                                    function will be btn (the name of the button that was clicked, if applicable,
3534                                    e.g. "ok"), and text (the value of the active text field, if applicable).
3535                                    Progress and wait dialogs will ignore this option since they do not respond to
3536                                    user actions and can only be closed programmatically, so any required function
3537                                    should be called by the same code after it closes the dialog.
3538 icon              String           A CSS class that provides a background image to be used as an icon for
3539                                    the dialog (e.g., Roo.MessageBox.WARNING or 'custom-class', defaults to '')
3540 maxWidth          Number           The maximum width in pixels of the message box (defaults to 600)
3541 minWidth          Number           The minimum width in pixels of the message box (defaults to 100)
3542 modal             Boolean          False to allow user interaction with the page while the message box is
3543                                    displayed (defaults to true)
3544 msg               String           A string that will replace the existing message box body text (defaults
3545                                    to the XHTML-compliant non-breaking space character '&#160;')
3546 multiline         Boolean          True to prompt the user to enter multi-line text (defaults to false)
3547 progress          Boolean          True to display a progress bar (defaults to false)
3548 progressText      String           The text to display inside the progress bar if progress = true (defaults to '')
3549 prompt            Boolean          True to prompt the user to enter single-line text (defaults to false)
3550 proxyDrag         Boolean          True to display a lightweight proxy while dragging (defaults to false)
3551 title             String           The title text
3552 value             String           The string value to set into the active textbox element if displayed
3553 wait              Boolean          True to display a progress bar (defaults to false)
3554 width             Number           The width of the dialog in pixels
3555 </pre>
3556          *
3557          * Example usage:
3558          * <pre><code>
3559 Roo.Msg.show({
3560    title: 'Address',
3561    msg: 'Please enter your address:',
3562    width: 300,
3563    buttons: Roo.MessageBox.OKCANCEL,
3564    multiline: true,
3565    fn: saveAddress,
3566    animEl: 'addAddressBtn'
3567 });
3568 </code></pre>
3569          * @param {Object} config Configuration options
3570          * @return {Roo.MessageBox} This message box
3571          */
3572         show : function(options)
3573         {
3574             
3575             // this causes nightmares if you show one dialog after another
3576             // especially on callbacks..
3577              
3578             if(this.isVisible()){
3579                 
3580                 this.hide();
3581                 Roo.log("[Roo.Messagebox] Show called while message displayed:" );
3582                 Roo.log("Old Dialog Message:" +  msgEl.innerHTML );
3583                 Roo.log("New Dialog Message:" +  options.msg )
3584                 //this.alert("ERROR", "Multiple dialogs where displayed at the same time");
3585                 //throw "Roo.MessageBox ERROR : Multiple dialogs where displayed at the same time";
3586                 
3587             }
3588             var d = this.getDialog();
3589             opt = options;
3590             d.setTitle(opt.title || "&#160;");
3591             d.closeEl.setDisplayed(opt.closable !== false);
3592             activeTextEl = textboxEl;
3593             opt.prompt = opt.prompt || (opt.multiline ? true : false);
3594             if(opt.prompt){
3595                 if(opt.multiline){
3596                     textboxEl.hide();
3597                     textareaEl.show();
3598                     textareaEl.setHeight(typeof opt.multiline == "number" ?
3599                         opt.multiline : this.defaultTextHeight);
3600                     activeTextEl = textareaEl;
3601                 }else{
3602                     textboxEl.show();
3603                     textareaEl.hide();
3604                 }
3605             }else{
3606                 textboxEl.hide();
3607                 textareaEl.hide();
3608             }
3609             progressEl.setDisplayed(opt.progress === true);
3610             if (opt.progress) {
3611                 d.animate = false; // do not animate progress, as it may not have finished animating before we close it..
3612             }
3613             this.updateProgress(0);
3614             activeTextEl.dom.value = opt.value || "";
3615             if(opt.prompt){
3616                 dlg.setDefaultButton(activeTextEl);
3617             }else{
3618                 var bs = opt.buttons;
3619                 var db = null;
3620                 if(bs && bs.ok){
3621                     db = buttons["ok"];
3622                 }else if(bs && bs.yes){
3623                     db = buttons["yes"];
3624                 }
3625                 dlg.setDefaultButton(db);
3626             }
3627             bwidth = updateButtons(opt.buttons);
3628             this.updateText(opt.msg);
3629             if(opt.cls){
3630                 d.el.addClass(opt.cls);
3631             }
3632             d.proxyDrag = opt.proxyDrag === true;
3633             d.modal = opt.modal !== false;
3634             d.mask = opt.modal !== false ? mask : false;
3635             if(!d.isVisible()){
3636                 // force it to the end of the z-index stack so it gets a cursor in FF
3637                 document.body.appendChild(dlg.el.dom);
3638                 d.animateTarget = null;
3639                 d.show(options.animEl);
3640             }
3641             return this;
3642         },
3643
3644         /**
3645          * Displays a message box with a progress bar.  This message box has no buttons and is not closeable by
3646          * the user.  You are responsible for updating the progress bar as needed via {@link Roo.MessageBox#updateProgress}
3647          * and closing the message box when the process is complete.
3648          * @param {String} title The title bar text
3649          * @param {String} msg The message box body text
3650          * @return {Roo.MessageBox} This message box
3651          */
3652         progress : function(title, msg){
3653             this.show({
3654                 title : title,
3655                 msg : msg,
3656                 buttons: false,
3657                 progress:true,
3658                 closable:false,
3659                 minWidth: this.minProgressWidth,
3660                 modal : true
3661             });
3662             return this;
3663         },
3664
3665         /**
3666          * Displays a standard read-only message box with an OK button (comparable to the basic JavaScript Window.alert).
3667          * If a callback function is passed it will be called after the user clicks the button, and the
3668          * id of the button that was clicked will be passed as the only parameter to the callback
3669          * (could also be the top-right close button).
3670          * @param {String} title The title bar text
3671          * @param {String} msg The message box body text
3672          * @param {Function} fn (optional) The callback function invoked after the message box is closed
3673          * @param {Object} scope (optional) The scope of the callback function
3674          * @return {Roo.MessageBox} This message box
3675          */
3676         alert : function(title, msg, fn, scope)
3677         {
3678             this.show({
3679                 title : title,
3680                 msg : msg,
3681                 buttons: this.OK,
3682                 fn: fn,
3683                 closable : false,
3684                 scope : scope,
3685                 modal : true
3686             });
3687             return this;
3688         },
3689
3690         /**
3691          * Displays a message box with an infinitely auto-updating progress bar.  This can be used to block user
3692          * interaction while waiting for a long-running process to complete that does not have defined intervals.
3693          * You are responsible for closing the message box when the process is complete.
3694          * @param {String} msg The message box body text
3695          * @param {String} title (optional) The title bar text
3696          * @return {Roo.MessageBox} This message box
3697          */
3698         wait : function(msg, title){
3699             this.show({
3700                 title : title,
3701                 msg : msg,
3702                 buttons: false,
3703                 closable:false,
3704                 progress:true,
3705                 modal:true,
3706                 width:300,
3707                 wait:true
3708             });
3709             waitTimer = Roo.TaskMgr.start({
3710                 run: function(i){
3711                     Roo.MessageBox.updateProgress(((((i+20)%20)+1)*5)*.01);
3712                 },
3713                 interval: 1000
3714             });
3715             return this;
3716         },
3717
3718         /**
3719          * Displays a confirmation message box with Yes and No buttons (comparable to JavaScript's Window.confirm).
3720          * If a callback function is passed it will be called after the user clicks either button, and the id of the
3721          * button that was clicked will be passed as the only parameter to the callback (could also be the top-right close button).
3722          * @param {String} title The title bar text
3723          * @param {String} msg The message box body text
3724          * @param {Function} fn (optional) The callback function invoked after the message box is closed
3725          * @param {Object} scope (optional) The scope of the callback function
3726          * @return {Roo.MessageBox} This message box
3727          */
3728         confirm : function(title, msg, fn, scope){
3729             this.show({
3730                 title : title,
3731                 msg : msg,
3732                 buttons: this.YESNO,
3733                 fn: fn,
3734                 scope : scope,
3735                 modal : true
3736             });
3737             return this;
3738         },
3739
3740         /**
3741          * Displays a message box with OK and Cancel buttons prompting the user to enter some text (comparable to
3742          * JavaScript's Window.prompt).  The prompt can be a single-line or multi-line textbox.  If a callback function
3743          * is passed it will be called after the user clicks either button, and the id of the button that was clicked
3744          * (could also be the top-right close button) and the text that was entered will be passed as the two
3745          * parameters to the callback.
3746          * @param {String} title The title bar text
3747          * @param {String} msg The message box body text
3748          * @param {Function} fn (optional) The callback function invoked after the message box is closed
3749          * @param {Object} scope (optional) The scope of the callback function
3750          * @param {Boolean/Number} multiline (optional) True to create a multiline textbox using the defaultTextHeight
3751          * property, or the height in pixels to create the textbox (defaults to false / single-line)
3752          * @return {Roo.MessageBox} This message box
3753          */
3754         prompt : function(title, msg, fn, scope, multiline){
3755             this.show({
3756                 title : title,
3757                 msg : msg,
3758                 buttons: this.OKCANCEL,
3759                 fn: fn,
3760                 minWidth:250,
3761                 scope : scope,
3762                 prompt:true,
3763                 multiline: multiline,
3764                 modal : true
3765             });
3766             return this;
3767         },
3768
3769         /**
3770          * Button config that displays a single OK button
3771          * @type Object
3772          */
3773         OK : {ok:true},
3774         /**
3775          * Button config that displays Yes and No buttons
3776          * @type Object
3777          */
3778         YESNO : {yes:true, no:true},
3779         /**
3780          * Button config that displays OK and Cancel buttons
3781          * @type Object
3782          */
3783         OKCANCEL : {ok:true, cancel:true},
3784         /**
3785          * Button config that displays Yes, No and Cancel buttons
3786          * @type Object
3787          */
3788         YESNOCANCEL : {yes:true, no:true, cancel:true},
3789
3790         /**
3791          * The default height in pixels of the message box's multiline textarea if displayed (defaults to 75)
3792          * @type Number
3793          */
3794         defaultTextHeight : 75,
3795         /**
3796          * The maximum width in pixels of the message box (defaults to 600)
3797          * @type Number
3798          */
3799         maxWidth : 600,
3800         /**
3801          * The minimum width in pixels of the message box (defaults to 100)
3802          * @type Number
3803          */
3804         minWidth : 100,
3805         /**
3806          * The minimum width in pixels of the message box if it is a progress-style dialog.  This is useful
3807          * for setting a different minimum width than text-only dialogs may need (defaults to 250)
3808          * @type Number
3809          */
3810         minProgressWidth : 250,
3811         /**
3812          * An object containing the default button text strings that can be overriden for localized language support.
3813          * Supported properties are: ok, cancel, yes and no.
3814          * Customize the default text like so: Roo.MessageBox.buttonText.yes = "S?";
3815          * @type Object
3816          */
3817         buttonText : {
3818             ok : "OK",
3819             cancel : "Cancel",
3820             yes : "Yes",
3821             no : "No"
3822         }
3823     };
3824 }();
3825
3826 /**
3827  * Shorthand for {@link Roo.MessageBox}
3828  */
3829 Roo.MessageBox = Roo.MessageBox || Roo.bootstrap.MessageBox;
3830 Roo.Msg = Roo.Msg || Roo.MessageBox;
3831 /*
3832  * - LGPL
3833  *
3834  * navbar
3835  * 
3836  */
3837
3838 /**
3839  * @class Roo.bootstrap.Navbar
3840  * @extends Roo.bootstrap.Component
3841  * Bootstrap Navbar class
3842
3843  * @constructor
3844  * Create a new Navbar
3845  * @param {Object} config The config object
3846  */
3847
3848
3849 Roo.bootstrap.Navbar = function(config){
3850     Roo.bootstrap.Navbar.superclass.constructor.call(this, config);
3851     this.addEvents({
3852         // raw events
3853         /**
3854          * @event beforetoggle
3855          * Fire before toggle the menu
3856          * @param {Roo.EventObject} e
3857          */
3858         "beforetoggle" : true
3859     });
3860 };
3861
3862 Roo.extend(Roo.bootstrap.Navbar, Roo.bootstrap.Component,  {
3863     
3864     
3865    
3866     // private
3867     navItems : false,
3868     loadMask : false,
3869     
3870     
3871     getAutoCreate : function(){
3872         
3873         
3874         throw { message : "nav bar is now a abstract base class - use NavSimplebar / NavHeaderbar / NavSidebar etc..."};
3875         
3876     },
3877     
3878     initEvents :function ()
3879     {
3880         //Roo.log(this.el.select('.navbar-toggle',true));
3881         this.el.select('.navbar-toggle',true).on('click', this.onToggle , this);
3882         
3883         var mark = {
3884             tag: "div",
3885             cls:"x-dlg-mask"
3886         };
3887         
3888         this.maskEl = Roo.DomHelper.append(this.el, mark, true);
3889         
3890         var size = this.el.getSize();
3891         this.maskEl.setSize(size.width, size.height);
3892         this.maskEl.enableDisplayMode("block");
3893         this.maskEl.hide();
3894         
3895         if(this.loadMask){
3896             this.maskEl.show();
3897         }
3898     },
3899     
3900     
3901     getChildContainer : function()
3902     {
3903         if (this.el && this.el.select('.collapse').getCount()) {
3904             return this.el.select('.collapse',true).first();
3905         }
3906         
3907         return this.el;
3908     },
3909     
3910     mask : function()
3911     {
3912         this.maskEl.show();
3913     },
3914     
3915     unmask : function()
3916     {
3917         this.maskEl.hide();
3918     },
3919     onToggle : function()
3920     {
3921         
3922         if(this.fireEvent('beforetoggle', this) === false){
3923             return;
3924         }
3925         var ce = this.el.select('.navbar-collapse',true).first();
3926       
3927         if (!ce.hasClass('show')) {
3928            this.expand();
3929         } else {
3930             this.collapse();
3931         }
3932         
3933         
3934     
3935     },
3936     /**
3937      * Expand the navbar pulldown 
3938      */
3939     expand : function ()
3940     {
3941        
3942         var ce = this.el.select('.navbar-collapse',true).first();
3943         if (ce.hasClass('collapsing')) {
3944             return;
3945         }
3946         ce.dom.style.height = '';
3947                // show it...
3948         ce.addClass('in'); // old...
3949         ce.removeClass('collapse');
3950         ce.addClass('show');
3951         var h = ce.getHeight();
3952         Roo.log(h);
3953         ce.removeClass('show');
3954         // at this point we should be able to see it..
3955         ce.addClass('collapsing');
3956         
3957         ce.setHeight(0); // resize it ...
3958         ce.on('transitionend', function() {
3959             //Roo.log('done transition');
3960             ce.removeClass('collapsing');
3961             ce.addClass('show');
3962             ce.removeClass('collapse');
3963
3964             ce.dom.style.height = '';
3965         }, this, { single: true} );
3966         ce.setHeight(h);
3967         ce.dom.scrollTop = 0;
3968     },
3969     /**
3970      * Collapse the navbar pulldown 
3971      */
3972     collapse : function()
3973     {
3974          var ce = this.el.select('.navbar-collapse',true).first();
3975        
3976         if (ce.hasClass('collapsing') || ce.hasClass('collapse') ) {
3977             // it's collapsed or collapsing..
3978             return;
3979         }
3980         ce.removeClass('in'); // old...
3981         ce.setHeight(ce.getHeight());
3982         ce.removeClass('show');
3983         ce.addClass('collapsing');
3984         
3985         ce.on('transitionend', function() {
3986             ce.dom.style.height = '';
3987             ce.removeClass('collapsing');
3988             ce.addClass('collapse');
3989         }, this, { single: true} );
3990         ce.setHeight(0);
3991     }
3992     
3993     
3994     
3995 });
3996
3997
3998
3999  
4000
4001  /*
4002  * - LGPL
4003  *
4004  * navbar
4005  * 
4006  */
4007
4008 /**
4009  * @class Roo.bootstrap.NavSimplebar
4010  * @extends Roo.bootstrap.Navbar
4011  * Bootstrap Sidebar class
4012  *
4013  * @cfg {Boolean} inverse is inverted color
4014  * 
4015  * @cfg {String} type (nav | pills | tabs)
4016  * @cfg {Boolean} arrangement stacked | justified
4017  * @cfg {String} align (left | right) alignment
4018  * 
4019  * @cfg {Boolean} main (true|false) main nav bar? default false
4020  * @cfg {Boolean} loadMask (true|false) loadMask on the bar
4021  * 
4022  * @cfg {String} tag (header|footer|nav|div) default is nav 
4023
4024  * @cfg {String} weight (light|primary|secondary|success|danger|warning|info|dark|white) default is light.
4025  * 
4026  * 
4027  * @constructor
4028  * Create a new Sidebar
4029  * @param {Object} config The config object
4030  */
4031
4032
4033 Roo.bootstrap.NavSimplebar = function(config){
4034     Roo.bootstrap.NavSimplebar.superclass.constructor.call(this, config);
4035 };
4036
4037 Roo.extend(Roo.bootstrap.NavSimplebar, Roo.bootstrap.Navbar,  {
4038     
4039     inverse: false,
4040     
4041     type: false,
4042     arrangement: '',
4043     align : false,
4044     
4045     weight : 'light',
4046     
4047     main : false,
4048     
4049     
4050     tag : false,
4051     
4052     
4053     getAutoCreate : function(){
4054         
4055         
4056         var cfg = {
4057             tag : this.tag || 'div',
4058             cls : 'navbar navbar-expand-lg roo-navbar-simple'
4059         };
4060         if (['light','white'].indexOf(this.weight) > -1) {
4061             cfg.cls += ['light','white'].indexOf(this.weight) > -1 ? ' navbar-light' : ' navbar-dark';
4062         }
4063         cfg.cls += ' bg-' + this.weight;
4064         
4065         if (this.inverse) {
4066             cfg.cls += ' navbar-inverse';
4067             
4068         }
4069         
4070         // i'm not actually sure these are really used - normally we add a navGroup to a navbar
4071         
4072         if (Roo.bootstrap.version == 4) {
4073              cfg.cn = [
4074                 {
4075                     tag : 'span'
4076                 }
4077             ];
4078         
4079              return cfg;
4080         }
4081         
4082         
4083     
4084         
4085         cfg.cn = [
4086             {
4087                 cls: 'nav',
4088                 tag : 'ul'
4089             }
4090         ];
4091         
4092          
4093         this.type = this.type || 'nav';
4094         if (['tabs','pills'].indexOf(this.type) != -1) {
4095             cfg.cn[0].cls += ' nav-' + this.type
4096         
4097         
4098         } else {
4099             if (this.type!=='nav') {
4100                 Roo.log('nav type must be nav/tabs/pills')
4101             }
4102             cfg.cn[0].cls += ' navbar-nav'
4103         }
4104         
4105         
4106         
4107         
4108         if (['stacked','justified'].indexOf(this.arrangement) != -1) {
4109             cfg.cn[0].cls += ' nav-' + this.arrangement;
4110         }
4111         
4112         
4113         if (this.align === 'right') {
4114             cfg.cn[0].cls += ' navbar-right';
4115         }
4116         
4117         
4118         
4119         
4120         return cfg;
4121     
4122         
4123     }
4124     
4125     
4126     
4127 });
4128
4129
4130
4131  
4132
4133  
4134        /*
4135  * - LGPL
4136  *
4137  * navbar
4138  * navbar-fixed-top
4139  * navbar-expand-md  fixed-top 
4140  */
4141
4142 /**
4143  * @class Roo.bootstrap.NavHeaderbar
4144  * @extends Roo.bootstrap.NavSimplebar
4145  * Bootstrap Sidebar class
4146  *
4147  * @cfg {String} brand what is brand
4148  * @cfg {String} position (fixed-top|fixed-bottom|static-top) position
4149  * @cfg {String} brand_href href of the brand
4150  * @cfg {Boolean} srButton generate the (screen reader / mobile) sr-only button   default true
4151  * @cfg {Boolean} autohide a top nav bar header that hides on scroll.
4152  * @cfg {Boolean} desktopCenter should the header be centered on desktop using a container class
4153  * @cfg {Roo.bootstrap.Row} mobilerow - a row to display on mobile only..
4154  * 
4155  * @constructor
4156  * Create a new Sidebar
4157  * @param {Object} config The config object
4158  */
4159
4160
4161 Roo.bootstrap.NavHeaderbar = function(config){
4162     Roo.bootstrap.NavHeaderbar.superclass.constructor.call(this, config);
4163       
4164 };
4165
4166 Roo.extend(Roo.bootstrap.NavHeaderbar, Roo.bootstrap.NavSimplebar,  {
4167     
4168     position: '',
4169     brand: '',
4170     brand_href: false,
4171     srButton : true,
4172     autohide : false,
4173     desktopCenter : false,
4174    
4175     
4176     getAutoCreate : function(){
4177         
4178         var   cfg = {
4179             tag: this.nav || 'nav',
4180             cls: 'navbar navbar-expand-md',
4181             role: 'navigation',
4182             cn: []
4183         };
4184         
4185         var cn = cfg.cn;
4186         if (this.desktopCenter) {
4187             cn.push({cls : 'container', cn : []});
4188             cn = cn[0].cn;
4189         }
4190         
4191         if(this.srButton){
4192             var btn = {
4193                 tag: 'button',
4194                 type: 'button',
4195                 cls: 'navbar-toggle navbar-toggler',
4196                 'data-toggle': 'collapse',
4197                 cn: [
4198                     {
4199                         tag: 'span',
4200                         cls: 'sr-only',
4201                         html: 'Toggle navigation'
4202                     },
4203                     {
4204                         tag: 'span',
4205                         cls: 'icon-bar navbar-toggler-icon'
4206                     },
4207                     {
4208                         tag: 'span',
4209                         cls: 'icon-bar'
4210                     },
4211                     {
4212                         tag: 'span',
4213                         cls: 'icon-bar'
4214                     }
4215                 ]
4216             };
4217             
4218             cn.push( Roo.bootstrap.version == 4 ? btn : {
4219                 tag: 'div',
4220                 cls: 'navbar-header',
4221                 cn: [
4222                     btn
4223                 ]
4224             });
4225         }
4226         
4227         cn.push({
4228             tag: 'div',
4229             cls: 'collapse navbar-collapse',
4230             cn : []
4231         });
4232         
4233         cfg.cls += this.inverse ? ' navbar-inverse navbar-dark bg-dark' : ' navbar-default';
4234         
4235         if (['light','white'].indexOf(this.weight) > -1) {
4236             cfg.cls += ['light','white'].indexOf(this.weight) > -1 ? ' navbar-light' : ' navbar-dark';
4237         }
4238         cfg.cls += ' bg-' + this.weight;
4239         
4240         
4241         if (['fixed-top','fixed-bottom','static-top'].indexOf(this.position)>-1) {
4242             cfg.cls += ' navbar-' + this.position + ' ' + this.position ;
4243             
4244             // tag can override this..
4245             
4246             cfg.tag = this.tag || (this.position  == 'fixed-bottom' ? 'footer' : 'header');
4247         }
4248         
4249         if (this.brand !== '') {
4250             var cp =  Roo.bootstrap.version == 4 ? cn : cn[0].cn;
4251             cp.unshift({ // changed from push ?? BS4 needs it at the start? - does this break or exsiting?
4252                 tag: 'a',
4253                 href: this.brand_href ? this.brand_href : '#',
4254                 cls: 'navbar-brand',
4255                 cn: [
4256                 this.brand
4257                 ]
4258             });
4259         }
4260         
4261         if(this.main){
4262             cfg.cls += ' main-nav';
4263         }
4264         
4265         
4266         return cfg;
4267
4268         
4269     },
4270     getHeaderChildContainer : function()
4271     {
4272         if (this.srButton && this.el.select('.navbar-header').getCount()) {
4273             return this.el.select('.navbar-header',true).first();
4274         }
4275         
4276         return this.getChildContainer();
4277     },
4278     
4279     
4280     initEvents : function()
4281     {
4282         Roo.bootstrap.NavHeaderbar.superclass.initEvents.call(this);
4283         
4284         if (this.autohide) {
4285             
4286             var prevScroll = 0;
4287             var ft = this.el;
4288             
4289             Roo.get(document).on('scroll',function(e) {
4290                 var ns = Roo.get(document).getScroll().top;
4291                 var os = prevScroll;
4292                 prevScroll = ns;
4293                 
4294                 if(ns > os){
4295                     ft.removeClass('slideDown');
4296                     ft.addClass('slideUp');
4297                     return;
4298                 }
4299                 ft.removeClass('slideUp');
4300                 ft.addClass('slideDown');
4301                  
4302               
4303           },this);
4304         }
4305     }    
4306     
4307 });
4308
4309
4310
4311  
4312
4313  /*
4314  * - LGPL
4315  *
4316  * navbar
4317  * 
4318  */
4319
4320 /**
4321  * @class Roo.bootstrap.NavSidebar
4322  * @extends Roo.bootstrap.Navbar
4323  * Bootstrap Sidebar class
4324  * 
4325  * @constructor
4326  * Create a new Sidebar
4327  * @param {Object} config The config object
4328  */
4329
4330
4331 Roo.bootstrap.NavSidebar = function(config){
4332     Roo.bootstrap.NavSidebar.superclass.constructor.call(this, config);
4333 };
4334
4335 Roo.extend(Roo.bootstrap.NavSidebar, Roo.bootstrap.Navbar,  {
4336     
4337     sidebar : true, // used by Navbar Item and NavbarGroup at present...
4338     
4339     getAutoCreate : function(){
4340         
4341         
4342         return  {
4343             tag: 'div',
4344             cls: 'sidebar sidebar-nav'
4345         };
4346     
4347         
4348     }
4349     
4350     
4351     
4352 });
4353
4354
4355
4356  
4357
4358  /*
4359  * - LGPL
4360  *
4361  * nav group
4362  * 
4363  */
4364
4365 /**
4366  * @class Roo.bootstrap.NavGroup
4367  * @extends Roo.bootstrap.Component
4368  * Bootstrap NavGroup class
4369  * @cfg {String} align (left|right)
4370  * @cfg {Boolean} inverse
4371  * @cfg {String} type (nav|pills|tab) default nav
4372  * @cfg {String} navId - reference Id for navbar.
4373
4374  * 
4375  * @constructor
4376  * Create a new nav group
4377  * @param {Object} config The config object
4378  */
4379
4380 Roo.bootstrap.NavGroup = function(config){
4381     Roo.bootstrap.NavGroup.superclass.constructor.call(this, config);
4382     this.navItems = [];
4383    
4384     Roo.bootstrap.NavGroup.register(this);
4385      this.addEvents({
4386         /**
4387              * @event changed
4388              * Fires when the active item changes
4389              * @param {Roo.bootstrap.NavGroup} this
4390              * @param {Roo.bootstrap.Navbar.Item} selected The item selected
4391              * @param {Roo.bootstrap.Navbar.Item} prev The previously selected item 
4392          */
4393         'changed': true
4394      });
4395     
4396 };
4397
4398 Roo.extend(Roo.bootstrap.NavGroup, Roo.bootstrap.Component,  {
4399     
4400     align: '',
4401     inverse: false,
4402     form: false,
4403     type: 'nav',
4404     navId : '',
4405     // private
4406     
4407     navItems : false, 
4408     
4409     getAutoCreate : function()
4410     {
4411         var cfg = Roo.apply({}, Roo.bootstrap.NavGroup.superclass.getAutoCreate.call(this));
4412         
4413         cfg = {
4414             tag : 'ul',
4415             cls: 'nav' 
4416         };
4417         if (Roo.bootstrap.version == 4) {
4418             if (['tabs','pills'].indexOf(this.type) != -1) {
4419                 cfg.cls += ' nav-' + this.type; 
4420             } else {
4421                 cfg.cls += ' navbar-nav';
4422             }
4423         } else {
4424             if (['tabs','pills'].indexOf(this.type) != -1) {
4425                 cfg.cls += ' nav-' + this.type
4426             } else {
4427                 if (this.type !== 'nav') {
4428                     Roo.log('nav type must be nav/tabs/pills')
4429                 }
4430                 cfg.cls += ' navbar-nav'
4431             }
4432         }
4433         
4434         if (this.parent() && this.parent().sidebar) {
4435             cfg = {
4436                 tag: 'ul',
4437                 cls: 'dashboard-menu sidebar-menu'
4438             };
4439             
4440             return cfg;
4441         }
4442         
4443         if (this.form === true) {
4444             cfg = {
4445                 tag: 'form',
4446                 cls: 'navbar-form form-inline'
4447             };
4448             
4449             if (this.align === 'right') {
4450                 cfg.cls += ' navbar-right ml-md-auto';
4451             } else {
4452                 cfg.cls += ' navbar-left';
4453             }
4454         }
4455         
4456         if (this.align === 'right') {
4457             cfg.cls += ' navbar-right ml-md-auto';
4458         } else {
4459             cfg.cls += ' mr-auto';
4460         }
4461         
4462         if (this.inverse) {
4463             cfg.cls += ' navbar-inverse';
4464             
4465         }
4466         
4467         
4468         return cfg;
4469     },
4470     /**
4471     * sets the active Navigation item
4472     * @param {Roo.bootstrap.NavItem} the new current navitem
4473     */
4474     setActiveItem : function(item)
4475     {
4476         var prev = false;
4477         Roo.each(this.navItems, function(v){
4478             if (v == item) {
4479                 return ;
4480             }
4481             if (v.isActive()) {
4482                 v.setActive(false, true);
4483                 prev = v;
4484                 
4485             }
4486             
4487         });
4488
4489         item.setActive(true, true);
4490         this.fireEvent('changed', this, item, prev);
4491         
4492         
4493     },
4494     /**
4495     * gets the active Navigation item
4496     * @return {Roo.bootstrap.NavItem} the current navitem
4497     */
4498     getActive : function()
4499     {
4500         
4501         var prev = false;
4502         Roo.each(this.navItems, function(v){
4503             
4504             if (v.isActive()) {
4505                 prev = v;
4506                 
4507             }
4508             
4509         });
4510         return prev;
4511     },
4512     
4513     indexOfNav : function()
4514     {
4515         
4516         var prev = false;
4517         Roo.each(this.navItems, function(v,i){
4518             
4519             if (v.isActive()) {
4520                 prev = i;
4521                 
4522             }
4523             
4524         });
4525         return prev;
4526     },
4527     /**
4528     * adds a Navigation item
4529     * @param {Roo.bootstrap.NavItem} the navitem to add
4530     */
4531     addItem : function(cfg)
4532     {
4533         if (this.form && Roo.bootstrap.version == 4) {
4534             cfg.tag = 'div';
4535         }
4536         var cn = new Roo.bootstrap.NavItem(cfg);
4537         this.register(cn);
4538         cn.parentId = this.id;
4539         cn.onRender(this.el, null);
4540         return cn;
4541     },
4542     /**
4543     * register a Navigation item
4544     * @param {Roo.bootstrap.NavItem} the navitem to add
4545     */
4546     register : function(item)
4547     {
4548         this.navItems.push( item);
4549         item.navId = this.navId;
4550     
4551     },
4552     
4553     /**
4554     * clear all the Navigation item
4555     */
4556    
4557     clearAll : function()
4558     {
4559         this.navItems = [];
4560         this.el.dom.innerHTML = '';
4561     },
4562     
4563     getNavItem: function(tabId)
4564     {
4565         var ret = false;
4566         Roo.each(this.navItems, function(e) {
4567             if (e.tabId == tabId) {
4568                ret =  e;
4569                return false;
4570             }
4571             return true;
4572             
4573         });
4574         return ret;
4575     },
4576     
4577     setActiveNext : function()
4578     {
4579         var i = this.indexOfNav(this.getActive());
4580         if (i > this.navItems.length) {
4581             return;
4582         }
4583         this.setActiveItem(this.navItems[i+1]);
4584     },
4585     setActivePrev : function()
4586     {
4587         var i = this.indexOfNav(this.getActive());
4588         if (i  < 1) {
4589             return;
4590         }
4591         this.setActiveItem(this.navItems[i-1]);
4592     },
4593     clearWasActive : function(except) {
4594         Roo.each(this.navItems, function(e) {
4595             if (e.tabId != except.tabId && e.was_active) {
4596                e.was_active = false;
4597                return false;
4598             }
4599             return true;
4600             
4601         });
4602     },
4603     getWasActive : function ()
4604     {
4605         var r = false;
4606         Roo.each(this.navItems, function(e) {
4607             if (e.was_active) {
4608                r = e;
4609                return false;
4610             }
4611             return true;
4612             
4613         });
4614         return r;
4615     }
4616     
4617     
4618 });
4619
4620  
4621 Roo.apply(Roo.bootstrap.NavGroup, {
4622     
4623     groups: {},
4624      /**
4625     * register a Navigation Group
4626     * @param {Roo.bootstrap.NavGroup} the navgroup to add
4627     */
4628     register : function(navgrp)
4629     {
4630         this.groups[navgrp.navId] = navgrp;
4631         
4632     },
4633     /**
4634     * fetch a Navigation Group based on the navigation ID
4635     * @param {string} the navgroup to add
4636     * @returns {Roo.bootstrap.NavGroup} the navgroup 
4637     */
4638     get: function(navId) {
4639         if (typeof(this.groups[navId]) == 'undefined') {
4640             return false;
4641             //this.register(new Roo.bootstrap.NavGroup({ navId : navId }));
4642         }
4643         return this.groups[navId] ;
4644     }
4645     
4646     
4647     
4648 });
4649
4650  /*
4651  * - LGPL
4652  *
4653  * row
4654  * 
4655  */
4656
4657 /**
4658  * @class Roo.bootstrap.NavItem
4659  * @extends Roo.bootstrap.Component
4660  * Bootstrap Navbar.NavItem class
4661  * @cfg {String} href  link to
4662  * @cfg {String} button_weight (default | primary | secondary | success | info | warning | danger | link ) default none
4663
4664  * @cfg {String} html content of button
4665  * @cfg {String} badge text inside badge
4666  * @cfg {String} badgecls (bg-green|bg-red|bg-yellow)the extra classes for the badge
4667  * @cfg {String} glyphicon DEPRICATED - use fa
4668  * @cfg {String} icon DEPRICATED - use fa
4669  * @cfg {String} fa - Fontawsome icon name (can add stuff to it like fa-2x)
4670  * @cfg {Boolean} active Is item active
4671  * @cfg {Boolean} disabled Is item disabled
4672  
4673  * @cfg {Boolean} preventDefault (true | false) default false
4674  * @cfg {String} tabId the tab that this item activates.
4675  * @cfg {String} tagtype (a|span) render as a href or span?
4676  * @cfg {Boolean} animateRef (true|false) link to element default false  
4677   
4678  * @constructor
4679  * Create a new Navbar Item
4680  * @param {Object} config The config object
4681  */
4682 Roo.bootstrap.NavItem = function(config){
4683     Roo.bootstrap.NavItem.superclass.constructor.call(this, config);
4684     this.addEvents({
4685         // raw events
4686         /**
4687          * @event click
4688          * The raw click event for the entire grid.
4689          * @param {Roo.EventObject} e
4690          */
4691         "click" : true,
4692          /**
4693             * @event changed
4694             * Fires when the active item active state changes
4695             * @param {Roo.bootstrap.NavItem} this
4696             * @param {boolean} state the new state
4697              
4698          */
4699         'changed': true,
4700         /**
4701             * @event scrollto
4702             * Fires when scroll to element
4703             * @param {Roo.bootstrap.NavItem} this
4704             * @param {Object} options
4705             * @param {Roo.EventObject} e
4706              
4707          */
4708         'scrollto': true
4709     });
4710    
4711 };
4712
4713 Roo.extend(Roo.bootstrap.NavItem, Roo.bootstrap.Component,  {
4714     
4715     href: false,
4716     html: '',
4717     badge: '',
4718     icon: false,
4719     fa : false,
4720     glyphicon: false,
4721     active: false,
4722     preventDefault : false,
4723     tabId : false,
4724     tagtype : 'a',
4725     tag: 'li',
4726     disabled : false,
4727     animateRef : false,
4728     was_active : false,
4729     button_weight : '',
4730     button_outline : false,
4731     
4732     navLink: false,
4733     
4734     getAutoCreate : function(){
4735          
4736         var cfg = {
4737             tag: this.tag,
4738             cls: 'nav-item'
4739         };
4740         
4741         if (this.active) {
4742             cfg.cls = typeof(cfg.cls) == 'undefined' ? 'active' : cfg.cls + ' active';
4743         }
4744         if (this.disabled) {
4745             cfg.cls += ' disabled';
4746         }
4747         
4748         // BS4 only?
4749         if (this.button_weight.length) {
4750             cfg.tag = this.href ? 'a' : 'button';
4751             cfg.html = this.html || '';
4752             cfg.cls += ' btn btn' + (this.button_outline ? '-outline' : '') + '-' + this.button_weight;
4753             if (this.href) {
4754                 cfg.href = this.href;
4755             }
4756             if (this.fa) {
4757                 cfg.html = '<i class="fa fas fa-'+this.fa+'"></i> <span>' + this.html + '</span>';
4758             }
4759             
4760             // menu .. should add dropdown-menu class - so no need for carat..
4761             
4762             if (this.badge !== '') {
4763                  
4764                 cfg.html += ' <span class="badge badge-secondary">' + this.badge + '</span>';
4765             }
4766             return cfg;
4767         }
4768         
4769         if (this.href || this.html || this.glyphicon || this.icon || this.fa) {
4770             cfg.cn = [
4771                 {
4772                     tag: this.tagtype,
4773                     href : this.href || "#",
4774                     html: this.html || ''
4775                 }
4776             ];
4777             if (this.tagtype == 'a') {
4778                 cfg.cn[0].cls = 'nav-link';
4779             }
4780             if (this.icon) {
4781                 cfg.cn[0].html = '<i class="'+this.icon+'"></i> <span>' + cfg.cn[0].html + '</span>';
4782             }
4783             if (this.fa) {
4784                 cfg.cn[0].html = '<i class="fa fas fa-'+this.fa+'"></i> <span>' + cfg.cn[0].html + '</span>';
4785             }
4786             if(this.glyphicon) {
4787                 cfg.cn[0].html = '<span class="glyphicon glyphicon-' + this.glyphicon + '"></span> '  + cfg.cn[0].html;
4788             }
4789             
4790             if (this.menu) {
4791                 
4792                 cfg.cn[0].html += " <span class='caret'></span>";
4793              
4794             }
4795             
4796             if (this.badge !== '') {
4797                  
4798                 cfg.cn[0].html += ' <span class="badge badge-secondary">' + this.badge + '</span>';
4799             }
4800         }
4801         
4802         
4803         
4804         return cfg;
4805     },
4806     onRender : function(ct, position)
4807     {
4808        // Roo.log("Call onRender: " + this.xtype);
4809         if (Roo.bootstrap.version == 4 && ct.dom.type != 'ul') {
4810             this.tag = 'div';
4811         }
4812         
4813         var ret = Roo.bootstrap.NavItem.superclass.onRender.call(this, ct, position);
4814         this.navLink = this.el.select('.nav-link',true).first();
4815         return ret;
4816     },
4817       
4818     
4819     initEvents: function() 
4820     {
4821         if (typeof (this.menu) != 'undefined') {
4822             this.menu.parentType = this.xtype;
4823             this.menu.triggerEl = this.el;
4824             this.menu = this.addxtype(Roo.apply({}, this.menu));
4825         }
4826         
4827         this.el.select('a',true).on('click', this.onClick, this);
4828         
4829         if(this.tagtype == 'span'){
4830             this.el.select('span',true).on('click', this.onClick, this);
4831         }
4832        
4833         // at this point parent should be available..
4834         this.parent().register(this);
4835     },
4836     
4837     onClick : function(e)
4838     {
4839         if (e.getTarget('.dropdown-menu-item')) {
4840             // did you click on a menu itemm.... - then don't trigger onclick..
4841             return;
4842         }
4843         
4844         if(
4845                 this.preventDefault || 
4846                 this.href == '#' 
4847         ){
4848             Roo.log("NavItem - prevent Default?");
4849             e.preventDefault();
4850         }
4851         
4852         if (this.disabled) {
4853             return;
4854         }
4855         
4856         var tg = Roo.bootstrap.TabGroup.get(this.navId);
4857         if (tg && tg.transition) {
4858             Roo.log("waiting for the transitionend");
4859             return;
4860         }
4861         
4862         
4863         
4864         //Roo.log("fire event clicked");
4865         if(this.fireEvent('click', this, e) === false){
4866             return;
4867         };
4868         
4869         if(this.tagtype == 'span'){
4870             return;
4871         }
4872         
4873         //Roo.log(this.href);
4874         var ael = this.el.select('a',true).first();
4875         //Roo.log(ael);
4876         
4877         if(ael && this.animateRef && this.href.indexOf('#') > -1){
4878             //Roo.log(["test:",ael.dom.href.split("#")[0], document.location.toString().split("#")[0]]);
4879             if (ael.dom.href.split("#")[0] != document.location.toString().split("#")[0]) {
4880                 return; // ignore... - it's a 'hash' to another page.
4881             }
4882             Roo.log("NavItem - prevent Default?");
4883             e.preventDefault();
4884             this.scrollToElement(e);
4885         }
4886         
4887         
4888         var p =  this.parent();
4889    
4890         if (['tabs','pills'].indexOf(p.type)!==-1) {
4891             if (typeof(p.setActiveItem) !== 'undefined') {
4892                 p.setActiveItem(this);
4893             }
4894         }
4895         
4896         // if parent is a navbarheader....- and link is probably a '#' page ref.. then remove the expanded menu.
4897         if (p.parentType == 'NavHeaderbar' && !this.menu) {
4898             // remove the collapsed menu expand...
4899             p.parent().el.select('.navbar-collapse',true).removeClass('in');  
4900         }
4901     },
4902     
4903     isActive: function () {
4904         return this.active
4905     },
4906     setActive : function(state, fire, is_was_active)
4907     {
4908         if (this.active && !state && this.navId) {
4909             this.was_active = true;
4910             var nv = Roo.bootstrap.NavGroup.get(this.navId);
4911             if (nv) {
4912                 nv.clearWasActive(this);
4913             }
4914             
4915         }
4916         this.active = state;
4917         
4918         if (!state ) {
4919             this.el.removeClass('active');
4920             this.navLink ? this.navLink.removeClass('active') : false;
4921         } else if (!this.el.hasClass('active')) {
4922             
4923             this.el.addClass('active');
4924             if (Roo.bootstrap.version == 4 && this.navLink ) {
4925                 this.navLink.addClass('active');
4926             }
4927             
4928         }
4929         if (fire) {
4930             this.fireEvent('changed', this, state);
4931         }
4932         
4933         // show a panel if it's registered and related..
4934         
4935         if (!this.navId || !this.tabId || !state || is_was_active) {
4936             return;
4937         }
4938         
4939         var tg = Roo.bootstrap.TabGroup.get(this.navId);
4940         if (!tg) {
4941             return;
4942         }
4943         var pan = tg.getPanelByName(this.tabId);
4944         if (!pan) {
4945             return;
4946         }
4947         // if we can not flip to new panel - go back to old nav highlight..
4948         if (false == tg.showPanel(pan)) {
4949             var nv = Roo.bootstrap.NavGroup.get(this.navId);
4950             if (nv) {
4951                 var onav = nv.getWasActive();
4952                 if (onav) {
4953                     onav.setActive(true, false, true);
4954                 }
4955             }
4956             
4957         }
4958         
4959         
4960         
4961     },
4962      // this should not be here...
4963     setDisabled : function(state)
4964     {
4965         this.disabled = state;
4966         if (!state ) {
4967             this.el.removeClass('disabled');
4968         } else if (!this.el.hasClass('disabled')) {
4969             this.el.addClass('disabled');
4970         }
4971         
4972     },
4973     
4974     /**
4975      * Fetch the element to display the tooltip on.
4976      * @return {Roo.Element} defaults to this.el
4977      */
4978     tooltipEl : function()
4979     {
4980         return this.el.select('' + this.tagtype + '', true).first();
4981     },
4982     
4983     scrollToElement : function(e)
4984     {
4985         var c = document.body;
4986         
4987         /*
4988          * Firefox / IE places the overflow at the html level, unless specifically styled to behave differently.
4989          */
4990         if(Roo.isFirefox || Roo.isIE || Roo.isIE11){
4991             c = document.documentElement;
4992         }
4993         
4994         var target = Roo.get(c).select('a[name=' + this.href.split('#')[1] +']', true).first();
4995         
4996         if(!target){
4997             return;
4998         }
4999
5000         var o = target.calcOffsetsTo(c);
5001         
5002         var options = {
5003             target : target,
5004             value : o[1]
5005         };
5006         
5007         this.fireEvent('scrollto', this, options, e);
5008         
5009         Roo.get(c).scrollTo('top', options.value, true);
5010         
5011         return;
5012     }
5013 });
5014  
5015
5016  /*
5017  * - LGPL
5018  *
5019  * sidebar item
5020  *
5021  *  li
5022  *    <span> icon </span>
5023  *    <span> text </span>
5024  *    <span>badge </span>
5025  */
5026
5027 /**
5028  * @class Roo.bootstrap.NavSidebarItem
5029  * @extends Roo.bootstrap.NavItem
5030  * Bootstrap Navbar.NavSidebarItem class
5031  * {String} badgeWeight (default|primary|success|info|warning|danger)the extra classes for the badge
5032  * {Boolean} open is the menu open
5033  * {Boolean} buttonView use button as the tigger el rather that a (default false)
5034  * {String} buttonWeight (default|primary|success|info|warning|danger)the extra classes for the button
5035  * {String} buttonSize (sm|md|lg)the extra classes for the button
5036  * {Boolean} showArrow show arrow next to the text (default true)
5037  * @constructor
5038  * Create a new Navbar Button
5039  * @param {Object} config The config object
5040  */
5041 Roo.bootstrap.NavSidebarItem = function(config){
5042     Roo.bootstrap.NavSidebarItem.superclass.constructor.call(this, config);
5043     this.addEvents({
5044         // raw events
5045         /**
5046          * @event click
5047          * The raw click event for the entire grid.
5048          * @param {Roo.EventObject} e
5049          */
5050         "click" : true,
5051          /**
5052             * @event changed
5053             * Fires when the active item active state changes
5054             * @param {Roo.bootstrap.NavSidebarItem} this
5055             * @param {boolean} state the new state
5056              
5057          */
5058         'changed': true
5059     });
5060    
5061 };
5062
5063 Roo.extend(Roo.bootstrap.NavSidebarItem, Roo.bootstrap.NavItem,  {
5064     
5065     badgeWeight : 'default',
5066     
5067     open: false,
5068     
5069     buttonView : false,
5070     
5071     buttonWeight : 'default',
5072     
5073     buttonSize : 'md',
5074     
5075     showArrow : true,
5076     
5077     getAutoCreate : function(){
5078         
5079         
5080         var a = {
5081                 tag: 'a',
5082                 href : this.href || '#',
5083                 cls: '',
5084                 html : '',
5085                 cn : []
5086         };
5087         
5088         if(this.buttonView){
5089             a = {
5090                 tag: 'button',
5091                 href : this.href || '#',
5092                 cls: 'btn btn-' + this.buttonWeight + ' btn-' + this.buttonSize + 'roo-button-dropdown-toggle',
5093                 html : this.html,
5094                 cn : []
5095             };
5096         }
5097         
5098         var cfg = {
5099             tag: 'li',
5100             cls: '',
5101             cn: [ a ]
5102         };
5103         
5104         if (this.active) {
5105             cfg.cls += ' active';
5106         }
5107         
5108         if (this.disabled) {
5109             cfg.cls += ' disabled';
5110         }
5111         if (this.open) {
5112             cfg.cls += ' open x-open';
5113         }
5114         // left icon..
5115         if (this.glyphicon || this.icon) {
5116             var c = this.glyphicon  ? ('glyphicon glyphicon-'+this.glyphicon)  : this.icon;
5117             a.cn.push({ tag : 'i', cls : c }) ;
5118         }
5119         
5120         if(!this.buttonView){
5121             var span = {
5122                 tag: 'span',
5123                 html : this.html || ''
5124             };
5125
5126             a.cn.push(span);
5127             
5128         }
5129         
5130         if (this.badge !== '') {
5131             a.cn.push({ tag: 'span',  cls : 'badge pull-right badge-' + this.badgeWeight, html: this.badge }); 
5132         }
5133         
5134         if (this.menu) {
5135             
5136             if(this.showArrow){
5137                 a.cn.push({ tag : 'i', cls : 'glyphicon glyphicon-chevron-down pull-right'});
5138             }
5139             
5140             a.cls += ' dropdown-toggle treeview' ;
5141         }
5142         
5143         return cfg;
5144     },
5145     
5146     initEvents : function()
5147     { 
5148         if (typeof (this.menu) != 'undefined') {
5149             this.menu.parentType = this.xtype;
5150             this.menu.triggerEl = this.el;
5151             this.menu = this.addxtype(Roo.apply({}, this.menu));
5152         }
5153         
5154         this.el.on('click', this.onClick, this);
5155         
5156         if(this.badge !== ''){
5157             this.badgeEl = this.el.select('.badge', true).first().setVisibilityMode(Roo.Element.DISPLAY);
5158         }
5159         
5160     },
5161     
5162     onClick : function(e)
5163     {
5164         if(this.disabled){
5165             e.preventDefault();
5166             return;
5167         }
5168         
5169         if(this.preventDefault){
5170             e.preventDefault();
5171         }
5172         
5173         this.fireEvent('click', this, e);
5174     },
5175     
5176     disable : function()
5177     {
5178         this.setDisabled(true);
5179     },
5180     
5181     enable : function()
5182     {
5183         this.setDisabled(false);
5184     },
5185     
5186     setDisabled : function(state)
5187     {
5188         if(this.disabled == state){
5189             return;
5190         }
5191         
5192         this.disabled = state;
5193         
5194         if (state) {
5195             this.el.addClass('disabled');
5196             return;
5197         }
5198         
5199         this.el.removeClass('disabled');
5200         
5201         return;
5202     },
5203     
5204     setActive : function(state)
5205     {
5206         if(this.active == state){
5207             return;
5208         }
5209         
5210         this.active = state;
5211         
5212         if (state) {
5213             this.el.addClass('active');
5214             return;
5215         }
5216         
5217         this.el.removeClass('active');
5218         
5219         return;
5220     },
5221     
5222     isActive: function () 
5223     {
5224         return this.active;
5225     },
5226     
5227     setBadge : function(str)
5228     {
5229         if(!this.badgeEl){
5230             return;
5231         }
5232         
5233         this.badgeEl.dom.innerHTML = str;
5234     }
5235     
5236    
5237      
5238  
5239 });
5240  
5241
5242  /*
5243  * - LGPL
5244  *
5245  * row
5246  * 
5247  */
5248
5249 /**
5250  * @class Roo.bootstrap.Row
5251  * @extends Roo.bootstrap.Component
5252  * Bootstrap Row class (contains columns...)
5253  * 
5254  * @constructor
5255  * Create a new Row
5256  * @param {Object} config The config object
5257  */
5258
5259 Roo.bootstrap.Row = function(config){
5260     Roo.bootstrap.Row.superclass.constructor.call(this, config);
5261 };
5262
5263 Roo.extend(Roo.bootstrap.Row, Roo.bootstrap.Component,  {
5264     
5265     getAutoCreate : function(){
5266        return {
5267             cls: 'row clearfix'
5268        };
5269     }
5270     
5271     
5272 });
5273
5274  
5275
5276  /*
5277  * - LGPL
5278  *
5279  * element
5280  * 
5281  */
5282
5283 /**
5284  * @class Roo.bootstrap.Element
5285  * @extends Roo.bootstrap.Component
5286  * Bootstrap Element class
5287  * @cfg {String} html contents of the element
5288  * @cfg {String} tag tag of the element
5289  * @cfg {String} cls class of the element
5290  * @cfg {Boolean} preventDefault (true|false) default false
5291  * @cfg {Boolean} clickable (true|false) default false
5292  * 
5293  * @constructor
5294  * Create a new Element
5295  * @param {Object} config The config object
5296  */
5297
5298 Roo.bootstrap.Element = function(config){
5299     Roo.bootstrap.Element.superclass.constructor.call(this, config);
5300     
5301     this.addEvents({
5302         // raw events
5303         /**
5304          * @event click
5305          * When a element is chick
5306          * @param {Roo.bootstrap.Element} this
5307          * @param {Roo.EventObject} e
5308          */
5309         "click" : true
5310     });
5311 };
5312
5313 Roo.extend(Roo.bootstrap.Element, Roo.bootstrap.Component,  {
5314     
5315     tag: 'div',
5316     cls: '',
5317     html: '',
5318     preventDefault: false, 
5319     clickable: false,
5320     
5321     getAutoCreate : function(){
5322         
5323         var cfg = {
5324             tag: this.tag,
5325             // cls: this.cls, double assign in parent class Component.js :: onRender
5326             html: this.html
5327         };
5328         
5329         return cfg;
5330     },
5331     
5332     initEvents: function() 
5333     {
5334         Roo.bootstrap.Element.superclass.initEvents.call(this);
5335         
5336         if(this.clickable){
5337             this.el.on('click', this.onClick, this);
5338         }
5339         
5340     },
5341     
5342     onClick : function(e)
5343     {
5344         if(this.preventDefault){
5345             e.preventDefault();
5346         }
5347         
5348         this.fireEvent('click', this, e);
5349     },
5350     
5351     getValue : function()
5352     {
5353         return this.el.dom.innerHTML;
5354     },
5355     
5356     setValue : function(value)
5357     {
5358         this.el.dom.innerHTML = value;
5359     }
5360    
5361 });
5362
5363  
5364
5365  /*
5366  * - LGPL
5367  *
5368  * pagination
5369  * 
5370  */
5371
5372 /**
5373  * @class Roo.bootstrap.Pagination
5374  * @extends Roo.bootstrap.Component
5375  * Bootstrap Pagination class
5376  * @cfg {String} size xs | sm | md | lg
5377  * @cfg {Boolean} inverse false | true
5378  * 
5379  * @constructor
5380  * Create a new Pagination
5381  * @param {Object} config The config object
5382  */
5383
5384 Roo.bootstrap.Pagination = function(config){
5385     Roo.bootstrap.Pagination.superclass.constructor.call(this, config);
5386 };
5387
5388 Roo.extend(Roo.bootstrap.Pagination, Roo.bootstrap.Component,  {
5389     
5390     cls: false,
5391     size: false,
5392     inverse: false,
5393     
5394     getAutoCreate : function(){
5395         var cfg = {
5396             tag: 'ul',
5397                 cls: 'pagination'
5398         };
5399         if (this.inverse) {
5400             cfg.cls += ' inverse';
5401         }
5402         if (this.html) {
5403             cfg.html=this.html;
5404         }
5405         if (this.cls) {
5406             cfg.cls += " " + this.cls;
5407         }
5408         return cfg;
5409     }
5410    
5411 });
5412
5413  
5414
5415  /*
5416  * - LGPL
5417  *
5418  * Pagination item
5419  * 
5420  */
5421
5422
5423 /**
5424  * @class Roo.bootstrap.PaginationItem
5425  * @extends Roo.bootstrap.Component
5426  * Bootstrap PaginationItem class
5427  * @cfg {String} html text
5428  * @cfg {String} href the link
5429  * @cfg {Boolean} preventDefault (true | false) default true
5430  * @cfg {Boolean} active (true | false) default false
5431  * @cfg {Boolean} disabled default false
5432  * 
5433  * 
5434  * @constructor
5435  * Create a new PaginationItem
5436  * @param {Object} config The config object
5437  */
5438
5439
5440 Roo.bootstrap.PaginationItem = function(config){
5441     Roo.bootstrap.PaginationItem.superclass.constructor.call(this, config);
5442     this.addEvents({
5443         // raw events
5444         /**
5445          * @event click
5446          * The raw click event for the entire grid.
5447          * @param {Roo.EventObject} e
5448          */
5449         "click" : true
5450     });
5451 };
5452
5453 Roo.extend(Roo.bootstrap.PaginationItem, Roo.bootstrap.Component,  {
5454     
5455     href : false,
5456     html : false,
5457     preventDefault: true,
5458     active : false,
5459     cls : false,
5460     disabled: false,
5461     
5462     getAutoCreate : function(){
5463         var cfg= {
5464             tag: 'li',
5465             cn: [
5466                 {
5467                     tag : 'a',
5468                     href : this.href ? this.href : '#',
5469                     html : this.html ? this.html : ''
5470                 }
5471             ]
5472         };
5473         
5474         if(this.cls){
5475             cfg.cls = this.cls;
5476         }
5477         
5478         if(this.disabled){
5479             cfg.cls = typeof(cfg.cls) !== 'undefined' ? cfg.cls + ' disabled' : 'disabled';
5480         }
5481         
5482         if(this.active){
5483             cfg.cls = typeof(cfg.cls) !== 'undefined' ? cfg.cls + ' active' : 'active';
5484         }
5485         
5486         return cfg;
5487     },
5488     
5489     initEvents: function() {
5490         
5491         this.el.on('click', this.onClick, this);
5492         
5493     },
5494     onClick : function(e)
5495     {
5496         Roo.log('PaginationItem on click ');
5497         if(this.preventDefault){
5498             e.preventDefault();
5499         }
5500         
5501         if(this.disabled){
5502             return;
5503         }
5504         
5505         this.fireEvent('click', this, e);
5506     }
5507    
5508 });
5509
5510  
5511
5512  /*
5513  * - LGPL
5514  *
5515  * slider
5516  * 
5517  */
5518
5519
5520 /**
5521  * @class Roo.bootstrap.Slider
5522  * @extends Roo.bootstrap.Component
5523  * Bootstrap Slider class
5524  *    
5525  * @constructor
5526  * Create a new Slider
5527  * @param {Object} config The config object
5528  */
5529
5530 Roo.bootstrap.Slider = function(config){
5531     Roo.bootstrap.Slider.superclass.constructor.call(this, config);
5532 };
5533
5534 Roo.extend(Roo.bootstrap.Slider, Roo.bootstrap.Component,  {
5535     
5536     getAutoCreate : function(){
5537         
5538         var cfg = {
5539             tag: 'div',
5540             cls: 'slider slider-sample1 vertical-handler ui-slider ui-slider-horizontal ui-widget ui-widget-content ui-corner-all',
5541             cn: [
5542                 {
5543                     tag: 'a',
5544                     cls: 'ui-slider-handle ui-state-default ui-corner-all'
5545                 }
5546             ]
5547         };
5548         
5549         return cfg;
5550     }
5551    
5552 });
5553
5554  /*
5555  * Based on:
5556  * Ext JS Library 1.1.1
5557  * Copyright(c) 2006-2007, Ext JS, LLC.
5558  *
5559  * Originally Released Under LGPL - original licence link has changed is not relivant.
5560  *
5561  * Fork - LGPL
5562  * <script type="text/javascript">
5563  */
5564  
5565
5566 /**
5567  * @class Roo.grid.ColumnModel
5568  * @extends Roo.util.Observable
5569  * This is the default implementation of a ColumnModel used by the Grid. It defines
5570  * the columns in the grid.
5571  * <br>Usage:<br>
5572  <pre><code>
5573  var colModel = new Roo.grid.ColumnModel([
5574         {header: "Ticker", width: 60, sortable: true, locked: true},
5575         {header: "Company Name", width: 150, sortable: true},
5576         {header: "Market Cap.", width: 100, sortable: true},
5577         {header: "$ Sales", width: 100, sortable: true, renderer: money},
5578         {header: "Employees", width: 100, sortable: true, resizable: false}
5579  ]);
5580  </code></pre>
5581  * <p>
5582  
5583  * The config options listed for this class are options which may appear in each
5584  * individual column definition.
5585  * <br/>RooJS Fix - column id's are not sequential but use Roo.id() - fixes bugs with layouts.
5586  * @constructor
5587  * @param {Object} config An Array of column config objects. See this class's
5588  * config objects for details.
5589 */
5590 Roo.grid.ColumnModel = function(config){
5591         /**
5592      * The config passed into the constructor
5593      */
5594     this.config = config;
5595     this.lookup = {};
5596
5597     // if no id, create one
5598     // if the column does not have a dataIndex mapping,
5599     // map it to the order it is in the config
5600     for(var i = 0, len = config.length; i < len; i++){
5601         var c = config[i];
5602         if(typeof c.dataIndex == "undefined"){
5603             c.dataIndex = i;
5604         }
5605         if(typeof c.renderer == "string"){
5606             c.renderer = Roo.util.Format[c.renderer];
5607         }
5608         if(typeof c.id == "undefined"){
5609             c.id = Roo.id();
5610         }
5611         if(c.editor && c.editor.xtype){
5612             c.editor  = Roo.factory(c.editor, Roo.grid);
5613         }
5614         if(c.editor && c.editor.isFormField){
5615             c.editor = new Roo.grid.GridEditor(c.editor);
5616         }
5617         this.lookup[c.id] = c;
5618     }
5619
5620     /**
5621      * The width of columns which have no width specified (defaults to 100)
5622      * @type Number
5623      */
5624     this.defaultWidth = 100;
5625
5626     /**
5627      * Default sortable of columns which have no sortable specified (defaults to false)
5628      * @type Boolean
5629      */
5630     this.defaultSortable = false;
5631
5632     this.addEvents({
5633         /**
5634              * @event widthchange
5635              * Fires when the width of a column changes.
5636              * @param {ColumnModel} this
5637              * @param {Number} columnIndex The column index
5638              * @param {Number} newWidth The new width
5639              */
5640             "widthchange": true,
5641         /**
5642              * @event headerchange
5643              * Fires when the text of a header changes.
5644              * @param {ColumnModel} this
5645              * @param {Number} columnIndex The column index
5646              * @param {Number} newText The new header text
5647              */
5648             "headerchange": true,
5649         /**
5650              * @event hiddenchange
5651              * Fires when a column is hidden or "unhidden".
5652              * @param {ColumnModel} this
5653              * @param {Number} columnIndex The column index
5654              * @param {Boolean} hidden true if hidden, false otherwise
5655              */
5656             "hiddenchange": true,
5657             /**
5658          * @event columnmoved
5659          * Fires when a column is moved.
5660          * @param {ColumnModel} this
5661          * @param {Number} oldIndex
5662          * @param {Number} newIndex
5663          */
5664         "columnmoved" : true,
5665         /**
5666          * @event columlockchange
5667          * Fires when a column's locked state is changed
5668          * @param {ColumnModel} this
5669          * @param {Number} colIndex
5670          * @param {Boolean} locked true if locked
5671          */
5672         "columnlockchange" : true
5673     });
5674     Roo.grid.ColumnModel.superclass.constructor.call(this);
5675 };
5676 Roo.extend(Roo.grid.ColumnModel, Roo.util.Observable, {
5677     /**
5678      * @cfg {String} header The header text to display in the Grid view.
5679      */
5680     /**
5681      * @cfg {String} dataIndex (Optional) The name of the field in the grid's {@link Roo.data.Store}'s
5682      * {@link Roo.data.Record} definition from which to draw the column's value. If not
5683      * specified, the column's index is used as an index into the Record's data Array.
5684      */
5685     /**
5686      * @cfg {Number} width (Optional) The initial width in pixels of the column. Using this
5687      * instead of {@link Roo.grid.Grid#autoSizeColumns} is more efficient.
5688      */
5689     /**
5690      * @cfg {Boolean} sortable (Optional) True if sorting is to be allowed on this column.
5691      * Defaults to the value of the {@link #defaultSortable} property.
5692      * Whether local/remote sorting is used is specified in {@link Roo.data.Store#remoteSort}.
5693      */
5694     /**
5695      * @cfg {Boolean} locked (Optional) True to lock the column in place while scrolling the Grid.  Defaults to false.
5696      */
5697     /**
5698      * @cfg {Boolean} fixed (Optional) True if the column width cannot be changed.  Defaults to false.
5699      */
5700     /**
5701      * @cfg {Boolean} resizable (Optional) False to disable column resizing. Defaults to true.
5702      */
5703     /**
5704      * @cfg {Boolean} hidden (Optional) True to hide the column. Defaults to false.
5705      */
5706     /**
5707      * @cfg {Function} renderer (Optional) A function used to generate HTML markup for a cell
5708      * given the cell's data value. See {@link #setRenderer}. If not specified, the
5709      * default renderer returns the escaped data value. If an object is returned (bootstrap only)
5710      * then it is treated as a Roo Component object instance, and it is rendered after the initial row is rendered
5711      */
5712        /**
5713      * @cfg {Roo.grid.GridEditor} editor (Optional) For grid editors - returns the grid editor 
5714      */
5715     /**
5716      * @cfg {String} align (Optional) Set the CSS text-align property of the column.  Defaults to undefined.
5717      */
5718     /**
5719      * @cfg {String} valign (Optional) Set the CSS vertical-align property of the column (eg. middle, top, bottom etc).  Defaults to undefined.
5720      */
5721     /**
5722      * @cfg {String} cursor (Optional)
5723      */
5724     /**
5725      * @cfg {String} tooltip (Optional)
5726      */
5727     /**
5728      * @cfg {Number} xs (Optional)
5729      */
5730     /**
5731      * @cfg {Number} sm (Optional)
5732      */
5733     /**
5734      * @cfg {Number} md (Optional)
5735      */
5736     /**
5737      * @cfg {Number} lg (Optional)
5738      */
5739     /**
5740      * Returns the id of the column at the specified index.
5741      * @param {Number} index The column index
5742      * @return {String} the id
5743      */
5744     getColumnId : function(index){
5745         return this.config[index].id;
5746     },
5747
5748     /**
5749      * Returns the column for a specified id.
5750      * @param {String} id The column id
5751      * @return {Object} the column
5752      */
5753     getColumnById : function(id){
5754         return this.lookup[id];
5755     },
5756
5757     
5758     /**
5759      * Returns the column for a specified dataIndex.
5760      * @param {String} dataIndex The column dataIndex
5761      * @return {Object|Boolean} the column or false if not found
5762      */
5763     getColumnByDataIndex: function(dataIndex){
5764         var index = this.findColumnIndex(dataIndex);
5765         return index > -1 ? this.config[index] : false;
5766     },
5767     
5768     /**
5769      * Returns the index for a specified column id.
5770      * @param {String} id The column id
5771      * @return {Number} the index, or -1 if not found
5772      */
5773     getIndexById : function(id){
5774         for(var i = 0, len = this.config.length; i < len; i++){
5775             if(this.config[i].id == id){
5776                 return i;
5777             }
5778         }
5779         return -1;
5780     },
5781     
5782     /**
5783      * Returns the index for a specified column dataIndex.
5784      * @param {String} dataIndex The column dataIndex
5785      * @return {Number} the index, or -1 if not found
5786      */
5787     
5788     findColumnIndex : function(dataIndex){
5789         for(var i = 0, len = this.config.length; i < len; i++){
5790             if(this.config[i].dataIndex == dataIndex){
5791                 return i;
5792             }
5793         }
5794         return -1;
5795     },
5796     
5797     
5798     moveColumn : function(oldIndex, newIndex){
5799         var c = this.config[oldIndex];
5800         this.config.splice(oldIndex, 1);
5801         this.config.splice(newIndex, 0, c);
5802         this.dataMap = null;
5803         this.fireEvent("columnmoved", this, oldIndex, newIndex);
5804     },
5805
5806     isLocked : function(colIndex){
5807         return this.config[colIndex].locked === true;
5808     },
5809
5810     setLocked : function(colIndex, value, suppressEvent){
5811         if(this.isLocked(colIndex) == value){
5812             return;
5813         }
5814         this.config[colIndex].locked = value;
5815         if(!suppressEvent){
5816             this.fireEvent("columnlockchange", this, colIndex, value);
5817         }
5818     },
5819
5820     getTotalLockedWidth : function(){
5821         var totalWidth = 0;
5822         for(var i = 0; i < this.config.length; i++){
5823             if(this.isLocked(i) && !this.isHidden(i)){
5824                 this.totalWidth += this.getColumnWidth(i);
5825             }
5826         }
5827         return totalWidth;
5828     },
5829
5830     getLockedCount : function(){
5831         for(var i = 0, len = this.config.length; i < len; i++){
5832             if(!this.isLocked(i)){
5833                 return i;
5834             }
5835         }
5836         
5837         return this.config.length;
5838     },
5839
5840     /**
5841      * Returns the number of columns.
5842      * @return {Number}
5843      */
5844     getColumnCount : function(visibleOnly){
5845         if(visibleOnly === true){
5846             var c = 0;
5847             for(var i = 0, len = this.config.length; i < len; i++){
5848                 if(!this.isHidden(i)){
5849                     c++;
5850                 }
5851             }
5852             return c;
5853         }
5854         return this.config.length;
5855     },
5856
5857     /**
5858      * Returns the column configs that return true by the passed function that is called with (columnConfig, index)
5859      * @param {Function} fn
5860      * @param {Object} scope (optional)
5861      * @return {Array} result
5862      */
5863     getColumnsBy : function(fn, scope){
5864         var r = [];
5865         for(var i = 0, len = this.config.length; i < len; i++){
5866             var c = this.config[i];
5867             if(fn.call(scope||this, c, i) === true){
5868                 r[r.length] = c;
5869             }
5870         }
5871         return r;
5872     },
5873
5874     /**
5875      * Returns true if the specified column is sortable.
5876      * @param {Number} col The column index
5877      * @return {Boolean}
5878      */
5879     isSortable : function(col){
5880         if(typeof this.config[col].sortable == "undefined"){
5881             return this.defaultSortable;
5882         }
5883         return this.config[col].sortable;
5884     },
5885
5886     /**
5887      * Returns the rendering (formatting) function defined for the column.
5888      * @param {Number} col The column index.
5889      * @return {Function} The function used to render the cell. See {@link #setRenderer}.
5890      */
5891     getRenderer : function(col){
5892         if(!this.config[col].renderer){
5893             return Roo.grid.ColumnModel.defaultRenderer;
5894         }
5895         return this.config[col].renderer;
5896     },
5897
5898     /**
5899      * Sets the rendering (formatting) function for a column.
5900      * @param {Number} col The column index
5901      * @param {Function} fn The function to use to process the cell's raw data
5902      * to return HTML markup for the grid view. The render function is called with
5903      * the following parameters:<ul>
5904      * <li>Data value.</li>
5905      * <li>Cell metadata. An object in which you may set the following attributes:<ul>
5906      * <li>css A CSS style string to apply to the table cell.</li>
5907      * <li>attr An HTML attribute definition string to apply to the data container element <i>within</i> the table cell.</li></ul>
5908      * <li>The {@link Roo.data.Record} from which the data was extracted.</li>
5909      * <li>Row index</li>
5910      * <li>Column index</li>
5911      * <li>The {@link Roo.data.Store} object from which the Record was extracted</li></ul>
5912      */
5913     setRenderer : function(col, fn){
5914         this.config[col].renderer = fn;
5915     },
5916
5917     /**
5918      * Returns the width for the specified column.
5919      * @param {Number} col The column index
5920      * @return {Number}
5921      */
5922     getColumnWidth : function(col){
5923         return this.config[col].width * 1 || this.defaultWidth;
5924     },
5925
5926     /**
5927      * Sets the width for a column.
5928      * @param {Number} col The column index
5929      * @param {Number} width The new width
5930      */
5931     setColumnWidth : function(col, width, suppressEvent){
5932         this.config[col].width = width;
5933         this.totalWidth = null;
5934         if(!suppressEvent){
5935              this.fireEvent("widthchange", this, col, width);
5936         }
5937     },
5938
5939     /**
5940      * Returns the total width of all columns.
5941      * @param {Boolean} includeHidden True to include hidden column widths
5942      * @return {Number}
5943      */
5944     getTotalWidth : function(includeHidden){
5945         if(!this.totalWidth){
5946             this.totalWidth = 0;
5947             for(var i = 0, len = this.config.length; i < len; i++){
5948                 if(includeHidden || !this.isHidden(i)){
5949                     this.totalWidth += this.getColumnWidth(i);
5950                 }
5951             }
5952         }
5953         return this.totalWidth;
5954     },
5955
5956     /**
5957      * Returns the header for the specified column.
5958      * @param {Number} col The column index
5959      * @return {String}
5960      */
5961     getColumnHeader : function(col){
5962         return this.config[col].header;
5963     },
5964
5965     /**
5966      * Sets the header for a column.
5967      * @param {Number} col The column index
5968      * @param {String} header The new header
5969      */
5970     setColumnHeader : function(col, header){
5971         this.config[col].header = header;
5972         this.fireEvent("headerchange", this, col, header);
5973     },
5974
5975     /**
5976      * Returns the tooltip for the specified column.
5977      * @param {Number} col The column index
5978      * @return {String}
5979      */
5980     getColumnTooltip : function(col){
5981             return this.config[col].tooltip;
5982     },
5983     /**
5984      * Sets the tooltip for a column.
5985      * @param {Number} col The column index
5986      * @param {String} tooltip The new tooltip
5987      */
5988     setColumnTooltip : function(col, tooltip){
5989             this.config[col].tooltip = tooltip;
5990     },
5991
5992     /**
5993      * Returns the dataIndex for the specified column.
5994      * @param {Number} col The column index
5995      * @return {Number}
5996      */
5997     getDataIndex : function(col){
5998         return this.config[col].dataIndex;
5999     },
6000
6001     /**
6002      * Sets the dataIndex for a column.
6003      * @param {Number} col The column index
6004      * @param {Number} dataIndex The new dataIndex
6005      */
6006     setDataIndex : function(col, dataIndex){
6007         this.config[col].dataIndex = dataIndex;
6008     },
6009
6010     
6011     
6012     /**
6013      * Returns true if the cell is editable.
6014      * @param {Number} colIndex The column index
6015      * @param {Number} rowIndex The row index - this is nto actually used..?
6016      * @return {Boolean}
6017      */
6018     isCellEditable : function(colIndex, rowIndex){
6019         return (this.config[colIndex].editable || (typeof this.config[colIndex].editable == "undefined" && this.config[colIndex].editor)) ? true : false;
6020     },
6021
6022     /**
6023      * Returns the editor defined for the cell/column.
6024      * return false or null to disable editing.
6025      * @param {Number} colIndex The column index
6026      * @param {Number} rowIndex The row index
6027      * @return {Object}
6028      */
6029     getCellEditor : function(colIndex, rowIndex){
6030         return this.config[colIndex].editor;
6031     },
6032
6033     /**
6034      * Sets if a column is editable.
6035      * @param {Number} col The column index
6036      * @param {Boolean} editable True if the column is editable
6037      */
6038     setEditable : function(col, editable){
6039         this.config[col].editable = editable;
6040     },
6041
6042
6043     /**
6044      * Returns true if the column is hidden.
6045      * @param {Number} colIndex The column index
6046      * @return {Boolean}
6047      */
6048     isHidden : function(colIndex){
6049         return this.config[colIndex].hidden;
6050     },
6051
6052
6053     /**
6054      * Returns true if the column width cannot be changed
6055      */
6056     isFixed : function(colIndex){
6057         return this.config[colIndex].fixed;
6058     },
6059
6060     /**
6061      * Returns true if the column can be resized
6062      * @return {Boolean}
6063      */
6064     isResizable : function(colIndex){
6065         return colIndex >= 0 && this.config[colIndex].resizable !== false && this.config[colIndex].fixed !== true;
6066     },
6067     /**
6068      * Sets if a column is hidden.
6069      * @param {Number} colIndex The column index
6070      * @param {Boolean} hidden True if the column is hidden
6071      */
6072     setHidden : function(colIndex, hidden){
6073         this.config[colIndex].hidden = hidden;
6074         this.totalWidth = null;
6075         this.fireEvent("hiddenchange", this, colIndex, hidden);
6076     },
6077
6078     /**
6079      * Sets the editor for a column.
6080      * @param {Number} col The column index
6081      * @param {Object} editor The editor object
6082      */
6083     setEditor : function(col, editor){
6084         this.config[col].editor = editor;
6085     }
6086 });
6087
6088 Roo.grid.ColumnModel.defaultRenderer = function(value)
6089 {
6090     if(typeof value == "object") {
6091         return value;
6092     }
6093         if(typeof value == "string" && value.length < 1){
6094             return "&#160;";
6095         }
6096     
6097         return String.format("{0}", value);
6098 };
6099
6100 // Alias for backwards compatibility
6101 Roo.grid.DefaultColumnModel = Roo.grid.ColumnModel;
6102 /*
6103  * Based on:
6104  * Ext JS Library 1.1.1
6105  * Copyright(c) 2006-2007, Ext JS, LLC.
6106  *
6107  * Originally Released Under LGPL - original licence link has changed is not relivant.
6108  *
6109  * Fork - LGPL
6110  * <script type="text/javascript">
6111  */
6112  
6113 /**
6114  * @class Roo.LoadMask
6115  * A simple utility class for generically masking elements while loading data.  If the element being masked has
6116  * an underlying {@link Roo.data.Store}, the masking will be automatically synchronized with the store's loading
6117  * process and the mask element will be cached for reuse.  For all other elements, this mask will replace the
6118  * element's UpdateManager load indicator and will be destroyed after the initial load.
6119  * @constructor
6120  * Create a new LoadMask
6121  * @param {String/HTMLElement/Roo.Element} el The element or DOM node, or its id
6122  * @param {Object} config The config object
6123  */
6124 Roo.LoadMask = function(el, config){
6125     this.el = Roo.get(el);
6126     Roo.apply(this, config);
6127     if(this.store){
6128         this.store.on('beforeload', this.onBeforeLoad, this);
6129         this.store.on('load', this.onLoad, this);
6130         this.store.on('loadexception', this.onLoadException, this);
6131         this.removeMask = false;
6132     }else{
6133         var um = this.el.getUpdateManager();
6134         um.showLoadIndicator = false; // disable the default indicator
6135         um.on('beforeupdate', this.onBeforeLoad, this);
6136         um.on('update', this.onLoad, this);
6137         um.on('failure', this.onLoad, this);
6138         this.removeMask = true;
6139     }
6140 };
6141
6142 Roo.LoadMask.prototype = {
6143     /**
6144      * @cfg {Boolean} removeMask
6145      * True to create a single-use mask that is automatically destroyed after loading (useful for page loads),
6146      * False to persist the mask element reference for multiple uses (e.g., for paged data widgets).  Defaults to false.
6147      */
6148     /**
6149      * @cfg {String} msg
6150      * The text to display in a centered loading message box (defaults to 'Loading...')
6151      */
6152     msg : 'Loading...',
6153     /**
6154      * @cfg {String} msgCls
6155      * The CSS class to apply to the loading message element (defaults to "x-mask-loading")
6156      */
6157     msgCls : 'x-mask-loading',
6158
6159     /**
6160      * Read-only. True if the mask is currently disabled so that it will not be displayed (defaults to false)
6161      * @type Boolean
6162      */
6163     disabled: false,
6164
6165     /**
6166      * Disables the mask to prevent it from being displayed
6167      */
6168     disable : function(){
6169        this.disabled = true;
6170     },
6171
6172     /**
6173      * Enables the mask so that it can be displayed
6174      */
6175     enable : function(){
6176         this.disabled = false;
6177     },
6178     
6179     onLoadException : function()
6180     {
6181         Roo.log(arguments);
6182         
6183         if (typeof(arguments[3]) != 'undefined') {
6184             Roo.MessageBox.alert("Error loading",arguments[3]);
6185         } 
6186         /*
6187         try {
6188             if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
6189                 Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
6190             }   
6191         } catch(e) {
6192             
6193         }
6194         */
6195     
6196         (function() { this.el.unmask(this.removeMask); }).defer(50, this);
6197     },
6198     // private
6199     onLoad : function()
6200     {
6201         (function() { this.el.unmask(this.removeMask); }).defer(50, this);
6202     },
6203
6204     // private
6205     onBeforeLoad : function(){
6206         if(!this.disabled){
6207             (function() { this.el.mask(this.msg, this.msgCls); }).defer(50, this);
6208         }
6209     },
6210
6211     // private
6212     destroy : function(){
6213         if(this.store){
6214             this.store.un('beforeload', this.onBeforeLoad, this);
6215             this.store.un('load', this.onLoad, this);
6216             this.store.un('loadexception', this.onLoadException, this);
6217         }else{
6218             var um = this.el.getUpdateManager();
6219             um.un('beforeupdate', this.onBeforeLoad, this);
6220             um.un('update', this.onLoad, this);
6221             um.un('failure', this.onLoad, this);
6222         }
6223     }
6224 };/*
6225  * - LGPL
6226  *
6227  * table
6228  * 
6229  */
6230
6231 /**
6232  * @class Roo.bootstrap.Table
6233  * @extends Roo.bootstrap.Component
6234  * Bootstrap Table class
6235  * @cfg {String} cls table class
6236  * @cfg {String} align (left|center|right) Specifies the alignment of a table according to surrounding text
6237  * @cfg {String} bgcolor Specifies the background color for a table
6238  * @cfg {Number} border Specifies whether the table cells should have borders or not
6239  * @cfg {Number} cellpadding Specifies the space between the cell wall and the cell content
6240  * @cfg {Number} cellspacing Specifies the space between cells
6241  * @cfg {String} frame Specifies which parts of the outside borders that should be visible
6242  * @cfg {String} rules Specifies which parts of the inside borders that should be visible
6243  * @cfg {String} sortable Specifies that the table should be sortable
6244  * @cfg {String} summary Specifies a summary of the content of a table
6245  * @cfg {Number} width Specifies the width of a table
6246  * @cfg {String} layout table layout (auto | fixed | initial | inherit)
6247  * 
6248  * @cfg {boolean} striped Should the rows be alternative striped
6249  * @cfg {boolean} bordered Add borders to the table
6250  * @cfg {boolean} hover Add hover highlighting
6251  * @cfg {boolean} condensed Format condensed
6252  * @cfg {boolean} responsive Format condensed
6253  * @cfg {Boolean} loadMask (true|false) default false
6254  * @cfg {Boolean} footerShow (true|false) generate tfoot, default true
6255  * @cfg {Boolean} headerShow (true|false) generate thead, default true
6256  * @cfg {Boolean} rowSelection (true|false) default false
6257  * @cfg {Boolean} cellSelection (true|false) default false
6258  * @cfg {Boolean} scrollBody (true|false) default false - body scrolled / fixed header
6259  * @cfg {Roo.bootstrap.PagingToolbar} footer  a paging toolbar
6260  * @cfg {Boolean} lazyLoad  auto load data while scrolling to the end (default false)
6261  * @cfg {Boolean} auto_hide_footer  auto hide footer if only one page (default false)
6262  
6263  * 
6264  * @constructor
6265  * Create a new Table
6266  * @param {Object} config The config object
6267  */
6268
6269 Roo.bootstrap.Table = function(config){
6270     Roo.bootstrap.Table.superclass.constructor.call(this, config);
6271     
6272   
6273     
6274     // BC...
6275     this.rowSelection = (typeof(config.rowSelection) != 'undefined') ? config.rowSelection : this.rowSelection;
6276     this.cellSelection = (typeof(config.cellSelection) != 'undefined') ? config.cellSelection : this.cellSelection;
6277     this.headerShow = (typeof(config.thead) != 'undefined') ? config.thead : this.headerShow;
6278     this.footerShow = (typeof(config.tfoot) != 'undefined') ? config.tfoot : this.footerShow;
6279     
6280     this.sm = this.sm || {xtype: 'RowSelectionModel'};
6281     if (this.sm) {
6282         this.sm.grid = this;
6283         this.selModel = Roo.factory(this.sm, Roo.bootstrap.Table);
6284         this.sm = this.selModel;
6285         this.sm.xmodule = this.xmodule || false;
6286     }
6287     
6288     if (this.cm && typeof(this.cm.config) == 'undefined') {
6289         this.colModel = new Roo.grid.ColumnModel(this.cm);
6290         this.cm = this.colModel;
6291         this.cm.xmodule = this.xmodule || false;
6292     }
6293     if (this.store) {
6294         this.store= Roo.factory(this.store, Roo.data);
6295         this.ds = this.store;
6296         this.ds.xmodule = this.xmodule || false;
6297          
6298     }
6299     if (this.footer && this.store) {
6300         this.footer.dataSource = this.ds;
6301         this.footer = Roo.factory(this.footer);
6302     }
6303     
6304     /** @private */
6305     this.addEvents({
6306         /**
6307          * @event cellclick
6308          * Fires when a cell is clicked
6309          * @param {Roo.bootstrap.Table} this
6310          * @param {Roo.Element} el
6311          * @param {Number} rowIndex
6312          * @param {Number} columnIndex
6313          * @param {Roo.EventObject} e
6314          */
6315         "cellclick" : true,
6316         /**
6317          * @event celldblclick
6318          * Fires when a cell is double clicked
6319          * @param {Roo.bootstrap.Table} this
6320          * @param {Roo.Element} el
6321          * @param {Number} rowIndex
6322          * @param {Number} columnIndex
6323          * @param {Roo.EventObject} e
6324          */
6325         "celldblclick" : true,
6326         /**
6327          * @event rowclick
6328          * Fires when a row is clicked
6329          * @param {Roo.bootstrap.Table} this
6330          * @param {Roo.Element} el
6331          * @param {Number} rowIndex
6332          * @param {Roo.EventObject} e
6333          */
6334         "rowclick" : true,
6335         /**
6336          * @event rowdblclick
6337          * Fires when a row is double clicked
6338          * @param {Roo.bootstrap.Table} this
6339          * @param {Roo.Element} el
6340          * @param {Number} rowIndex
6341          * @param {Roo.EventObject} e
6342          */
6343         "rowdblclick" : true,
6344         /**
6345          * @event mouseover
6346          * Fires when a mouseover occur
6347          * @param {Roo.bootstrap.Table} this
6348          * @param {Roo.Element} el
6349          * @param {Number} rowIndex
6350          * @param {Number} columnIndex
6351          * @param {Roo.EventObject} e
6352          */
6353         "mouseover" : true,
6354         /**
6355          * @event mouseout
6356          * Fires when a mouseout occur
6357          * @param {Roo.bootstrap.Table} this
6358          * @param {Roo.Element} el
6359          * @param {Number} rowIndex
6360          * @param {Number} columnIndex
6361          * @param {Roo.EventObject} e
6362          */
6363         "mouseout" : true,
6364         /**
6365          * @event rowclass
6366          * Fires when a row is rendered, so you can change add a style to it.
6367          * @param {Roo.bootstrap.Table} this
6368          * @param {Object} rowcfg   contains record  rowIndex colIndex and rowClass - set rowClass to add a style.
6369          */
6370         'rowclass' : true,
6371           /**
6372          * @event rowsrendered
6373          * Fires when all the  rows have been rendered
6374          * @param {Roo.bootstrap.Table} this
6375          */
6376         'rowsrendered' : true,
6377         /**
6378          * @event contextmenu
6379          * The raw contextmenu event for the entire grid.
6380          * @param {Roo.EventObject} e
6381          */
6382         "contextmenu" : true,
6383         /**
6384          * @event rowcontextmenu
6385          * Fires when a row is right clicked
6386          * @param {Roo.bootstrap.Table} this
6387          * @param {Number} rowIndex
6388          * @param {Roo.EventObject} e
6389          */
6390         "rowcontextmenu" : true,
6391         /**
6392          * @event cellcontextmenu
6393          * Fires when a cell is right clicked
6394          * @param {Roo.bootstrap.Table} this
6395          * @param {Number} rowIndex
6396          * @param {Number} cellIndex
6397          * @param {Roo.EventObject} e
6398          */
6399          "cellcontextmenu" : true,
6400          /**
6401          * @event headercontextmenu
6402          * Fires when a header is right clicked
6403          * @param {Roo.bootstrap.Table} this
6404          * @param {Number} columnIndex
6405          * @param {Roo.EventObject} e
6406          */
6407         "headercontextmenu" : true
6408     });
6409 };
6410
6411 Roo.extend(Roo.bootstrap.Table, Roo.bootstrap.Component,  {
6412     
6413     cls: false,
6414     align: false,
6415     bgcolor: false,
6416     border: false,
6417     cellpadding: false,
6418     cellspacing: false,
6419     frame: false,
6420     rules: false,
6421     sortable: false,
6422     summary: false,
6423     width: false,
6424     striped : false,
6425     scrollBody : false,
6426     bordered: false,
6427     hover:  false,
6428     condensed : false,
6429     responsive : false,
6430     sm : false,
6431     cm : false,
6432     store : false,
6433     loadMask : false,
6434     footerShow : true,
6435     headerShow : true,
6436   
6437     rowSelection : false,
6438     cellSelection : false,
6439     layout : false,
6440     
6441     // Roo.Element - the tbody
6442     mainBody: false,
6443     // Roo.Element - thead element
6444     mainHead: false,
6445     
6446     container: false, // used by gridpanel...
6447     
6448     lazyLoad : false,
6449     
6450     CSS : Roo.util.CSS,
6451     
6452     auto_hide_footer : false,
6453     
6454     getAutoCreate : function()
6455     {
6456         var cfg = Roo.apply({}, Roo.bootstrap.Table.superclass.getAutoCreate.call(this));
6457         
6458         cfg = {
6459             tag: 'table',
6460             cls : 'table',
6461             cn : []
6462         };
6463         if (this.scrollBody) {
6464             cfg.cls += ' table-body-fixed';
6465         }    
6466         if (this.striped) {
6467             cfg.cls += ' table-striped';
6468         }
6469         
6470         if (this.hover) {
6471             cfg.cls += ' table-hover';
6472         }
6473         if (this.bordered) {
6474             cfg.cls += ' table-bordered';
6475         }
6476         if (this.condensed) {
6477             cfg.cls += ' table-condensed';
6478         }
6479         if (this.responsive) {
6480             cfg.cls += ' table-responsive';
6481         }
6482         
6483         if (this.cls) {
6484             cfg.cls+=  ' ' +this.cls;
6485         }
6486         
6487         // this lot should be simplifed...
6488         var _t = this;
6489         var cp = [
6490             'align',
6491             'bgcolor',
6492             'border',
6493             'cellpadding',
6494             'cellspacing',
6495             'frame',
6496             'rules',
6497             'sortable',
6498             'summary',
6499             'width'
6500         ].forEach(function(k) {
6501             if (_t[k]) {
6502                 cfg[k] = _t[k];
6503             }
6504         });
6505         
6506         
6507         if (this.layout) {
6508             cfg.style = (typeof(cfg.style) == 'undefined') ? ('table-layout:' + this.layout + ';') : (cfg.style + ('table-layout:' + this.layout + ';'));
6509         }
6510         
6511         if(this.store || this.cm){
6512             if(this.headerShow){
6513                 cfg.cn.push(this.renderHeader());
6514             }
6515             
6516             cfg.cn.push(this.renderBody());
6517             
6518             if(this.footerShow){
6519                 cfg.cn.push(this.renderFooter());
6520             }
6521             // where does this come from?
6522             //cfg.cls+=  ' TableGrid';
6523         }
6524         
6525         return { cn : [ cfg ] };
6526     },
6527     
6528     initEvents : function()
6529     {   
6530         if(!this.store || !this.cm){
6531             return;
6532         }
6533         if (this.selModel) {
6534             this.selModel.initEvents();
6535         }
6536         
6537         
6538         //Roo.log('initEvents with ds!!!!');
6539         
6540         this.mainBody = this.el.select('tbody', true).first();
6541         this.mainHead = this.el.select('thead', true).first();
6542         this.mainFoot = this.el.select('tfoot', true).first();
6543         
6544         
6545         
6546         var _this = this;
6547         
6548         Roo.each(this.el.select('thead th.sortable', true).elements, function(e){
6549             e.on('click', _this.sort, _this);
6550         });
6551         
6552         this.mainBody.on("click", this.onClick, this);
6553         this.mainBody.on("dblclick", this.onDblClick, this);
6554         
6555         // why is this done????? = it breaks dialogs??
6556         //this.parent().el.setStyle('position', 'relative');
6557         
6558         
6559         if (this.footer) {
6560             this.footer.parentId = this.id;
6561             this.footer.onRender(this.el.select('tfoot tr td').first(), null);
6562             
6563             if(this.lazyLoad){
6564                 this.el.select('tfoot tr td').first().addClass('hide');
6565             }
6566         } 
6567         
6568         if(this.loadMask) {
6569             this.maskEl = new Roo.LoadMask(this.el, { store : this.ds, msgCls: 'roo-el-mask-msg' });
6570         }
6571         
6572         this.store.on('load', this.onLoad, this);
6573         this.store.on('beforeload', this.onBeforeLoad, this);
6574         this.store.on('update', this.onUpdate, this);
6575         this.store.on('add', this.onAdd, this);
6576         this.store.on("clear", this.clear, this);
6577         
6578         this.el.on("contextmenu", this.onContextMenu, this);
6579         
6580         this.mainBody.on('scroll', this.onBodyScroll, this);
6581         
6582         this.cm.on("headerchange", this.onHeaderChange, this);
6583         
6584         this.cm.on("hiddenchange", this.onHiddenChange, this, arguments);
6585         
6586     },
6587     
6588     onContextMenu : function(e, t)
6589     {
6590         this.processEvent("contextmenu", e);
6591     },
6592     
6593     processEvent : function(name, e)
6594     {
6595         if (name != 'touchstart' ) {
6596             this.fireEvent(name, e);    
6597         }
6598         
6599         var t = e.getTarget();
6600         
6601         var cell = Roo.get(t);
6602         
6603         if(!cell){
6604             return;
6605         }
6606         
6607         if(cell.findParent('tfoot', false, true)){
6608             return;
6609         }
6610         
6611         if(cell.findParent('thead', false, true)){
6612             
6613             if(e.getTarget().nodeName.toLowerCase() != 'th'){
6614                 cell = Roo.get(t).findParent('th', false, true);
6615                 if (!cell) {
6616                     Roo.log("failed to find th in thead?");
6617                     Roo.log(e.getTarget());
6618                     return;
6619                 }
6620             }
6621             
6622             var cellIndex = cell.dom.cellIndex;
6623             
6624             var ename = name == 'touchstart' ? 'click' : name;
6625             this.fireEvent("header" + ename, this, cellIndex, e);
6626             
6627             return;
6628         }
6629         
6630         if(e.getTarget().nodeName.toLowerCase() != 'td'){
6631             cell = Roo.get(t).findParent('td', false, true);
6632             if (!cell) {
6633                 Roo.log("failed to find th in tbody?");
6634                 Roo.log(e.getTarget());
6635                 return;
6636             }
6637         }
6638         
6639         var row = cell.findParent('tr', false, true);
6640         var cellIndex = cell.dom.cellIndex;
6641         var rowIndex = row.dom.rowIndex - 1;
6642         
6643         if(row !== false){
6644             
6645             this.fireEvent("row" + name, this, rowIndex, e);
6646             
6647             if(cell !== false){
6648             
6649                 this.fireEvent("cell" + name, this, rowIndex, cellIndex, e);
6650             }
6651         }
6652         
6653     },
6654     
6655     onMouseover : function(e, el)
6656     {
6657         var cell = Roo.get(el);
6658         
6659         if(!cell){
6660             return;
6661         }
6662         
6663         if(e.getTarget().nodeName.toLowerCase() != 'td'){
6664             cell = cell.findParent('td', false, true);
6665         }
6666         
6667         var row = cell.findParent('tr', false, true);
6668         var cellIndex = cell.dom.cellIndex;
6669         var rowIndex = row.dom.rowIndex - 1; // start from 0
6670         
6671         this.fireEvent('mouseover', this, cell, rowIndex, cellIndex, e);
6672         
6673     },
6674     
6675     onMouseout : function(e, el)
6676     {
6677         var cell = Roo.get(el);
6678         
6679         if(!cell){
6680             return;
6681         }
6682         
6683         if(e.getTarget().nodeName.toLowerCase() != 'td'){
6684             cell = cell.findParent('td', false, true);
6685         }
6686         
6687         var row = cell.findParent('tr', false, true);
6688         var cellIndex = cell.dom.cellIndex;
6689         var rowIndex = row.dom.rowIndex - 1; // start from 0
6690         
6691         this.fireEvent('mouseout', this, cell, rowIndex, cellIndex, e);
6692         
6693     },
6694     
6695     onClick : function(e, el)
6696     {
6697         var cell = Roo.get(el);
6698         
6699         if(!cell || (!this.cellSelection && !this.rowSelection)){
6700             return;
6701         }
6702         
6703         if(e.getTarget().nodeName.toLowerCase() != 'td'){
6704             cell = cell.findParent('td', false, true);
6705         }
6706         
6707         if(!cell || typeof(cell) == 'undefined'){
6708             return;
6709         }
6710         
6711         var row = cell.findParent('tr', false, true);
6712         
6713         if(!row || typeof(row) == 'undefined'){
6714             return;
6715         }
6716         
6717         var cellIndex = cell.dom.cellIndex;
6718         var rowIndex = this.getRowIndex(row);
6719         
6720         // why??? - should these not be based on SelectionModel?
6721         if(this.cellSelection){
6722             this.fireEvent('cellclick', this, cell, rowIndex, cellIndex, e);
6723         }
6724         
6725         if(this.rowSelection){
6726             this.fireEvent('rowclick', this, row, rowIndex, e);
6727         }
6728         
6729         
6730     },
6731         
6732     onDblClick : function(e,el)
6733     {
6734         var cell = Roo.get(el);
6735         
6736         if(!cell || (!this.cellSelection && !this.rowSelection)){
6737             return;
6738         }
6739         
6740         if(e.getTarget().nodeName.toLowerCase() != 'td'){
6741             cell = cell.findParent('td', false, true);
6742         }
6743         
6744         if(!cell || typeof(cell) == 'undefined'){
6745             return;
6746         }
6747         
6748         var row = cell.findParent('tr', false, true);
6749         
6750         if(!row || typeof(row) == 'undefined'){
6751             return;
6752         }
6753         
6754         var cellIndex = cell.dom.cellIndex;
6755         var rowIndex = this.getRowIndex(row);
6756         
6757         if(this.cellSelection){
6758             this.fireEvent('celldblclick', this, cell, rowIndex, cellIndex, e);
6759         }
6760         
6761         if(this.rowSelection){
6762             this.fireEvent('rowdblclick', this, row, rowIndex, e);
6763         }
6764     },
6765     
6766     sort : function(e,el)
6767     {
6768         var col = Roo.get(el);
6769         
6770         if(!col.hasClass('sortable')){
6771             return;
6772         }
6773         
6774         var sort = col.attr('sort');
6775         var dir = 'ASC';
6776         
6777         if(col.select('i', true).first().hasClass('glyphicon-arrow-up')){
6778             dir = 'DESC';
6779         }
6780         
6781         this.store.sortInfo = {field : sort, direction : dir};
6782         
6783         if (this.footer) {
6784             Roo.log("calling footer first");
6785             this.footer.onClick('first');
6786         } else {
6787         
6788             this.store.load({ params : { start : 0 } });
6789         }
6790     },
6791     
6792     renderHeader : function()
6793     {
6794         var header = {
6795             tag: 'thead',
6796             cn : []
6797         };
6798         
6799         var cm = this.cm;
6800         this.totalWidth = 0;
6801         
6802         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
6803             
6804             var config = cm.config[i];
6805             
6806             var c = {
6807                 tag: 'th',
6808                 cls : 'x-hcol-' + i,
6809                 style : '',
6810                 html: cm.getColumnHeader(i)
6811             };
6812             
6813             var hh = '';
6814             
6815             if(typeof(config.sortable) != 'undefined' && config.sortable){
6816                 c.cls = 'sortable';
6817                 c.html = '<i class="glyphicon"></i>' + c.html;
6818             }
6819             
6820             // could use BS4 hidden-..-down 
6821             
6822             if(typeof(config.lgHeader) != 'undefined'){
6823                 hh += '<span class="hidden-xs hidden-sm hidden-md ">' + config.lgHeader + '</span>';
6824             }
6825             
6826             if(typeof(config.mdHeader) != 'undefined'){
6827                 hh += '<span class="hidden-xs hidden-sm hidden-lg">' + config.mdHeader + '</span>';
6828             }
6829             
6830             if(typeof(config.smHeader) != 'undefined'){
6831                 hh += '<span class="hidden-xs hidden-md hidden-lg">' + config.smHeader + '</span>';
6832             }
6833             
6834             if(typeof(config.xsHeader) != 'undefined'){
6835                 hh += '<span class="hidden-sm hidden-md hidden-lg">' + config.xsHeader + '</span>';
6836             }
6837             
6838             if(hh.length){
6839                 c.html = hh;
6840             }
6841             
6842             if(typeof(config.tooltip) != 'undefined'){
6843                 c.tooltip = config.tooltip;
6844             }
6845             
6846             if(typeof(config.colspan) != 'undefined'){
6847                 c.colspan = config.colspan;
6848             }
6849             
6850             if(typeof(config.hidden) != 'undefined' && config.hidden){
6851                 c.style += ' display:none;';
6852             }
6853             
6854             if(typeof(config.dataIndex) != 'undefined'){
6855                 c.sort = config.dataIndex;
6856             }
6857             
6858            
6859             
6860             if(typeof(config.align) != 'undefined' && config.align.length){
6861                 c.style += ' text-align:' + config.align + ';';
6862             }
6863             
6864             if(typeof(config.width) != 'undefined'){
6865                 c.style += ' width:' + config.width + 'px;';
6866                 this.totalWidth += config.width;
6867             } else {
6868                 this.totalWidth += 100; // assume minimum of 100 per column?
6869             }
6870             
6871             if(typeof(config.cls) != 'undefined'){
6872                 c.cls = (typeof(c.cls) == 'undefined') ? config.cls : (c.cls + ' ' + config.cls);
6873             }
6874             
6875             ['xs','sm','md','lg'].map(function(size){
6876                 
6877                 if(typeof(config[size]) == 'undefined'){
6878                     return;
6879                 }
6880                  
6881                 if (!config[size]) { // 0 = hidden
6882                     // BS 4 '0' is treated as hide that column and below.
6883                     c.cls += ' hidden-' + size + ' hidden' + size + 'down';
6884                     return;
6885                 }
6886                 
6887                 c.cls += ' col-' + size + '-' + config[size] + (
6888                     size == 'xs' ? (' col-' + config[size] ) : '' // bs4 col-{num} replaces col-xs
6889                 );
6890                 
6891                 
6892             });
6893             
6894             header.cn.push(c)
6895         }
6896         
6897         return header;
6898     },
6899     
6900     renderBody : function()
6901     {
6902         var body = {
6903             tag: 'tbody',
6904             cn : [
6905                 {
6906                     tag: 'tr',
6907                     cn : [
6908                         {
6909                             tag : 'td',
6910                             colspan :  this.cm.getColumnCount()
6911                         }
6912                     ]
6913                 }
6914             ]
6915         };
6916         
6917         return body;
6918     },
6919     
6920     renderFooter : function()
6921     {
6922         var footer = {
6923             tag: 'tfoot',
6924             cn : [
6925                 {
6926                     tag: 'tr',
6927                     cn : [
6928                         {
6929                             tag : 'td',
6930                             colspan :  this.cm.getColumnCount()
6931                         }
6932                     ]
6933                 }
6934             ]
6935         };
6936         
6937         return footer;
6938     },
6939     
6940     
6941     
6942     onLoad : function()
6943     {
6944 //        Roo.log('ds onload');
6945         this.clear();
6946         
6947         var _this = this;
6948         var cm = this.cm;
6949         var ds = this.store;
6950         
6951         Roo.each(this.el.select('thead th.sortable', true).elements, function(e){
6952             e.select('i', true).removeClass(['glyphicon-arrow-up', 'glyphicon-arrow-down']);
6953             if (_this.store.sortInfo) {
6954                     
6955                 if(e.hasClass('sortable') && e.attr('sort') == _this.store.sortInfo.field && _this.store.sortInfo.direction.toUpperCase() == 'ASC'){
6956                     e.select('i', true).addClass(['glyphicon-arrow-up']);
6957                 }
6958                 
6959                 if(e.hasClass('sortable') && e.attr('sort') == _this.store.sortInfo.field && _this.store.sortInfo.direction.toUpperCase() == 'DESC'){
6960                     e.select('i', true).addClass(['glyphicon-arrow-down']);
6961                 }
6962             }
6963         });
6964         
6965         var tbody =  this.mainBody;
6966               
6967         if(ds.getCount() > 0){
6968             ds.data.each(function(d,rowIndex){
6969                 var row =  this.renderRow(cm, ds, rowIndex);
6970                 
6971                 tbody.createChild(row);
6972                 
6973                 var _this = this;
6974                 
6975                 if(row.cellObjects.length){
6976                     Roo.each(row.cellObjects, function(r){
6977                         _this.renderCellObject(r);
6978                     })
6979                 }
6980                 
6981             }, this);
6982         }
6983         
6984         var tfoot = this.el.select('tfoot', true).first();
6985         
6986         if(this.footerShow && this.auto_hide_footer && this.mainFoot){
6987             
6988             this.mainFoot.setVisibilityMode(Roo.Element.DISPLAY).hide();
6989             
6990             var total = this.ds.getTotalCount();
6991             
6992             if(this.footer.pageSize < total){
6993                 this.mainFoot.show();
6994             }
6995         }
6996         
6997         Roo.each(this.el.select('tbody td', true).elements, function(e){
6998             e.on('mouseover', _this.onMouseover, _this);
6999         });
7000         
7001         Roo.each(this.el.select('tbody td', true).elements, function(e){
7002             e.on('mouseout', _this.onMouseout, _this);
7003         });
7004         this.fireEvent('rowsrendered', this);
7005         
7006         this.autoSize();
7007     },
7008     
7009     
7010     onUpdate : function(ds,record)
7011     {
7012         this.refreshRow(record);
7013         this.autoSize();
7014     },
7015     
7016     onRemove : function(ds, record, index, isUpdate){
7017         if(isUpdate !== true){
7018             this.fireEvent("beforerowremoved", this, index, record);
7019         }
7020         var bt = this.mainBody.dom;
7021         
7022         var rows = this.el.select('tbody > tr', true).elements;
7023         
7024         if(typeof(rows[index]) != 'undefined'){
7025             bt.removeChild(rows[index].dom);
7026         }
7027         
7028 //        if(bt.rows[index]){
7029 //            bt.removeChild(bt.rows[index]);
7030 //        }
7031         
7032         if(isUpdate !== true){
7033             //this.stripeRows(index);
7034             //this.syncRowHeights(index, index);
7035             //this.layout();
7036             this.fireEvent("rowremoved", this, index, record);
7037         }
7038     },
7039     
7040     onAdd : function(ds, records, rowIndex)
7041     {
7042         //Roo.log('on Add called');
7043         // - note this does not handle multiple adding very well..
7044         var bt = this.mainBody.dom;
7045         for (var i =0 ; i < records.length;i++) {
7046             //Roo.log('call insert row Add called on ' + rowIndex + ':' + i);
7047             //Roo.log(records[i]);
7048             //Roo.log(this.store.getAt(rowIndex+i));
7049             this.insertRow(this.store, rowIndex + i, false);
7050             return;
7051         }
7052         
7053     },
7054     
7055     
7056     refreshRow : function(record){
7057         var ds = this.store, index;
7058         if(typeof record == 'number'){
7059             index = record;
7060             record = ds.getAt(index);
7061         }else{
7062             index = ds.indexOf(record);
7063         }
7064         this.insertRow(ds, index, true);
7065         this.autoSize();
7066         this.onRemove(ds, record, index+1, true);
7067         this.autoSize();
7068         //this.syncRowHeights(index, index);
7069         //this.layout();
7070         this.fireEvent("rowupdated", this, index, record);
7071     },
7072     
7073     insertRow : function(dm, rowIndex, isUpdate){
7074         
7075         if(!isUpdate){
7076             this.fireEvent("beforerowsinserted", this, rowIndex);
7077         }
7078             //var s = this.getScrollState();
7079         var row = this.renderRow(this.cm, this.store, rowIndex);
7080         // insert before rowIndex..
7081         var e = this.mainBody.createChild(row,this.getRowDom(rowIndex));
7082         
7083         var _this = this;
7084                 
7085         if(row.cellObjects.length){
7086             Roo.each(row.cellObjects, function(r){
7087                 _this.renderCellObject(r);
7088             })
7089         }
7090             
7091         if(!isUpdate){
7092             this.fireEvent("rowsinserted", this, rowIndex);
7093             //this.syncRowHeights(firstRow, lastRow);
7094             //this.stripeRows(firstRow);
7095             //this.layout();
7096         }
7097         
7098     },
7099     
7100     
7101     getRowDom : function(rowIndex)
7102     {
7103         var rows = this.el.select('tbody > tr', true).elements;
7104         
7105         return (typeof(rows[rowIndex]) == 'undefined') ? false : rows[rowIndex];
7106         
7107     },
7108     // returns the object tree for a tr..
7109   
7110     
7111     renderRow : function(cm, ds, rowIndex) 
7112     {
7113         var d = ds.getAt(rowIndex);
7114         
7115         var row = {
7116             tag : 'tr',
7117             cls : 'x-row-' + rowIndex,
7118             cn : []
7119         };
7120             
7121         var cellObjects = [];
7122         
7123         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
7124             var config = cm.config[i];
7125             
7126             var renderer = cm.getRenderer(i);
7127             var value = '';
7128             var id = false;
7129             
7130             if(typeof(renderer) !== 'undefined'){
7131                 value = renderer(d.data[cm.getDataIndex(i)], false, d);
7132             }
7133             // if object are returned, then they are expected to be Roo.bootstrap.Component instances
7134             // and are rendered into the cells after the row is rendered - using the id for the element.
7135             
7136             if(typeof(value) === 'object'){
7137                 id = Roo.id();
7138                 cellObjects.push({
7139                     container : id,
7140                     cfg : value 
7141                 })
7142             }
7143             
7144             var rowcfg = {
7145                 record: d,
7146                 rowIndex : rowIndex,
7147                 colIndex : i,
7148                 rowClass : ''
7149             };
7150
7151             this.fireEvent('rowclass', this, rowcfg);
7152             
7153             var td = {
7154                 tag: 'td',
7155                 cls : rowcfg.rowClass + ' x-col-' + i,
7156                 style: '',
7157                 html: (typeof(value) === 'object') ? '' : value
7158             };
7159             
7160             if (id) {
7161                 td.id = id;
7162             }
7163             
7164             if(typeof(config.colspan) != 'undefined'){
7165                 td.colspan = config.colspan;
7166             }
7167             
7168             if(typeof(config.hidden) != 'undefined' && config.hidden){
7169                 td.style += ' display:none;';
7170             }
7171             
7172             if(typeof(config.align) != 'undefined' && config.align.length){
7173                 td.style += ' text-align:' + config.align + ';';
7174             }
7175             if(typeof(config.valign) != 'undefined' && config.valign.length){
7176                 td.style += ' vertical-align:' + config.valign + ';';
7177             }
7178             
7179             if(typeof(config.width) != 'undefined'){
7180                 td.style += ' width:' +  config.width + 'px;';
7181             }
7182             
7183             if(typeof(config.cursor) != 'undefined'){
7184                 td.style += ' cursor:' +  config.cursor + ';';
7185             }
7186             
7187             if(typeof(config.cls) != 'undefined'){
7188                 td.cls = (typeof(td.cls) == 'undefined') ? config.cls : (td.cls + ' ' + config.cls);
7189             }
7190             
7191             ['xs','sm','md','lg'].map(function(size){
7192                 
7193                 if(typeof(config[size]) == 'undefined'){
7194                     return;
7195                 }
7196                 
7197                 
7198                   
7199                 if (!config[size]) { // 0 = hidden
7200                     // BS 4 '0' is treated as hide that column and below.
7201                     td.cls += ' hidden-' + size + ' hidden' + size + 'down';
7202                     return;
7203                 }
7204                 
7205                 td.cls += ' col-' + size + '-' + config[size] + (
7206                     size == 'xs' ? (' col-' +   config[size] ) : '' // bs4 col-{num} replaces col-xs
7207                 );
7208                  
7209
7210             });
7211             
7212             row.cn.push(td);
7213            
7214         }
7215         
7216         row.cellObjects = cellObjects;
7217         
7218         return row;
7219           
7220     },
7221     
7222     
7223     
7224     onBeforeLoad : function()
7225     {
7226         
7227     },
7228      /**
7229      * Remove all rows
7230      */
7231     clear : function()
7232     {
7233         this.el.select('tbody', true).first().dom.innerHTML = '';
7234     },
7235     /**
7236      * Show or hide a row.
7237      * @param {Number} rowIndex to show or hide
7238      * @param {Boolean} state hide
7239      */
7240     setRowVisibility : function(rowIndex, state)
7241     {
7242         var bt = this.mainBody.dom;
7243         
7244         var rows = this.el.select('tbody > tr', true).elements;
7245         
7246         if(typeof(rows[rowIndex]) == 'undefined'){
7247             return;
7248         }
7249         rows[rowIndex].dom.style.display = state ? '' : 'none';
7250     },
7251     
7252     
7253     getSelectionModel : function(){
7254         if(!this.selModel){
7255             this.selModel = new Roo.bootstrap.Table.RowSelectionModel({grid: this});
7256         }
7257         return this.selModel;
7258     },
7259     /*
7260      * Render the Roo.bootstrap object from renderder
7261      */
7262     renderCellObject : function(r)
7263     {
7264         var _this = this;
7265         
7266         r.cfg.parentId = (typeof(r.container) == 'string') ? r.container : r.container.id;
7267         
7268         var t = r.cfg.render(r.container);
7269         
7270         if(r.cfg.cn){
7271             Roo.each(r.cfg.cn, function(c){
7272                 var child = {
7273                     container: t.getChildContainer(),
7274                     cfg: c
7275                 };
7276                 _this.renderCellObject(child);
7277             })
7278         }
7279     },
7280     
7281     getRowIndex : function(row)
7282     {
7283         var rowIndex = -1;
7284         
7285         Roo.each(this.el.select('tbody > tr', true).elements, function(el, index){
7286             if(el != row){
7287                 return;
7288             }
7289             
7290             rowIndex = index;
7291         });
7292         
7293         return rowIndex;
7294     },
7295      /**
7296      * Returns the grid's underlying element = used by panel.Grid
7297      * @return {Element} The element
7298      */
7299     getGridEl : function(){
7300         return this.el;
7301     },
7302      /**
7303      * Forces a resize - used by panel.Grid
7304      * @return {Element} The element
7305      */
7306     autoSize : function()
7307     {
7308         //var ctr = Roo.get(this.container.dom.parentElement);
7309         var ctr = Roo.get(this.el.dom);
7310         
7311         var thd = this.getGridEl().select('thead',true).first();
7312         var tbd = this.getGridEl().select('tbody', true).first();
7313         var tfd = this.getGridEl().select('tfoot', true).first();
7314         
7315         var cw = ctr.getWidth();
7316         
7317         if (tbd) {
7318             
7319             tbd.setSize(ctr.getWidth(),
7320                         ctr.getHeight() - ((thd ? thd.getHeight() : 0) + (tfd ? tfd.getHeight() : 0))
7321             );
7322             var barsize = (tbd.dom.offsetWidth - tbd.dom.clientWidth);
7323             cw -= barsize;
7324         }
7325         cw = Math.max(cw, this.totalWidth);
7326         this.getGridEl().select('tr',true).setWidth(cw);
7327         // resize 'expandable coloumn?
7328         
7329         return; // we doe not have a view in this design..
7330         
7331     },
7332     onBodyScroll: function()
7333     {
7334         //Roo.log("body scrolled');" + this.mainBody.dom.scrollLeft);
7335         if(this.mainHead){
7336             this.mainHead.setStyle({
7337                 'position' : 'relative',
7338                 'left': (-1* this.mainBody.dom.scrollLeft) + 'px'
7339             });
7340         }
7341         
7342         if(this.lazyLoad){
7343             
7344             var scrollHeight = this.mainBody.dom.scrollHeight;
7345             
7346             var scrollTop = Math.ceil(this.mainBody.getScroll().top);
7347             
7348             var height = this.mainBody.getHeight();
7349             
7350             if(scrollHeight - height == scrollTop) {
7351                 
7352                 var total = this.ds.getTotalCount();
7353                 
7354                 if(this.footer.cursor + this.footer.pageSize < total){
7355                     
7356                     this.footer.ds.load({
7357                         params : {
7358                             start : this.footer.cursor + this.footer.pageSize,
7359                             limit : this.footer.pageSize
7360                         },
7361                         add : true
7362                     });
7363                 }
7364             }
7365             
7366         }
7367     },
7368     
7369     onHeaderChange : function()
7370     {
7371         var header = this.renderHeader();
7372         var table = this.el.select('table', true).first();
7373         
7374         this.mainHead.remove();
7375         this.mainHead = table.createChild(header, this.mainBody, false);
7376     },
7377     
7378     onHiddenChange : function(colModel, colIndex, hidden)
7379     {
7380         var thSelector = '#' + this.id + ' .x-hcol-' + colIndex;
7381         var tdSelector = '#' + this.id + ' .x-col-' + colIndex;
7382         
7383         this.CSS.updateRule(thSelector, "display", "");
7384         this.CSS.updateRule(tdSelector, "display", "");
7385         
7386         if(hidden){
7387             this.CSS.updateRule(thSelector, "display", "none");
7388             this.CSS.updateRule(tdSelector, "display", "none");
7389         }
7390         
7391         this.onHeaderChange();
7392         this.onLoad();
7393     },
7394     
7395     setColumnWidth: function(col_index, width)
7396     {
7397         // width = "md-2 xs-2..."
7398         if(!this.colModel.config[col_index]) {
7399             return;
7400         }
7401         
7402         var w = width.split(" ");
7403         
7404         var rows = this.el.dom.getElementsByClassName("x-col-"+col_index);
7405         
7406         var h_row = this.el.dom.getElementsByClassName("x-hcol-"+col_index);
7407         
7408         
7409         for(var j = 0; j < w.length; j++) {
7410             
7411             if(!w[j]) {
7412                 continue;
7413             }
7414             
7415             var size_cls = w[j].split("-");
7416             
7417             if(!Number.isInteger(size_cls[1] * 1)) {
7418                 continue;
7419             }
7420             
7421             if(!this.colModel.config[col_index][size_cls[0]]) {
7422                 continue;
7423             }
7424             
7425             if(!h_row[0].classList.contains("col-"+size_cls[0]+"-"+this.colModel.config[col_index][size_cls[0]])) {
7426                 continue;
7427             }
7428             
7429             h_row[0].classList.replace(
7430                 "col-"+size_cls[0]+"-"+this.colModel.config[col_index][size_cls[0]],
7431                 "col-"+size_cls[0]+"-"+size_cls[1]
7432             );
7433             
7434             for(var i = 0; i < rows.length; i++) {
7435                 
7436                 var size_cls = w[j].split("-");
7437                 
7438                 if(!Number.isInteger(size_cls[1] * 1)) {
7439                     continue;
7440                 }
7441                 
7442                 if(!this.colModel.config[col_index][size_cls[0]]) {
7443                     continue;
7444                 }
7445                 
7446                 if(!rows[i].classList.contains("col-"+size_cls[0]+"-"+this.colModel.config[col_index][size_cls[0]])) {
7447                     continue;
7448                 }
7449                 
7450                 rows[i].classList.replace(
7451                     "col-"+size_cls[0]+"-"+this.colModel.config[col_index][size_cls[0]],
7452                     "col-"+size_cls[0]+"-"+size_cls[1]
7453                 );
7454             }
7455             
7456             this.colModel.config[col_index][size_cls[0]] = size_cls[1];
7457         }
7458     }
7459 });
7460
7461  
7462
7463  /*
7464  * - LGPL
7465  *
7466  * table cell
7467  * 
7468  */
7469
7470 /**
7471  * @class Roo.bootstrap.TableCell
7472  * @extends Roo.bootstrap.Component
7473  * Bootstrap TableCell class
7474  * @cfg {String} html cell contain text
7475  * @cfg {String} cls cell class
7476  * @cfg {String} tag cell tag (td|th) default td
7477  * @cfg {String} abbr Specifies an abbreviated version of the content in a cell
7478  * @cfg {String} align Aligns the content in a cell
7479  * @cfg {String} axis Categorizes cells
7480  * @cfg {String} bgcolor Specifies the background color of a cell
7481  * @cfg {Number} charoff Sets the number of characters the content will be aligned from the character specified by the char attribute
7482  * @cfg {Number} colspan Specifies the number of columns a cell should span
7483  * @cfg {String} headers Specifies one or more header cells a cell is related to
7484  * @cfg {Number} height Sets the height of a cell
7485  * @cfg {String} nowrap Specifies that the content inside a cell should not wrap
7486  * @cfg {Number} rowspan Sets the number of rows a cell should span
7487  * @cfg {String} scope Defines a way to associate header cells and data cells in a table
7488  * @cfg {String} valign Vertical aligns the content in a cell
7489  * @cfg {Number} width Specifies the width of a cell
7490  * 
7491  * @constructor
7492  * Create a new TableCell
7493  * @param {Object} config The config object
7494  */
7495
7496 Roo.bootstrap.TableCell = function(config){
7497     Roo.bootstrap.TableCell.superclass.constructor.call(this, config);
7498 };
7499
7500 Roo.extend(Roo.bootstrap.TableCell, Roo.bootstrap.Component,  {
7501     
7502     html: false,
7503     cls: false,
7504     tag: false,
7505     abbr: false,
7506     align: false,
7507     axis: false,
7508     bgcolor: false,
7509     charoff: false,
7510     colspan: false,
7511     headers: false,
7512     height: false,
7513     nowrap: false,
7514     rowspan: false,
7515     scope: false,
7516     valign: false,
7517     width: false,
7518     
7519     
7520     getAutoCreate : function(){
7521         var cfg = Roo.apply({}, Roo.bootstrap.TableCell.superclass.getAutoCreate.call(this));
7522         
7523         cfg = {
7524             tag: 'td'
7525         };
7526         
7527         if(this.tag){
7528             cfg.tag = this.tag;
7529         }
7530         
7531         if (this.html) {
7532             cfg.html=this.html
7533         }
7534         if (this.cls) {
7535             cfg.cls=this.cls
7536         }
7537         if (this.abbr) {
7538             cfg.abbr=this.abbr
7539         }
7540         if (this.align) {
7541             cfg.align=this.align
7542         }
7543         if (this.axis) {
7544             cfg.axis=this.axis
7545         }
7546         if (this.bgcolor) {
7547             cfg.bgcolor=this.bgcolor
7548         }
7549         if (this.charoff) {
7550             cfg.charoff=this.charoff
7551         }
7552         if (this.colspan) {
7553             cfg.colspan=this.colspan
7554         }
7555         if (this.headers) {
7556             cfg.headers=this.headers
7557         }
7558         if (this.height) {
7559             cfg.height=this.height
7560         }
7561         if (this.nowrap) {
7562             cfg.nowrap=this.nowrap
7563         }
7564         if (this.rowspan) {
7565             cfg.rowspan=this.rowspan
7566         }
7567         if (this.scope) {
7568             cfg.scope=this.scope
7569         }
7570         if (this.valign) {
7571             cfg.valign=this.valign
7572         }
7573         if (this.width) {
7574             cfg.width=this.width
7575         }
7576         
7577         
7578         return cfg;
7579     }
7580    
7581 });
7582
7583  
7584
7585  /*
7586  * - LGPL
7587  *
7588  * table row
7589  * 
7590  */
7591
7592 /**
7593  * @class Roo.bootstrap.TableRow
7594  * @extends Roo.bootstrap.Component
7595  * Bootstrap TableRow class
7596  * @cfg {String} cls row class
7597  * @cfg {String} align Aligns the content in a table row
7598  * @cfg {String} bgcolor Specifies a background color for a table row
7599  * @cfg {Number} charoff Sets the number of characters the content will be aligned from the character specified by the char attribute
7600  * @cfg {String} valign Vertical aligns the content in a table row
7601  * 
7602  * @constructor
7603  * Create a new TableRow
7604  * @param {Object} config The config object
7605  */
7606
7607 Roo.bootstrap.TableRow = function(config){
7608     Roo.bootstrap.TableRow.superclass.constructor.call(this, config);
7609 };
7610
7611 Roo.extend(Roo.bootstrap.TableRow, Roo.bootstrap.Component,  {
7612     
7613     cls: false,
7614     align: false,
7615     bgcolor: false,
7616     charoff: false,
7617     valign: false,
7618     
7619     getAutoCreate : function(){
7620         var cfg = Roo.apply({}, Roo.bootstrap.TableRow.superclass.getAutoCreate.call(this));
7621         
7622         cfg = {
7623             tag: 'tr'
7624         };
7625             
7626         if(this.cls){
7627             cfg.cls = this.cls;
7628         }
7629         if(this.align){
7630             cfg.align = this.align;
7631         }
7632         if(this.bgcolor){
7633             cfg.bgcolor = this.bgcolor;
7634         }
7635         if(this.charoff){
7636             cfg.charoff = this.charoff;
7637         }
7638         if(this.valign){
7639             cfg.valign = this.valign;
7640         }
7641         
7642         return cfg;
7643     }
7644    
7645 });
7646
7647  
7648
7649  /*
7650  * - LGPL
7651  *
7652  * table body
7653  * 
7654  */
7655
7656 /**
7657  * @class Roo.bootstrap.TableBody
7658  * @extends Roo.bootstrap.Component
7659  * Bootstrap TableBody class
7660  * @cfg {String} cls element class
7661  * @cfg {String} tag element tag (thead|tbody|tfoot) default tbody
7662  * @cfg {String} align Aligns the content inside the element
7663  * @cfg {Number} charoff Sets the number of characters the content inside the element will be aligned from the character specified by the char attribute
7664  * @cfg {String} valign Vertical aligns the content inside the <tbody> element
7665  * 
7666  * @constructor
7667  * Create a new TableBody
7668  * @param {Object} config The config object
7669  */
7670
7671 Roo.bootstrap.TableBody = function(config){
7672     Roo.bootstrap.TableBody.superclass.constructor.call(this, config);
7673 };
7674
7675 Roo.extend(Roo.bootstrap.TableBody, Roo.bootstrap.Component,  {
7676     
7677     cls: false,
7678     tag: false,
7679     align: false,
7680     charoff: false,
7681     valign: false,
7682     
7683     getAutoCreate : function(){
7684         var cfg = Roo.apply({}, Roo.bootstrap.TableBody.superclass.getAutoCreate.call(this));
7685         
7686         cfg = {
7687             tag: 'tbody'
7688         };
7689             
7690         if (this.cls) {
7691             cfg.cls=this.cls
7692         }
7693         if(this.tag){
7694             cfg.tag = this.tag;
7695         }
7696         
7697         if(this.align){
7698             cfg.align = this.align;
7699         }
7700         if(this.charoff){
7701             cfg.charoff = this.charoff;
7702         }
7703         if(this.valign){
7704             cfg.valign = this.valign;
7705         }
7706         
7707         return cfg;
7708     }
7709     
7710     
7711 //    initEvents : function()
7712 //    {
7713 //        
7714 //        if(!this.store){
7715 //            return;
7716 //        }
7717 //        
7718 //        this.store = Roo.factory(this.store, Roo.data);
7719 //        this.store.on('load', this.onLoad, this);
7720 //        
7721 //        this.store.load();
7722 //        
7723 //    },
7724 //    
7725 //    onLoad: function () 
7726 //    {   
7727 //        this.fireEvent('load', this);
7728 //    }
7729 //    
7730 //   
7731 });
7732
7733  
7734
7735  /*
7736  * Based on:
7737  * Ext JS Library 1.1.1
7738  * Copyright(c) 2006-2007, Ext JS, LLC.
7739  *
7740  * Originally Released Under LGPL - original licence link has changed is not relivant.
7741  *
7742  * Fork - LGPL
7743  * <script type="text/javascript">
7744  */
7745
7746 // as we use this in bootstrap.
7747 Roo.namespace('Roo.form');
7748  /**
7749  * @class Roo.form.Action
7750  * Internal Class used to handle form actions
7751  * @constructor
7752  * @param {Roo.form.BasicForm} el The form element or its id
7753  * @param {Object} config Configuration options
7754  */
7755
7756  
7757  
7758 // define the action interface
7759 Roo.form.Action = function(form, options){
7760     this.form = form;
7761     this.options = options || {};
7762 };
7763 /**
7764  * Client Validation Failed
7765  * @const 
7766  */
7767 Roo.form.Action.CLIENT_INVALID = 'client';
7768 /**
7769  * Server Validation Failed
7770  * @const 
7771  */
7772 Roo.form.Action.SERVER_INVALID = 'server';
7773  /**
7774  * Connect to Server Failed
7775  * @const 
7776  */
7777 Roo.form.Action.CONNECT_FAILURE = 'connect';
7778 /**
7779  * Reading Data from Server Failed
7780  * @const 
7781  */
7782 Roo.form.Action.LOAD_FAILURE = 'load';
7783
7784 Roo.form.Action.prototype = {
7785     type : 'default',
7786     failureType : undefined,
7787     response : undefined,
7788     result : undefined,
7789
7790     // interface method
7791     run : function(options){
7792
7793     },
7794
7795     // interface method
7796     success : function(response){
7797
7798     },
7799
7800     // interface method
7801     handleResponse : function(response){
7802
7803     },
7804
7805     // default connection failure
7806     failure : function(response){
7807         
7808         this.response = response;
7809         this.failureType = Roo.form.Action.CONNECT_FAILURE;
7810         this.form.afterAction(this, false);
7811     },
7812
7813     processResponse : function(response){
7814         this.response = response;
7815         if(!response.responseText){
7816             return true;
7817         }
7818         this.result = this.handleResponse(response);
7819         return this.result;
7820     },
7821
7822     // utility functions used internally
7823     getUrl : function(appendParams){
7824         var url = this.options.url || this.form.url || this.form.el.dom.action;
7825         if(appendParams){
7826             var p = this.getParams();
7827             if(p){
7828                 url += (url.indexOf('?') != -1 ? '&' : '?') + p;
7829             }
7830         }
7831         return url;
7832     },
7833
7834     getMethod : function(){
7835         return (this.options.method || this.form.method || this.form.el.dom.method || 'POST').toUpperCase();
7836     },
7837
7838     getParams : function(){
7839         var bp = this.form.baseParams;
7840         var p = this.options.params;
7841         if(p){
7842             if(typeof p == "object"){
7843                 p = Roo.urlEncode(Roo.applyIf(p, bp));
7844             }else if(typeof p == 'string' && bp){
7845                 p += '&' + Roo.urlEncode(bp);
7846             }
7847         }else if(bp){
7848             p = Roo.urlEncode(bp);
7849         }
7850         return p;
7851     },
7852
7853     createCallback : function(){
7854         return {
7855             success: this.success,
7856             failure: this.failure,
7857             scope: this,
7858             timeout: (this.form.timeout*1000),
7859             upload: this.form.fileUpload ? this.success : undefined
7860         };
7861     }
7862 };
7863
7864 Roo.form.Action.Submit = function(form, options){
7865     Roo.form.Action.Submit.superclass.constructor.call(this, form, options);
7866 };
7867
7868 Roo.extend(Roo.form.Action.Submit, Roo.form.Action, {
7869     type : 'submit',
7870
7871     haveProgress : false,
7872     uploadComplete : false,
7873     
7874     // uploadProgress indicator.
7875     uploadProgress : function()
7876     {
7877         if (!this.form.progressUrl) {
7878             return;
7879         }
7880         
7881         if (!this.haveProgress) {
7882             Roo.MessageBox.progress("Uploading", "Uploading");
7883         }
7884         if (this.uploadComplete) {
7885            Roo.MessageBox.hide();
7886            return;
7887         }
7888         
7889         this.haveProgress = true;
7890    
7891         var uid = this.form.findField('UPLOAD_IDENTIFIER').getValue();
7892         
7893         var c = new Roo.data.Connection();
7894         c.request({
7895             url : this.form.progressUrl,
7896             params: {
7897                 id : uid
7898             },
7899             method: 'GET',
7900             success : function(req){
7901                //console.log(data);
7902                 var rdata = false;
7903                 var edata;
7904                 try  {
7905                    rdata = Roo.decode(req.responseText)
7906                 } catch (e) {
7907                     Roo.log("Invalid data from server..");
7908                     Roo.log(edata);
7909                     return;
7910                 }
7911                 if (!rdata || !rdata.success) {
7912                     Roo.log(rdata);
7913                     Roo.MessageBox.alert(Roo.encode(rdata));
7914                     return;
7915                 }
7916                 var data = rdata.data;
7917                 
7918                 if (this.uploadComplete) {
7919                    Roo.MessageBox.hide();
7920                    return;
7921                 }
7922                    
7923                 if (data){
7924                     Roo.MessageBox.updateProgress(data.bytes_uploaded/data.bytes_total,
7925                        Math.floor((data.bytes_total - data.bytes_uploaded)/1000) + 'k remaining'
7926                     );
7927                 }
7928                 this.uploadProgress.defer(2000,this);
7929             },
7930        
7931             failure: function(data) {
7932                 Roo.log('progress url failed ');
7933                 Roo.log(data);
7934             },
7935             scope : this
7936         });
7937            
7938     },
7939     
7940     
7941     run : function()
7942     {
7943         // run get Values on the form, so it syncs any secondary forms.
7944         this.form.getValues();
7945         
7946         var o = this.options;
7947         var method = this.getMethod();
7948         var isPost = method == 'POST';
7949         if(o.clientValidation === false || this.form.isValid()){
7950             
7951             if (this.form.progressUrl) {
7952                 this.form.findField('UPLOAD_IDENTIFIER').setValue(
7953                     (new Date() * 1) + '' + Math.random());
7954                     
7955             } 
7956             
7957             
7958             Roo.Ajax.request(Roo.apply(this.createCallback(), {
7959                 form:this.form.el.dom,
7960                 url:this.getUrl(!isPost),
7961                 method: method,
7962                 params:isPost ? this.getParams() : null,
7963                 isUpload: this.form.fileUpload,
7964                 formData : this.form.formData
7965             }));
7966             
7967             this.uploadProgress();
7968
7969         }else if (o.clientValidation !== false){ // client validation failed
7970             this.failureType = Roo.form.Action.CLIENT_INVALID;
7971             this.form.afterAction(this, false);
7972         }
7973     },
7974
7975     success : function(response)
7976     {
7977         this.uploadComplete= true;
7978         if (this.haveProgress) {
7979             Roo.MessageBox.hide();
7980         }
7981         
7982         
7983         var result = this.processResponse(response);
7984         if(result === true || result.success){
7985             this.form.afterAction(this, true);
7986             return;
7987         }
7988         if(result.errors){
7989             this.form.markInvalid(result.errors);
7990             this.failureType = Roo.form.Action.SERVER_INVALID;
7991         }
7992         this.form.afterAction(this, false);
7993     },
7994     failure : function(response)
7995     {
7996         this.uploadComplete= true;
7997         if (this.haveProgress) {
7998             Roo.MessageBox.hide();
7999         }
8000         
8001         this.response = response;
8002         this.failureType = Roo.form.Action.CONNECT_FAILURE;
8003         this.form.afterAction(this, false);
8004     },
8005     
8006     handleResponse : function(response){
8007         if(this.form.errorReader){
8008             var rs = this.form.errorReader.read(response);
8009             var errors = [];
8010             if(rs.records){
8011                 for(var i = 0, len = rs.records.length; i < len; i++) {
8012                     var r = rs.records[i];
8013                     errors[i] = r.data;
8014                 }
8015             }
8016             if(errors.length < 1){
8017                 errors = null;
8018             }
8019             return {
8020                 success : rs.success,
8021                 errors : errors
8022             };
8023         }
8024         var ret = false;
8025         try {
8026             ret = Roo.decode(response.responseText);
8027         } catch (e) {
8028             ret = {
8029                 success: false,
8030                 errorMsg: "Failed to read server message: " + (response ? response.responseText : ' - no message'),
8031                 errors : []
8032             };
8033         }
8034         return ret;
8035         
8036     }
8037 });
8038
8039
8040 Roo.form.Action.Load = function(form, options){
8041     Roo.form.Action.Load.superclass.constructor.call(this, form, options);
8042     this.reader = this.form.reader;
8043 };
8044
8045 Roo.extend(Roo.form.Action.Load, Roo.form.Action, {
8046     type : 'load',
8047
8048     run : function(){
8049         
8050         Roo.Ajax.request(Roo.apply(
8051                 this.createCallback(), {
8052                     method:this.getMethod(),
8053                     url:this.getUrl(false),
8054                     params:this.getParams()
8055         }));
8056     },
8057
8058     success : function(response){
8059         
8060         var result = this.processResponse(response);
8061         if(result === true || !result.success || !result.data){
8062             this.failureType = Roo.form.Action.LOAD_FAILURE;
8063             this.form.afterAction(this, false);
8064             return;
8065         }
8066         this.form.clearInvalid();
8067         this.form.setValues(result.data);
8068         this.form.afterAction(this, true);
8069     },
8070
8071     handleResponse : function(response){
8072         if(this.form.reader){
8073             var rs = this.form.reader.read(response);
8074             var data = rs.records && rs.records[0] ? rs.records[0].data : null;
8075             return {
8076                 success : rs.success,
8077                 data : data
8078             };
8079         }
8080         return Roo.decode(response.responseText);
8081     }
8082 });
8083
8084 Roo.form.Action.ACTION_TYPES = {
8085     'load' : Roo.form.Action.Load,
8086     'submit' : Roo.form.Action.Submit
8087 };/*
8088  * - LGPL
8089  *
8090  * form
8091  *
8092  */
8093
8094 /**
8095  * @class Roo.bootstrap.Form
8096  * @extends Roo.bootstrap.Component
8097  * Bootstrap Form class
8098  * @cfg {String} method  GET | POST (default POST)
8099  * @cfg {String} labelAlign top | left (default top)
8100  * @cfg {String} align left  | right - for navbars
8101  * @cfg {Boolean} loadMask load mask when submit (default true)
8102
8103  *
8104  * @constructor
8105  * Create a new Form
8106  * @param {Object} config The config object
8107  */
8108
8109
8110 Roo.bootstrap.Form = function(config){
8111     
8112     Roo.bootstrap.Form.superclass.constructor.call(this, config);
8113     
8114     Roo.bootstrap.Form.popover.apply();
8115     
8116     this.addEvents({
8117         /**
8118          * @event clientvalidation
8119          * If the monitorValid config option is true, this event fires repetitively to notify of valid state
8120          * @param {Form} this
8121          * @param {Boolean} valid true if the form has passed client-side validation
8122          */
8123         clientvalidation: true,
8124         /**
8125          * @event beforeaction
8126          * Fires before any action is performed. Return false to cancel the action.
8127          * @param {Form} this
8128          * @param {Action} action The action to be performed
8129          */
8130         beforeaction: true,
8131         /**
8132          * @event actionfailed
8133          * Fires when an action fails.
8134          * @param {Form} this
8135          * @param {Action} action The action that failed
8136          */
8137         actionfailed : true,
8138         /**
8139          * @event actioncomplete
8140          * Fires when an action is completed.
8141          * @param {Form} this
8142          * @param {Action} action The action that completed
8143          */
8144         actioncomplete : true
8145     });
8146 };
8147
8148 Roo.extend(Roo.bootstrap.Form, Roo.bootstrap.Component,  {
8149
8150      /**
8151      * @cfg {String} method
8152      * The request method to use (GET or POST) for form actions if one isn't supplied in the action options.
8153      */
8154     method : 'POST',
8155     /**
8156      * @cfg {String} url
8157      * The URL to use for form actions if one isn't supplied in the action options.
8158      */
8159     /**
8160      * @cfg {Boolean} fileUpload
8161      * Set to true if this form is a file upload.
8162      */
8163
8164     /**
8165      * @cfg {Object} baseParams
8166      * Parameters to pass with all requests. e.g. baseParams: {id: '123', foo: 'bar'}.
8167      */
8168
8169     /**
8170      * @cfg {Number} timeout Timeout for form actions in seconds (default is 30 seconds).
8171      */
8172     timeout: 30,
8173     /**
8174      * @cfg {Sting} align (left|right) for navbar forms
8175      */
8176     align : 'left',
8177
8178     // private
8179     activeAction : null,
8180
8181     /**
8182      * By default wait messages are displayed with Roo.MessageBox.wait. You can target a specific
8183      * element by passing it or its id or mask the form itself by passing in true.
8184      * @type Mixed
8185      */
8186     waitMsgTarget : false,
8187
8188     loadMask : true,
8189     
8190     /**
8191      * @cfg {Boolean} errorMask (true|false) default false
8192      */
8193     errorMask : false,
8194     
8195     /**
8196      * @cfg {Number} maskOffset Default 100
8197      */
8198     maskOffset : 100,
8199     
8200     /**
8201      * @cfg {Boolean} maskBody
8202      */
8203     maskBody : false,
8204
8205     getAutoCreate : function(){
8206
8207         var cfg = {
8208             tag: 'form',
8209             method : this.method || 'POST',
8210             id : this.id || Roo.id(),
8211             cls : ''
8212         };
8213         if (this.parent().xtype.match(/^Nav/)) {
8214             cfg.cls = 'navbar-form form-inline navbar-' + this.align;
8215
8216         }
8217
8218         if (this.labelAlign == 'left' ) {
8219             cfg.cls += ' form-horizontal';
8220         }
8221
8222
8223         return cfg;
8224     },
8225     initEvents : function()
8226     {
8227         this.el.on('submit', this.onSubmit, this);
8228         // this was added as random key presses on the form where triggering form submit.
8229         this.el.on('keypress', function(e) {
8230             if (e.getCharCode() != 13) {
8231                 return true;
8232             }
8233             // we might need to allow it for textareas.. and some other items.
8234             // check e.getTarget().
8235
8236             if(e.getTarget().nodeName.toLowerCase() === 'textarea'){
8237                 return true;
8238             }
8239
8240             Roo.log("keypress blocked");
8241
8242             e.preventDefault();
8243             return false;
8244         });
8245         
8246     },
8247     // private
8248     onSubmit : function(e){
8249         e.stopEvent();
8250     },
8251
8252      /**
8253      * Returns true if client-side validation on the form is successful.
8254      * @return Boolean
8255      */
8256     isValid : function(){
8257         var items = this.getItems();
8258         var valid = true;
8259         var target = false;
8260         
8261         items.each(function(f){
8262             
8263             if(f.validate()){
8264                 return;
8265             }
8266             
8267             Roo.log('invalid field: ' + f.name);
8268             
8269             valid = false;
8270
8271             if(!target && f.el.isVisible(true)){
8272                 target = f;
8273             }
8274            
8275         });
8276         
8277         if(this.errorMask && !valid){
8278             Roo.bootstrap.Form.popover.mask(this, target);
8279         }
8280         
8281         return valid;
8282     },
8283     
8284     /**
8285      * Returns true if any fields in this form have changed since their original load.
8286      * @return Boolean
8287      */
8288     isDirty : function(){
8289         var dirty = false;
8290         var items = this.getItems();
8291         items.each(function(f){
8292            if(f.isDirty()){
8293                dirty = true;
8294                return false;
8295            }
8296            return true;
8297         });
8298         return dirty;
8299     },
8300      /**
8301      * Performs a predefined action (submit or load) or custom actions you define on this form.
8302      * @param {String} actionName The name of the action type
8303      * @param {Object} options (optional) The options to pass to the action.  All of the config options listed
8304      * below are supported by both the submit and load actions unless otherwise noted (custom actions could also
8305      * accept other config options):
8306      * <pre>
8307 Property          Type             Description
8308 ----------------  ---------------  ----------------------------------------------------------------------------------
8309 url               String           The url for the action (defaults to the form's url)
8310 method            String           The form method to use (defaults to the form's method, or POST if not defined)
8311 params            String/Object    The params to pass (defaults to the form's baseParams, or none if not defined)
8312 clientValidation  Boolean          Applies to submit only.  Pass true to call form.isValid() prior to posting to
8313                                    validate the form on the client (defaults to false)
8314      * </pre>
8315      * @return {BasicForm} this
8316      */
8317     doAction : function(action, options){
8318         if(typeof action == 'string'){
8319             action = new Roo.form.Action.ACTION_TYPES[action](this, options);
8320         }
8321         if(this.fireEvent('beforeaction', this, action) !== false){
8322             this.beforeAction(action);
8323             action.run.defer(100, action);
8324         }
8325         return this;
8326     },
8327
8328     // private
8329     beforeAction : function(action){
8330         var o = action.options;
8331         
8332         if(this.loadMask){
8333             
8334             if(this.maskBody){
8335                 Roo.get(document.body).mask(o.waitMsg || "Sending", 'x-mask-loading')
8336             } else {
8337                 this.el.mask(o.waitMsg || "Sending", 'x-mask-loading');
8338             }
8339         }
8340         // not really supported yet.. ??
8341
8342         //if(this.waitMsgTarget === true){
8343         //  this.el.mask(o.waitMsg || "Sending", 'x-mask-loading');
8344         //}else if(this.waitMsgTarget){
8345         //    this.waitMsgTarget = Roo.get(this.waitMsgTarget);
8346         //    this.waitMsgTarget.mask(o.waitMsg || "Sending", 'x-mask-loading');
8347         //}else {
8348         //    Roo.MessageBox.wait(o.waitMsg || "Sending", o.waitTitle || this.waitTitle || 'Please Wait...');
8349        // }
8350
8351     },
8352
8353     // private
8354     afterAction : function(action, success){
8355         this.activeAction = null;
8356         var o = action.options;
8357
8358         if(this.loadMask){
8359             
8360             if(this.maskBody){
8361                 Roo.get(document.body).unmask();
8362             } else {
8363                 this.el.unmask();
8364             }
8365         }
8366         
8367         //if(this.waitMsgTarget === true){
8368 //            this.el.unmask();
8369         //}else if(this.waitMsgTarget){
8370         //    this.waitMsgTarget.unmask();
8371         //}else{
8372         //    Roo.MessageBox.updateProgress(1);
8373         //    Roo.MessageBox.hide();
8374        // }
8375         //
8376         if(success){
8377             if(o.reset){
8378                 this.reset();
8379             }
8380             Roo.callback(o.success, o.scope, [this, action]);
8381             this.fireEvent('actioncomplete', this, action);
8382
8383         }else{
8384
8385             // failure condition..
8386             // we have a scenario where updates need confirming.
8387             // eg. if a locking scenario exists..
8388             // we look for { errors : { needs_confirm : true }} in the response.
8389             if (
8390                 (typeof(action.result) != 'undefined')  &&
8391                 (typeof(action.result.errors) != 'undefined')  &&
8392                 (typeof(action.result.errors.needs_confirm) != 'undefined')
8393            ){
8394                 var _t = this;
8395                 Roo.log("not supported yet");
8396                  /*
8397
8398                 Roo.MessageBox.confirm(
8399                     "Change requires confirmation",
8400                     action.result.errorMsg,
8401                     function(r) {
8402                         if (r != 'yes') {
8403                             return;
8404                         }
8405                         _t.doAction('submit', { params :  { _submit_confirmed : 1 } }  );
8406                     }
8407
8408                 );
8409                 */
8410
8411
8412                 return;
8413             }
8414
8415             Roo.callback(o.failure, o.scope, [this, action]);
8416             // show an error message if no failed handler is set..
8417             if (!this.hasListener('actionfailed')) {
8418                 Roo.log("need to add dialog support");
8419                 /*
8420                 Roo.MessageBox.alert("Error",
8421                     (typeof(action.result) != 'undefined' && typeof(action.result.errorMsg) != 'undefined') ?
8422                         action.result.errorMsg :
8423                         "Saving Failed, please check your entries or try again"
8424                 );
8425                 */
8426             }
8427
8428             this.fireEvent('actionfailed', this, action);
8429         }
8430
8431     },
8432     /**
8433      * Find a Roo.form.Field in this form by id, dataIndex, name or hiddenName
8434      * @param {String} id The value to search for
8435      * @return Field
8436      */
8437     findField : function(id){
8438         var items = this.getItems();
8439         var field = items.get(id);
8440         if(!field){
8441              items.each(function(f){
8442                 if(f.isFormField && (f.dataIndex == id || f.id == id || f.getName() == id)){
8443                     field = f;
8444                     return false;
8445                 }
8446                 return true;
8447             });
8448         }
8449         return field || null;
8450     },
8451      /**
8452      * Mark fields in this form invalid in bulk.
8453      * @param {Array/Object} errors Either an array in the form [{id:'fieldId', msg:'The message'},...] or an object hash of {id: msg, id2: msg2}
8454      * @return {BasicForm} this
8455      */
8456     markInvalid : function(errors){
8457         if(errors instanceof Array){
8458             for(var i = 0, len = errors.length; i < len; i++){
8459                 var fieldError = errors[i];
8460                 var f = this.findField(fieldError.id);
8461                 if(f){
8462                     f.markInvalid(fieldError.msg);
8463                 }
8464             }
8465         }else{
8466             var field, id;
8467             for(id in errors){
8468                 if(typeof errors[id] != 'function' && (field = this.findField(id))){
8469                     field.markInvalid(errors[id]);
8470                 }
8471             }
8472         }
8473         //Roo.each(this.childForms || [], function (f) {
8474         //    f.markInvalid(errors);
8475         //});
8476
8477         return this;
8478     },
8479
8480     /**
8481      * Set values for fields in this form in bulk.
8482      * @param {Array/Object} values Either an array in the form [{id:'fieldId', value:'foo'},...] or an object hash of {id: value, id2: value2}
8483      * @return {BasicForm} this
8484      */
8485     setValues : function(values){
8486         if(values instanceof Array){ // array of objects
8487             for(var i = 0, len = values.length; i < len; i++){
8488                 var v = values[i];
8489                 var f = this.findField(v.id);
8490                 if(f){
8491                     f.setValue(v.value);
8492                     if(this.trackResetOnLoad){
8493                         f.originalValue = f.getValue();
8494                     }
8495                 }
8496             }
8497         }else{ // object hash
8498             var field, id;
8499             for(id in values){
8500                 if(typeof values[id] != 'function' && (field = this.findField(id))){
8501
8502                     if (field.setFromData &&
8503                         field.valueField &&
8504                         field.displayField &&
8505                         // combos' with local stores can
8506                         // be queried via setValue()
8507                         // to set their value..
8508                         (field.store && !field.store.isLocal)
8509                         ) {
8510                         // it's a combo
8511                         var sd = { };
8512                         sd[field.valueField] = typeof(values[field.hiddenName]) == 'undefined' ? '' : values[field.hiddenName];
8513                         sd[field.displayField] = typeof(values[field.name]) == 'undefined' ? '' : values[field.name];
8514                         field.setFromData(sd);
8515
8516                     } else if(field.setFromData && (field.store && !field.store.isLocal)) {
8517                         
8518                         field.setFromData(values);
8519                         
8520                     } else {
8521                         field.setValue(values[id]);
8522                     }
8523
8524
8525                     if(this.trackResetOnLoad){
8526                         field.originalValue = field.getValue();
8527                     }
8528                 }
8529             }
8530         }
8531
8532         //Roo.each(this.childForms || [], function (f) {
8533         //    f.setValues(values);
8534         //});
8535
8536         return this;
8537     },
8538
8539     /**
8540      * Returns the fields in this form as an object with key/value pairs. If multiple fields exist with the same name
8541      * they are returned as an array.
8542      * @param {Boolean} asString
8543      * @return {Object}
8544      */
8545     getValues : function(asString){
8546         //if (this.childForms) {
8547             // copy values from the child forms
8548         //    Roo.each(this.childForms, function (f) {
8549         //        this.setValues(f.getValues());
8550         //    }, this);
8551         //}
8552
8553
8554
8555         var fs = Roo.lib.Ajax.serializeForm(this.el.dom);
8556         if(asString === true){
8557             return fs;
8558         }
8559         return Roo.urlDecode(fs);
8560     },
8561
8562     /**
8563      * Returns the fields in this form as an object with key/value pairs.
8564      * This differs from getValues as it calls getValue on each child item, rather than using dom data.
8565      * @return {Object}
8566      */
8567     getFieldValues : function(with_hidden)
8568     {
8569         var items = this.getItems();
8570         var ret = {};
8571         items.each(function(f){
8572             
8573             if (!f.getName()) {
8574                 return;
8575             }
8576             
8577             var v = f.getValue();
8578             
8579             if (f.inputType =='radio') {
8580                 if (typeof(ret[f.getName()]) == 'undefined') {
8581                     ret[f.getName()] = ''; // empty..
8582                 }
8583
8584                 if (!f.el.dom.checked) {
8585                     return;
8586
8587                 }
8588                 v = f.el.dom.value;
8589
8590             }
8591             
8592             if(f.xtype == 'MoneyField'){
8593                 ret[f.currencyName] = f.getCurrency();
8594             }
8595
8596             // not sure if this supported any more..
8597             if ((typeof(v) == 'object') && f.getRawValue) {
8598                 v = f.getRawValue() ; // dates..
8599             }
8600             // combo boxes where name != hiddenName...
8601             if (f.name !== false && f.name != '' && f.name != f.getName()) {
8602                 ret[f.name] = f.getRawValue();
8603             }
8604             ret[f.getName()] = v;
8605         });
8606
8607         return ret;
8608     },
8609
8610     /**
8611      * Clears all invalid messages in this form.
8612      * @return {BasicForm} this
8613      */
8614     clearInvalid : function(){
8615         var items = this.getItems();
8616
8617         items.each(function(f){
8618            f.clearInvalid();
8619         });
8620
8621         return this;
8622     },
8623
8624     /**
8625      * Resets this form.
8626      * @return {BasicForm} this
8627      */
8628     reset : function(){
8629         var items = this.getItems();
8630         items.each(function(f){
8631             f.reset();
8632         });
8633
8634         Roo.each(this.childForms || [], function (f) {
8635             f.reset();
8636         });
8637
8638
8639         return this;
8640     },
8641     
8642     getItems : function()
8643     {
8644         var r=new Roo.util.MixedCollection(false, function(o){
8645             return o.id || (o.id = Roo.id());
8646         });
8647         var iter = function(el) {
8648             if (el.inputEl) {
8649                 r.add(el);
8650             }
8651             if (!el.items) {
8652                 return;
8653             }
8654             Roo.each(el.items,function(e) {
8655                 iter(e);
8656             });
8657         };
8658
8659         iter(this);
8660         return r;
8661     },
8662     
8663     hideFields : function(items)
8664     {
8665         Roo.each(items, function(i){
8666             
8667             var f = this.findField(i);
8668             
8669             if(!f){
8670                 return;
8671             }
8672             
8673             f.hide();
8674             
8675         }, this);
8676     },
8677     
8678     showFields : function(items)
8679     {
8680         Roo.each(items, function(i){
8681             
8682             var f = this.findField(i);
8683             
8684             if(!f){
8685                 return;
8686             }
8687             
8688             f.show();
8689             
8690         }, this);
8691     }
8692
8693 });
8694
8695 Roo.apply(Roo.bootstrap.Form, {
8696     
8697     popover : {
8698         
8699         padding : 5,
8700         
8701         isApplied : false,
8702         
8703         isMasked : false,
8704         
8705         form : false,
8706         
8707         target : false,
8708         
8709         toolTip : false,
8710         
8711         intervalID : false,
8712         
8713         maskEl : false,
8714         
8715         apply : function()
8716         {
8717             if(this.isApplied){
8718                 return;
8719             }
8720             
8721             this.maskEl = {
8722                 top : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-top-mask" }, true),
8723                 left : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-left-mask" }, true),
8724                 bottom : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-bottom-mask" }, true),
8725                 right : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-right-mask" }, true)
8726             };
8727             
8728             this.maskEl.top.enableDisplayMode("block");
8729             this.maskEl.left.enableDisplayMode("block");
8730             this.maskEl.bottom.enableDisplayMode("block");
8731             this.maskEl.right.enableDisplayMode("block");
8732             
8733             this.toolTip = new Roo.bootstrap.Tooltip({
8734                 cls : 'roo-form-error-popover',
8735                 alignment : {
8736                     'left' : ['r-l', [-2,0], 'right'],
8737                     'right' : ['l-r', [2,0], 'left'],
8738                     'bottom' : ['tl-bl', [0,2], 'top'],
8739                     'top' : [ 'bl-tl', [0,-2], 'bottom']
8740                 }
8741             });
8742             
8743             this.toolTip.render(Roo.get(document.body));
8744
8745             this.toolTip.el.enableDisplayMode("block");
8746             
8747             Roo.get(document.body).on('click', function(){
8748                 this.unmask();
8749             }, this);
8750             
8751             Roo.get(document.body).on('touchstart', function(){
8752                 this.unmask();
8753             }, this);
8754             
8755             this.isApplied = true
8756         },
8757         
8758         mask : function(form, target)
8759         {
8760             this.form = form;
8761             
8762             this.target = target;
8763             
8764             if(!this.form.errorMask || !target.el){
8765                 return;
8766             }
8767             
8768             var scrollable = this.target.el.findScrollableParent() || this.target.el.findParent('div.modal', 100, true) || Roo.get(document.body);
8769             
8770             Roo.log(scrollable);
8771             
8772             var ot = this.target.el.calcOffsetsTo(scrollable);
8773             
8774             var scrollTo = ot[1] - this.form.maskOffset;
8775             
8776             scrollTo = Math.min(scrollTo, scrollable.dom.scrollHeight);
8777             
8778             scrollable.scrollTo('top', scrollTo);
8779             
8780             var box = this.target.el.getBox();
8781             Roo.log(box);
8782             var zIndex = Roo.bootstrap.Modal.zIndex++;
8783
8784             
8785             this.maskEl.top.setStyle('position', 'absolute');
8786             this.maskEl.top.setStyle('z-index', zIndex);
8787             this.maskEl.top.setSize(Roo.lib.Dom.getDocumentWidth(), box.y - this.padding);
8788             this.maskEl.top.setLeft(0);
8789             this.maskEl.top.setTop(0);
8790             this.maskEl.top.show();
8791             
8792             this.maskEl.left.setStyle('position', 'absolute');
8793             this.maskEl.left.setStyle('z-index', zIndex);
8794             this.maskEl.left.setSize(box.x - this.padding, box.height + this.padding * 2);
8795             this.maskEl.left.setLeft(0);
8796             this.maskEl.left.setTop(box.y - this.padding);
8797             this.maskEl.left.show();
8798
8799             this.maskEl.bottom.setStyle('position', 'absolute');
8800             this.maskEl.bottom.setStyle('z-index', zIndex);
8801             this.maskEl.bottom.setSize(Roo.lib.Dom.getDocumentWidth(), Roo.lib.Dom.getDocumentHeight() - box.bottom - this.padding);
8802             this.maskEl.bottom.setLeft(0);
8803             this.maskEl.bottom.setTop(box.bottom + this.padding);
8804             this.maskEl.bottom.show();
8805
8806             this.maskEl.right.setStyle('position', 'absolute');
8807             this.maskEl.right.setStyle('z-index', zIndex);
8808             this.maskEl.right.setSize(Roo.lib.Dom.getDocumentWidth() - box.right - this.padding, box.height + this.padding * 2);
8809             this.maskEl.right.setLeft(box.right + this.padding);
8810             this.maskEl.right.setTop(box.y - this.padding);
8811             this.maskEl.right.show();
8812
8813             this.toolTip.bindEl = this.target.el;
8814
8815             this.toolTip.el.setStyle('z-index', Roo.bootstrap.Modal.zIndex++);
8816
8817             var tip = this.target.blankText;
8818
8819             if(this.target.getValue() !== '' ) {
8820                 
8821                 if (this.target.invalidText.length) {
8822                     tip = this.target.invalidText;
8823                 } else if (this.target.regexText.length){
8824                     tip = this.target.regexText;
8825                 }
8826             }
8827
8828             this.toolTip.show(tip);
8829
8830             this.intervalID = window.setInterval(function() {
8831                 Roo.bootstrap.Form.popover.unmask();
8832             }, 10000);
8833
8834             window.onwheel = function(){ return false;};
8835             
8836             (function(){ this.isMasked = true; }).defer(500, this);
8837             
8838         },
8839         
8840         unmask : function()
8841         {
8842             if(!this.isApplied || !this.isMasked || !this.form || !this.target || !this.form.errorMask){
8843                 return;
8844             }
8845             
8846             this.maskEl.top.setStyle('position', 'absolute');
8847             this.maskEl.top.setSize(0, 0).setXY([0, 0]);
8848             this.maskEl.top.hide();
8849
8850             this.maskEl.left.setStyle('position', 'absolute');
8851             this.maskEl.left.setSize(0, 0).setXY([0, 0]);
8852             this.maskEl.left.hide();
8853
8854             this.maskEl.bottom.setStyle('position', 'absolute');
8855             this.maskEl.bottom.setSize(0, 0).setXY([0, 0]);
8856             this.maskEl.bottom.hide();
8857
8858             this.maskEl.right.setStyle('position', 'absolute');
8859             this.maskEl.right.setSize(0, 0).setXY([0, 0]);
8860             this.maskEl.right.hide();
8861             
8862             this.toolTip.hide();
8863             
8864             this.toolTip.el.hide();
8865             
8866             window.onwheel = function(){ return true;};
8867             
8868             if(this.intervalID){
8869                 window.clearInterval(this.intervalID);
8870                 this.intervalID = false;
8871             }
8872             
8873             this.isMasked = false;
8874             
8875         }
8876         
8877     }
8878     
8879 });
8880
8881 /*
8882  * Based on:
8883  * Ext JS Library 1.1.1
8884  * Copyright(c) 2006-2007, Ext JS, LLC.
8885  *
8886  * Originally Released Under LGPL - original licence link has changed is not relivant.
8887  *
8888  * Fork - LGPL
8889  * <script type="text/javascript">
8890  */
8891 /**
8892  * @class Roo.form.VTypes
8893  * Overridable validation definitions. The validations provided are basic and intended to be easily customizable and extended.
8894  * @singleton
8895  */
8896 Roo.form.VTypes = function(){
8897     // closure these in so they are only created once.
8898     var alpha = /^[a-zA-Z_]+$/;
8899     var alphanum = /^[a-zA-Z0-9_]+$/;
8900     var email = /^([\w]+)(.[\w]+)*@([\w-]+\.){1,5}([A-Za-z]){2,24}$/;
8901     var url = /(((https?)|(ftp)):\/\/([\-\w]+\.)+\w{2,3}(\/[%\-\w]+(\.\w{2,})?)*(([\w\-\.\?\\\/+@&#;`~=%!]*)(\.\w{2,})?)*\/?)/i;
8902
8903     // All these messages and functions are configurable
8904     return {
8905         /**
8906          * The function used to validate email addresses
8907          * @param {String} value The email address
8908          */
8909         'email' : function(v){
8910             return email.test(v);
8911         },
8912         /**
8913          * The error text to display when the email validation function returns false
8914          * @type String
8915          */
8916         'emailText' : 'This field should be an e-mail address in the format "user@domain.com"',
8917         /**
8918          * The keystroke filter mask to be applied on email input
8919          * @type RegExp
8920          */
8921         'emailMask' : /[a-z0-9_\.\-@]/i,
8922
8923         /**
8924          * The function used to validate URLs
8925          * @param {String} value The URL
8926          */
8927         'url' : function(v){
8928             return url.test(v);
8929         },
8930         /**
8931          * The error text to display when the url validation function returns false
8932          * @type String
8933          */
8934         'urlText' : 'This field should be a URL in the format "http:/'+'/www.domain.com"',
8935         
8936         /**
8937          * The function used to validate alpha values
8938          * @param {String} value The value
8939          */
8940         'alpha' : function(v){
8941             return alpha.test(v);
8942         },
8943         /**
8944          * The error text to display when the alpha validation function returns false
8945          * @type String
8946          */
8947         'alphaText' : 'This field should only contain letters and _',
8948         /**
8949          * The keystroke filter mask to be applied on alpha input
8950          * @type RegExp
8951          */
8952         'alphaMask' : /[a-z_]/i,
8953
8954         /**
8955          * The function used to validate alphanumeric values
8956          * @param {String} value The value
8957          */
8958         'alphanum' : function(v){
8959             return alphanum.test(v);
8960         },
8961         /**
8962          * The error text to display when the alphanumeric validation function returns false
8963          * @type String
8964          */
8965         'alphanumText' : 'This field should only contain letters, numbers and _',
8966         /**
8967          * The keystroke filter mask to be applied on alphanumeric input
8968          * @type RegExp
8969          */
8970         'alphanumMask' : /[a-z0-9_]/i
8971     };
8972 }();/*
8973  * - LGPL
8974  *
8975  * Input
8976  * 
8977  */
8978
8979 /**
8980  * @class Roo.bootstrap.Input
8981  * @extends Roo.bootstrap.Component
8982  * Bootstrap Input class
8983  * @cfg {Boolean} disabled is it disabled
8984  * @cfg {String} inputType button | checkbox | email | file | hidden | image | number | password | radio | range | reset | search | submit | text
8985  * @cfg {String} name name of the input
8986  * @cfg {string} fieldLabel - the label associated
8987  * @cfg {string} placeholder - placeholder to put in text.
8988  * @cfg {string}  before - input group add on before
8989  * @cfg {string} after - input group add on after
8990  * @cfg {string} size - (lg|sm) or leave empty..
8991  * @cfg {Number} xs colspan out of 12 for mobile-sized screens
8992  * @cfg {Number} sm colspan out of 12 for tablet-sized screens
8993  * @cfg {Number} md colspan out of 12 for computer-sized screens
8994  * @cfg {Number} lg colspan out of 12 for large computer-sized screens
8995  * @cfg {string} value default value of the input
8996  * @cfg {Number} labelWidth set the width of label 
8997  * @cfg {Number} labellg set the width of label (1-12)
8998  * @cfg {Number} labelmd set the width of label (1-12)
8999  * @cfg {Number} labelsm set the width of label (1-12)
9000  * @cfg {Number} labelxs set the width of label (1-12)
9001  * @cfg {String} labelAlign (top|left)
9002  * @cfg {Boolean} readOnly Specifies that the field should be read-only
9003  * @cfg {String} autocomplete - default is new-password see: https://developers.google.com/web/fundamentals/input/form/label-and-name-inputs?hl=en
9004  * @cfg {String} indicatorpos (left|right) default left
9005  * @cfg {String} capture (user|camera) use for file input only. (default empty)
9006  * @cfg {String} accept (image|video|audio) use for file input only. (default empty)
9007
9008  * @cfg {String} align (left|center|right) Default left
9009  * @cfg {Boolean} forceFeedback (true|false) Default false
9010  * 
9011  * @constructor
9012  * Create a new Input
9013  * @param {Object} config The config object
9014  */
9015
9016 Roo.bootstrap.Input = function(config){
9017     
9018     Roo.bootstrap.Input.superclass.constructor.call(this, config);
9019     
9020     this.addEvents({
9021         /**
9022          * @event focus
9023          * Fires when this field receives input focus.
9024          * @param {Roo.form.Field} this
9025          */
9026         focus : true,
9027         /**
9028          * @event blur
9029          * Fires when this field loses input focus.
9030          * @param {Roo.form.Field} this
9031          */
9032         blur : true,
9033         /**
9034          * @event specialkey
9035          * Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check
9036          * {@link Roo.EventObject#getKey} to determine which key was pressed.
9037          * @param {Roo.form.Field} this
9038          * @param {Roo.EventObject} e The event object
9039          */
9040         specialkey : true,
9041         /**
9042          * @event change
9043          * Fires just before the field blurs if the field value has changed.
9044          * @param {Roo.form.Field} this
9045          * @param {Mixed} newValue The new value
9046          * @param {Mixed} oldValue The original value
9047          */
9048         change : true,
9049         /**
9050          * @event invalid
9051          * Fires after the field has been marked as invalid.
9052          * @param {Roo.form.Field} this
9053          * @param {String} msg The validation message
9054          */
9055         invalid : true,
9056         /**
9057          * @event valid
9058          * Fires after the field has been validated with no errors.
9059          * @param {Roo.form.Field} this
9060          */
9061         valid : true,
9062          /**
9063          * @event keyup
9064          * Fires after the key up
9065          * @param {Roo.form.Field} this
9066          * @param {Roo.EventObject}  e The event Object
9067          */
9068         keyup : true
9069     });
9070 };
9071
9072 Roo.extend(Roo.bootstrap.Input, Roo.bootstrap.Component,  {
9073      /**
9074      * @cfg {String/Boolean} validationEvent The event that should initiate field validation. Set to false to disable
9075       automatic validation (defaults to "keyup").
9076      */
9077     validationEvent : "keyup",
9078      /**
9079      * @cfg {Boolean} validateOnBlur Whether the field should validate when it loses focus (defaults to true).
9080      */
9081     validateOnBlur : true,
9082     /**
9083      * @cfg {Number} validationDelay The length of time in milliseconds after user input begins until validation is initiated (defaults to 250)
9084      */
9085     validationDelay : 250,
9086      /**
9087      * @cfg {String} focusClass The CSS class to use when the field receives focus (defaults to "x-form-focus")
9088      */
9089     focusClass : "x-form-focus",  // not needed???
9090     
9091        
9092     /**
9093      * @cfg {String} invalidClass DEPRICATED - code uses BS4 - is-valid / is-invalid
9094      */
9095     invalidClass : "has-warning",
9096     
9097     /**
9098      * @cfg {String} validClass DEPRICATED - code uses BS4 - is-valid / is-invalid
9099      */
9100     validClass : "has-success",
9101     
9102     /**
9103      * @cfg {Boolean} hasFeedback (true|false) default true
9104      */
9105     hasFeedback : true,
9106     
9107     /**
9108      * @cfg {String} invalidFeedbackIcon The CSS class to use when create feedback icon (defaults to "x-form-invalid")
9109      */
9110     invalidFeedbackClass : "glyphicon-warning-sign",
9111     
9112     /**
9113      * @cfg {String} validFeedbackIcon The CSS class to use when create feedback icon (defaults to "x-form-invalid")
9114      */
9115     validFeedbackClass : "glyphicon-ok",
9116     
9117     /**
9118      * @cfg {Boolean} selectOnFocus True to automatically select any existing field text when the field receives input focus (defaults to false)
9119      */
9120     selectOnFocus : false,
9121     
9122      /**
9123      * @cfg {String} maskRe An input mask regular expression that will be used to filter keystrokes that don't match (defaults to null)
9124      */
9125     maskRe : null,
9126        /**
9127      * @cfg {String} vtype A validation type name as defined in {@link Roo.form.VTypes} (defaults to null)
9128      */
9129     vtype : null,
9130     
9131       /**
9132      * @cfg {Boolean} disableKeyFilter True to disable input keystroke filtering (defaults to false)
9133      */
9134     disableKeyFilter : false,
9135     
9136        /**
9137      * @cfg {Boolean} disabled True to disable the field (defaults to false).
9138      */
9139     disabled : false,
9140      /**
9141      * @cfg {Boolean} allowBlank False to validate that the value length > 0 (defaults to true)
9142      */
9143     allowBlank : true,
9144     /**
9145      * @cfg {String} blankText Error text to display if the allow blank validation fails (defaults to "This field is required")
9146      */
9147     blankText : "Please complete this mandatory field",
9148     
9149      /**
9150      * @cfg {Number} minLength Minimum input field length required (defaults to 0)
9151      */
9152     minLength : 0,
9153     /**
9154      * @cfg {Number} maxLength Maximum input field length allowed (defaults to Number.MAX_VALUE)
9155      */
9156     maxLength : Number.MAX_VALUE,
9157     /**
9158      * @cfg {String} minLengthText Error text to display if the minimum length validation fails (defaults to "The minimum length for this field is {minLength}")
9159      */
9160     minLengthText : "The minimum length for this field is {0}",
9161     /**
9162      * @cfg {String} maxLengthText Error text to display if the maximum length validation fails (defaults to "The maximum length for this field is {maxLength}")
9163      */
9164     maxLengthText : "The maximum length for this field is {0}",
9165   
9166     
9167     /**
9168      * @cfg {Function} validator A custom validation function to be called during field validation (defaults to null).
9169      * If available, this function will be called only after the basic validators all return true, and will be passed the
9170      * current field value and expected to return boolean true if the value is valid or a string error message if invalid.
9171      */
9172     validator : null,
9173     /**
9174      * @cfg {RegExp} regex A JavaScript RegExp object to be tested against the field value during validation (defaults to null).
9175      * If available, this regex will be evaluated only after the basic validators all return true, and will be passed the
9176      * current field value.  If the test fails, the field will be marked invalid using {@link #regexText}.
9177      */
9178     regex : null,
9179     /**
9180      * @cfg {String} regexText -- Depricated - use Invalid Text
9181      */
9182     regexText : "",
9183     
9184     /**
9185      * @cfg {String} invalidText The error text to display if {@link #validator} test fails during validation (defaults to "")
9186      */
9187     invalidText : "",
9188     
9189     
9190     
9191     autocomplete: false,
9192     
9193     
9194     fieldLabel : '',
9195     inputType : 'text',
9196     
9197     name : false,
9198     placeholder: false,
9199     before : false,
9200     after : false,
9201     size : false,
9202     hasFocus : false,
9203     preventMark: false,
9204     isFormField : true,
9205     value : '',
9206     labelWidth : 2,
9207     labelAlign : false,
9208     readOnly : false,
9209     align : false,
9210     formatedValue : false,
9211     forceFeedback : false,
9212     
9213     indicatorpos : 'left',
9214     
9215     labellg : 0,
9216     labelmd : 0,
9217     labelsm : 0,
9218     labelxs : 0,
9219     
9220     capture : '',
9221     accept : '',
9222     
9223     parentLabelAlign : function()
9224     {
9225         var parent = this;
9226         while (parent.parent()) {
9227             parent = parent.parent();
9228             if (typeof(parent.labelAlign) !='undefined') {
9229                 return parent.labelAlign;
9230             }
9231         }
9232         return 'left';
9233         
9234     },
9235     
9236     getAutoCreate : function()
9237     {
9238         var align = (!this.labelAlign) ? this.parentLabelAlign() : this.labelAlign;
9239         
9240         var id = Roo.id();
9241         
9242         var cfg = {};
9243         
9244         if(this.inputType != 'hidden'){
9245             cfg.cls = 'form-group' //input-group
9246         }
9247         
9248         var input =  {
9249             tag: 'input',
9250             id : id,
9251             type : this.inputType,
9252             value : this.value,
9253             cls : 'form-control',
9254             placeholder : this.placeholder || '',
9255             autocomplete : this.autocomplete || 'new-password'
9256         };
9257         
9258         if(this.capture.length){
9259             input.capture = this.capture;
9260         }
9261         
9262         if(this.accept.length){
9263             input.accept = this.accept + "/*";
9264         }
9265         
9266         if(this.align){
9267             input.style = (typeof(input.style) == 'undefined') ? ('text-align:' + this.align) : (input.style + 'text-align:' + this.align);
9268         }
9269         
9270         if(this.maxLength && this.maxLength != Number.MAX_VALUE){
9271             input.maxLength = this.maxLength;
9272         }
9273         
9274         if (this.disabled) {
9275             input.disabled=true;
9276         }
9277         
9278         if (this.readOnly) {
9279             input.readonly=true;
9280         }
9281         
9282         if (this.name) {
9283             input.name = this.name;
9284         }
9285         
9286         if (this.size) {
9287             input.cls += ' input-' + this.size;
9288         }
9289         
9290         var settings=this;
9291         ['xs','sm','md','lg'].map(function(size){
9292             if (settings[size]) {
9293                 cfg.cls += ' col-' + size + '-' + settings[size];
9294             }
9295         });
9296         
9297         var inputblock = input;
9298         
9299         var feedback = {
9300             tag: 'span',
9301             cls: 'glyphicon form-control-feedback'
9302         };
9303             
9304         if(this.hasFeedback && this.inputType != 'hidden' && !this.allowBlank){
9305             
9306             inputblock = {
9307                 cls : 'has-feedback',
9308                 cn :  [
9309                     input,
9310                     feedback
9311                 ] 
9312             };  
9313         }
9314         
9315         if (this.before || this.after) {
9316             
9317             inputblock = {
9318                 cls : 'input-group',
9319                 cn :  [] 
9320             };
9321             
9322             if (this.before && typeof(this.before) == 'string') {
9323                 
9324                 inputblock.cn.push({
9325                     tag :'span',
9326                     cls : 'roo-input-before input-group-addon input-group-prepend input-group-text',
9327                     html : this.before
9328                 });
9329             }
9330             if (this.before && typeof(this.before) == 'object') {
9331                 this.before = Roo.factory(this.before);
9332                 
9333                 inputblock.cn.push({
9334                     tag :'span',
9335                     cls : 'roo-input-before input-group-prepend input-group-text input-group-' +
9336                         (this.before.xtype == 'Button' ? 'btn' : 'addon')  //?? what about checkboxes - that looks like a bit of a hack thought? 
9337                 });
9338             }
9339             
9340             inputblock.cn.push(input);
9341             
9342             if (this.after && typeof(this.after) == 'string') {
9343                 inputblock.cn.push({
9344                     tag :'span',
9345                     cls : 'roo-input-after input-group-append input-group-text input-group-addon',
9346                     html : this.after
9347                 });
9348             }
9349             if (this.after && typeof(this.after) == 'object') {
9350                 this.after = Roo.factory(this.after);
9351                 
9352                 inputblock.cn.push({
9353                     tag :'span',
9354                     cls : 'roo-input-after input-group-append input-group-text input-group-' +
9355                         (this.after.xtype == 'Button' ? 'btn' : 'addon')  //?? what about checkboxes - that looks like a bit of a hack thought? 
9356                 });
9357             }
9358             
9359             if(this.hasFeedback && this.inputType != 'hidden' && !this.allowBlank){
9360                 inputblock.cls += ' has-feedback';
9361                 inputblock.cn.push(feedback);
9362             }
9363         };
9364         var indicator = {
9365             tag : 'i',
9366             cls : 'roo-required-indicator ' + (this.indicatorpos == 'right'  ? 'right' : 'left') +'-indicator text-danger fa fa-lg fa-star',
9367             tooltip : 'This field is required'
9368         };
9369         if (Roo.bootstrap.version == 4) {
9370             indicator = {
9371                 tag : 'i',
9372                 style : 'display-none'
9373             };
9374         }
9375         if (align ==='left' && this.fieldLabel.length) {
9376             
9377             cfg.cls += ' roo-form-group-label-left'  + (Roo.bootstrap.version == 4 ? ' row' : '');
9378             
9379             cfg.cn = [
9380                 indicator,
9381                 {
9382                     tag: 'label',
9383                     'for' :  id,
9384                     cls : 'control-label col-form-label',
9385                     html : this.fieldLabel
9386
9387                 },
9388                 {
9389                     cls : "", 
9390                     cn: [
9391                         inputblock
9392                     ]
9393                 }
9394             ];
9395             
9396             var labelCfg = cfg.cn[1];
9397             var contentCfg = cfg.cn[2];
9398             
9399             if(this.indicatorpos == 'right'){
9400                 cfg.cn = [
9401                     {
9402                         tag: 'label',
9403                         'for' :  id,
9404                         cls : 'control-label col-form-label',
9405                         cn : [
9406                             {
9407                                 tag : 'span',
9408                                 html : this.fieldLabel
9409                             },
9410                             indicator
9411                         ]
9412                     },
9413                     {
9414                         cls : "",
9415                         cn: [
9416                             inputblock
9417                         ]
9418                     }
9419
9420                 ];
9421                 
9422                 labelCfg = cfg.cn[0];
9423                 contentCfg = cfg.cn[1];
9424             
9425             }
9426             
9427             if(this.labelWidth > 12){
9428                 labelCfg.style = "width: " + this.labelWidth + 'px';
9429             }
9430             
9431             if(this.labelWidth < 13 && this.labelmd == 0){
9432                 this.labelmd = this.labelWidth;
9433             }
9434             
9435             if(this.labellg > 0){
9436                 labelCfg.cls += ' col-lg-' + this.labellg;
9437                 contentCfg.cls += ' col-lg-' + (12 - this.labellg);
9438             }
9439             
9440             if(this.labelmd > 0){
9441                 labelCfg.cls += ' col-md-' + this.labelmd;
9442                 contentCfg.cls += ' col-md-' + (12 - this.labelmd);
9443             }
9444             
9445             if(this.labelsm > 0){
9446                 labelCfg.cls += ' col-sm-' + this.labelsm;
9447                 contentCfg.cls += ' col-sm-' + (12 - this.labelsm);
9448             }
9449             
9450             if(this.labelxs > 0){
9451                 labelCfg.cls += ' col-xs-' + this.labelxs;
9452                 contentCfg.cls += ' col-xs-' + (12 - this.labelxs);
9453             }
9454             
9455             
9456         } else if ( this.fieldLabel.length) {
9457                 
9458             cfg.cn = [
9459                 {
9460                     tag : 'i',
9461                     cls : 'roo-required-indicator left-indicator text-danger fa fa-lg fa-star',
9462                     tooltip : 'This field is required'
9463                 },
9464                 {
9465                     tag: 'label',
9466                    //cls : 'input-group-addon',
9467                     html : this.fieldLabel
9468
9469                 },
9470
9471                inputblock
9472
9473            ];
9474            
9475            if(this.indicatorpos == 'right'){
9476                 
9477                 cfg.cn = [
9478                     {
9479                         tag: 'label',
9480                        //cls : 'input-group-addon',
9481                         html : this.fieldLabel
9482
9483                     },
9484                     {
9485                         tag : 'i',
9486                         cls : 'roo-required-indicator right-indicator text-danger fa fa-lg fa-star',
9487                         tooltip : 'This field is required'
9488                     },
9489
9490                    inputblock
9491
9492                ];
9493
9494             }
9495
9496         } else {
9497             
9498             cfg.cn = [
9499
9500                     inputblock
9501
9502             ];
9503                 
9504                 
9505         };
9506         
9507         if (this.parentType === 'Navbar' &&  this.parent().bar) {
9508            cfg.cls += ' navbar-form';
9509         }
9510         
9511         if (this.parentType === 'NavGroup' && !(Roo.bootstrap.version == 4 && this.parent().form)) {
9512             // on BS4 we do this only if not form 
9513             cfg.cls += ' navbar-form';
9514             cfg.tag = 'li';
9515         }
9516         
9517         return cfg;
9518         
9519     },
9520     /**
9521      * return the real input element.
9522      */
9523     inputEl: function ()
9524     {
9525         return this.el.select('input.form-control',true).first();
9526     },
9527     
9528     tooltipEl : function()
9529     {
9530         return this.inputEl();
9531     },
9532     
9533     indicatorEl : function()
9534     {
9535         if (Roo.bootstrap.version == 4) {
9536             return false; // not enabled in v4 yet.
9537         }
9538         
9539         var indicator = this.el.select('i.roo-required-indicator',true).first();
9540         
9541         if(!indicator){
9542             return false;
9543         }
9544         
9545         return indicator;
9546         
9547     },
9548     
9549     setDisabled : function(v)
9550     {
9551         var i  = this.inputEl().dom;
9552         if (!v) {
9553             i.removeAttribute('disabled');
9554             return;
9555             
9556         }
9557         i.setAttribute('disabled','true');
9558     },
9559     initEvents : function()
9560     {
9561           
9562         this.inputEl().on("keydown" , this.fireKey,  this);
9563         this.inputEl().on("focus", this.onFocus,  this);
9564         this.inputEl().on("blur", this.onBlur,  this);
9565         
9566         this.inputEl().relayEvent('keyup', this);
9567         
9568         this.indicator = this.indicatorEl();
9569         
9570         if(this.indicator){
9571             this.indicator.addClass(this.indicatorpos == 'right' ? 'hidden' : 'invisible'); // changed from invisible??? - 
9572         }
9573  
9574         // reference to original value for reset
9575         this.originalValue = this.getValue();
9576         //Roo.form.TextField.superclass.initEvents.call(this);
9577         if(this.validationEvent == 'keyup'){
9578             this.validationTask = new Roo.util.DelayedTask(this.validate, this);
9579             this.inputEl().on('keyup', this.filterValidation, this);
9580         }
9581         else if(this.validationEvent !== false){
9582             this.inputEl().on(this.validationEvent, this.validate, this, {buffer: this.validationDelay});
9583         }
9584         
9585         if(this.selectOnFocus){
9586             this.on("focus", this.preFocus, this);
9587             
9588         }
9589         if(this.maskRe || (this.vtype && this.disableKeyFilter !== true && (this.maskRe = Roo.form.VTypes[this.vtype+'Mask']))){
9590             this.inputEl().on("keypress", this.filterKeys, this);
9591         } else {
9592             this.inputEl().relayEvent('keypress', this);
9593         }
9594        /* if(this.grow){
9595             this.el.on("keyup", this.onKeyUp,  this, {buffer:50});
9596             this.el.on("click", this.autoSize,  this);
9597         }
9598         */
9599         if(this.inputEl().is('input[type=password]') && Roo.isSafari){
9600             this.inputEl().on('keydown', this.SafariOnKeyDown, this);
9601         }
9602         
9603         if (typeof(this.before) == 'object') {
9604             this.before.render(this.el.select('.roo-input-before',true).first());
9605         }
9606         if (typeof(this.after) == 'object') {
9607             this.after.render(this.el.select('.roo-input-after',true).first());
9608         }
9609         
9610         this.inputEl().on('change', this.onChange, this);
9611         
9612     },
9613     filterValidation : function(e){
9614         if(!e.isNavKeyPress()){
9615             this.validationTask.delay(this.validationDelay);
9616         }
9617     },
9618      /**
9619      * Validates the field value
9620      * @return {Boolean} True if the value is valid, else false
9621      */
9622     validate : function(){
9623         //if(this.disabled || this.validateValue(this.processValue(this.getRawValue()))){
9624         if(this.disabled || this.validateValue(this.getRawValue())){
9625             this.markValid();
9626             return true;
9627         }
9628         
9629         this.markInvalid();
9630         return false;
9631     },
9632     
9633     
9634     /**
9635      * Validates a value according to the field's validation rules and marks the field as invalid
9636      * if the validation fails
9637      * @param {Mixed} value The value to validate
9638      * @return {Boolean} True if the value is valid, else false
9639      */
9640     validateValue : function(value)
9641     {
9642         if(this.getVisibilityEl().hasClass('hidden')){
9643             return true;
9644         }
9645         
9646         if(value.length < 1)  { // if it's blank
9647             if(this.allowBlank){
9648                 return true;
9649             }
9650             return false;
9651         }
9652         
9653         if(value.length < this.minLength){
9654             return false;
9655         }
9656         if(value.length > this.maxLength){
9657             return false;
9658         }
9659         if(this.vtype){
9660             var vt = Roo.form.VTypes;
9661             if(!vt[this.vtype](value, this)){
9662                 return false;
9663             }
9664         }
9665         if(typeof this.validator == "function"){
9666             var msg = this.validator(value);
9667             if(msg !== true){
9668                 return false;
9669             }
9670             if (typeof(msg) == 'string') {
9671                 this.invalidText = msg;
9672             }
9673         }
9674         
9675         if(this.regex && !this.regex.test(value)){
9676             return false;
9677         }
9678         
9679         return true;
9680     },
9681     
9682      // private
9683     fireKey : function(e){
9684         //Roo.log('field ' + e.getKey());
9685         if(e.isNavKeyPress()){
9686             this.fireEvent("specialkey", this, e);
9687         }
9688     },
9689     focus : function (selectText){
9690         if(this.rendered){
9691             this.inputEl().focus();
9692             if(selectText === true){
9693                 this.inputEl().dom.select();
9694             }
9695         }
9696         return this;
9697     } ,
9698     
9699     onFocus : function(){
9700         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
9701            // this.el.addClass(this.focusClass);
9702         }
9703         if(!this.hasFocus){
9704             this.hasFocus = true;
9705             this.startValue = this.getValue();
9706             this.fireEvent("focus", this);
9707         }
9708     },
9709     
9710     beforeBlur : Roo.emptyFn,
9711
9712     
9713     // private
9714     onBlur : function(){
9715         this.beforeBlur();
9716         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
9717             //this.el.removeClass(this.focusClass);
9718         }
9719         this.hasFocus = false;
9720         if(this.validationEvent !== false && this.validateOnBlur && this.validationEvent != "blur"){
9721             this.validate();
9722         }
9723         var v = this.getValue();
9724         if(String(v) !== String(this.startValue)){
9725             this.fireEvent('change', this, v, this.startValue);
9726         }
9727         this.fireEvent("blur", this);
9728     },
9729     
9730     onChange : function(e)
9731     {
9732         var v = this.getValue();
9733         if(String(v) !== String(this.startValue)){
9734             this.fireEvent('change', this, v, this.startValue);
9735         }
9736         
9737     },
9738     
9739     /**
9740      * Resets the current field value to the originally loaded value and clears any validation messages
9741      */
9742     reset : function(){
9743         this.setValue(this.originalValue);
9744         this.validate();
9745     },
9746      /**
9747      * Returns the name of the field
9748      * @return {Mixed} name The name field
9749      */
9750     getName: function(){
9751         return this.name;
9752     },
9753      /**
9754      * Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}.
9755      * @return {Mixed} value The field value
9756      */
9757     getValue : function(){
9758         
9759         var v = this.inputEl().getValue();
9760         
9761         return v;
9762     },
9763     /**
9764      * Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}.
9765      * @return {Mixed} value The field value
9766      */
9767     getRawValue : function(){
9768         var v = this.inputEl().getValue();
9769         
9770         return v;
9771     },
9772     
9773     /**
9774      * Sets the underlying DOM field's value directly, bypassing validation.  To set the value with validation see {@link #setValue}.
9775      * @param {Mixed} value The value to set
9776      */
9777     setRawValue : function(v){
9778         return this.inputEl().dom.value = (v === null || v === undefined ? '' : v);
9779     },
9780     
9781     selectText : function(start, end){
9782         var v = this.getRawValue();
9783         if(v.length > 0){
9784             start = start === undefined ? 0 : start;
9785             end = end === undefined ? v.length : end;
9786             var d = this.inputEl().dom;
9787             if(d.setSelectionRange){
9788                 d.setSelectionRange(start, end);
9789             }else if(d.createTextRange){
9790                 var range = d.createTextRange();
9791                 range.moveStart("character", start);
9792                 range.moveEnd("character", v.length-end);
9793                 range.select();
9794             }
9795         }
9796     },
9797     
9798     /**
9799      * Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}.
9800      * @param {Mixed} value The value to set
9801      */
9802     setValue : function(v){
9803         this.value = v;
9804         if(this.rendered){
9805             this.inputEl().dom.value = (v === null || v === undefined ? '' : v);
9806             this.validate();
9807         }
9808     },
9809     
9810     /*
9811     processValue : function(value){
9812         if(this.stripCharsRe){
9813             var newValue = value.replace(this.stripCharsRe, '');
9814             if(newValue !== value){
9815                 this.setRawValue(newValue);
9816                 return newValue;
9817             }
9818         }
9819         return value;
9820     },
9821   */
9822     preFocus : function(){
9823         
9824         if(this.selectOnFocus){
9825             this.inputEl().dom.select();
9826         }
9827     },
9828     filterKeys : function(e){
9829         var k = e.getKey();
9830         if(!Roo.isIE && (e.isNavKeyPress() || k == e.BACKSPACE || (k == e.DELETE && e.button == -1))){
9831             return;
9832         }
9833         var c = e.getCharCode(), cc = String.fromCharCode(c);
9834         if(Roo.isIE && (e.isSpecialKey() || !cc)){
9835             return;
9836         }
9837         if(!this.maskRe.test(cc)){
9838             e.stopEvent();
9839         }
9840     },
9841      /**
9842      * Clear any invalid styles/messages for this field
9843      */
9844     clearInvalid : function(){
9845         
9846         if(!this.el || this.preventMark){ // not rendered
9847             return;
9848         }
9849         
9850         
9851         this.el.removeClass([this.invalidClass, 'is-invalid']);
9852         
9853         if(this.hasFeedback && this.inputType != 'hidden' && !this.allowBlank){
9854             
9855             var feedback = this.el.select('.form-control-feedback', true).first();
9856             
9857             if(feedback){
9858                 this.el.select('.form-control-feedback', true).first().removeClass(this.invalidFeedbackClass);
9859             }
9860             
9861         }
9862         
9863         if(this.indicator){
9864             this.indicator.removeClass('visible');
9865             this.indicator.addClass(this.indicatorpos == 'right' ? 'hidden' : 'invisible');
9866         }
9867         
9868         this.fireEvent('valid', this);
9869     },
9870     
9871      /**
9872      * Mark this field as valid
9873      */
9874     markValid : function()
9875     {
9876         if(!this.el  || this.preventMark){ // not rendered...
9877             return;
9878         }
9879         
9880         this.el.removeClass([this.invalidClass, this.validClass]);
9881         this.inputEl().removeClass(['is-valid', 'is-invalid']);
9882
9883         var feedback = this.el.select('.form-control-feedback', true).first();
9884             
9885         if(feedback){
9886             this.el.select('.form-control-feedback', true).first().removeClass([this.invalidFeedbackClass, this.validFeedbackClass]);
9887         }
9888         
9889         if(this.indicator){
9890             this.indicator.removeClass('visible');
9891             this.indicator.addClass(this.indicatorpos == 'right' ? 'hidden' : 'invisible');
9892         }
9893         
9894         if(this.disabled){
9895             return;
9896         }
9897         
9898         if(this.allowBlank && !this.getRawValue().length){
9899             return;
9900         }
9901         if (Roo.bootstrap.version == 3) {
9902             this.el.addClass(this.validClass);
9903         } else {
9904             this.inputEl().addClass('is-valid');
9905         }
9906
9907         if(this.hasFeedback && this.inputType != 'hidden' && !this.allowBlank && (this.getValue().length || this.forceFeedback)){
9908             
9909             var feedback = this.el.select('.form-control-feedback', true).first();
9910             
9911             if(feedback){
9912                 this.el.select('.form-control-feedback', true).first().removeClass([this.invalidFeedbackClass, this.validFeedbackClass]);
9913                 this.el.select('.form-control-feedback', true).first().addClass([this.validFeedbackClass]);
9914             }
9915             
9916         }
9917         
9918         this.fireEvent('valid', this);
9919     },
9920     
9921      /**
9922      * Mark this field as invalid
9923      * @param {String} msg The validation message
9924      */
9925     markInvalid : function(msg)
9926     {
9927         if(!this.el  || this.preventMark){ // not rendered
9928             return;
9929         }
9930         
9931         this.el.removeClass([this.invalidClass, this.validClass]);
9932         this.inputEl().removeClass(['is-valid', 'is-invalid']);
9933         
9934         var feedback = this.el.select('.form-control-feedback', true).first();
9935             
9936         if(feedback){
9937             this.el.select('.form-control-feedback', true).first().removeClass(
9938                     [this.invalidFeedbackClass, this.validFeedbackClass]);
9939         }
9940
9941         if(this.disabled){
9942             return;
9943         }
9944         
9945         if(this.allowBlank && !this.getRawValue().length){
9946             return;
9947         }
9948         
9949         if(this.indicator){
9950             this.indicator.removeClass(this.indicatorpos == 'right' ? 'hidden' : 'invisible');
9951             this.indicator.addClass('visible');
9952         }
9953         if (Roo.bootstrap.version == 3) {
9954             this.el.addClass(this.invalidClass);
9955         } else {
9956             this.inputEl().addClass('is-invalid');
9957         }
9958         
9959         
9960         
9961         if(this.hasFeedback && this.inputType != 'hidden' && !this.allowBlank){
9962             
9963             var feedback = this.el.select('.form-control-feedback', true).first();
9964             
9965             if(feedback){
9966                 this.el.select('.form-control-feedback', true).first().removeClass([this.invalidFeedbackClass, this.validFeedbackClass]);
9967                 
9968                 if(this.getValue().length || this.forceFeedback){
9969                     this.el.select('.form-control-feedback', true).first().addClass([this.invalidFeedbackClass]);
9970                 }
9971                 
9972             }
9973             
9974         }
9975         
9976         this.fireEvent('invalid', this, msg);
9977     },
9978     // private
9979     SafariOnKeyDown : function(event)
9980     {
9981         // this is a workaround for a password hang bug on chrome/ webkit.
9982         if (this.inputEl().dom.type != 'password') {
9983             return;
9984         }
9985         
9986         var isSelectAll = false;
9987         
9988         if(this.inputEl().dom.selectionEnd > 0){
9989             isSelectAll = (this.inputEl().dom.selectionEnd - this.inputEl().dom.selectionStart - this.getValue().length == 0) ? true : false;
9990         }
9991         if(((event.getKey() == 8 || event.getKey() == 46) && this.getValue().length ==1)){ // backspace and delete key
9992             event.preventDefault();
9993             this.setValue('');
9994             return;
9995         }
9996         
9997         if(isSelectAll  && event.getCharCode() > 31 && !event.ctrlKey) { // not backspace and delete key (or ctrl-v)
9998             
9999             event.preventDefault();
10000             // this is very hacky as keydown always get's upper case.
10001             //
10002             var cc = String.fromCharCode(event.getCharCode());
10003             this.setValue( event.shiftKey ?  cc : cc.toLowerCase());
10004             
10005         }
10006     },
10007     adjustWidth : function(tag, w){
10008         tag = tag.toLowerCase();
10009         if(typeof w == 'number' && Roo.isStrict && !Roo.isSafari){
10010             if(Roo.isIE && (tag == 'input' || tag == 'textarea')){
10011                 if(tag == 'input'){
10012                     return w + 2;
10013                 }
10014                 if(tag == 'textarea'){
10015                     return w-2;
10016                 }
10017             }else if(Roo.isOpera){
10018                 if(tag == 'input'){
10019                     return w + 2;
10020                 }
10021                 if(tag == 'textarea'){
10022                     return w-2;
10023                 }
10024             }
10025         }
10026         return w;
10027     },
10028     
10029     setFieldLabel : function(v)
10030     {
10031         if(!this.rendered){
10032             return;
10033         }
10034         
10035         if(this.indicatorEl()){
10036             var ar = this.el.select('label > span',true);
10037             
10038             if (ar.elements.length) {
10039                 this.el.select('label > span',true).first().dom.innerHTML = (v === null || v === undefined ? '' : v);
10040                 this.fieldLabel = v;
10041                 return;
10042             }
10043             
10044             var br = this.el.select('label',true);
10045             
10046             if(br.elements.length) {
10047                 this.el.select('label',true).first().dom.innerHTML = (v === null || v === undefined ? '' : v);
10048                 this.fieldLabel = v;
10049                 return;
10050             }
10051             
10052             Roo.log('Cannot Found any of label > span || label in input');
10053             return;
10054         }
10055         
10056         this.el.select('label',true).first().dom.innerHTML = (v === null || v === undefined ? '' : v);
10057         this.fieldLabel = v;
10058         
10059         
10060     }
10061 });
10062
10063  
10064 /*
10065  * - LGPL
10066  *
10067  * Input
10068  * 
10069  */
10070
10071 /**
10072  * @class Roo.bootstrap.TextArea
10073  * @extends Roo.bootstrap.Input
10074  * Bootstrap TextArea class
10075  * @cfg {Number} cols Specifies the visible width of a text area
10076  * @cfg {Number} rows Specifies the visible number of lines in a text area
10077  * @cfg {string} wrap (soft|hard)Specifies how the text in a text area is to be wrapped when submitted in a form
10078  * @cfg {string} resize (none|both|horizontal|vertical|inherit|initial)
10079  * @cfg {string} html text
10080  * 
10081  * @constructor
10082  * Create a new TextArea
10083  * @param {Object} config The config object
10084  */
10085
10086 Roo.bootstrap.TextArea = function(config){
10087     Roo.bootstrap.TextArea.superclass.constructor.call(this, config);
10088    
10089 };
10090
10091 Roo.extend(Roo.bootstrap.TextArea, Roo.bootstrap.Input,  {
10092      
10093     cols : false,
10094     rows : 5,
10095     readOnly : false,
10096     warp : 'soft',
10097     resize : false,
10098     value: false,
10099     html: false,
10100     
10101     getAutoCreate : function(){
10102         
10103         var align = (!this.labelAlign) ? this.parentLabelAlign() : this.labelAlign;
10104         
10105         var id = Roo.id();
10106         
10107         var cfg = {};
10108         
10109         if(this.inputType != 'hidden'){
10110             cfg.cls = 'form-group' //input-group
10111         }
10112         
10113         var input =  {
10114             tag: 'textarea',
10115             id : id,
10116             warp : this.warp,
10117             rows : this.rows,
10118             value : this.value || '',
10119             html: this.html || '',
10120             cls : 'form-control',
10121             placeholder : this.placeholder || '' 
10122             
10123         };
10124         
10125         if(this.maxLength && this.maxLength != Number.MAX_VALUE){
10126             input.maxLength = this.maxLength;
10127         }
10128         
10129         if(this.resize){
10130             input.style = (typeof(input.style) == 'undefined') ? 'resize:' + this.resize : input.style + 'resize:' + this.resize;
10131         }
10132         
10133         if(this.cols){
10134             input.cols = this.cols;
10135         }
10136         
10137         if (this.readOnly) {
10138             input.readonly = true;
10139         }
10140         
10141         if (this.name) {
10142             input.name = this.name;
10143         }
10144         
10145         if (this.size) {
10146             input.cls = (typeof(input.cls) == 'undefined') ? 'input-' + this.size : input.cls + ' input-' + this.size;
10147         }
10148         
10149         var settings=this;
10150         ['xs','sm','md','lg'].map(function(size){
10151             if (settings[size]) {
10152                 cfg.cls += ' col-' + size + '-' + settings[size];
10153             }
10154         });
10155         
10156         var inputblock = input;
10157         
10158         if(this.hasFeedback && !this.allowBlank){
10159             
10160             var feedback = {
10161                 tag: 'span',
10162                 cls: 'glyphicon form-control-feedback'
10163             };
10164
10165             inputblock = {
10166                 cls : 'has-feedback',
10167                 cn :  [
10168                     input,
10169                     feedback
10170                 ] 
10171             };  
10172         }
10173         
10174         
10175         if (this.before || this.after) {
10176             
10177             inputblock = {
10178                 cls : 'input-group',
10179                 cn :  [] 
10180             };
10181             if (this.before) {
10182                 inputblock.cn.push({
10183                     tag :'span',
10184                     cls : 'input-group-addon',
10185                     html : this.before
10186                 });
10187             }
10188             
10189             inputblock.cn.push(input);
10190             
10191             if(this.hasFeedback && !this.allowBlank){
10192                 inputblock.cls += ' has-feedback';
10193                 inputblock.cn.push(feedback);
10194             }
10195             
10196             if (this.after) {
10197                 inputblock.cn.push({
10198                     tag :'span',
10199                     cls : 'input-group-addon',
10200                     html : this.after
10201                 });
10202             }
10203             
10204         }
10205         
10206         if (align ==='left' && this.fieldLabel.length) {
10207             cfg.cn = [
10208                 {
10209                     tag: 'label',
10210                     'for' :  id,
10211                     cls : 'control-label',
10212                     html : this.fieldLabel
10213                 },
10214                 {
10215                     cls : "",
10216                     cn: [
10217                         inputblock
10218                     ]
10219                 }
10220
10221             ];
10222             
10223             if(this.labelWidth > 12){
10224                 cfg.cn[0].style = "width: " + this.labelWidth + 'px';
10225             }
10226
10227             if(this.labelWidth < 13 && this.labelmd == 0){
10228                 this.labelmd = this.labelWidth;
10229             }
10230
10231             if(this.labellg > 0){
10232                 cfg.cn[0].cls += ' col-lg-' + this.labellg;
10233                 cfg.cn[1].cls += ' col-lg-' + (12 - this.labellg);
10234             }
10235
10236             if(this.labelmd > 0){
10237                 cfg.cn[0].cls += ' col-md-' + this.labelmd;
10238                 cfg.cn[1].cls += ' col-md-' + (12 - this.labelmd);
10239             }
10240
10241             if(this.labelsm > 0){
10242                 cfg.cn[0].cls += ' col-sm-' + this.labelsm;
10243                 cfg.cn[1].cls += ' col-sm-' + (12 - this.labelsm);
10244             }
10245
10246             if(this.labelxs > 0){
10247                 cfg.cn[0].cls += ' col-xs-' + this.labelxs;
10248                 cfg.cn[1].cls += ' col-xs-' + (12 - this.labelxs);
10249             }
10250             
10251         } else if ( this.fieldLabel.length) {
10252             cfg.cn = [
10253
10254                {
10255                    tag: 'label',
10256                    //cls : 'input-group-addon',
10257                    html : this.fieldLabel
10258
10259                },
10260
10261                inputblock
10262
10263            ];
10264
10265         } else {
10266
10267             cfg.cn = [
10268
10269                 inputblock
10270
10271             ];
10272                 
10273         }
10274         
10275         if (this.disabled) {
10276             input.disabled=true;
10277         }
10278         
10279         return cfg;
10280         
10281     },
10282     /**
10283      * return the real textarea element.
10284      */
10285     inputEl: function ()
10286     {
10287         return this.el.select('textarea.form-control',true).first();
10288     },
10289     
10290     /**
10291      * Clear any invalid styles/messages for this field
10292      */
10293     clearInvalid : function()
10294     {
10295         
10296         if(!this.el || this.preventMark){ // not rendered
10297             return;
10298         }
10299         
10300         var label = this.el.select('label', true).first();
10301         var icon = this.el.select('i.fa-star', true).first();
10302         
10303         if(label && icon){
10304             icon.remove();
10305         }
10306         this.el.removeClass( this.validClass);
10307         this.inputEl().removeClass('is-invalid');
10308          
10309         if(this.hasFeedback && this.inputType != 'hidden' && !this.allowBlank){
10310             
10311             var feedback = this.el.select('.form-control-feedback', true).first();
10312             
10313             if(feedback){
10314                 this.el.select('.form-control-feedback', true).first().removeClass(this.invalidFeedbackClass);
10315             }
10316             
10317         }
10318         
10319         this.fireEvent('valid', this);
10320     },
10321     
10322      /**
10323      * Mark this field as valid
10324      */
10325     markValid : function()
10326     {
10327         if(!this.el  || this.preventMark){ // not rendered
10328             return;
10329         }
10330         
10331         this.el.removeClass([this.invalidClass, this.validClass]);
10332         this.inputEl().removeClass(['is-valid', 'is-invalid']);
10333         
10334         var feedback = this.el.select('.form-control-feedback', true).first();
10335             
10336         if(feedback){
10337             this.el.select('.form-control-feedback', true).first().removeClass([this.invalidFeedbackClass, this.validFeedbackClass]);
10338         }
10339
10340         if(this.disabled || this.allowBlank){
10341             return;
10342         }
10343         
10344         var label = this.el.select('label', true).first();
10345         var icon = this.el.select('i.fa-star', true).first();
10346         
10347         if(label && icon){
10348             icon.remove();
10349         }
10350         if (Roo.bootstrap.version == 3) {
10351             this.el.addClass(this.validClass);
10352         } else {
10353             this.inputEl().addClass('is-valid');
10354         }
10355         
10356         
10357         if(this.hasFeedback && this.inputType != 'hidden' && !this.allowBlank && (this.getValue().length || this.forceFeedback)){
10358             
10359             var feedback = this.el.select('.form-control-feedback', true).first();
10360             
10361             if(feedback){
10362                 this.el.select('.form-control-feedback', true).first().removeClass([this.invalidFeedbackClass, this.validFeedbackClass]);
10363                 this.el.select('.form-control-feedback', true).first().addClass([this.validFeedbackClass]);
10364             }
10365             
10366         }
10367         
10368         this.fireEvent('valid', this);
10369     },
10370     
10371      /**
10372      * Mark this field as invalid
10373      * @param {String} msg The validation message
10374      */
10375     markInvalid : function(msg)
10376     {
10377         if(!this.el  || this.preventMark){ // not rendered
10378             return;
10379         }
10380         
10381         this.el.removeClass([this.invalidClass, this.validClass]);
10382         this.inputEl().removeClass(['is-valid', 'is-invalid']);
10383         
10384         var feedback = this.el.select('.form-control-feedback', true).first();
10385             
10386         if(feedback){
10387             this.el.select('.form-control-feedback', true).first().removeClass([this.invalidFeedbackClass, this.validFeedbackClass]);
10388         }
10389
10390         if(this.disabled || this.allowBlank){
10391             return;
10392         }
10393         
10394         var label = this.el.select('label', true).first();
10395         var icon = this.el.select('i.fa-star', true).first();
10396         
10397         if(!this.getValue().length && label && !icon){
10398             this.el.createChild({
10399                 tag : 'i',
10400                 cls : 'text-danger fa fa-lg fa-star',
10401                 tooltip : 'This field is required',
10402                 style : 'margin-right:5px;'
10403             }, label, true);
10404         }
10405         
10406         if (Roo.bootstrap.version == 3) {
10407             this.el.addClass(this.invalidClass);
10408         } else {
10409             this.inputEl().addClass('is-invalid');
10410         }
10411         
10412         // fixme ... this may be depricated need to test..
10413         if(this.hasFeedback && this.inputType != 'hidden' && !this.allowBlank){
10414             
10415             var feedback = this.el.select('.form-control-feedback', true).first();
10416             
10417             if(feedback){
10418                 this.el.select('.form-control-feedback', true).first().removeClass([this.invalidFeedbackClass, this.validFeedbackClass]);
10419                 
10420                 if(this.getValue().length || this.forceFeedback){
10421                     this.el.select('.form-control-feedback', true).first().addClass([this.invalidFeedbackClass]);
10422                 }
10423                 
10424             }
10425             
10426         }
10427         
10428         this.fireEvent('invalid', this, msg);
10429     }
10430 });
10431
10432  
10433 /*
10434  * - LGPL
10435  *
10436  * trigger field - base class for combo..
10437  * 
10438  */
10439  
10440 /**
10441  * @class Roo.bootstrap.TriggerField
10442  * @extends Roo.bootstrap.Input
10443  * Provides a convenient wrapper for TextFields that adds a clickable trigger button (looks like a combobox by default).
10444  * The trigger has no default action, so you must assign a function to implement the trigger click handler by
10445  * overriding {@link #onTriggerClick}. You can create a TriggerField directly, as it renders exactly like a combobox
10446  * for which you can provide a custom implementation.  For example:
10447  * <pre><code>
10448 var trigger = new Roo.bootstrap.TriggerField();
10449 trigger.onTriggerClick = myTriggerFn;
10450 trigger.applyTo('my-field');
10451 </code></pre>
10452  *
10453  * However, in general you will most likely want to use TriggerField as the base class for a reusable component.
10454  * {@link Roo.bootstrap.DateField} and {@link Roo.bootstrap.ComboBox} are perfect examples of this.
10455  * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
10456  * class 'x-form-trigger' by default and triggerClass will be <b>appended</b> if specified.
10457  * @cfg {String} caret (search|calendar) a fontawesome for the trigger icon see http://fortawesome.github.io/Font-Awesome/icons/
10458
10459  * @constructor
10460  * Create a new TriggerField.
10461  * @param {Object} config Configuration options (valid {@Roo.bootstrap.Input} config options will also be applied
10462  * to the base TextField)
10463  */
10464 Roo.bootstrap.TriggerField = function(config){
10465     this.mimicing = false;
10466     Roo.bootstrap.TriggerField.superclass.constructor.call(this, config);
10467 };
10468
10469 Roo.extend(Roo.bootstrap.TriggerField, Roo.bootstrap.Input,  {
10470     /**
10471      * @cfg {String} triggerClass A CSS class to apply to the trigger
10472      */
10473      /**
10474      * @cfg {Boolean} hideTrigger True to hide the trigger element and display only the base text field (defaults to false)
10475      */
10476     hideTrigger:false,
10477
10478     /**
10479      * @cfg {Boolean} removable (true|false) special filter default false
10480      */
10481     removable : false,
10482     
10483     /** @cfg {Boolean} grow @hide */
10484     /** @cfg {Number} growMin @hide */
10485     /** @cfg {Number} growMax @hide */
10486
10487     /**
10488      * @hide 
10489      * @method
10490      */
10491     autoSize: Roo.emptyFn,
10492     // private
10493     monitorTab : true,
10494     // private
10495     deferHeight : true,
10496
10497     
10498     actionMode : 'wrap',
10499     
10500     caret : false,
10501     
10502     
10503     getAutoCreate : function(){
10504        
10505         var align = this.labelAlign || this.parentLabelAlign();
10506         
10507         var id = Roo.id();
10508         
10509         var cfg = {
10510             cls: 'form-group' //input-group
10511         };
10512         
10513         
10514         var input =  {
10515             tag: 'input',
10516             id : id,
10517             type : this.inputType,
10518             cls : 'form-control',
10519             autocomplete: 'new-password',
10520             placeholder : this.placeholder || '' 
10521             
10522         };
10523         if (this.name) {
10524             input.name = this.name;
10525         }
10526         if (this.size) {
10527             input.cls += ' input-' + this.size;
10528         }
10529         
10530         if (this.disabled) {
10531             input.disabled=true;
10532         }
10533         
10534         var inputblock = input;
10535         
10536         if(this.hasFeedback && !this.allowBlank){
10537             
10538             var feedback = {
10539                 tag: 'span',
10540                 cls: 'glyphicon form-control-feedback'
10541             };
10542             
10543             if(this.removable && !this.editable && !this.tickable){
10544                 inputblock = {
10545                     cls : 'has-feedback',
10546                     cn :  [
10547                         inputblock,
10548                         {
10549                             tag: 'button',
10550                             html : 'x',
10551                             cls : 'roo-combo-removable-btn close'
10552                         },
10553                         feedback
10554                     ] 
10555                 };
10556             } else {
10557                 inputblock = {
10558                     cls : 'has-feedback',
10559                     cn :  [
10560                         inputblock,
10561                         feedback
10562                     ] 
10563                 };
10564             }
10565
10566         } else {
10567             if(this.removable && !this.editable && !this.tickable){
10568                 inputblock = {
10569                     cls : 'roo-removable',
10570                     cn :  [
10571                         inputblock,
10572                         {
10573                             tag: 'button',
10574                             html : 'x',
10575                             cls : 'roo-combo-removable-btn close'
10576                         }
10577                     ] 
10578                 };
10579             }
10580         }
10581         
10582         if (this.before || this.after) {
10583             
10584             inputblock = {
10585                 cls : 'input-group',
10586                 cn :  [] 
10587             };
10588             if (this.before) {
10589                 inputblock.cn.push({
10590                     tag :'span',
10591                     cls : 'input-group-addon input-group-prepend input-group-text',
10592                     html : this.before
10593                 });
10594             }
10595             
10596             inputblock.cn.push(input);
10597             
10598             if(this.hasFeedback && !this.allowBlank){
10599                 inputblock.cls += ' has-feedback';
10600                 inputblock.cn.push(feedback);
10601             }
10602             
10603             if (this.after) {
10604                 inputblock.cn.push({
10605                     tag :'span',
10606                     cls : 'input-group-addon input-group-append input-group-text',
10607                     html : this.after
10608                 });
10609             }
10610             
10611         };
10612         
10613       
10614         
10615         var ibwrap = inputblock;
10616         
10617         if(this.multiple){
10618             ibwrap = {
10619                 tag: 'ul',
10620                 cls: 'roo-select2-choices',
10621                 cn:[
10622                     {
10623                         tag: 'li',
10624                         cls: 'roo-select2-search-field',
10625                         cn: [
10626
10627                             inputblock
10628                         ]
10629                     }
10630                 ]
10631             };
10632                 
10633         }
10634         
10635         var combobox = {
10636             cls: 'roo-select2-container input-group',
10637             cn: [
10638                  {
10639                     tag: 'input',
10640                     type : 'hidden',
10641                     cls: 'form-hidden-field'
10642                 },
10643                 ibwrap
10644             ]
10645         };
10646         
10647         if(!this.multiple && this.showToggleBtn){
10648             
10649             var caret = {
10650                         tag: 'span',
10651                         cls: 'caret'
10652              };
10653             if (this.caret != false) {
10654                 caret = {
10655                      tag: 'i',
10656                      cls: 'fa fa-' + this.caret
10657                 };
10658                 
10659             }
10660             
10661             combobox.cn.push({
10662                 tag :'span',
10663                 cls : 'input-group-addon input-group-append input-group-text btn dropdown-toggle',
10664                 cn : [
10665                     caret,
10666                     {
10667                         tag: 'span',
10668                         cls: 'combobox-clear',
10669                         cn  : [
10670                             {
10671                                 tag : 'i',
10672                                 cls: 'icon-remove'
10673                             }
10674                         ]
10675                     }
10676                 ]
10677
10678             })
10679         }
10680         
10681         if(this.multiple){
10682             combobox.cls += ' roo-select2-container-multi';
10683         }
10684          var indicator = {
10685             tag : 'i',
10686             cls : 'roo-required-indicator ' + (this.indicatorpos == 'right'  ? 'right' : 'left') +'-indicator text-danger fa fa-lg fa-star',
10687             tooltip : 'This field is required'
10688         };
10689         if (Roo.bootstrap.version == 4) {
10690             indicator = {
10691                 tag : 'i',
10692                 style : 'display:none'
10693             };
10694         }
10695         
10696         
10697         if (align ==='left' && this.fieldLabel.length) {
10698             
10699             cfg.cls += ' roo-form-group-label-left'  + (Roo.bootstrap.version == 4 ? ' row' : '');
10700
10701             cfg.cn = [
10702                 indicator,
10703                 {
10704                     tag: 'label',
10705                     'for' :  id,
10706                     cls : 'control-label',
10707                     html : this.fieldLabel
10708
10709                 },
10710                 {
10711                     cls : "", 
10712                     cn: [
10713                         combobox
10714                     ]
10715                 }
10716
10717             ];
10718             
10719             var labelCfg = cfg.cn[1];
10720             var contentCfg = cfg.cn[2];
10721             
10722             if(this.indicatorpos == 'right'){
10723                 cfg.cn = [
10724                     {
10725                         tag: 'label',
10726                         'for' :  id,
10727                         cls : 'control-label',
10728                         cn : [
10729                             {
10730                                 tag : 'span',
10731                                 html : this.fieldLabel
10732                             },
10733                             indicator
10734                         ]
10735                     },
10736                     {
10737                         cls : "", 
10738                         cn: [
10739                             combobox
10740                         ]
10741                     }
10742
10743                 ];
10744                 
10745                 labelCfg = cfg.cn[0];
10746                 contentCfg = cfg.cn[1];
10747             }
10748             
10749             if(this.labelWidth > 12){
10750                 labelCfg.style = "width: " + this.labelWidth + 'px';
10751             }
10752             
10753             if(this.labelWidth < 13 && this.labelmd == 0){
10754                 this.labelmd = this.labelWidth;
10755             }
10756             
10757             if(this.labellg > 0){
10758                 labelCfg.cls += ' col-lg-' + this.labellg;
10759                 contentCfg.cls += ' col-lg-' + (12 - this.labellg);
10760             }
10761             
10762             if(this.labelmd > 0){
10763                 labelCfg.cls += ' col-md-' + this.labelmd;
10764                 contentCfg.cls += ' col-md-' + (12 - this.labelmd);
10765             }
10766             
10767             if(this.labelsm > 0){
10768                 labelCfg.cls += ' col-sm-' + this.labelsm;
10769                 contentCfg.cls += ' col-sm-' + (12 - this.labelsm);
10770             }
10771             
10772             if(this.labelxs > 0){
10773                 labelCfg.cls += ' col-xs-' + this.labelxs;
10774                 contentCfg.cls += ' col-xs-' + (12 - this.labelxs);
10775             }
10776             
10777         } else if ( this.fieldLabel.length) {
10778 //                Roo.log(" label");
10779             cfg.cn = [
10780                 indicator,
10781                {
10782                    tag: 'label',
10783                    //cls : 'input-group-addon',
10784                    html : this.fieldLabel
10785
10786                },
10787
10788                combobox
10789
10790             ];
10791             
10792             if(this.indicatorpos == 'right'){
10793                 
10794                 cfg.cn = [
10795                     {
10796                        tag: 'label',
10797                        cn : [
10798                            {
10799                                tag : 'span',
10800                                html : this.fieldLabel
10801                            },
10802                            indicator
10803                        ]
10804
10805                     },
10806                     combobox
10807
10808                 ];
10809
10810             }
10811
10812         } else {
10813             
10814 //                Roo.log(" no label && no align");
10815                 cfg = combobox
10816                      
10817                 
10818         }
10819         
10820         var settings=this;
10821         ['xs','sm','md','lg'].map(function(size){
10822             if (settings[size]) {
10823                 cfg.cls += ' col-' + size + '-' + settings[size];
10824             }
10825         });
10826         
10827         return cfg;
10828         
10829     },
10830     
10831     
10832     
10833     // private
10834     onResize : function(w, h){
10835 //        Roo.bootstrap.TriggerField.superclass.onResize.apply(this, arguments);
10836 //        if(typeof w == 'number'){
10837 //            var x = w - this.trigger.getWidth();
10838 //            this.inputEl().setWidth(this.adjustWidth('input', x));
10839 //            this.trigger.setStyle('left', x+'px');
10840 //        }
10841     },
10842
10843     // private
10844     adjustSize : Roo.BoxComponent.prototype.adjustSize,
10845
10846     // private
10847     getResizeEl : function(){
10848         return this.inputEl();
10849     },
10850
10851     // private
10852     getPositionEl : function(){
10853         return this.inputEl();
10854     },
10855
10856     // private
10857     alignErrorIcon : function(){
10858         this.errorIcon.alignTo(this.inputEl(), 'tl-tr', [2, 0]);
10859     },
10860
10861     // private
10862     initEvents : function(){
10863         
10864         this.createList();
10865         
10866         Roo.bootstrap.TriggerField.superclass.initEvents.call(this);
10867         //this.wrap = this.el.wrap({cls: "x-form-field-wrap"});
10868         if(!this.multiple && this.showToggleBtn){
10869             this.trigger = this.el.select('span.dropdown-toggle',true).first();
10870             if(this.hideTrigger){
10871                 this.trigger.setDisplayed(false);
10872             }
10873             this.trigger.on("click", this.onTriggerClick, this, {preventDefault:true});
10874         }
10875         
10876         if(this.multiple){
10877             this.inputEl().on("click", this.onTriggerClick, this, {preventDefault:true});
10878         }
10879         
10880         if(this.removable && !this.editable && !this.tickable){
10881             var close = this.closeTriggerEl();
10882             
10883             if(close){
10884                 close.setVisibilityMode(Roo.Element.DISPLAY).hide();
10885                 close.on('click', this.removeBtnClick, this, close);
10886             }
10887         }
10888         
10889         //this.trigger.addClassOnOver('x-form-trigger-over');
10890         //this.trigger.addClassOnClick('x-form-trigger-click');
10891         
10892         //if(!this.width){
10893         //    this.wrap.setWidth(this.el.getWidth()+this.trigger.getWidth());
10894         //}
10895     },
10896     
10897     closeTriggerEl : function()
10898     {
10899         var close = this.el.select('.roo-combo-removable-btn', true).first();
10900         return close ? close : false;
10901     },
10902     
10903     removeBtnClick : function(e, h, el)
10904     {
10905         e.preventDefault();
10906         
10907         if(this.fireEvent("remove", this) !== false){
10908             this.reset();
10909             this.fireEvent("afterremove", this)
10910         }
10911     },
10912     
10913     createList : function()
10914     {
10915         this.list = Roo.get(document.body).createChild({
10916             tag: Roo.bootstrap.version == 4 ? 'div' : 'ul',
10917             cls: 'typeahead typeahead-long dropdown-menu',
10918             style: 'display:none'
10919         });
10920         
10921         this.list.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';;
10922         
10923     },
10924
10925     // private
10926     initTrigger : function(){
10927        
10928     },
10929
10930     // private
10931     onDestroy : function(){
10932         if(this.trigger){
10933             this.trigger.removeAllListeners();
10934           //  this.trigger.remove();
10935         }
10936         //if(this.wrap){
10937         //    this.wrap.remove();
10938         //}
10939         Roo.bootstrap.TriggerField.superclass.onDestroy.call(this);
10940     },
10941
10942     // private
10943     onFocus : function(){
10944         Roo.bootstrap.TriggerField.superclass.onFocus.call(this);
10945         /*
10946         if(!this.mimicing){
10947             this.wrap.addClass('x-trigger-wrap-focus');
10948             this.mimicing = true;
10949             Roo.get(Roo.isIE ? document.body : document).on("mousedown", this.mimicBlur, this);
10950             if(this.monitorTab){
10951                 this.el.on("keydown", this.checkTab, this);
10952             }
10953         }
10954         */
10955     },
10956
10957     // private
10958     checkTab : function(e){
10959         if(e.getKey() == e.TAB){
10960             this.triggerBlur();
10961         }
10962     },
10963
10964     // private
10965     onBlur : function(){
10966         // do nothing
10967     },
10968
10969     // private
10970     mimicBlur : function(e, t){
10971         /*
10972         if(!this.wrap.contains(t) && this.validateBlur()){
10973             this.triggerBlur();
10974         }
10975         */
10976     },
10977
10978     // private
10979     triggerBlur : function(){
10980         this.mimicing = false;
10981         Roo.get(Roo.isIE ? document.body : document).un("mousedown", this.mimicBlur);
10982         if(this.monitorTab){
10983             this.el.un("keydown", this.checkTab, this);
10984         }
10985         //this.wrap.removeClass('x-trigger-wrap-focus');
10986         Roo.bootstrap.TriggerField.superclass.onBlur.call(this);
10987     },
10988
10989     // private
10990     // This should be overriden by any subclass that needs to check whether or not the field can be blurred.
10991     validateBlur : function(e, t){
10992         return true;
10993     },
10994
10995     // private
10996     onDisable : function(){
10997         this.inputEl().dom.disabled = true;
10998         //Roo.bootstrap.TriggerField.superclass.onDisable.call(this);
10999         //if(this.wrap){
11000         //    this.wrap.addClass('x-item-disabled');
11001         //}
11002     },
11003
11004     // private
11005     onEnable : function(){
11006         this.inputEl().dom.disabled = false;
11007         //Roo.bootstrap.TriggerField.superclass.onEnable.call(this);
11008         //if(this.wrap){
11009         //    this.el.removeClass('x-item-disabled');
11010         //}
11011     },
11012
11013     // private
11014     onShow : function(){
11015         var ae = this.getActionEl();
11016         
11017         if(ae){
11018             ae.dom.style.display = '';
11019             ae.dom.style.visibility = 'visible';
11020         }
11021     },
11022
11023     // private
11024     
11025     onHide : function(){
11026         var ae = this.getActionEl();
11027         ae.dom.style.display = 'none';
11028     },
11029
11030     /**
11031      * The function that should handle the trigger's click event.  This method does nothing by default until overridden
11032      * by an implementing function.
11033      * @method
11034      * @param {EventObject} e
11035      */
11036     onTriggerClick : Roo.emptyFn
11037 });
11038  /*
11039  * Based on:
11040  * Ext JS Library 1.1.1
11041  * Copyright(c) 2006-2007, Ext JS, LLC.
11042  *
11043  * Originally Released Under LGPL - original licence link has changed is not relivant.
11044  *
11045  * Fork - LGPL
11046  * <script type="text/javascript">
11047  */
11048
11049
11050 /**
11051  * @class Roo.data.SortTypes
11052  * @singleton
11053  * Defines the default sorting (casting?) comparison functions used when sorting data.
11054  */
11055 Roo.data.SortTypes = {
11056     /**
11057      * Default sort that does nothing
11058      * @param {Mixed} s The value being converted
11059      * @return {Mixed} The comparison value
11060      */
11061     none : function(s){
11062         return s;
11063     },
11064     
11065     /**
11066      * The regular expression used to strip tags
11067      * @type {RegExp}
11068      * @property
11069      */
11070     stripTagsRE : /<\/?[^>]+>/gi,
11071     
11072     /**
11073      * Strips all HTML tags to sort on text only
11074      * @param {Mixed} s The value being converted
11075      * @return {String} The comparison value
11076      */
11077     asText : function(s){
11078         return String(s).replace(this.stripTagsRE, "");
11079     },
11080     
11081     /**
11082      * Strips all HTML tags to sort on text only - Case insensitive
11083      * @param {Mixed} s The value being converted
11084      * @return {String} The comparison value
11085      */
11086     asUCText : function(s){
11087         return String(s).toUpperCase().replace(this.stripTagsRE, "");
11088     },
11089     
11090     /**
11091      * Case insensitive string
11092      * @param {Mixed} s The value being converted
11093      * @return {String} The comparison value
11094      */
11095     asUCString : function(s) {
11096         return String(s).toUpperCase();
11097     },
11098     
11099     /**
11100      * Date sorting
11101      * @param {Mixed} s The value being converted
11102      * @return {Number} The comparison value
11103      */
11104     asDate : function(s) {
11105         if(!s){
11106             return 0;
11107         }
11108         if(s instanceof Date){
11109             return s.getTime();
11110         }
11111         return Date.parse(String(s));
11112     },
11113     
11114     /**
11115      * Float sorting
11116      * @param {Mixed} s The value being converted
11117      * @return {Float} The comparison value
11118      */
11119     asFloat : function(s) {
11120         var val = parseFloat(String(s).replace(/,/g, ""));
11121         if(isNaN(val)) {
11122             val = 0;
11123         }
11124         return val;
11125     },
11126     
11127     /**
11128      * Integer sorting
11129      * @param {Mixed} s The value being converted
11130      * @return {Number} The comparison value
11131      */
11132     asInt : function(s) {
11133         var val = parseInt(String(s).replace(/,/g, ""));
11134         if(isNaN(val)) {
11135             val = 0;
11136         }
11137         return val;
11138     }
11139 };/*
11140  * Based on:
11141  * Ext JS Library 1.1.1
11142  * Copyright(c) 2006-2007, Ext JS, LLC.
11143  *
11144  * Originally Released Under LGPL - original licence link has changed is not relivant.
11145  *
11146  * Fork - LGPL
11147  * <script type="text/javascript">
11148  */
11149
11150 /**
11151 * @class Roo.data.Record
11152  * Instances of this class encapsulate both record <em>definition</em> information, and record
11153  * <em>value</em> information for use in {@link Roo.data.Store} objects, or any code which needs
11154  * to access Records cached in an {@link Roo.data.Store} object.<br>
11155  * <p>
11156  * Constructors for this class are generated by passing an Array of field definition objects to {@link #create}.
11157  * Instances are usually only created by {@link Roo.data.Reader} implementations when processing unformatted data
11158  * objects.<br>
11159  * <p>
11160  * Record objects generated by this constructor inherit all the methods of Roo.data.Record listed below.
11161  * @constructor
11162  * This constructor should not be used to create Record objects. Instead, use the constructor generated by
11163  * {@link #create}. The parameters are the same.
11164  * @param {Array} data An associative Array of data values keyed by the field name.
11165  * @param {Object} id (Optional) The id of the record. This id should be unique, and is used by the
11166  * {@link Roo.data.Store} object which owns the Record to index its collection of Records. If
11167  * not specified an integer id is generated.
11168  */
11169 Roo.data.Record = function(data, id){
11170     this.id = (id || id === 0) ? id : ++Roo.data.Record.AUTO_ID;
11171     this.data = data;
11172 };
11173
11174 /**
11175  * Generate a constructor for a specific record layout.
11176  * @param {Array} o An Array of field definition objects which specify field names, and optionally,
11177  * data types, and a mapping for an {@link Roo.data.Reader} to extract the field's value from a data object.
11178  * Each field definition object may contain the following properties: <ul>
11179  * <li><b>name</b> : String<p style="margin-left:1em">The name by which the field is referenced within the Record. This is referenced by,
11180  * for example the <em>dataIndex</em> property in column definition objects passed to {@link Roo.grid.ColumnModel}</p></li>
11181  * <li><b>mapping</b> : String<p style="margin-left:1em">(Optional) A path specification for use by the {@link Roo.data.Reader} implementation
11182  * that is creating the Record to access the data value from the data object. If an {@link Roo.data.JsonReader}
11183  * is being used, then this is a string containing the javascript expression to reference the data relative to 
11184  * the record item's root. If an {@link Roo.data.XmlReader} is being used, this is an {@link Roo.DomQuery} path
11185  * to the data item relative to the record element. If the mapping expression is the same as the field name,
11186  * this may be omitted.</p></li>
11187  * <li><b>type</b> : String<p style="margin-left:1em">(Optional) The data type for conversion to displayable value. Possible values are
11188  * <ul><li>auto (Default, implies no conversion)</li>
11189  * <li>string</li>
11190  * <li>int</li>
11191  * <li>float</li>
11192  * <li>boolean</li>
11193  * <li>date</li></ul></p></li>
11194  * <li><b>sortType</b> : Mixed<p style="margin-left:1em">(Optional) A member of {@link Roo.data.SortTypes}.</p></li>
11195  * <li><b>sortDir</b> : String<p style="margin-left:1em">(Optional) Initial direction to sort. "ASC" or "DESC"</p></li>
11196  * <li><b>convert</b> : Function<p style="margin-left:1em">(Optional) A function which converts the value provided
11197  * by the Reader into an object that will be stored in the Record. It is passed the
11198  * following parameters:<ul>
11199  * <li><b>v</b> : Mixed<p style="margin-left:1em">The data value as read by the Reader.</p></li>
11200  * </ul></p></li>
11201  * <li><b>dateFormat</b> : String<p style="margin-left:1em">(Optional) A format String for the Date.parseDate function.</p></li>
11202  * </ul>
11203  * <br>usage:<br><pre><code>
11204 var TopicRecord = Roo.data.Record.create(
11205     {name: 'title', mapping: 'topic_title'},
11206     {name: 'author', mapping: 'username'},
11207     {name: 'totalPosts', mapping: 'topic_replies', type: 'int'},
11208     {name: 'lastPost', mapping: 'post_time', type: 'date'},
11209     {name: 'lastPoster', mapping: 'user2'},
11210     {name: 'excerpt', mapping: 'post_text'}
11211 );
11212
11213 var myNewRecord = new TopicRecord({
11214     title: 'Do my job please',
11215     author: 'noobie',
11216     totalPosts: 1,
11217     lastPost: new Date(),
11218     lastPoster: 'Animal',
11219     excerpt: 'No way dude!'
11220 });
11221 myStore.add(myNewRecord);
11222 </code></pre>
11223  * @method create
11224  * @static
11225  */
11226 Roo.data.Record.create = function(o){
11227     var f = function(){
11228         f.superclass.constructor.apply(this, arguments);
11229     };
11230     Roo.extend(f, Roo.data.Record);
11231     var p = f.prototype;
11232     p.fields = new Roo.util.MixedCollection(false, function(field){
11233         return field.name;
11234     });
11235     for(var i = 0, len = o.length; i < len; i++){
11236         p.fields.add(new Roo.data.Field(o[i]));
11237     }
11238     f.getField = function(name){
11239         return p.fields.get(name);  
11240     };
11241     return f;
11242 };
11243
11244 Roo.data.Record.AUTO_ID = 1000;
11245 Roo.data.Record.EDIT = 'edit';
11246 Roo.data.Record.REJECT = 'reject';
11247 Roo.data.Record.COMMIT = 'commit';
11248
11249 Roo.data.Record.prototype = {
11250     /**
11251      * Readonly flag - true if this record has been modified.
11252      * @type Boolean
11253      */
11254     dirty : false,
11255     editing : false,
11256     error: null,
11257     modified: null,
11258
11259     // private
11260     join : function(store){
11261         this.store = store;
11262     },
11263
11264     /**
11265      * Set the named field to the specified value.
11266      * @param {String} name The name of the field to set.
11267      * @param {Object} value The value to set the field to.
11268      */
11269     set : function(name, value){
11270         if(this.data[name] == value){
11271             return;
11272         }
11273         this.dirty = true;
11274         if(!this.modified){
11275             this.modified = {};
11276         }
11277         if(typeof this.modified[name] == 'undefined'){
11278             this.modified[name] = this.data[name];
11279         }
11280         this.data[name] = value;
11281         if(!this.editing && this.store){
11282             this.store.afterEdit(this);
11283         }       
11284     },
11285
11286     /**
11287      * Get the value of the named field.
11288      * @param {String} name The name of the field to get the value of.
11289      * @return {Object} The value of the field.
11290      */
11291     get : function(name){
11292         return this.data[name]; 
11293     },
11294
11295     // private
11296     beginEdit : function(){
11297         this.editing = true;
11298         this.modified = {}; 
11299     },
11300
11301     // private
11302     cancelEdit : function(){
11303         this.editing = false;
11304         delete this.modified;
11305     },
11306
11307     // private
11308     endEdit : function(){
11309         this.editing = false;
11310         if(this.dirty && this.store){
11311             this.store.afterEdit(this);
11312         }
11313     },
11314
11315     /**
11316      * Usually called by the {@link Roo.data.Store} which owns the Record.
11317      * Rejects all changes made to the Record since either creation, or the last commit operation.
11318      * Modified fields are reverted to their original values.
11319      * <p>
11320      * Developers should subscribe to the {@link Roo.data.Store#update} event to have their code notified
11321      * of reject operations.
11322      */
11323     reject : function(){
11324         var m = this.modified;
11325         for(var n in m){
11326             if(typeof m[n] != "function"){
11327                 this.data[n] = m[n];
11328             }
11329         }
11330         this.dirty = false;
11331         delete this.modified;
11332         this.editing = false;
11333         if(this.store){
11334             this.store.afterReject(this);
11335         }
11336     },
11337
11338     /**
11339      * Usually called by the {@link Roo.data.Store} which owns the Record.
11340      * Commits all changes made to the Record since either creation, or the last commit operation.
11341      * <p>
11342      * Developers should subscribe to the {@link Roo.data.Store#update} event to have their code notified
11343      * of commit operations.
11344      */
11345     commit : function(){
11346         this.dirty = false;
11347         delete this.modified;
11348         this.editing = false;
11349         if(this.store){
11350             this.store.afterCommit(this);
11351         }
11352     },
11353
11354     // private
11355     hasError : function(){
11356         return this.error != null;
11357     },
11358
11359     // private
11360     clearError : function(){
11361         this.error = null;
11362     },
11363
11364     /**
11365      * Creates a copy of this record.
11366      * @param {String} id (optional) A new record id if you don't want to use this record's id
11367      * @return {Record}
11368      */
11369     copy : function(newId) {
11370         return new this.constructor(Roo.apply({}, this.data), newId || this.id);
11371     }
11372 };/*
11373  * Based on:
11374  * Ext JS Library 1.1.1
11375  * Copyright(c) 2006-2007, Ext JS, LLC.
11376  *
11377  * Originally Released Under LGPL - original licence link has changed is not relivant.
11378  *
11379  * Fork - LGPL
11380  * <script type="text/javascript">
11381  */
11382
11383
11384
11385 /**
11386  * @class Roo.data.Store
11387  * @extends Roo.util.Observable
11388  * The Store class encapsulates a client side cache of {@link Roo.data.Record} objects which provide input data
11389  * for widgets such as the Roo.grid.Grid, or the Roo.form.ComboBox.<br>
11390  * <p>
11391  * A Store object uses an implementation of {@link Roo.data.DataProxy} to access a data object unless you call loadData() directly and pass in your data. The Store object
11392  * has no knowledge of the format of the data returned by the Proxy.<br>
11393  * <p>
11394  * A Store object uses its configured implementation of {@link Roo.data.DataReader} to create {@link Roo.data.Record}
11395  * instances from the data object. These records are cached and made available through accessor functions.
11396  * @constructor
11397  * Creates a new Store.
11398  * @param {Object} config A config object containing the objects needed for the Store to access data,
11399  * and read the data into Records.
11400  */
11401 Roo.data.Store = function(config){
11402     this.data = new Roo.util.MixedCollection(false);
11403     this.data.getKey = function(o){
11404         return o.id;
11405     };
11406     this.baseParams = {};
11407     // private
11408     this.paramNames = {
11409         "start" : "start",
11410         "limit" : "limit",
11411         "sort" : "sort",
11412         "dir" : "dir",
11413         "multisort" : "_multisort"
11414     };
11415
11416     if(config && config.data){
11417         this.inlineData = config.data;
11418         delete config.data;
11419     }
11420
11421     Roo.apply(this, config);
11422     
11423     if(this.reader){ // reader passed
11424         this.reader = Roo.factory(this.reader, Roo.data);
11425         this.reader.xmodule = this.xmodule || false;
11426         if(!this.recordType){
11427             this.recordType = this.reader.recordType;
11428         }
11429         if(this.reader.onMetaChange){
11430             this.reader.onMetaChange = this.onMetaChange.createDelegate(this);
11431         }
11432     }
11433
11434     if(this.recordType){
11435         this.fields = this.recordType.prototype.fields;
11436     }
11437     this.modified = [];
11438
11439     this.addEvents({
11440         /**
11441          * @event datachanged
11442          * Fires when the data cache has changed, and a widget which is using this Store
11443          * as a Record cache should refresh its view.
11444          * @param {Store} this
11445          */
11446         datachanged : true,
11447         /**
11448          * @event metachange
11449          * Fires when this store's reader provides new metadata (fields). This is currently only support for JsonReaders.
11450          * @param {Store} this
11451          * @param {Object} meta The JSON metadata
11452          */
11453         metachange : true,
11454         /**
11455          * @event add
11456          * Fires when Records have been added to the Store
11457          * @param {Store} this
11458          * @param {Roo.data.Record[]} records The array of Records added
11459          * @param {Number} index The index at which the record(s) were added
11460          */
11461         add : true,
11462         /**
11463          * @event remove
11464          * Fires when a Record has been removed from the Store
11465          * @param {Store} this
11466          * @param {Roo.data.Record} record The Record that was removed
11467          * @param {Number} index The index at which the record was removed
11468          */
11469         remove : true,
11470         /**
11471          * @event update
11472          * Fires when a Record has been updated
11473          * @param {Store} this
11474          * @param {Roo.data.Record} record The Record that was updated
11475          * @param {String} operation The update operation being performed.  Value may be one of:
11476          * <pre><code>
11477  Roo.data.Record.EDIT
11478  Roo.data.Record.REJECT
11479  Roo.data.Record.COMMIT
11480          * </code></pre>
11481          */
11482         update : true,
11483         /**
11484          * @event clear
11485          * Fires when the data cache has been cleared.
11486          * @param {Store} this
11487          */
11488         clear : true,
11489         /**
11490          * @event beforeload
11491          * Fires before a request is made for a new data object.  If the beforeload handler returns false
11492          * the load action will be canceled.
11493          * @param {Store} this
11494          * @param {Object} options The loading options that were specified (see {@link #load} for details)
11495          */
11496         beforeload : true,
11497         /**
11498          * @event beforeloadadd
11499          * Fires after a new set of Records has been loaded.
11500          * @param {Store} this
11501          * @param {Roo.data.Record[]} records The Records that were loaded
11502          * @param {Object} options The loading options that were specified (see {@link #load} for details)
11503          */
11504         beforeloadadd : true,
11505         /**
11506          * @event load
11507          * Fires after a new set of Records has been loaded, before they are added to the store.
11508          * @param {Store} this
11509          * @param {Roo.data.Record[]} records The Records that were loaded
11510          * @param {Object} options The loading options that were specified (see {@link #load} for details)
11511          * @params {Object} return from reader
11512          */
11513         load : true,
11514         /**
11515          * @event loadexception
11516          * Fires if an exception occurs in the Proxy during loading.
11517          * Called with the signature of the Proxy's "loadexception" event.
11518          * If you return Json { data: [] , success: false, .... } then this will be thrown with the following args
11519          * 
11520          * @param {Proxy} 
11521          * @param {Object} return from JsonData.reader() - success, totalRecords, records
11522          * @param {Object} load options 
11523          * @param {Object} jsonData from your request (normally this contains the Exception)
11524          */
11525         loadexception : true
11526     });
11527     
11528     if(this.proxy){
11529         this.proxy = Roo.factory(this.proxy, Roo.data);
11530         this.proxy.xmodule = this.xmodule || false;
11531         this.relayEvents(this.proxy,  ["loadexception"]);
11532     }
11533     this.sortToggle = {};
11534     this.sortOrder = []; // array of order of sorting - updated by grid if multisort is enabled.
11535
11536     Roo.data.Store.superclass.constructor.call(this);
11537
11538     if(this.inlineData){
11539         this.loadData(this.inlineData);
11540         delete this.inlineData;
11541     }
11542 };
11543
11544 Roo.extend(Roo.data.Store, Roo.util.Observable, {
11545      /**
11546     * @cfg {boolean} isLocal   flag if data is locally available (and can be always looked up
11547     * without a remote query - used by combo/forms at present.
11548     */
11549     
11550     /**
11551     * @cfg {Roo.data.DataProxy} proxy The Proxy object which provides access to a data object.
11552     */
11553     /**
11554     * @cfg {Array} data Inline data to be loaded when the store is initialized.
11555     */
11556     /**
11557     * @cfg {Roo.data.Reader} reader The Reader object which processes the data object and returns
11558     * an Array of Roo.data.record objects which are cached keyed by their <em>id</em> property.
11559     */
11560     /**
11561     * @cfg {Object} baseParams An object containing properties which are to be sent as parameters
11562     * on any HTTP request
11563     */
11564     /**
11565     * @cfg {Object} sortInfo A config object in the format: {field: "fieldName", direction: "ASC|DESC"}
11566     */
11567     /**
11568     * @cfg {Boolean} multiSort enable multi column sorting (sort is based on the order of columns, remote only at present)
11569     */
11570     multiSort: false,
11571     /**
11572     * @cfg {boolean} remoteSort True if sorting is to be handled by requesting the Proxy to provide a refreshed
11573     * version of the data object in sorted order, as opposed to sorting the Record cache in place (defaults to false).
11574     */
11575     remoteSort : false,
11576
11577     /**
11578     * @cfg {boolean} pruneModifiedRecords True to clear all modified record information each time the store is
11579      * loaded or when a record is removed. (defaults to false).
11580     */
11581     pruneModifiedRecords : false,
11582
11583     // private
11584     lastOptions : null,
11585
11586     /**
11587      * Add Records to the Store and fires the add event.
11588      * @param {Roo.data.Record[]} records An Array of Roo.data.Record objects to add to the cache.
11589      */
11590     add : function(records){
11591         records = [].concat(records);
11592         for(var i = 0, len = records.length; i < len; i++){
11593             records[i].join(this);
11594         }
11595         var index = this.data.length;
11596         this.data.addAll(records);
11597         this.fireEvent("add", this, records, index);
11598     },
11599
11600     /**
11601      * Remove a Record from the Store and fires the remove event.
11602      * @param {Ext.data.Record} record The Roo.data.Record object to remove from the cache.
11603      */
11604     remove : function(record){
11605         var index = this.data.indexOf(record);
11606         this.data.removeAt(index);
11607  
11608         if(this.pruneModifiedRecords){
11609             this.modified.remove(record);
11610         }
11611         this.fireEvent("remove", this, record, index);
11612     },
11613
11614     /**
11615      * Remove all Records from the Store and fires the clear event.
11616      */
11617     removeAll : function(){
11618         this.data.clear();
11619         if(this.pruneModifiedRecords){
11620             this.modified = [];
11621         }
11622         this.fireEvent("clear", this);
11623     },
11624
11625     /**
11626      * Inserts Records to the Store at the given index and fires the add event.
11627      * @param {Number} index The start index at which to insert the passed Records.
11628      * @param {Roo.data.Record[]} records An Array of Roo.data.Record objects to add to the cache.
11629      */
11630     insert : function(index, records){
11631         records = [].concat(records);
11632         for(var i = 0, len = records.length; i < len; i++){
11633             this.data.insert(index, records[i]);
11634             records[i].join(this);
11635         }
11636         this.fireEvent("add", this, records, index);
11637     },
11638
11639     /**
11640      * Get the index within the cache of the passed Record.
11641      * @param {Roo.data.Record} record The Roo.data.Record object to to find.
11642      * @return {Number} The index of the passed Record. Returns -1 if not found.
11643      */
11644     indexOf : function(record){
11645         return this.data.indexOf(record);
11646     },
11647
11648     /**
11649      * Get the index within the cache of the Record with the passed id.
11650      * @param {String} id The id of the Record to find.
11651      * @return {Number} The index of the Record. Returns -1 if not found.
11652      */
11653     indexOfId : function(id){
11654         return this.data.indexOfKey(id);
11655     },
11656
11657     /**
11658      * Get the Record with the specified id.
11659      * @param {String} id The id of the Record to find.
11660      * @return {Roo.data.Record} The Record with the passed id. Returns undefined if not found.
11661      */
11662     getById : function(id){
11663         return this.data.key(id);
11664     },
11665
11666     /**
11667      * Get the Record at the specified index.
11668      * @param {Number} index The index of the Record to find.
11669      * @return {Roo.data.Record} The Record at the passed index. Returns undefined if not found.
11670      */
11671     getAt : function(index){
11672         return this.data.itemAt(index);
11673     },
11674
11675     /**
11676      * Returns a range of Records between specified indices.
11677      * @param {Number} startIndex (optional) The starting index (defaults to 0)
11678      * @param {Number} endIndex (optional) The ending index (defaults to the last Record in the Store)
11679      * @return {Roo.data.Record[]} An array of Records
11680      */
11681     getRange : function(start, end){
11682         return this.data.getRange(start, end);
11683     },
11684
11685     // private
11686     storeOptions : function(o){
11687         o = Roo.apply({}, o);
11688         delete o.callback;
11689         delete o.scope;
11690         this.lastOptions = o;
11691     },
11692
11693     /**
11694      * Loads the Record cache from the configured Proxy using the configured Reader.
11695      * <p>
11696      * If using remote paging, then the first load call must specify the <em>start</em>
11697      * and <em>limit</em> properties in the options.params property to establish the initial
11698      * position within the dataset, and the number of Records to cache on each read from the Proxy.
11699      * <p>
11700      * <strong>It is important to note that for remote data sources, loading is asynchronous,
11701      * and this call will return before the new data has been loaded. Perform any post-processing
11702      * in a callback function, or in a "load" event handler.</strong>
11703      * <p>
11704      * @param {Object} options An object containing properties which control loading options:<ul>
11705      * <li>params {Object} An object containing properties to pass as HTTP parameters to a remote data source.</li>
11706      * <li>callback {Function} A function to be called after the Records have been loaded. The callback is
11707      * passed the following arguments:<ul>
11708      * <li>r : Roo.data.Record[]</li>
11709      * <li>options: Options object from the load call</li>
11710      * <li>success: Boolean success indicator</li></ul></li>
11711      * <li>scope {Object} Scope with which to call the callback (defaults to the Store object)</li>
11712      * <li>add {Boolean} indicator to append loaded records rather than replace the current cache.</li>
11713      * </ul>
11714      */
11715     load : function(options){
11716         options = options || {};
11717         if(this.fireEvent("beforeload", this, options) !== false){
11718             this.storeOptions(options);
11719             var p = Roo.apply(options.params || {}, this.baseParams);
11720             // if meta was not loaded from remote source.. try requesting it.
11721             if (!this.reader.metaFromRemote) {
11722                 p._requestMeta = 1;
11723             }
11724             if(this.sortInfo && this.remoteSort){
11725                 var pn = this.paramNames;
11726                 p[pn["sort"]] = this.sortInfo.field;
11727                 p[pn["dir"]] = this.sortInfo.direction;
11728             }
11729             if (this.multiSort) {
11730                 var pn = this.paramNames;
11731                 p[pn["multisort"]] = Roo.encode( { sort : this.sortToggle, order: this.sortOrder });
11732             }
11733             
11734             this.proxy.load(p, this.reader, this.loadRecords, this, options);
11735         }
11736     },
11737
11738     /**
11739      * Reloads the Record cache from the configured Proxy using the configured Reader and
11740      * the options from the last load operation performed.
11741      * @param {Object} options (optional) An object containing properties which may override the options
11742      * used in the last load operation. See {@link #load} for details (defaults to null, in which case
11743      * the most recently used options are reused).
11744      */
11745     reload : function(options){
11746         this.load(Roo.applyIf(options||{}, this.lastOptions));
11747     },
11748
11749     // private
11750     // Called as a callback by the Reader during a load operation.
11751     loadRecords : function(o, options, success){
11752         if(!o || success === false){
11753             if(success !== false){
11754                 this.fireEvent("load", this, [], options, o);
11755             }
11756             if(options.callback){
11757                 options.callback.call(options.scope || this, [], options, false);
11758             }
11759             return;
11760         }
11761         // if data returned failure - throw an exception.
11762         if (o.success === false) {
11763             // show a message if no listener is registered.
11764             if (!this.hasListener('loadexception') && typeof(o.raw.errorMsg) != 'undefined') {
11765                     Roo.MessageBox.alert("Error loading",o.raw.errorMsg);
11766             }
11767             // loadmask wil be hooked into this..
11768             this.fireEvent("loadexception", this, o, options, o.raw.errorMsg);
11769             return;
11770         }
11771         var r = o.records, t = o.totalRecords || r.length;
11772         
11773         this.fireEvent("beforeloadadd", this, r, options, o);
11774         
11775         if(!options || options.add !== true){
11776             if(this.pruneModifiedRecords){
11777                 this.modified = [];
11778             }
11779             for(var i = 0, len = r.length; i < len; i++){
11780                 r[i].join(this);
11781             }
11782             if(this.snapshot){
11783                 this.data = this.snapshot;
11784                 delete this.snapshot;
11785             }
11786             this.data.clear();
11787             this.data.addAll(r);
11788             this.totalLength = t;
11789             this.applySort();
11790             this.fireEvent("datachanged", this);
11791         }else{
11792             this.totalLength = Math.max(t, this.data.length+r.length);
11793             this.add(r);
11794         }
11795         
11796         if(this.parent && !Roo.isIOS && !this.useNativeIOS && this.parent.emptyTitle.length) {
11797                 
11798             var e = new Roo.data.Record({});
11799
11800             e.set(this.parent.displayField, this.parent.emptyTitle);
11801             e.set(this.parent.valueField, '');
11802
11803             this.insert(0, e);
11804         }
11805             
11806         this.fireEvent("load", this, r, options, o);
11807         if(options.callback){
11808             options.callback.call(options.scope || this, r, options, true);
11809         }
11810     },
11811
11812
11813     /**
11814      * Loads data from a passed data block. A Reader which understands the format of the data
11815      * must have been configured in the constructor.
11816      * @param {Object} data The data block from which to read the Records.  The format of the data expected
11817      * is dependent on the type of Reader that is configured and should correspond to that Reader's readRecords parameter.
11818      * @param {Boolean} append (Optional) True to append the new Records rather than replace the existing cache.
11819      */
11820     loadData : function(o, append){
11821         var r = this.reader.readRecords(o);
11822         this.loadRecords(r, {add: append}, true);
11823     },
11824
11825     /**
11826      * Gets the number of cached records.
11827      * <p>
11828      * <em>If using paging, this may not be the total size of the dataset. If the data object
11829      * used by the Reader contains the dataset size, then the getTotalCount() function returns
11830      * the data set size</em>
11831      */
11832     getCount : function(){
11833         return this.data.length || 0;
11834     },
11835
11836     /**
11837      * Gets the total number of records in the dataset as returned by the server.
11838      * <p>
11839      * <em>If using paging, for this to be accurate, the data object used by the Reader must contain
11840      * the dataset size</em>
11841      */
11842     getTotalCount : function(){
11843         return this.totalLength || 0;
11844     },
11845
11846     /**
11847      * Returns the sort state of the Store as an object with two properties:
11848      * <pre><code>
11849  field {String} The name of the field by which the Records are sorted
11850  direction {String} The sort order, "ASC" or "DESC"
11851      * </code></pre>
11852      */
11853     getSortState : function(){
11854         return this.sortInfo;
11855     },
11856
11857     // private
11858     applySort : function(){
11859         if(this.sortInfo && !this.remoteSort){
11860             var s = this.sortInfo, f = s.field;
11861             var st = this.fields.get(f).sortType;
11862             var fn = function(r1, r2){
11863                 var v1 = st(r1.data[f]), v2 = st(r2.data[f]);
11864                 return v1 > v2 ? 1 : (v1 < v2 ? -1 : 0);
11865             };
11866             this.data.sort(s.direction, fn);
11867             if(this.snapshot && this.snapshot != this.data){
11868                 this.snapshot.sort(s.direction, fn);
11869             }
11870         }
11871     },
11872
11873     /**
11874      * Sets the default sort column and order to be used by the next load operation.
11875      * @param {String} fieldName The name of the field to sort by.
11876      * @param {String} dir (optional) The sort order, "ASC" or "DESC" (defaults to "ASC")
11877      */
11878     setDefaultSort : function(field, dir){
11879         this.sortInfo = {field: field, direction: dir ? dir.toUpperCase() : "ASC"};
11880     },
11881
11882     /**
11883      * Sort the Records.
11884      * If remote sorting is used, the sort is performed on the server, and the cache is
11885      * reloaded. If local sorting is used, the cache is sorted internally.
11886      * @param {String} fieldName The name of the field to sort by.
11887      * @param {String} dir (optional) The sort order, "ASC" or "DESC" (defaults to "ASC")
11888      */
11889     sort : function(fieldName, dir){
11890         var f = this.fields.get(fieldName);
11891         if(!dir){
11892             this.sortToggle[f.name] = this.sortToggle[f.name] || f.sortDir;
11893             
11894             if(this.multiSort || (this.sortInfo && this.sortInfo.field == f.name) ){ // toggle sort dir
11895                 dir = (this.sortToggle[f.name] || "ASC").toggle("ASC", "DESC");
11896             }else{
11897                 dir = f.sortDir;
11898             }
11899         }
11900         this.sortToggle[f.name] = dir;
11901         this.sortInfo = {field: f.name, direction: dir};
11902         if(!this.remoteSort){
11903             this.applySort();
11904             this.fireEvent("datachanged", this);
11905         }else{
11906             this.load(this.lastOptions);
11907         }
11908     },
11909
11910     /**
11911      * Calls the specified function for each of the Records in the cache.
11912      * @param {Function} fn The function to call. The Record is passed as the first parameter.
11913      * Returning <em>false</em> aborts and exits the iteration.
11914      * @param {Object} scope (optional) The scope in which to call the function (defaults to the Record).
11915      */
11916     each : function(fn, scope){
11917         this.data.each(fn, scope);
11918     },
11919
11920     /**
11921      * Gets all records modified since the last commit.  Modified records are persisted across load operations
11922      * (e.g., during paging).
11923      * @return {Roo.data.Record[]} An array of Records containing outstanding modifications.
11924      */
11925     getModifiedRecords : function(){
11926         return this.modified;
11927     },
11928
11929     // private
11930     createFilterFn : function(property, value, anyMatch){
11931         if(!value.exec){ // not a regex
11932             value = String(value);
11933             if(value.length == 0){
11934                 return false;
11935             }
11936             value = new RegExp((anyMatch === true ? '' : '^') + Roo.escapeRe(value), "i");
11937         }
11938         return function(r){
11939             return value.test(r.data[property]);
11940         };
11941     },
11942
11943     /**
11944      * Sums the value of <i>property</i> for each record between start and end and returns the result.
11945      * @param {String} property A field on your records
11946      * @param {Number} start The record index to start at (defaults to 0)
11947      * @param {Number} end The last record index to include (defaults to length - 1)
11948      * @return {Number} The sum
11949      */
11950     sum : function(property, start, end){
11951         var rs = this.data.items, v = 0;
11952         start = start || 0;
11953         end = (end || end === 0) ? end : rs.length-1;
11954
11955         for(var i = start; i <= end; i++){
11956             v += (rs[i].data[property] || 0);
11957         }
11958         return v;
11959     },
11960
11961     /**
11962      * Filter the records by a specified property.
11963      * @param {String} field A field on your records
11964      * @param {String/RegExp} value Either a string that the field
11965      * should start with or a RegExp to test against the field
11966      * @param {Boolean} anyMatch True to match any part not just the beginning
11967      */
11968     filter : function(property, value, anyMatch){
11969         var fn = this.createFilterFn(property, value, anyMatch);
11970         return fn ? this.filterBy(fn) : this.clearFilter();
11971     },
11972
11973     /**
11974      * Filter by a function. The specified function will be called with each
11975      * record in this data source. If the function returns true the record is included,
11976      * otherwise it is filtered.
11977      * @param {Function} fn The function to be called, it will receive 2 args (record, id)
11978      * @param {Object} scope (optional) The scope of the function (defaults to this)
11979      */
11980     filterBy : function(fn, scope){
11981         this.snapshot = this.snapshot || this.data;
11982         this.data = this.queryBy(fn, scope||this);
11983         this.fireEvent("datachanged", this);
11984     },
11985
11986     /**
11987      * Query the records by a specified property.
11988      * @param {String} field A field on your records
11989      * @param {String/RegExp} value Either a string that the field
11990      * should start with or a RegExp to test against the field
11991      * @param {Boolean} anyMatch True to match any part not just the beginning
11992      * @return {MixedCollection} Returns an Roo.util.MixedCollection of the matched records
11993      */
11994     query : function(property, value, anyMatch){
11995         var fn = this.createFilterFn(property, value, anyMatch);
11996         return fn ? this.queryBy(fn) : this.data.clone();
11997     },
11998
11999     /**
12000      * Query by a function. The specified function will be called with each
12001      * record in this data source. If the function returns true the record is included
12002      * in the results.
12003      * @param {Function} fn The function to be called, it will receive 2 args (record, id)
12004      * @param {Object} scope (optional) The scope of the function (defaults to this)
12005       @return {MixedCollection} Returns an Roo.util.MixedCollection of the matched records
12006      **/
12007     queryBy : function(fn, scope){
12008         var data = this.snapshot || this.data;
12009         return data.filterBy(fn, scope||this);
12010     },
12011
12012     /**
12013      * Collects unique values for a particular dataIndex from this store.
12014      * @param {String} dataIndex The property to collect
12015      * @param {Boolean} allowNull (optional) Pass true to allow null, undefined or empty string values
12016      * @param {Boolean} bypassFilter (optional) Pass true to collect from all records, even ones which are filtered
12017      * @return {Array} An array of the unique values
12018      **/
12019     collect : function(dataIndex, allowNull, bypassFilter){
12020         var d = (bypassFilter === true && this.snapshot) ?
12021                 this.snapshot.items : this.data.items;
12022         var v, sv, r = [], l = {};
12023         for(var i = 0, len = d.length; i < len; i++){
12024             v = d[i].data[dataIndex];
12025             sv = String(v);
12026             if((allowNull || !Roo.isEmpty(v)) && !l[sv]){
12027                 l[sv] = true;
12028                 r[r.length] = v;
12029             }
12030         }
12031         return r;
12032     },
12033
12034     /**
12035      * Revert to a view of the Record cache with no filtering applied.
12036      * @param {Boolean} suppressEvent If true the filter is cleared silently without notifying listeners
12037      */
12038     clearFilter : function(suppressEvent){
12039         if(this.snapshot && this.snapshot != this.data){
12040             this.data = this.snapshot;
12041             delete this.snapshot;
12042             if(suppressEvent !== true){
12043                 this.fireEvent("datachanged", this);
12044             }
12045         }
12046     },
12047
12048     // private
12049     afterEdit : function(record){
12050         if(this.modified.indexOf(record) == -1){
12051             this.modified.push(record);
12052         }
12053         this.fireEvent("update", this, record, Roo.data.Record.EDIT);
12054     },
12055     
12056     // private
12057     afterReject : function(record){
12058         this.modified.remove(record);
12059         this.fireEvent("update", this, record, Roo.data.Record.REJECT);
12060     },
12061
12062     // private
12063     afterCommit : function(record){
12064         this.modified.remove(record);
12065         this.fireEvent("update", this, record, Roo.data.Record.COMMIT);
12066     },
12067
12068     /**
12069      * Commit all Records with outstanding changes. To handle updates for changes, subscribe to the
12070      * Store's "update" event, and perform updating when the third parameter is Roo.data.Record.COMMIT.
12071      */
12072     commitChanges : function(){
12073         var m = this.modified.slice(0);
12074         this.modified = [];
12075         for(var i = 0, len = m.length; i < len; i++){
12076             m[i].commit();
12077         }
12078     },
12079
12080     /**
12081      * Cancel outstanding changes on all changed records.
12082      */
12083     rejectChanges : function(){
12084         var m = this.modified.slice(0);
12085         this.modified = [];
12086         for(var i = 0, len = m.length; i < len; i++){
12087             m[i].reject();
12088         }
12089     },
12090
12091     onMetaChange : function(meta, rtype, o){
12092         this.recordType = rtype;
12093         this.fields = rtype.prototype.fields;
12094         delete this.snapshot;
12095         this.sortInfo = meta.sortInfo || this.sortInfo;
12096         this.modified = [];
12097         this.fireEvent('metachange', this, this.reader.meta);
12098     },
12099     
12100     moveIndex : function(data, type)
12101     {
12102         var index = this.indexOf(data);
12103         
12104         var newIndex = index + type;
12105         
12106         this.remove(data);
12107         
12108         this.insert(newIndex, data);
12109         
12110     }
12111 });/*
12112  * Based on:
12113  * Ext JS Library 1.1.1
12114  * Copyright(c) 2006-2007, Ext JS, LLC.
12115  *
12116  * Originally Released Under LGPL - original licence link has changed is not relivant.
12117  *
12118  * Fork - LGPL
12119  * <script type="text/javascript">
12120  */
12121
12122 /**
12123  * @class Roo.data.SimpleStore
12124  * @extends Roo.data.Store
12125  * Small helper class to make creating Stores from Array data easier.
12126  * @cfg {Number} id The array index of the record id. Leave blank to auto generate ids.
12127  * @cfg {Array} fields An array of field definition objects, or field name strings.
12128  * @cfg {Array} data The multi-dimensional array of data
12129  * @constructor
12130  * @param {Object} config
12131  */
12132 Roo.data.SimpleStore = function(config){
12133     Roo.data.SimpleStore.superclass.constructor.call(this, {
12134         isLocal : true,
12135         reader: new Roo.data.ArrayReader({
12136                 id: config.id
12137             },
12138             Roo.data.Record.create(config.fields)
12139         ),
12140         proxy : new Roo.data.MemoryProxy(config.data)
12141     });
12142     this.load();
12143 };
12144 Roo.extend(Roo.data.SimpleStore, Roo.data.Store);/*
12145  * Based on:
12146  * Ext JS Library 1.1.1
12147  * Copyright(c) 2006-2007, Ext JS, LLC.
12148  *
12149  * Originally Released Under LGPL - original licence link has changed is not relivant.
12150  *
12151  * Fork - LGPL
12152  * <script type="text/javascript">
12153  */
12154
12155 /**
12156 /**
12157  * @extends Roo.data.Store
12158  * @class Roo.data.JsonStore
12159  * Small helper class to make creating Stores for JSON data easier. <br/>
12160 <pre><code>
12161 var store = new Roo.data.JsonStore({
12162     url: 'get-images.php',
12163     root: 'images',
12164     fields: ['name', 'url', {name:'size', type: 'float'}, {name:'lastmod', type:'date'}]
12165 });
12166 </code></pre>
12167  * <b>Note: Although they are not listed, this class inherits all of the config options of Store,
12168  * JsonReader and HttpProxy (unless inline data is provided).</b>
12169  * @cfg {Array} fields An array of field definition objects, or field name strings.
12170  * @constructor
12171  * @param {Object} config
12172  */
12173 Roo.data.JsonStore = function(c){
12174     Roo.data.JsonStore.superclass.constructor.call(this, Roo.apply(c, {
12175         proxy: !c.data ? new Roo.data.HttpProxy({url: c.url}) : undefined,
12176         reader: new Roo.data.JsonReader(c, c.fields)
12177     }));
12178 };
12179 Roo.extend(Roo.data.JsonStore, Roo.data.Store);/*
12180  * Based on:
12181  * Ext JS Library 1.1.1
12182  * Copyright(c) 2006-2007, Ext JS, LLC.
12183  *
12184  * Originally Released Under LGPL - original licence link has changed is not relivant.
12185  *
12186  * Fork - LGPL
12187  * <script type="text/javascript">
12188  */
12189
12190  
12191 Roo.data.Field = function(config){
12192     if(typeof config == "string"){
12193         config = {name: config};
12194     }
12195     Roo.apply(this, config);
12196     
12197     if(!this.type){
12198         this.type = "auto";
12199     }
12200     
12201     var st = Roo.data.SortTypes;
12202     // named sortTypes are supported, here we look them up
12203     if(typeof this.sortType == "string"){
12204         this.sortType = st[this.sortType];
12205     }
12206     
12207     // set default sortType for strings and dates
12208     if(!this.sortType){
12209         switch(this.type){
12210             case "string":
12211                 this.sortType = st.asUCString;
12212                 break;
12213             case "date":
12214                 this.sortType = st.asDate;
12215                 break;
12216             default:
12217                 this.sortType = st.none;
12218         }
12219     }
12220
12221     // define once
12222     var stripRe = /[\$,%]/g;
12223
12224     // prebuilt conversion function for this field, instead of
12225     // switching every time we're reading a value
12226     if(!this.convert){
12227         var cv, dateFormat = this.dateFormat;
12228         switch(this.type){
12229             case "":
12230             case "auto":
12231             case undefined:
12232                 cv = function(v){ return v; };
12233                 break;
12234             case "string":
12235                 cv = function(v){ return (v === undefined || v === null) ? '' : String(v); };
12236                 break;
12237             case "int":
12238                 cv = function(v){
12239                     return v !== undefined && v !== null && v !== '' ?
12240                            parseInt(String(v).replace(stripRe, ""), 10) : '';
12241                     };
12242                 break;
12243             case "float":
12244                 cv = function(v){
12245                     return v !== undefined && v !== null && v !== '' ?
12246                            parseFloat(String(v).replace(stripRe, ""), 10) : ''; 
12247                     };
12248                 break;
12249             case "bool":
12250             case "boolean":
12251                 cv = function(v){ return v === true || v === "true" || v == 1; };
12252                 break;
12253             case "date":
12254                 cv = function(v){
12255                     if(!v){
12256                         return '';
12257                     }
12258                     if(v instanceof Date){
12259                         return v;
12260                     }
12261                     if(dateFormat){
12262                         if(dateFormat == "timestamp"){
12263                             return new Date(v*1000);
12264                         }
12265                         return Date.parseDate(v, dateFormat);
12266                     }
12267                     var parsed = Date.parse(v);
12268                     return parsed ? new Date(parsed) : null;
12269                 };
12270              break;
12271             
12272         }
12273         this.convert = cv;
12274     }
12275 };
12276
12277 Roo.data.Field.prototype = {
12278     dateFormat: null,
12279     defaultValue: "",
12280     mapping: null,
12281     sortType : null,
12282     sortDir : "ASC"
12283 };/*
12284  * Based on:
12285  * Ext JS Library 1.1.1
12286  * Copyright(c) 2006-2007, Ext JS, LLC.
12287  *
12288  * Originally Released Under LGPL - original licence link has changed is not relivant.
12289  *
12290  * Fork - LGPL
12291  * <script type="text/javascript">
12292  */
12293  
12294 // Base class for reading structured data from a data source.  This class is intended to be
12295 // extended (see ArrayReader, JsonReader and XmlReader) and should not be created directly.
12296
12297 /**
12298  * @class Roo.data.DataReader
12299  * Base class for reading structured data from a data source.  This class is intended to be
12300  * extended (see {Roo.data.ArrayReader}, {Roo.data.JsonReader} and {Roo.data.XmlReader}) and should not be created directly.
12301  */
12302
12303 Roo.data.DataReader = function(meta, recordType){
12304     
12305     this.meta = meta;
12306     
12307     this.recordType = recordType instanceof Array ? 
12308         Roo.data.Record.create(recordType) : recordType;
12309 };
12310
12311 Roo.data.DataReader.prototype = {
12312      /**
12313      * Create an empty record
12314      * @param {Object} data (optional) - overlay some values
12315      * @return {Roo.data.Record} record created.
12316      */
12317     newRow :  function(d) {
12318         var da =  {};
12319         this.recordType.prototype.fields.each(function(c) {
12320             switch( c.type) {
12321                 case 'int' : da[c.name] = 0; break;
12322                 case 'date' : da[c.name] = new Date(); break;
12323                 case 'float' : da[c.name] = 0.0; break;
12324                 case 'boolean' : da[c.name] = false; break;
12325                 default : da[c.name] = ""; break;
12326             }
12327             
12328         });
12329         return new this.recordType(Roo.apply(da, d));
12330     }
12331     
12332 };/*
12333  * Based on:
12334  * Ext JS Library 1.1.1
12335  * Copyright(c) 2006-2007, Ext JS, LLC.
12336  *
12337  * Originally Released Under LGPL - original licence link has changed is not relivant.
12338  *
12339  * Fork - LGPL
12340  * <script type="text/javascript">
12341  */
12342
12343 /**
12344  * @class Roo.data.DataProxy
12345  * @extends Roo.data.Observable
12346  * This class is an abstract base class for implementations which provide retrieval of
12347  * unformatted data objects.<br>
12348  * <p>
12349  * DataProxy implementations are usually used in conjunction with an implementation of Roo.data.DataReader
12350  * (of the appropriate type which knows how to parse the data object) to provide a block of
12351  * {@link Roo.data.Records} to an {@link Roo.data.Store}.<br>
12352  * <p>
12353  * Custom implementations must implement the load method as described in
12354  * {@link Roo.data.HttpProxy#load}.
12355  */
12356 Roo.data.DataProxy = function(){
12357     this.addEvents({
12358         /**
12359          * @event beforeload
12360          * Fires before a network request is made to retrieve a data object.
12361          * @param {Object} This DataProxy object.
12362          * @param {Object} params The params parameter to the load function.
12363          */
12364         beforeload : true,
12365         /**
12366          * @event load
12367          * Fires before the load method's callback is called.
12368          * @param {Object} This DataProxy object.
12369          * @param {Object} o The data object.
12370          * @param {Object} arg The callback argument object passed to the load function.
12371          */
12372         load : true,
12373         /**
12374          * @event loadexception
12375          * Fires if an Exception occurs during data retrieval.
12376          * @param {Object} This DataProxy object.
12377          * @param {Object} o The data object.
12378          * @param {Object} arg The callback argument object passed to the load function.
12379          * @param {Object} e The Exception.
12380          */
12381         loadexception : true
12382     });
12383     Roo.data.DataProxy.superclass.constructor.call(this);
12384 };
12385
12386 Roo.extend(Roo.data.DataProxy, Roo.util.Observable);
12387
12388     /**
12389      * @cfg {void} listeners (Not available) Constructor blocks listeners from being set
12390      */
12391 /*
12392  * Based on:
12393  * Ext JS Library 1.1.1
12394  * Copyright(c) 2006-2007, Ext JS, LLC.
12395  *
12396  * Originally Released Under LGPL - original licence link has changed is not relivant.
12397  *
12398  * Fork - LGPL
12399  * <script type="text/javascript">
12400  */
12401 /**
12402  * @class Roo.data.MemoryProxy
12403  * An implementation of Roo.data.DataProxy that simply passes the data specified in its constructor
12404  * to the Reader when its load method is called.
12405  * @constructor
12406  * @param {Object} data The data object which the Reader uses to construct a block of Roo.data.Records.
12407  */
12408 Roo.data.MemoryProxy = function(data){
12409     if (data.data) {
12410         data = data.data;
12411     }
12412     Roo.data.MemoryProxy.superclass.constructor.call(this);
12413     this.data = data;
12414 };
12415
12416 Roo.extend(Roo.data.MemoryProxy, Roo.data.DataProxy, {
12417     
12418     /**
12419      * Load data from the requested source (in this case an in-memory
12420      * data object passed to the constructor), read the data object into
12421      * a block of Roo.data.Records using the passed Roo.data.DataReader implementation, and
12422      * process that block using the passed callback.
12423      * @param {Object} params This parameter is not used by the MemoryProxy class.
12424      * @param {Roo.data.DataReader} reader The Reader object which converts the data
12425      * object into a block of Roo.data.Records.
12426      * @param {Function} callback The function into which to pass the block of Roo.data.records.
12427      * The function must be passed <ul>
12428      * <li>The Record block object</li>
12429      * <li>The "arg" argument from the load function</li>
12430      * <li>A boolean success indicator</li>
12431      * </ul>
12432      * @param {Object} scope The scope in which to call the callback
12433      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
12434      */
12435     load : function(params, reader, callback, scope, arg){
12436         params = params || {};
12437         var result;
12438         try {
12439             result = reader.readRecords(params.data ? params.data :this.data);
12440         }catch(e){
12441             this.fireEvent("loadexception", this, arg, null, e);
12442             callback.call(scope, null, arg, false);
12443             return;
12444         }
12445         callback.call(scope, result, arg, true);
12446     },
12447     
12448     // private
12449     update : function(params, records){
12450         
12451     }
12452 });/*
12453  * Based on:
12454  * Ext JS Library 1.1.1
12455  * Copyright(c) 2006-2007, Ext JS, LLC.
12456  *
12457  * Originally Released Under LGPL - original licence link has changed is not relivant.
12458  *
12459  * Fork - LGPL
12460  * <script type="text/javascript">
12461  */
12462 /**
12463  * @class Roo.data.HttpProxy
12464  * @extends Roo.data.DataProxy
12465  * An implementation of {@link Roo.data.DataProxy} that reads a data object from an {@link Roo.data.Connection} object
12466  * configured to reference a certain URL.<br><br>
12467  * <p>
12468  * <em>Note that this class cannot be used to retrieve data from a domain other than the domain
12469  * from which the running page was served.<br><br>
12470  * <p>
12471  * For cross-domain access to remote data, use an {@link Roo.data.ScriptTagProxy}.</em><br><br>
12472  * <p>
12473  * Be aware that to enable the browser to parse an XML document, the server must set
12474  * the Content-Type header in the HTTP response to "text/xml".
12475  * @constructor
12476  * @param {Object} conn Connection config options to add to each request (e.g. {url: 'foo.php'} or
12477  * an {@link Roo.data.Connection} object.  If a Connection config is passed, the singleton {@link Roo.Ajax} object
12478  * will be used to make the request.
12479  */
12480 Roo.data.HttpProxy = function(conn){
12481     Roo.data.HttpProxy.superclass.constructor.call(this);
12482     // is conn a conn config or a real conn?
12483     this.conn = conn;
12484     this.useAjax = !conn || !conn.events;
12485   
12486 };
12487
12488 Roo.extend(Roo.data.HttpProxy, Roo.data.DataProxy, {
12489     // thse are take from connection...
12490     
12491     /**
12492      * @cfg {String} url (Optional) The default URL to be used for requests to the server. (defaults to undefined)
12493      */
12494     /**
12495      * @cfg {Object} extraParams (Optional) An object containing properties which are used as
12496      * extra parameters to each request made by this object. (defaults to undefined)
12497      */
12498     /**
12499      * @cfg {Object} defaultHeaders (Optional) An object containing request headers which are added
12500      *  to each request made by this object. (defaults to undefined)
12501      */
12502     /**
12503      * @cfg {String} method (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)
12504      */
12505     /**
12506      * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
12507      */
12508      /**
12509      * @cfg {Boolean} autoAbort (Optional) Whether this request should abort any pending requests. (defaults to false)
12510      * @type Boolean
12511      */
12512   
12513
12514     /**
12515      * @cfg {Boolean} disableCaching (Optional) True to add a unique cache-buster param to GET requests. (defaults to true)
12516      * @type Boolean
12517      */
12518     /**
12519      * Return the {@link Roo.data.Connection} object being used by this Proxy.
12520      * @return {Connection} The Connection object. This object may be used to subscribe to events on
12521      * a finer-grained basis than the DataProxy events.
12522      */
12523     getConnection : function(){
12524         return this.useAjax ? Roo.Ajax : this.conn;
12525     },
12526
12527     /**
12528      * Load data from the configured {@link Roo.data.Connection}, read the data object into
12529      * a block of Roo.data.Records using the passed {@link Roo.data.DataReader} implementation, and
12530      * process that block using the passed callback.
12531      * @param {Object} params An object containing properties which are to be used as HTTP parameters
12532      * for the request to the remote server.
12533      * @param {Roo.data.DataReader} reader The Reader object which converts the data
12534      * object into a block of Roo.data.Records.
12535      * @param {Function} callback The function into which to pass the block of Roo.data.Records.
12536      * The function must be passed <ul>
12537      * <li>The Record block object</li>
12538      * <li>The "arg" argument from the load function</li>
12539      * <li>A boolean success indicator</li>
12540      * </ul>
12541      * @param {Object} scope The scope in which to call the callback
12542      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
12543      */
12544     load : function(params, reader, callback, scope, arg){
12545         if(this.fireEvent("beforeload", this, params) !== false){
12546             var  o = {
12547                 params : params || {},
12548                 request: {
12549                     callback : callback,
12550                     scope : scope,
12551                     arg : arg
12552                 },
12553                 reader: reader,
12554                 callback : this.loadResponse,
12555                 scope: this
12556             };
12557             if(this.useAjax){
12558                 Roo.applyIf(o, this.conn);
12559                 if(this.activeRequest){
12560                     Roo.Ajax.abort(this.activeRequest);
12561                 }
12562                 this.activeRequest = Roo.Ajax.request(o);
12563             }else{
12564                 this.conn.request(o);
12565             }
12566         }else{
12567             callback.call(scope||this, null, arg, false);
12568         }
12569     },
12570
12571     // private
12572     loadResponse : function(o, success, response){
12573         delete this.activeRequest;
12574         if(!success){
12575             this.fireEvent("loadexception", this, o, response);
12576             o.request.callback.call(o.request.scope, null, o.request.arg, false);
12577             return;
12578         }
12579         var result;
12580         try {
12581             result = o.reader.read(response);
12582         }catch(e){
12583             this.fireEvent("loadexception", this, o, response, e);
12584             o.request.callback.call(o.request.scope, null, o.request.arg, false);
12585             return;
12586         }
12587         
12588         this.fireEvent("load", this, o, o.request.arg);
12589         o.request.callback.call(o.request.scope, result, o.request.arg, true);
12590     },
12591
12592     // private
12593     update : function(dataSet){
12594
12595     },
12596
12597     // private
12598     updateResponse : function(dataSet){
12599
12600     }
12601 });/*
12602  * Based on:
12603  * Ext JS Library 1.1.1
12604  * Copyright(c) 2006-2007, Ext JS, LLC.
12605  *
12606  * Originally Released Under LGPL - original licence link has changed is not relivant.
12607  *
12608  * Fork - LGPL
12609  * <script type="text/javascript">
12610  */
12611
12612 /**
12613  * @class Roo.data.ScriptTagProxy
12614  * An implementation of Roo.data.DataProxy that reads a data object from a URL which may be in a domain
12615  * other than the originating domain of the running page.<br><br>
12616  * <p>
12617  * <em>Note that if you are retrieving data from a page that is in a domain that is NOT the same as the originating domain
12618  * of the running page, you must use this class, rather than DataProxy.</em><br><br>
12619  * <p>
12620  * The content passed back from a server resource requested by a ScriptTagProxy is executable JavaScript
12621  * source code that is used as the source inside a &lt;script> tag.<br><br>
12622  * <p>
12623  * In order for the browser to process the returned data, the server must wrap the data object
12624  * with a call to a callback function, the name of which is passed as a parameter by the ScriptTagProxy.
12625  * Below is a Java example for a servlet which returns data for either a ScriptTagProxy, or an HttpProxy
12626  * depending on whether the callback name was passed:
12627  * <p>
12628  * <pre><code>
12629 boolean scriptTag = false;
12630 String cb = request.getParameter("callback");
12631 if (cb != null) {
12632     scriptTag = true;
12633     response.setContentType("text/javascript");
12634 } else {
12635     response.setContentType("application/x-json");
12636 }
12637 Writer out = response.getWriter();
12638 if (scriptTag) {
12639     out.write(cb + "(");
12640 }
12641 out.print(dataBlock.toJsonString());
12642 if (scriptTag) {
12643     out.write(");");
12644 }
12645 </pre></code>
12646  *
12647  * @constructor
12648  * @param {Object} config A configuration object.
12649  */
12650 Roo.data.ScriptTagProxy = function(config){
12651     Roo.data.ScriptTagProxy.superclass.constructor.call(this);
12652     Roo.apply(this, config);
12653     this.head = document.getElementsByTagName("head")[0];
12654 };
12655
12656 Roo.data.ScriptTagProxy.TRANS_ID = 1000;
12657
12658 Roo.extend(Roo.data.ScriptTagProxy, Roo.data.DataProxy, {
12659     /**
12660      * @cfg {String} url The URL from which to request the data object.
12661      */
12662     /**
12663      * @cfg {Number} timeout (Optional) The number of milliseconds to wait for a response. Defaults to 30 seconds.
12664      */
12665     timeout : 30000,
12666     /**
12667      * @cfg {String} callbackParam (Optional) The name of the parameter to pass to the server which tells
12668      * the server the name of the callback function set up by the load call to process the returned data object.
12669      * Defaults to "callback".<p>The server-side processing must read this parameter value, and generate
12670      * javascript output which calls this named function passing the data object as its only parameter.
12671      */
12672     callbackParam : "callback",
12673     /**
12674      *  @cfg {Boolean} nocache (Optional) Defaults to true. Disable cacheing by adding a unique parameter
12675      * name to the request.
12676      */
12677     nocache : true,
12678
12679     /**
12680      * Load data from the configured URL, read the data object into
12681      * a block of Roo.data.Records using the passed Roo.data.DataReader implementation, and
12682      * process that block using the passed callback.
12683      * @param {Object} params An object containing properties which are to be used as HTTP parameters
12684      * for the request to the remote server.
12685      * @param {Roo.data.DataReader} reader The Reader object which converts the data
12686      * object into a block of Roo.data.Records.
12687      * @param {Function} callback The function into which to pass the block of Roo.data.Records.
12688      * The function must be passed <ul>
12689      * <li>The Record block object</li>
12690      * <li>The "arg" argument from the load function</li>
12691      * <li>A boolean success indicator</li>
12692      * </ul>
12693      * @param {Object} scope The scope in which to call the callback
12694      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
12695      */
12696     load : function(params, reader, callback, scope, arg){
12697         if(this.fireEvent("beforeload", this, params) !== false){
12698
12699             var p = Roo.urlEncode(Roo.apply(params, this.extraParams));
12700
12701             var url = this.url;
12702             url += (url.indexOf("?") != -1 ? "&" : "?") + p;
12703             if(this.nocache){
12704                 url += "&_dc=" + (new Date().getTime());
12705             }
12706             var transId = ++Roo.data.ScriptTagProxy.TRANS_ID;
12707             var trans = {
12708                 id : transId,
12709                 cb : "stcCallback"+transId,
12710                 scriptId : "stcScript"+transId,
12711                 params : params,
12712                 arg : arg,
12713                 url : url,
12714                 callback : callback,
12715                 scope : scope,
12716                 reader : reader
12717             };
12718             var conn = this;
12719
12720             window[trans.cb] = function(o){
12721                 conn.handleResponse(o, trans);
12722             };
12723
12724             url += String.format("&{0}={1}", this.callbackParam, trans.cb);
12725
12726             if(this.autoAbort !== false){
12727                 this.abort();
12728             }
12729
12730             trans.timeoutId = this.handleFailure.defer(this.timeout, this, [trans]);
12731
12732             var script = document.createElement("script");
12733             script.setAttribute("src", url);
12734             script.setAttribute("type", "text/javascript");
12735             script.setAttribute("id", trans.scriptId);
12736             this.head.appendChild(script);
12737
12738             this.trans = trans;
12739         }else{
12740             callback.call(scope||this, null, arg, false);
12741         }
12742     },
12743
12744     // private
12745     isLoading : function(){
12746         return this.trans ? true : false;
12747     },
12748
12749     /**
12750      * Abort the current server request.
12751      */
12752     abort : function(){
12753         if(this.isLoading()){
12754             this.destroyTrans(this.trans);
12755         }
12756     },
12757
12758     // private
12759     destroyTrans : function(trans, isLoaded){
12760         this.head.removeChild(document.getElementById(trans.scriptId));
12761         clearTimeout(trans.timeoutId);
12762         if(isLoaded){
12763             window[trans.cb] = undefined;
12764             try{
12765                 delete window[trans.cb];
12766             }catch(e){}
12767         }else{
12768             // if hasn't been loaded, wait for load to remove it to prevent script error
12769             window[trans.cb] = function(){
12770                 window[trans.cb] = undefined;
12771                 try{
12772                     delete window[trans.cb];
12773                 }catch(e){}
12774             };
12775         }
12776     },
12777
12778     // private
12779     handleResponse : function(o, trans){
12780         this.trans = false;
12781         this.destroyTrans(trans, true);
12782         var result;
12783         try {
12784             result = trans.reader.readRecords(o);
12785         }catch(e){
12786             this.fireEvent("loadexception", this, o, trans.arg, e);
12787             trans.callback.call(trans.scope||window, null, trans.arg, false);
12788             return;
12789         }
12790         this.fireEvent("load", this, o, trans.arg);
12791         trans.callback.call(trans.scope||window, result, trans.arg, true);
12792     },
12793
12794     // private
12795     handleFailure : function(trans){
12796         this.trans = false;
12797         this.destroyTrans(trans, false);
12798         this.fireEvent("loadexception", this, null, trans.arg);
12799         trans.callback.call(trans.scope||window, null, trans.arg, false);
12800     }
12801 });/*
12802  * Based on:
12803  * Ext JS Library 1.1.1
12804  * Copyright(c) 2006-2007, Ext JS, LLC.
12805  *
12806  * Originally Released Under LGPL - original licence link has changed is not relivant.
12807  *
12808  * Fork - LGPL
12809  * <script type="text/javascript">
12810  */
12811
12812 /**
12813  * @class Roo.data.JsonReader
12814  * @extends Roo.data.DataReader
12815  * Data reader class to create an Array of Roo.data.Record objects from a JSON response
12816  * based on mappings in a provided Roo.data.Record constructor.
12817  * 
12818  * The default behaviour of a store is to send ?_requestMeta=1, unless the class has recieved 'metaData' property
12819  * in the reply previously. 
12820  * 
12821  * <p>
12822  * Example code:
12823  * <pre><code>
12824 var RecordDef = Roo.data.Record.create([
12825     {name: 'name', mapping: 'name'},     // "mapping" property not needed if it's the same as "name"
12826     {name: 'occupation'}                 // This field will use "occupation" as the mapping.
12827 ]);
12828 var myReader = new Roo.data.JsonReader({
12829     totalProperty: "results",    // The property which contains the total dataset size (optional)
12830     root: "rows",                // The property which contains an Array of row objects
12831     id: "id"                     // The property within each row object that provides an ID for the record (optional)
12832 }, RecordDef);
12833 </code></pre>
12834  * <p>
12835  * This would consume a JSON file like this:
12836  * <pre><code>
12837 { 'results': 2, 'rows': [
12838     { 'id': 1, 'name': 'Bill', occupation: 'Gardener' },
12839     { 'id': 2, 'name': 'Ben', occupation: 'Horticulturalist' } ]
12840 }
12841 </code></pre>
12842  * @cfg {String} totalProperty Name of the property from which to retrieve the total number of records
12843  * in the dataset. This is only needed if the whole dataset is not passed in one go, but is being
12844  * paged from the remote server.
12845  * @cfg {String} successProperty Name of the property from which to retrieve the success attribute used by forms.
12846  * @cfg {String} root name of the property which contains the Array of row objects.
12847  * @cfg {String} id Name of the property within a row object that contains a record identifier value.
12848  * @cfg {Array} fields Array of field definition objects
12849  * @constructor
12850  * Create a new JsonReader
12851  * @param {Object} meta Metadata configuration options
12852  * @param {Object} recordType Either an Array of field definition objects,
12853  * or an {@link Roo.data.Record} object created using {@link Roo.data.Record#create}.
12854  */
12855 Roo.data.JsonReader = function(meta, recordType){
12856     
12857     meta = meta || {};
12858     // set some defaults:
12859     Roo.applyIf(meta, {
12860         totalProperty: 'total',
12861         successProperty : 'success',
12862         root : 'data',
12863         id : 'id'
12864     });
12865     
12866     Roo.data.JsonReader.superclass.constructor.call(this, meta, recordType||meta.fields);
12867 };
12868 Roo.extend(Roo.data.JsonReader, Roo.data.DataReader, {
12869     
12870     /**
12871      * @prop {Boolean} metaFromRemote  - if the meta data was loaded from the remote source.
12872      * Used by Store query builder to append _requestMeta to params.
12873      * 
12874      */
12875     metaFromRemote : false,
12876     /**
12877      * This method is only used by a DataProxy which has retrieved data from a remote server.
12878      * @param {Object} response The XHR object which contains the JSON data in its responseText.
12879      * @return {Object} data A data block which is used by an Roo.data.Store object as
12880      * a cache of Roo.data.Records.
12881      */
12882     read : function(response){
12883         var json = response.responseText;
12884        
12885         var o = /* eval:var:o */ eval("("+json+")");
12886         if(!o) {
12887             throw {message: "JsonReader.read: Json object not found"};
12888         }
12889         
12890         if(o.metaData){
12891             
12892             delete this.ef;
12893             this.metaFromRemote = true;
12894             this.meta = o.metaData;
12895             this.recordType = Roo.data.Record.create(o.metaData.fields);
12896             this.onMetaChange(this.meta, this.recordType, o);
12897         }
12898         return this.readRecords(o);
12899     },
12900
12901     // private function a store will implement
12902     onMetaChange : function(meta, recordType, o){
12903
12904     },
12905
12906     /**
12907          * @ignore
12908          */
12909     simpleAccess: function(obj, subsc) {
12910         return obj[subsc];
12911     },
12912
12913         /**
12914          * @ignore
12915          */
12916     getJsonAccessor: function(){
12917         var re = /[\[\.]/;
12918         return function(expr) {
12919             try {
12920                 return(re.test(expr))
12921                     ? new Function("obj", "return obj." + expr)
12922                     : function(obj){
12923                         return obj[expr];
12924                     };
12925             } catch(e){}
12926             return Roo.emptyFn;
12927         };
12928     }(),
12929
12930     /**
12931      * Create a data block containing Roo.data.Records from an XML document.
12932      * @param {Object} o An object which contains an Array of row objects in the property specified
12933      * in the config as 'root, and optionally a property, specified in the config as 'totalProperty'
12934      * which contains the total size of the dataset.
12935      * @return {Object} data A data block which is used by an Roo.data.Store object as
12936      * a cache of Roo.data.Records.
12937      */
12938     readRecords : function(o){
12939         /**
12940          * After any data loads, the raw JSON data is available for further custom processing.
12941          * @type Object
12942          */
12943         this.o = o;
12944         var s = this.meta, Record = this.recordType,
12945             f = Record ? Record.prototype.fields : null, fi = f ? f.items : [], fl = f ? f.length : 0;
12946
12947 //      Generate extraction functions for the totalProperty, the root, the id, and for each field
12948         if (!this.ef) {
12949             if(s.totalProperty) {
12950                     this.getTotal = this.getJsonAccessor(s.totalProperty);
12951                 }
12952                 if(s.successProperty) {
12953                     this.getSuccess = this.getJsonAccessor(s.successProperty);
12954                 }
12955                 this.getRoot = s.root ? this.getJsonAccessor(s.root) : function(p){return p;};
12956                 if (s.id) {
12957                         var g = this.getJsonAccessor(s.id);
12958                         this.getId = function(rec) {
12959                                 var r = g(rec);  
12960                                 return (r === undefined || r === "") ? null : r;
12961                         };
12962                 } else {
12963                         this.getId = function(){return null;};
12964                 }
12965             this.ef = [];
12966             for(var jj = 0; jj < fl; jj++){
12967                 f = fi[jj];
12968                 var map = (f.mapping !== undefined && f.mapping !== null) ? f.mapping : f.name;
12969                 this.ef[jj] = this.getJsonAccessor(map);
12970             }
12971         }
12972
12973         var root = this.getRoot(o), c = root.length, totalRecords = c, success = true;
12974         if(s.totalProperty){
12975             var vt = parseInt(this.getTotal(o), 10);
12976             if(!isNaN(vt)){
12977                 totalRecords = vt;
12978             }
12979         }
12980         if(s.successProperty){
12981             var vs = this.getSuccess(o);
12982             if(vs === false || vs === 'false'){
12983                 success = false;
12984             }
12985         }
12986         var records = [];
12987         for(var i = 0; i < c; i++){
12988                 var n = root[i];
12989             var values = {};
12990             var id = this.getId(n);
12991             for(var j = 0; j < fl; j++){
12992                 f = fi[j];
12993             var v = this.ef[j](n);
12994             if (!f.convert) {
12995                 Roo.log('missing convert for ' + f.name);
12996                 Roo.log(f);
12997                 continue;
12998             }
12999             values[f.name] = f.convert((v !== undefined) ? v : f.defaultValue);
13000             }
13001             var record = new Record(values, id);
13002             record.json = n;
13003             records[i] = record;
13004         }
13005         return {
13006             raw : o,
13007             success : success,
13008             records : records,
13009             totalRecords : totalRecords
13010         };
13011     }
13012 });/*
13013  * Based on:
13014  * Ext JS Library 1.1.1
13015  * Copyright(c) 2006-2007, Ext JS, LLC.
13016  *
13017  * Originally Released Under LGPL - original licence link has changed is not relivant.
13018  *
13019  * Fork - LGPL
13020  * <script type="text/javascript">
13021  */
13022
13023 /**
13024  * @class Roo.data.ArrayReader
13025  * @extends Roo.data.DataReader
13026  * Data reader class to create an Array of Roo.data.Record objects from an Array.
13027  * Each element of that Array represents a row of data fields. The
13028  * fields are pulled into a Record object using as a subscript, the <em>mapping</em> property
13029  * of the field definition if it exists, or the field's ordinal position in the definition.<br>
13030  * <p>
13031  * Example code:.
13032  * <pre><code>
13033 var RecordDef = Roo.data.Record.create([
13034     {name: 'name', mapping: 1},         // "mapping" only needed if an "id" field is present which
13035     {name: 'occupation', mapping: 2}    // precludes using the ordinal position as the index.
13036 ]);
13037 var myReader = new Roo.data.ArrayReader({
13038     id: 0                     // The subscript within row Array that provides an ID for the Record (optional)
13039 }, RecordDef);
13040 </code></pre>
13041  * <p>
13042  * This would consume an Array like this:
13043  * <pre><code>
13044 [ [1, 'Bill', 'Gardener'], [2, 'Ben', 'Horticulturalist'] ]
13045   </code></pre>
13046  
13047  * @constructor
13048  * Create a new JsonReader
13049  * @param {Object} meta Metadata configuration options.
13050  * @param {Object|Array} recordType Either an Array of field definition objects
13051  * 
13052  * @cfg {Array} fields Array of field definition objects
13053  * @cfg {String} id Name of the property within a row object that contains a record identifier value.
13054  * as specified to {@link Roo.data.Record#create},
13055  * or an {@link Roo.data.Record} object
13056  *
13057  * 
13058  * created using {@link Roo.data.Record#create}.
13059  */
13060 Roo.data.ArrayReader = function(meta, recordType){
13061     
13062      
13063     Roo.data.ArrayReader.superclass.constructor.call(this, meta, recordType||meta.fields);
13064 };
13065
13066 Roo.extend(Roo.data.ArrayReader, Roo.data.JsonReader, {
13067     /**
13068      * Create a data block containing Roo.data.Records from an XML document.
13069      * @param {Object} o An Array of row objects which represents the dataset.
13070      * @return {Object} A data block which is used by an {@link Roo.data.Store} object as
13071      * a cache of Roo.data.Records.
13072      */
13073     readRecords : function(o){
13074         var sid = this.meta ? this.meta.id : null;
13075         var recordType = this.recordType, fields = recordType.prototype.fields;
13076         var records = [];
13077         var root = o;
13078             for(var i = 0; i < root.length; i++){
13079                     var n = root[i];
13080                 var values = {};
13081                 var id = ((sid || sid === 0) && n[sid] !== undefined && n[sid] !== "" ? n[sid] : null);
13082                 for(var j = 0, jlen = fields.length; j < jlen; j++){
13083                 var f = fields.items[j];
13084                 var k = f.mapping !== undefined && f.mapping !== null ? f.mapping : j;
13085                 var v = n[k] !== undefined ? n[k] : f.defaultValue;
13086                 v = f.convert(v);
13087                 values[f.name] = v;
13088             }
13089                 var record = new recordType(values, id);
13090                 record.json = n;
13091                 records[records.length] = record;
13092             }
13093             return {
13094                 records : records,
13095                 totalRecords : records.length
13096             };
13097     }
13098 });/*
13099  * - LGPL
13100  * * 
13101  */
13102
13103 /**
13104  * @class Roo.bootstrap.ComboBox
13105  * @extends Roo.bootstrap.TriggerField
13106  * A combobox control with support for autocomplete, remote-loading, paging and many other features.
13107  * @cfg {Boolean} append (true|false) default false
13108  * @cfg {Boolean} autoFocus (true|false) auto focus the first item, default true
13109  * @cfg {Boolean} tickable ComboBox with tickable selections (true|false), default false
13110  * @cfg {Boolean} triggerList trigger show the list or not (true|false) default true
13111  * @cfg {Boolean} showToggleBtn show toggle button or not (true|false) default true
13112  * @cfg {String} btnPosition set the position of the trigger button (left | right) default right
13113  * @cfg {Boolean} animate default true
13114  * @cfg {Boolean} emptyResultText only for touch device
13115  * @cfg {String} triggerText multiple combobox trigger button text default 'Select'
13116  * @cfg {String} emptyTitle default ''
13117  * @constructor
13118  * Create a new ComboBox.
13119  * @param {Object} config Configuration options
13120  */
13121 Roo.bootstrap.ComboBox = function(config){
13122     Roo.bootstrap.ComboBox.superclass.constructor.call(this, config);
13123     this.addEvents({
13124         /**
13125          * @event expand
13126          * Fires when the dropdown list is expanded
13127         * @param {Roo.bootstrap.ComboBox} combo This combo box
13128         */
13129         'expand' : true,
13130         /**
13131          * @event collapse
13132          * Fires when the dropdown list is collapsed
13133         * @param {Roo.bootstrap.ComboBox} combo This combo box
13134         */
13135         'collapse' : true,
13136         /**
13137          * @event beforeselect
13138          * Fires before a list item is selected. Return false to cancel the selection.
13139         * @param {Roo.bootstrap.ComboBox} combo This combo box
13140         * @param {Roo.data.Record} record The data record returned from the underlying store
13141         * @param {Number} index The index of the selected item in the dropdown list
13142         */
13143         'beforeselect' : true,
13144         /**
13145          * @event select
13146          * Fires when a list item is selected
13147         * @param {Roo.bootstrap.ComboBox} combo This combo box
13148         * @param {Roo.data.Record} record The data record returned from the underlying store (or false on clear)
13149         * @param {Number} index The index of the selected item in the dropdown list
13150         */
13151         'select' : true,
13152         /**
13153          * @event beforequery
13154          * Fires before all queries are processed. Return false to cancel the query or set cancel to true.
13155          * The event object passed has these properties:
13156         * @param {Roo.bootstrap.ComboBox} combo This combo box
13157         * @param {String} query The query
13158         * @param {Boolean} forceAll true to force "all" query
13159         * @param {Boolean} cancel true to cancel the query
13160         * @param {Object} e The query event object
13161         */
13162         'beforequery': true,
13163          /**
13164          * @event add
13165          * Fires when the 'add' icon is pressed (add a listener to enable add button)
13166         * @param {Roo.bootstrap.ComboBox} combo This combo box
13167         */
13168         'add' : true,
13169         /**
13170          * @event edit
13171          * Fires when the 'edit' icon is pressed (add a listener to enable add button)
13172         * @param {Roo.bootstrap.ComboBox} combo This combo box
13173         * @param {Roo.data.Record|false} record The data record returned from the underlying store (or false on nothing selected)
13174         */
13175         'edit' : true,
13176         /**
13177          * @event remove
13178          * Fires when the remove value from the combobox array
13179         * @param {Roo.bootstrap.ComboBox} combo This combo box
13180         */
13181         'remove' : true,
13182         /**
13183          * @event afterremove
13184          * Fires when the remove value from the combobox array
13185         * @param {Roo.bootstrap.ComboBox} combo This combo box
13186         */
13187         'afterremove' : true,
13188         /**
13189          * @event specialfilter
13190          * Fires when specialfilter
13191             * @param {Roo.bootstrap.ComboBox} combo This combo box
13192             */
13193         'specialfilter' : true,
13194         /**
13195          * @event tick
13196          * Fires when tick the element
13197             * @param {Roo.bootstrap.ComboBox} combo This combo box
13198             */
13199         'tick' : true,
13200         /**
13201          * @event touchviewdisplay
13202          * Fires when touch view require special display (default is using displayField)
13203             * @param {Roo.bootstrap.ComboBox} combo This combo box
13204             * @param {Object} cfg set html .
13205             */
13206         'touchviewdisplay' : true
13207         
13208     });
13209     
13210     this.item = [];
13211     this.tickItems = [];
13212     
13213     this.selectedIndex = -1;
13214     if(this.mode == 'local'){
13215         if(config.queryDelay === undefined){
13216             this.queryDelay = 10;
13217         }
13218         if(config.minChars === undefined){
13219             this.minChars = 0;
13220         }
13221     }
13222 };
13223
13224 Roo.extend(Roo.bootstrap.ComboBox, Roo.bootstrap.TriggerField, {
13225      
13226     /**
13227      * @cfg {Boolean} lazyRender True to prevent the ComboBox from rendering until requested (should always be used when
13228      * rendering into an Roo.Editor, defaults to false)
13229      */
13230     /**
13231      * @cfg {Boolean/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to:
13232      * {tag: "input", type: "text", size: "24", autocomplete: "off"})
13233      */
13234     /**
13235      * @cfg {Roo.data.Store} store The data store to which this combo is bound (defaults to undefined)
13236      */
13237     /**
13238      * @cfg {String} title If supplied, a header element is created containing this text and added into the top of
13239      * the dropdown list (defaults to undefined, with no header element)
13240      */
13241
13242      /**
13243      * @cfg {String/Roo.Template} tpl The template to use to render the output
13244      */
13245      
13246      /**
13247      * @cfg {Number} listWidth The width in pixels of the dropdown list (defaults to the width of the ComboBox field)
13248      */
13249     listWidth: undefined,
13250     /**
13251      * @cfg {String} displayField The underlying data field name to bind to this CombBox (defaults to undefined if
13252      * mode = 'remote' or 'text' if mode = 'local')
13253      */
13254     displayField: undefined,
13255     
13256     /**
13257      * @cfg {String} valueField The underlying data value name to bind to this CombBox (defaults to undefined if
13258      * mode = 'remote' or 'value' if mode = 'local'). 
13259      * Note: use of a valueField requires the user make a selection
13260      * in order for a value to be mapped.
13261      */
13262     valueField: undefined,
13263     /**
13264      * @cfg {String} modalTitle The title of the dialog that pops up on mobile views.
13265      */
13266     modalTitle : '',
13267     
13268     /**
13269      * @cfg {String} hiddenName If specified, a hidden form field with this name is dynamically generated to store the
13270      * field's data value (defaults to the underlying DOM element's name)
13271      */
13272     hiddenName: undefined,
13273     /**
13274      * @cfg {String} listClass CSS class to apply to the dropdown list element (defaults to '')
13275      */
13276     listClass: '',
13277     /**
13278      * @cfg {String} selectedClass CSS class to apply to the selected item in the dropdown list (defaults to 'x-combo-selected')
13279      */
13280     selectedClass: 'active',
13281     
13282     /**
13283      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
13284      */
13285     shadow:'sides',
13286     /**
13287      * @cfg {String} listAlign A valid anchor position value. See {@link Roo.Element#alignTo} for details on supported
13288      * anchor positions (defaults to 'tl-bl')
13289      */
13290     listAlign: 'tl-bl?',
13291     /**
13292      * @cfg {Number} maxHeight The maximum height in pixels of the dropdown list before scrollbars are shown (defaults to 300)
13293      */
13294     maxHeight: 300,
13295     /**
13296      * @cfg {String} triggerAction The action to execute when the trigger field is activated.  Use 'all' to run the
13297      * query specified by the allQuery config option (defaults to 'query')
13298      */
13299     triggerAction: 'query',
13300     /**
13301      * @cfg {Number} minChars The minimum number of characters the user must type before autocomplete and typeahead activate
13302      * (defaults to 4, does not apply if editable = false)
13303      */
13304     minChars : 4,
13305     /**
13306      * @cfg {Boolean} typeAhead True to populate and autoselect the remainder of the text being typed after a configurable
13307      * delay (typeAheadDelay) if it matches a known value (defaults to false)
13308      */
13309     typeAhead: false,
13310     /**
13311      * @cfg {Number} queryDelay The length of time in milliseconds to delay between the start of typing and sending the
13312      * query to filter the dropdown list (defaults to 500 if mode = 'remote' or 10 if mode = 'local')
13313      */
13314     queryDelay: 500,
13315     /**
13316      * @cfg {Number} pageSize If greater than 0, a paging toolbar is displayed in the footer of the dropdown list and the
13317      * filter queries will execute with page start and limit parameters.  Only applies when mode = 'remote' (defaults to 0)
13318      */
13319     pageSize: 0,
13320     /**
13321      * @cfg {Boolean} selectOnFocus True to select any existing text in the field immediately on focus.  Only applies
13322      * when editable = true (defaults to false)
13323      */
13324     selectOnFocus:false,
13325     /**
13326      * @cfg {String} queryParam Name of the query as it will be passed on the querystring (defaults to 'query')
13327      */
13328     queryParam: 'query',
13329     /**
13330      * @cfg {String} loadingText The text to display in the dropdown list while data is loading.  Only applies
13331      * when mode = 'remote' (defaults to 'Loading...')
13332      */
13333     loadingText: 'Loading...',
13334     /**
13335      * @cfg {Boolean} resizable True to add a resize handle to the bottom of the dropdown list (defaults to false)
13336      */
13337     resizable: false,
13338     /**
13339      * @cfg {Number} handleHeight The height in pixels of the dropdown list resize handle if resizable = true (defaults to 8)
13340      */
13341     handleHeight : 8,
13342     /**
13343      * @cfg {Boolean} editable False to prevent the user from typing text directly into the field, just like a
13344      * traditional select (defaults to true)
13345      */
13346     editable: true,
13347     /**
13348      * @cfg {String} allQuery The text query to send to the server to return all records for the list with no filtering (defaults to '')
13349      */
13350     allQuery: '',
13351     /**
13352      * @cfg {String} mode Set to 'local' if the ComboBox loads local data (defaults to 'remote' which loads from the server)
13353      */
13354     mode: 'remote',
13355     /**
13356      * @cfg {Number} minListWidth The minimum width of the dropdown list in pixels (defaults to 70, will be ignored if
13357      * listWidth has a higher value)
13358      */
13359     minListWidth : 70,
13360     /**
13361      * @cfg {Boolean} forceSelection True to restrict the selected value to one of the values in the list, false to
13362      * allow the user to set arbitrary text into the field (defaults to false)
13363      */
13364     forceSelection:false,
13365     /**
13366      * @cfg {Number} typeAheadDelay The length of time in milliseconds to wait until the typeahead text is displayed
13367      * if typeAhead = true (defaults to 250)
13368      */
13369     typeAheadDelay : 250,
13370     /**
13371      * @cfg {String} valueNotFoundText When using a name/value combo, if the value passed to setValue is not found in
13372      * the store, valueNotFoundText will be displayed as the field text if defined (defaults to undefined)
13373      */
13374     valueNotFoundText : undefined,
13375     /**
13376      * @cfg {Boolean} blockFocus Prevents all focus calls, so it can work with things like HTML edtor bar
13377      */
13378     blockFocus : false,
13379     
13380     /**
13381      * @cfg {Boolean} disableClear Disable showing of clear button.
13382      */
13383     disableClear : false,
13384     /**
13385      * @cfg {Boolean} alwaysQuery  Disable caching of results, and always send query
13386      */
13387     alwaysQuery : false,
13388     
13389     /**
13390      * @cfg {Boolean} multiple  (true|false) ComboBobArray, default false
13391      */
13392     multiple : false,
13393     
13394     /**
13395      * @cfg {String} invalidClass DEPRICATED - uses BS4 is-valid now
13396      */
13397     invalidClass : "has-warning",
13398     
13399     /**
13400      * @cfg {String} validClass DEPRICATED - uses BS4 is-valid now
13401      */
13402     validClass : "has-success",
13403     
13404     /**
13405      * @cfg {Boolean} specialFilter (true|false) special filter default false
13406      */
13407     specialFilter : false,
13408     
13409     /**
13410      * @cfg {Boolean} mobileTouchView (true|false) show mobile touch view when using a mobile default true
13411      */
13412     mobileTouchView : true,
13413     
13414     /**
13415      * @cfg {Boolean} useNativeIOS (true|false) render it as classic select for ios, not support dynamic load data (default false)
13416      */
13417     useNativeIOS : false,
13418     
13419     /**
13420      * @cfg {Boolean} mobile_restrict_height (true|false) restrict height for touch view
13421      */
13422     mobile_restrict_height : false,
13423     
13424     ios_options : false,
13425     
13426     //private
13427     addicon : false,
13428     editicon: false,
13429     
13430     page: 0,
13431     hasQuery: false,
13432     append: false,
13433     loadNext: false,
13434     autoFocus : true,
13435     tickable : false,
13436     btnPosition : 'right',
13437     triggerList : true,
13438     showToggleBtn : true,
13439     animate : true,
13440     emptyResultText: 'Empty',
13441     triggerText : 'Select',
13442     emptyTitle : '',
13443     
13444     // element that contains real text value.. (when hidden is used..)
13445     
13446     getAutoCreate : function()
13447     {   
13448         var cfg = false;
13449         //render
13450         /*
13451          * Render classic select for iso
13452          */
13453         
13454         if(Roo.isIOS && this.useNativeIOS){
13455             cfg = this.getAutoCreateNativeIOS();
13456             return cfg;
13457         }
13458         
13459         /*
13460          * Touch Devices
13461          */
13462         
13463         if(Roo.isTouch && this.mobileTouchView){
13464             cfg = this.getAutoCreateTouchView();
13465             return cfg;;
13466         }
13467         
13468         /*
13469          *  Normal ComboBox
13470          */
13471         if(!this.tickable){
13472             cfg = Roo.bootstrap.ComboBox.superclass.getAutoCreate.call(this);
13473             return cfg;
13474         }
13475         
13476         /*
13477          *  ComboBox with tickable selections
13478          */
13479              
13480         var align = this.labelAlign || this.parentLabelAlign();
13481         
13482         cfg = {
13483             cls : 'form-group roo-combobox-tickable' //input-group
13484         };
13485         
13486         var btn_text_select = '';
13487         var btn_text_done = '';
13488         var btn_text_cancel = '';
13489         
13490         if (this.btn_text_show) {
13491             btn_text_select = 'Select';
13492             btn_text_done = 'Done';
13493             btn_text_cancel = 'Cancel'; 
13494         }
13495         
13496         var buttons = {
13497             tag : 'div',
13498             cls : 'tickable-buttons',
13499             cn : [
13500                 {
13501                     tag : 'button',
13502                     type : 'button',
13503                     cls : 'btn btn-link btn-edit pull-' + this.btnPosition,
13504                     //html : this.triggerText
13505                     html: btn_text_select
13506                 },
13507                 {
13508                     tag : 'button',
13509                     type : 'button',
13510                     name : 'ok',
13511                     cls : 'btn btn-link btn-ok pull-' + this.btnPosition,
13512                     //html : 'Done'
13513                     html: btn_text_done
13514                 },
13515                 {
13516                     tag : 'button',
13517                     type : 'button',
13518                     name : 'cancel',
13519                     cls : 'btn btn-link btn-cancel pull-' + this.btnPosition,
13520                     //html : 'Cancel'
13521                     html: btn_text_cancel
13522                 }
13523             ]
13524         };
13525         
13526         if(this.editable){
13527             buttons.cn.unshift({
13528                 tag: 'input',
13529                 cls: 'roo-select2-search-field-input'
13530             });
13531         }
13532         
13533         var _this = this;
13534         
13535         Roo.each(buttons.cn, function(c){
13536             if (_this.size) {
13537                 c.cls += ' btn-' + _this.size;
13538             }
13539
13540             if (_this.disabled) {
13541                 c.disabled = true;
13542             }
13543         });
13544         
13545         var box = {
13546             tag: 'div',
13547             style : 'display: contents',
13548             cn: [
13549                 {
13550                     tag: 'input',
13551                     type : 'hidden',
13552                     cls: 'form-hidden-field'
13553                 },
13554                 {
13555                     tag: 'ul',
13556                     cls: 'roo-select2-choices',
13557                     cn:[
13558                         {
13559                             tag: 'li',
13560                             cls: 'roo-select2-search-field',
13561                             cn: [
13562                                 buttons
13563                             ]
13564                         }
13565                     ]
13566                 }
13567             ]
13568         };
13569         
13570         var combobox = {
13571             cls: 'roo-select2-container input-group roo-select2-container-multi',
13572             cn: [
13573                 
13574                 box
13575 //                {
13576 //                    tag: 'ul',
13577 //                    cls: 'typeahead typeahead-long dropdown-menu',
13578 //                    style: 'display:none; max-height:' + this.maxHeight + 'px;'
13579 //                }
13580             ]
13581         };
13582         
13583         if(this.hasFeedback && !this.allowBlank){
13584             
13585             var feedback = {
13586                 tag: 'span',
13587                 cls: 'glyphicon form-control-feedback'
13588             };
13589
13590             combobox.cn.push(feedback);
13591         }
13592         
13593         var indicator = {
13594             tag : 'i',
13595             cls : 'roo-required-indicator ' + (this.indicatorpos == 'right'  ? 'right' : 'left') +'-indicator text-danger fa fa-lg fa-star',
13596             tooltip : 'This field is required'
13597         };
13598         if (Roo.bootstrap.version == 4) {
13599             indicator = {
13600                 tag : 'i',
13601                 style : 'display:none'
13602             };
13603         }
13604         if (align ==='left' && this.fieldLabel.length) {
13605             
13606             cfg.cls += ' roo-form-group-label-left'  + (Roo.bootstrap.version == 4 ? ' row' : '');
13607             
13608             cfg.cn = [
13609                 indicator,
13610                 {
13611                     tag: 'label',
13612                     'for' :  id,
13613                     cls : 'control-label col-form-label',
13614                     html : this.fieldLabel
13615
13616                 },
13617                 {
13618                     cls : "", 
13619                     cn: [
13620                         combobox
13621                     ]
13622                 }
13623
13624             ];
13625             
13626             var labelCfg = cfg.cn[1];
13627             var contentCfg = cfg.cn[2];
13628             
13629
13630             if(this.indicatorpos == 'right'){
13631                 
13632                 cfg.cn = [
13633                     {
13634                         tag: 'label',
13635                         'for' :  id,
13636                         cls : 'control-label col-form-label',
13637                         cn : [
13638                             {
13639                                 tag : 'span',
13640                                 html : this.fieldLabel
13641                             },
13642                             indicator
13643                         ]
13644                     },
13645                     {
13646                         cls : "",
13647                         cn: [
13648                             combobox
13649                         ]
13650                     }
13651
13652                 ];
13653                 
13654                 
13655                 
13656                 labelCfg = cfg.cn[0];
13657                 contentCfg = cfg.cn[1];
13658             
13659             }
13660             
13661             if(this.labelWidth > 12){
13662                 labelCfg.style = "width: " + this.labelWidth + 'px';
13663             }
13664             
13665             if(this.labelWidth < 13 && this.labelmd == 0){
13666                 this.labelmd = this.labelWidth;
13667             }
13668             
13669             if(this.labellg > 0){
13670                 labelCfg.cls += ' col-lg-' + this.labellg;
13671                 contentCfg.cls += ' col-lg-' + (12 - this.labellg);
13672             }
13673             
13674             if(this.labelmd > 0){
13675                 labelCfg.cls += ' col-md-' + this.labelmd;
13676                 contentCfg.cls += ' col-md-' + (12 - this.labelmd);
13677             }
13678             
13679             if(this.labelsm > 0){
13680                 labelCfg.cls += ' col-sm-' + this.labelsm;
13681                 contentCfg.cls += ' col-sm-' + (12 - this.labelsm);
13682             }
13683             
13684             if(this.labelxs > 0){
13685                 labelCfg.cls += ' col-xs-' + this.labelxs;
13686                 contentCfg.cls += ' col-xs-' + (12 - this.labelxs);
13687             }
13688                 
13689                 
13690         } else if ( this.fieldLabel.length) {
13691 //                Roo.log(" label");
13692                  cfg.cn = [
13693                    indicator,
13694                     {
13695                         tag: 'label',
13696                         //cls : 'input-group-addon',
13697                         html : this.fieldLabel
13698                     },
13699                     combobox
13700                 ];
13701                 
13702                 if(this.indicatorpos == 'right'){
13703                     cfg.cn = [
13704                         {
13705                             tag: 'label',
13706                             //cls : 'input-group-addon',
13707                             html : this.fieldLabel
13708                         },
13709                         indicator,
13710                         combobox
13711                     ];
13712                     
13713                 }
13714
13715         } else {
13716             
13717 //                Roo.log(" no label && no align");
13718                 cfg = combobox
13719                      
13720                 
13721         }
13722          
13723         var settings=this;
13724         ['xs','sm','md','lg'].map(function(size){
13725             if (settings[size]) {
13726                 cfg.cls += ' col-' + size + '-' + settings[size];
13727             }
13728         });
13729         
13730         return cfg;
13731         
13732     },
13733     
13734     _initEventsCalled : false,
13735     
13736     // private
13737     initEvents: function()
13738     {   
13739         if (this._initEventsCalled) { // as we call render... prevent looping...
13740             return;
13741         }
13742         this._initEventsCalled = true;
13743         
13744         if (!this.store) {
13745             throw "can not find store for combo";
13746         }
13747         
13748         this.indicator = this.indicatorEl();
13749         
13750         this.store = Roo.factory(this.store, Roo.data);
13751         this.store.parent = this;
13752         
13753         // if we are building from html. then this element is so complex, that we can not really
13754         // use the rendered HTML.
13755         // so we have to trash and replace the previous code.
13756         if (Roo.XComponent.build_from_html) {
13757             // remove this element....
13758             var e = this.el.dom, k=0;
13759             while (e ) { e = e.previousSibling;  ++k;}
13760
13761             this.el.remove();
13762             
13763             this.el=false;
13764             this.rendered = false;
13765             
13766             this.render(this.parent().getChildContainer(true), k);
13767         }
13768         
13769         if(Roo.isIOS && this.useNativeIOS){
13770             this.initIOSView();
13771             return;
13772         }
13773         
13774         /*
13775          * Touch Devices
13776          */
13777         
13778         if(Roo.isTouch && this.mobileTouchView){
13779             this.initTouchView();
13780             return;
13781         }
13782         
13783         if(this.tickable){
13784             this.initTickableEvents();
13785             return;
13786         }
13787         
13788         Roo.bootstrap.ComboBox.superclass.initEvents.call(this);
13789         
13790         if(this.hiddenName){
13791             
13792             this.hiddenField = this.el.select('input.form-hidden-field',true).first();
13793             
13794             this.hiddenField.dom.value =
13795                 this.hiddenValue !== undefined ? this.hiddenValue :
13796                 this.value !== undefined ? this.value : '';
13797
13798             // prevent input submission
13799             this.el.dom.removeAttribute('name');
13800             this.hiddenField.dom.setAttribute('name', this.hiddenName);
13801              
13802              
13803         }
13804         //if(Roo.isGecko){
13805         //    this.el.dom.setAttribute('autocomplete', 'off');
13806         //}
13807         
13808         var cls = 'x-combo-list';
13809         
13810         //this.list = new Roo.Layer({
13811         //    shadow: this.shadow, cls: [cls, this.listClass].join(' '), constrain:false
13812         //});
13813         
13814         var _this = this;
13815         
13816         (function(){
13817             var lw = _this.listWidth || Math.max(_this.inputEl().getWidth(), _this.minListWidth);
13818             _this.list.setWidth(lw);
13819         }).defer(100);
13820         
13821         this.list.on('mouseover', this.onViewOver, this);
13822         this.list.on('mousemove', this.onViewMove, this);
13823         this.list.on('scroll', this.onViewScroll, this);
13824         
13825         /*
13826         this.list.swallowEvent('mousewheel');
13827         this.assetHeight = 0;
13828
13829         if(this.title){
13830             this.header = this.list.createChild({cls:cls+'-hd', html: this.title});
13831             this.assetHeight += this.header.getHeight();
13832         }
13833
13834         this.innerList = this.list.createChild({cls:cls+'-inner'});
13835         this.innerList.on('mouseover', this.onViewOver, this);
13836         this.innerList.on('mousemove', this.onViewMove, this);
13837         this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
13838         
13839         if(this.allowBlank && !this.pageSize && !this.disableClear){
13840             this.footer = this.list.createChild({cls:cls+'-ft'});
13841             this.pageTb = new Roo.Toolbar(this.footer);
13842            
13843         }
13844         if(this.pageSize){
13845             this.footer = this.list.createChild({cls:cls+'-ft'});
13846             this.pageTb = new Roo.PagingToolbar(this.footer, this.store,
13847                     {pageSize: this.pageSize});
13848             
13849         }
13850         
13851         if (this.pageTb && this.allowBlank && !this.disableClear) {
13852             var _this = this;
13853             this.pageTb.add(new Roo.Toolbar.Fill(), {
13854                 cls: 'x-btn-icon x-btn-clear',
13855                 text: '&#160;',
13856                 handler: function()
13857                 {
13858                     _this.collapse();
13859                     _this.clearValue();
13860                     _this.onSelect(false, -1);
13861                 }
13862             });
13863         }
13864         if (this.footer) {
13865             this.assetHeight += this.footer.getHeight();
13866         }
13867         */
13868             
13869         if(!this.tpl){
13870             this.tpl = Roo.bootstrap.version == 4 ?
13871                 '<a class="dropdown-item" href="#">{' + this.displayField + '}</a>' :  // 4 does not need <li> and it get's really confisued.
13872                 '<li><a class="dropdown-item" href="#">{' + this.displayField + '}</a></li>';
13873         }
13874
13875         this.view = new Roo.View(this.list, this.tpl, {
13876             singleSelect:true, store: this.store, selectedClass: this.selectedClass
13877         });
13878         //this.view.wrapEl.setDisplayed(false);
13879         this.view.on('click', this.onViewClick, this);
13880         
13881         
13882         this.store.on('beforeload', this.onBeforeLoad, this);
13883         this.store.on('load', this.onLoad, this);
13884         this.store.on('loadexception', this.onLoadException, this);
13885         /*
13886         if(this.resizable){
13887             this.resizer = new Roo.Resizable(this.list,  {
13888                pinned:true, handles:'se'
13889             });
13890             this.resizer.on('resize', function(r, w, h){
13891                 this.maxHeight = h-this.handleHeight-this.list.getFrameWidth('tb')-this.assetHeight;
13892                 this.listWidth = w;
13893                 this.innerList.setWidth(w - this.list.getFrameWidth('lr'));
13894                 this.restrictHeight();
13895             }, this);
13896             this[this.pageSize?'footer':'innerList'].setStyle('margin-bottom', this.handleHeight+'px');
13897         }
13898         */
13899         if(!this.editable){
13900             this.editable = true;
13901             this.setEditable(false);
13902         }
13903         
13904         /*
13905         
13906         if (typeof(this.events.add.listeners) != 'undefined') {
13907             
13908             this.addicon = this.wrap.createChild(
13909                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-add' });  
13910        
13911             this.addicon.on('click', function(e) {
13912                 this.fireEvent('add', this);
13913             }, this);
13914         }
13915         if (typeof(this.events.edit.listeners) != 'undefined') {
13916             
13917             this.editicon = this.wrap.createChild(
13918                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-edit' });  
13919             if (this.addicon) {
13920                 this.editicon.setStyle('margin-left', '40px');
13921             }
13922             this.editicon.on('click', function(e) {
13923                 
13924                 // we fire even  if inothing is selected..
13925                 this.fireEvent('edit', this, this.lastData );
13926                 
13927             }, this);
13928         }
13929         */
13930         
13931         this.keyNav = new Roo.KeyNav(this.inputEl(), {
13932             "up" : function(e){
13933                 this.inKeyMode = true;
13934                 this.selectPrev();
13935             },
13936
13937             "down" : function(e){
13938                 if(!this.isExpanded()){
13939                     this.onTriggerClick();
13940                 }else{
13941                     this.inKeyMode = true;
13942                     this.selectNext();
13943                 }
13944             },
13945
13946             "enter" : function(e){
13947 //                this.onViewClick();
13948                 //return true;
13949                 this.collapse();
13950                 
13951                 if(this.fireEvent("specialkey", this, e)){
13952                     this.onViewClick(false);
13953                 }
13954                 
13955                 return true;
13956             },
13957
13958             "esc" : function(e){
13959                 this.collapse();
13960             },
13961
13962             "tab" : function(e){
13963                 this.collapse();
13964                 
13965                 if(this.fireEvent("specialkey", this, e)){
13966                     this.onViewClick(false);
13967                 }
13968                 
13969                 return true;
13970             },
13971
13972             scope : this,
13973
13974             doRelay : function(foo, bar, hname){
13975                 if(hname == 'down' || this.scope.isExpanded()){
13976                    return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
13977                 }
13978                 return true;
13979             },
13980
13981             forceKeyDown: true
13982         });
13983         
13984         
13985         this.queryDelay = Math.max(this.queryDelay || 10,
13986                 this.mode == 'local' ? 10 : 250);
13987         
13988         
13989         this.dqTask = new Roo.util.DelayedTask(this.initQuery, this);
13990         
13991         if(this.typeAhead){
13992             this.taTask = new Roo.util.DelayedTask(this.onTypeAhead, this);
13993         }
13994         if(this.editable !== false){
13995             this.inputEl().on("keyup", this.onKeyUp, this);
13996         }
13997         if(this.forceSelection){
13998             this.inputEl().on('blur', this.doForce, this);
13999         }
14000         
14001         if(this.multiple){
14002             this.choices = this.el.select('ul.roo-select2-choices', true).first();
14003             this.searchField = this.el.select('ul li.roo-select2-search-field', true).first();
14004         }
14005     },
14006     
14007     initTickableEvents: function()
14008     {   
14009         this.createList();
14010         
14011         if(this.hiddenName){
14012             
14013             this.hiddenField = this.el.select('input.form-hidden-field',true).first();
14014             
14015             this.hiddenField.dom.value =
14016                 this.hiddenValue !== undefined ? this.hiddenValue :
14017                 this.value !== undefined ? this.value : '';
14018
14019             // prevent input submission
14020             this.el.dom.removeAttribute('name');
14021             this.hiddenField.dom.setAttribute('name', this.hiddenName);
14022              
14023              
14024         }
14025         
14026 //        this.list = this.el.select('ul.dropdown-menu',true).first();
14027         
14028         this.choices = this.el.select('ul.roo-select2-choices', true).first();
14029         this.searchField = this.el.select('ul li.roo-select2-search-field', true).first();
14030         if(this.triggerList){
14031             this.searchField.on("click", this.onSearchFieldClick, this, {preventDefault:true});
14032         }
14033          
14034         this.trigger = this.el.select('.tickable-buttons > .btn-edit', true).first();
14035         this.trigger.on("click", this.onTickableTriggerClick, this, {preventDefault:true});
14036         
14037         this.okBtn = this.el.select('.tickable-buttons > .btn-ok', true).first();
14038         this.cancelBtn = this.el.select('.tickable-buttons > .btn-cancel', true).first();
14039         
14040         this.okBtn.on('click', this.onTickableFooterButtonClick, this, this.okBtn);
14041         this.cancelBtn.on('click', this.onTickableFooterButtonClick, this, this.cancelBtn);
14042         
14043         this.trigger.setVisibilityMode(Roo.Element.DISPLAY);
14044         this.okBtn.setVisibilityMode(Roo.Element.DISPLAY);
14045         this.cancelBtn.setVisibilityMode(Roo.Element.DISPLAY);
14046         
14047         this.okBtn.hide();
14048         this.cancelBtn.hide();
14049         
14050         var _this = this;
14051         
14052         (function(){
14053             var lw = _this.listWidth || Math.max(_this.inputEl().getWidth(), _this.minListWidth);
14054             _this.list.setWidth(lw);
14055         }).defer(100);
14056         
14057         this.list.on('mouseover', this.onViewOver, this);
14058         this.list.on('mousemove', this.onViewMove, this);
14059         
14060         this.list.on('scroll', this.onViewScroll, this);
14061         
14062         if(!this.tpl){
14063             this.tpl = '<li class="roo-select2-result"><div class="checkbox"><input id="{roo-id}"' + 
14064                 'type="checkbox" {roo-data-checked}><label for="{roo-id}"><b>{' + this.displayField + '}</b></label></div></li>';
14065         }
14066
14067         this.view = new Roo.View(this.list, this.tpl, {
14068             singleSelect:true,
14069             tickable:true,
14070             parent:this,
14071             store: this.store,
14072             selectedClass: this.selectedClass
14073         });
14074         
14075         //this.view.wrapEl.setDisplayed(false);
14076         this.view.on('click', this.onViewClick, this);
14077         
14078         
14079         
14080         this.store.on('beforeload', this.onBeforeLoad, this);
14081         this.store.on('load', this.onLoad, this);
14082         this.store.on('loadexception', this.onLoadException, this);
14083         
14084         if(this.editable){
14085             this.keyNav = new Roo.KeyNav(this.tickableInputEl(), {
14086                 "up" : function(e){
14087                     this.inKeyMode = true;
14088                     this.selectPrev();
14089                 },
14090
14091                 "down" : function(e){
14092                     this.inKeyMode = true;
14093                     this.selectNext();
14094                 },
14095
14096                 "enter" : function(e){
14097                     if(this.fireEvent("specialkey", this, e)){
14098                         this.onViewClick(false);
14099                     }
14100                     
14101                     return true;
14102                 },
14103
14104                 "esc" : function(e){
14105                     this.onTickableFooterButtonClick(e, false, false);
14106                 },
14107
14108                 "tab" : function(e){
14109                     this.fireEvent("specialkey", this, e);
14110                     
14111                     this.onTickableFooterButtonClick(e, false, false);
14112                     
14113                     return true;
14114                 },
14115
14116                 scope : this,
14117
14118                 doRelay : function(e, fn, key){
14119                     if(this.scope.isExpanded()){
14120                        return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
14121                     }
14122                     return true;
14123                 },
14124
14125                 forceKeyDown: true
14126             });
14127         }
14128         
14129         this.queryDelay = Math.max(this.queryDelay || 10,
14130                 this.mode == 'local' ? 10 : 250);
14131         
14132         
14133         this.dqTask = new Roo.util.DelayedTask(this.initQuery, this);
14134         
14135         if(this.typeAhead){
14136             this.taTask = new Roo.util.DelayedTask(this.onTypeAhead, this);
14137         }
14138         
14139         if(this.editable !== false){
14140             this.tickableInputEl().on("keyup", this.onKeyUp, this);
14141         }
14142         
14143         this.indicator = this.indicatorEl();
14144         
14145         if(this.indicator){
14146             this.indicator.setVisibilityMode(Roo.Element.DISPLAY);
14147             this.indicator.hide();
14148         }
14149         
14150     },
14151
14152     onDestroy : function(){
14153         if(this.view){
14154             this.view.setStore(null);
14155             this.view.el.removeAllListeners();
14156             this.view.el.remove();
14157             this.view.purgeListeners();
14158         }
14159         if(this.list){
14160             this.list.dom.innerHTML  = '';
14161         }
14162         
14163         if(this.store){
14164             this.store.un('beforeload', this.onBeforeLoad, this);
14165             this.store.un('load', this.onLoad, this);
14166             this.store.un('loadexception', this.onLoadException, this);
14167         }
14168         Roo.bootstrap.ComboBox.superclass.onDestroy.call(this);
14169     },
14170
14171     // private
14172     fireKey : function(e){
14173         if(e.isNavKeyPress() && !this.list.isVisible()){
14174             this.fireEvent("specialkey", this, e);
14175         }
14176     },
14177
14178     // private
14179     onResize: function(w, h){
14180 //        Roo.bootstrap.ComboBox.superclass.onResize.apply(this, arguments);
14181 //        
14182 //        if(typeof w != 'number'){
14183 //            // we do not handle it!?!?
14184 //            return;
14185 //        }
14186 //        var tw = this.trigger.getWidth();
14187 //       // tw += this.addicon ? this.addicon.getWidth() : 0;
14188 //       // tw += this.editicon ? this.editicon.getWidth() : 0;
14189 //        var x = w - tw;
14190 //        this.inputEl().setWidth( this.adjustWidth('input', x));
14191 //            
14192 //        //this.trigger.setStyle('left', x+'px');
14193 //        
14194 //        if(this.list && this.listWidth === undefined){
14195 //            var lw = Math.max(x + this.trigger.getWidth(), this.minListWidth);
14196 //            this.list.setWidth(lw);
14197 //            this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
14198 //        }
14199         
14200     
14201         
14202     },
14203
14204     /**
14205      * Allow or prevent the user from directly editing the field text.  If false is passed,
14206      * the user will only be able to select from the items defined in the dropdown list.  This method
14207      * is the runtime equivalent of setting the 'editable' config option at config time.
14208      * @param {Boolean} value True to allow the user to directly edit the field text
14209      */
14210     setEditable : function(value){
14211         if(value == this.editable){
14212             return;
14213         }
14214         this.editable = value;
14215         if(!value){
14216             this.inputEl().dom.setAttribute('readOnly', true);
14217             this.inputEl().on('mousedown', this.onTriggerClick,  this);
14218             this.inputEl().addClass('x-combo-noedit');
14219         }else{
14220             this.inputEl().dom.setAttribute('readOnly', false);
14221             this.inputEl().un('mousedown', this.onTriggerClick,  this);
14222             this.inputEl().removeClass('x-combo-noedit');
14223         }
14224     },
14225
14226     // private
14227     
14228     onBeforeLoad : function(combo,opts){
14229         if(!this.hasFocus){
14230             return;
14231         }
14232          if (!opts.add) {
14233             this.list.dom.innerHTML = '<li class="loading-indicator">'+(this.loadingText||'loading')+'</li>' ;
14234          }
14235         this.restrictHeight();
14236         this.selectedIndex = -1;
14237     },
14238
14239     // private
14240     onLoad : function(){
14241         
14242         this.hasQuery = false;
14243         
14244         if(!this.hasFocus){
14245             return;
14246         }
14247         
14248         if(typeof(this.loading) !== 'undefined' && this.loading !== null){
14249             this.loading.hide();
14250         }
14251         
14252         if(this.store.getCount() > 0){
14253             
14254             this.expand();
14255             this.restrictHeight();
14256             if(this.lastQuery == this.allQuery){
14257                 if(this.editable && !this.tickable){
14258                     this.inputEl().dom.select();
14259                 }
14260                 
14261                 if(
14262                     !this.selectByValue(this.value, true) &&
14263                     this.autoFocus && 
14264                     (
14265                         !this.store.lastOptions ||
14266                         typeof(this.store.lastOptions.add) == 'undefined' || 
14267                         this.store.lastOptions.add != true
14268                     )
14269                 ){
14270                     this.select(0, true);
14271                 }
14272             }else{
14273                 if(this.autoFocus){
14274                     this.selectNext();
14275                 }
14276                 if(this.typeAhead && this.lastKey != Roo.EventObject.BACKSPACE && this.lastKey != Roo.EventObject.DELETE){
14277                     this.taTask.delay(this.typeAheadDelay);
14278                 }
14279             }
14280         }else{
14281             this.onEmptyResults();
14282         }
14283         
14284         //this.el.focus();
14285     },
14286     // private
14287     onLoadException : function()
14288     {
14289         this.hasQuery = false;
14290         
14291         if(typeof(this.loading) !== 'undefined' && this.loading !== null){
14292             this.loading.hide();
14293         }
14294         
14295         if(this.tickable && this.editable){
14296             return;
14297         }
14298         
14299         this.collapse();
14300         // only causes errors at present
14301         //Roo.log(this.store.reader.jsonData);
14302         //if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
14303             // fixme
14304             //Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
14305         //}
14306         
14307         
14308     },
14309     // private
14310     onTypeAhead : function(){
14311         if(this.store.getCount() > 0){
14312             var r = this.store.getAt(0);
14313             var newValue = r.data[this.displayField];
14314             var len = newValue.length;
14315             var selStart = this.getRawValue().length;
14316             
14317             if(selStart != len){
14318                 this.setRawValue(newValue);
14319                 this.selectText(selStart, newValue.length);
14320             }
14321         }
14322     },
14323
14324     // private
14325     onSelect : function(record, index){
14326         
14327         if(this.fireEvent('beforeselect', this, record, index) !== false){
14328         
14329             this.setFromData(index > -1 ? record.data : false);
14330             
14331             this.collapse();
14332             this.fireEvent('select', this, record, index);
14333         }
14334     },
14335
14336     /**
14337      * Returns the currently selected field value or empty string if no value is set.
14338      * @return {String} value The selected value
14339      */
14340     getValue : function()
14341     {
14342         if(Roo.isIOS && this.useNativeIOS){
14343             return this.ios_options[this.inputEl().dom.selectedIndex].data[this.valueField];
14344         }
14345         
14346         if(this.multiple){
14347             return (this.hiddenField) ? this.hiddenField.dom.value : this.value;
14348         }
14349         
14350         if(this.valueField){
14351             return typeof this.value != 'undefined' ? this.value : '';
14352         }else{
14353             return Roo.bootstrap.ComboBox.superclass.getValue.call(this);
14354         }
14355     },
14356     
14357     getRawValue : function()
14358     {
14359         if(Roo.isIOS && this.useNativeIOS){
14360             return this.ios_options[this.inputEl().dom.selectedIndex].data[this.displayField];
14361         }
14362         
14363         var v = this.inputEl().getValue();
14364         
14365         return v;
14366     },
14367
14368     /**
14369      * Clears any text/value currently set in the field
14370      */
14371     clearValue : function(){
14372         
14373         if(this.hiddenField){
14374             this.hiddenField.dom.value = '';
14375         }
14376         this.value = '';
14377         this.setRawValue('');
14378         this.lastSelectionText = '';
14379         this.lastData = false;
14380         
14381         var close = this.closeTriggerEl();
14382         
14383         if(close){
14384             close.hide();
14385         }
14386         
14387         this.validate();
14388         
14389     },
14390
14391     /**
14392      * Sets the specified value into the field.  If the value finds a match, the corresponding record text
14393      * will be displayed in the field.  If the value does not match the data value of an existing item,
14394      * and the valueNotFoundText config option is defined, it will be displayed as the default field text.
14395      * Otherwise the field will be blank (although the value will still be set).
14396      * @param {String} value The value to match
14397      */
14398     setValue : function(v)
14399     {
14400         if(Roo.isIOS && this.useNativeIOS){
14401             this.setIOSValue(v);
14402             return;
14403         }
14404         
14405         if(this.multiple){
14406             this.syncValue();
14407             return;
14408         }
14409         
14410         var text = v;
14411         if(this.valueField){
14412             var r = this.findRecord(this.valueField, v);
14413             if(r){
14414                 text = r.data[this.displayField];
14415             }else if(this.valueNotFoundText !== undefined){
14416                 text = this.valueNotFoundText;
14417             }
14418         }
14419         this.lastSelectionText = text;
14420         if(this.hiddenField){
14421             this.hiddenField.dom.value = v;
14422         }
14423         Roo.bootstrap.ComboBox.superclass.setValue.call(this, text);
14424         this.value = v;
14425         
14426         var close = this.closeTriggerEl();
14427         
14428         if(close){
14429             (v && (v.length || v * 1 > 0)) ? close.show() : close.hide();
14430         }
14431         
14432         this.validate();
14433     },
14434     /**
14435      * @property {Object} the last set data for the element
14436      */
14437     
14438     lastData : false,
14439     /**
14440      * Sets the value of the field based on a object which is related to the record format for the store.
14441      * @param {Object} value the value to set as. or false on reset?
14442      */
14443     setFromData : function(o){
14444         
14445         if(this.multiple){
14446             this.addItem(o);
14447             return;
14448         }
14449             
14450         var dv = ''; // display value
14451         var vv = ''; // value value..
14452         this.lastData = o;
14453         if (this.displayField) {
14454             dv = !o || typeof(o[this.displayField]) == 'undefined' ? '' : o[this.displayField];
14455         } else {
14456             // this is an error condition!!!
14457             Roo.log('no  displayField value set for '+ (this.name ? this.name : this.id));
14458         }
14459         
14460         if(this.valueField){
14461             vv = !o || typeof(o[this.valueField]) == 'undefined' ? dv : o[this.valueField];
14462         }
14463         
14464         var close = this.closeTriggerEl();
14465         
14466         if(close){
14467             if(dv.length || vv * 1 > 0){
14468                 close.show() ;
14469                 this.blockFocus=true;
14470             } else {
14471                 close.hide();
14472             }             
14473         }
14474         
14475         if(this.hiddenField){
14476             this.hiddenField.dom.value = vv;
14477             
14478             this.lastSelectionText = dv;
14479             Roo.bootstrap.ComboBox.superclass.setValue.call(this, dv);
14480             this.value = vv;
14481             return;
14482         }
14483         // no hidden field.. - we store the value in 'value', but still display
14484         // display field!!!!
14485         this.lastSelectionText = dv;
14486         Roo.bootstrap.ComboBox.superclass.setValue.call(this, dv);
14487         this.value = vv;
14488         
14489         
14490         
14491     },
14492     // private
14493     reset : function(){
14494         // overridden so that last data is reset..
14495         
14496         if(this.multiple){
14497             this.clearItem();
14498             return;
14499         }
14500         
14501         this.setValue(this.originalValue);
14502         //this.clearInvalid();
14503         this.lastData = false;
14504         if (this.view) {
14505             this.view.clearSelections();
14506         }
14507         
14508         this.validate();
14509     },
14510     // private
14511     findRecord : function(prop, value){
14512         var record;
14513         if(this.store.getCount() > 0){
14514             this.store.each(function(r){
14515                 if(r.data[prop] == value){
14516                     record = r;
14517                     return false;
14518                 }
14519                 return true;
14520             });
14521         }
14522         return record;
14523     },
14524     
14525     getName: function()
14526     {
14527         // returns hidden if it's set..
14528         if (!this.rendered) {return ''};
14529         return !this.hiddenName && this.inputEl().dom.name  ? this.inputEl().dom.name : (this.hiddenName || '');
14530         
14531     },
14532     // private
14533     onViewMove : function(e, t){
14534         this.inKeyMode = false;
14535     },
14536
14537     // private
14538     onViewOver : function(e, t){
14539         if(this.inKeyMode){ // prevent key nav and mouse over conflicts
14540             return;
14541         }
14542         var item = this.view.findItemFromChild(t);
14543         
14544         if(item){
14545             var index = this.view.indexOf(item);
14546             this.select(index, false);
14547         }
14548     },
14549
14550     // private
14551     onViewClick : function(view, doFocus, el, e)
14552     {
14553         var index = this.view.getSelectedIndexes()[0];
14554         
14555         var r = this.store.getAt(index);
14556         
14557         if(this.tickable){
14558             
14559             if(typeof(e) != 'undefined' && e.getTarget().nodeName.toLowerCase() != 'input'){
14560                 return;
14561             }
14562             
14563             var rm = false;
14564             var _this = this;
14565             
14566             Roo.each(this.tickItems, function(v,k){
14567                 
14568                 if(typeof(v) != 'undefined' && v[_this.valueField] == r.data[_this.valueField]){
14569                     Roo.log(v);
14570                     _this.tickItems.splice(k, 1);
14571                     
14572                     if(typeof(e) == 'undefined' && view == false){
14573                         Roo.get(_this.view.getNodes(index, index)[0]).select('input', true).first().dom.checked = false;
14574                     }
14575                     
14576                     rm = true;
14577                     return;
14578                 }
14579             });
14580             
14581             if(rm){
14582                 return;
14583             }
14584             
14585             if(this.fireEvent('tick', this, r, index, Roo.get(_this.view.getNodes(index, index)[0]).select('input', true).first().dom.checked) !== false){
14586                 this.tickItems.push(r.data);
14587             }
14588             
14589             if(typeof(e) == 'undefined' && view == false){
14590                 Roo.get(_this.view.getNodes(index, index)[0]).select('input', true).first().dom.checked = true;
14591             }
14592                     
14593             return;
14594         }
14595         
14596         if(r){
14597             this.onSelect(r, index);
14598         }
14599         if(doFocus !== false && !this.blockFocus){
14600             this.inputEl().focus();
14601         }
14602     },
14603
14604     // private
14605     restrictHeight : function(){
14606         //this.innerList.dom.style.height = '';
14607         //var inner = this.innerList.dom;
14608         //var h = Math.max(inner.clientHeight, inner.offsetHeight, inner.scrollHeight);
14609         //this.innerList.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
14610         //this.list.beginUpdate();
14611         //this.list.setHeight(this.innerList.getHeight()+this.list.getFrameWidth('tb')+(this.resizable?this.handleHeight:0)+this.assetHeight);
14612         this.list.alignTo(this.inputEl(), this.listAlign);
14613         this.list.alignTo(this.inputEl(), this.listAlign);
14614         //this.list.endUpdate();
14615     },
14616
14617     // private
14618     onEmptyResults : function(){
14619         
14620         if(this.tickable && this.editable){
14621             this.hasFocus = false;
14622             this.restrictHeight();
14623             return;
14624         }
14625         
14626         this.collapse();
14627     },
14628
14629     /**
14630      * Returns true if the dropdown list is expanded, else false.
14631      */
14632     isExpanded : function(){
14633         return this.list.isVisible();
14634     },
14635
14636     /**
14637      * Select an item in the dropdown list by its data value. This function does NOT cause the select event to fire.
14638      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
14639      * @param {String} value The data value of the item to select
14640      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
14641      * selected item if it is not currently in view (defaults to true)
14642      * @return {Boolean} True if the value matched an item in the list, else false
14643      */
14644     selectByValue : function(v, scrollIntoView){
14645         if(v !== undefined && v !== null){
14646             var r = this.findRecord(this.valueField || this.displayField, v);
14647             if(r){
14648                 this.select(this.store.indexOf(r), scrollIntoView);
14649                 return true;
14650             }
14651         }
14652         return false;
14653     },
14654
14655     /**
14656      * Select an item in the dropdown list by its numeric index in the list. This function does NOT cause the select event to fire.
14657      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
14658      * @param {Number} index The zero-based index of the list item to select
14659      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
14660      * selected item if it is not currently in view (defaults to true)
14661      */
14662     select : function(index, scrollIntoView){
14663         this.selectedIndex = index;
14664         this.view.select(index);
14665         if(scrollIntoView !== false){
14666             var el = this.view.getNode(index);
14667             /*
14668              * el && !this.multiple && !this.tickable // not sure why we disable multiple before..
14669              */
14670             if(el){
14671                 this.list.scrollChildIntoView(el, false);
14672             }
14673         }
14674     },
14675
14676     // private
14677     selectNext : function(){
14678         var ct = this.store.getCount();
14679         if(ct > 0){
14680             if(this.selectedIndex == -1){
14681                 this.select(0);
14682             }else if(this.selectedIndex < ct-1){
14683                 this.select(this.selectedIndex+1);
14684             }
14685         }
14686     },
14687
14688     // private
14689     selectPrev : function(){
14690         var ct = this.store.getCount();
14691         if(ct > 0){
14692             if(this.selectedIndex == -1){
14693                 this.select(0);
14694             }else if(this.selectedIndex != 0){
14695                 this.select(this.selectedIndex-1);
14696             }
14697         }
14698     },
14699
14700     // private
14701     onKeyUp : function(e){
14702         if(this.editable !== false && !e.isSpecialKey()){
14703             this.lastKey = e.getKey();
14704             this.dqTask.delay(this.queryDelay);
14705         }
14706     },
14707
14708     // private
14709     validateBlur : function(){
14710         return !this.list || !this.list.isVisible();   
14711     },
14712
14713     // private
14714     initQuery : function(){
14715         
14716         var v = this.getRawValue();
14717         
14718         if(this.tickable && this.editable){
14719             v = this.tickableInputEl().getValue();
14720         }
14721         
14722         this.doQuery(v);
14723     },
14724
14725     // private
14726     doForce : function(){
14727         if(this.inputEl().dom.value.length > 0){
14728             this.inputEl().dom.value =
14729                 this.lastSelectionText === undefined ? '' : this.lastSelectionText;
14730              
14731         }
14732     },
14733
14734     /**
14735      * Execute a query to filter the dropdown list.  Fires the beforequery event prior to performing the
14736      * query allowing the query action to be canceled if needed.
14737      * @param {String} query The SQL query to execute
14738      * @param {Boolean} forceAll True to force the query to execute even if there are currently fewer characters
14739      * in the field than the minimum specified by the minChars config option.  It also clears any filter previously
14740      * saved in the current store (defaults to false)
14741      */
14742     doQuery : function(q, forceAll){
14743         
14744         if(q === undefined || q === null){
14745             q = '';
14746         }
14747         var qe = {
14748             query: q,
14749             forceAll: forceAll,
14750             combo: this,
14751             cancel:false
14752         };
14753         if(this.fireEvent('beforequery', qe)===false || qe.cancel){
14754             return false;
14755         }
14756         q = qe.query;
14757         
14758         forceAll = qe.forceAll;
14759         if(forceAll === true || (q.length >= this.minChars)){
14760             
14761             this.hasQuery = true;
14762             
14763             if(this.lastQuery != q || this.alwaysQuery){
14764                 this.lastQuery = q;
14765                 if(this.mode == 'local'){
14766                     this.selectedIndex = -1;
14767                     if(forceAll){
14768                         this.store.clearFilter();
14769                     }else{
14770                         
14771                         if(this.specialFilter){
14772                             this.fireEvent('specialfilter', this);
14773                             this.onLoad();
14774                             return;
14775                         }
14776                         
14777                         this.store.filter(this.displayField, q);
14778                     }
14779                     
14780                     this.store.fireEvent("datachanged", this.store);
14781                     
14782                     this.onLoad();
14783                     
14784                     
14785                 }else{
14786                     
14787                     this.store.baseParams[this.queryParam] = q;
14788                     
14789                     var options = {params : this.getParams(q)};
14790                     
14791                     if(this.loadNext){
14792                         options.add = true;
14793                         options.params.start = this.page * this.pageSize;
14794                     }
14795                     
14796                     this.store.load(options);
14797                     
14798                     /*
14799                      *  this code will make the page width larger, at the beginning, the list not align correctly, 
14800                      *  we should expand the list on onLoad
14801                      *  so command out it
14802                      */
14803 //                    this.expand();
14804                 }
14805             }else{
14806                 this.selectedIndex = -1;
14807                 this.onLoad();   
14808             }
14809         }
14810         
14811         this.loadNext = false;
14812     },
14813     
14814     // private
14815     getParams : function(q){
14816         var p = {};
14817         //p[this.queryParam] = q;
14818         
14819         if(this.pageSize){
14820             p.start = 0;
14821             p.limit = this.pageSize;
14822         }
14823         return p;
14824     },
14825
14826     /**
14827      * Hides the dropdown list if it is currently expanded. Fires the 'collapse' event on completion.
14828      */
14829     collapse : function(){
14830         if(!this.isExpanded()){
14831             return;
14832         }
14833         
14834         this.list.hide();
14835         
14836         this.hasFocus = false;
14837         
14838         if(this.tickable){
14839             this.okBtn.hide();
14840             this.cancelBtn.hide();
14841             this.trigger.show();
14842             
14843             if(this.editable){
14844                 this.tickableInputEl().dom.value = '';
14845                 this.tickableInputEl().blur();
14846             }
14847             
14848         }
14849         
14850         Roo.get(document).un('mousedown', this.collapseIf, this);
14851         Roo.get(document).un('mousewheel', this.collapseIf, this);
14852         if (!this.editable) {
14853             Roo.get(document).un('keydown', this.listKeyPress, this);
14854         }
14855         this.fireEvent('collapse', this);
14856         
14857         this.validate();
14858     },
14859
14860     // private
14861     collapseIf : function(e){
14862         var in_combo  = e.within(this.el);
14863         var in_list =  e.within(this.list);
14864         var is_list = (Roo.get(e.getTarget()).id == this.list.id) ? true : false;
14865         
14866         if (in_combo || in_list || is_list) {
14867             //e.stopPropagation();
14868             return;
14869         }
14870         
14871         if(this.tickable){
14872             this.onTickableFooterButtonClick(e, false, false);
14873         }
14874
14875         this.collapse();
14876         
14877     },
14878
14879     /**
14880      * Expands the dropdown list if it is currently hidden. Fires the 'expand' event on completion.
14881      */
14882     expand : function(){
14883        
14884         if(this.isExpanded() || !this.hasFocus){
14885             return;
14886         }
14887         
14888         var lw = this.listWidth || Math.max(this.inputEl().getWidth(), this.minListWidth);
14889         this.list.setWidth(lw);
14890         
14891         Roo.log('expand');
14892         
14893         this.list.show();
14894         
14895         this.restrictHeight();
14896         
14897         if(this.tickable){
14898             
14899             this.tickItems = Roo.apply([], this.item);
14900             
14901             this.okBtn.show();
14902             this.cancelBtn.show();
14903             this.trigger.hide();
14904             
14905             if(this.editable){
14906                 this.tickableInputEl().focus();
14907             }
14908             
14909         }
14910         
14911         Roo.get(document).on('mousedown', this.collapseIf, this);
14912         Roo.get(document).on('mousewheel', this.collapseIf, this);
14913         if (!this.editable) {
14914             Roo.get(document).on('keydown', this.listKeyPress, this);
14915         }
14916         
14917         this.fireEvent('expand', this);
14918     },
14919
14920     // private
14921     // Implements the default empty TriggerField.onTriggerClick function
14922     onTriggerClick : function(e)
14923     {
14924         Roo.log('trigger click');
14925         
14926         if(this.disabled || !this.triggerList){
14927             return;
14928         }
14929         
14930         this.page = 0;
14931         this.loadNext = false;
14932         
14933         if(this.isExpanded()){
14934             this.collapse();
14935             if (!this.blockFocus) {
14936                 this.inputEl().focus();
14937             }
14938             
14939         }else {
14940             this.hasFocus = true;
14941             if(this.triggerAction == 'all') {
14942                 this.doQuery(this.allQuery, true);
14943             } else {
14944                 this.doQuery(this.getRawValue());
14945             }
14946             if (!this.blockFocus) {
14947                 this.inputEl().focus();
14948             }
14949         }
14950     },
14951     
14952     onTickableTriggerClick : function(e)
14953     {
14954         if(this.disabled){
14955             return;
14956         }
14957         
14958         this.page = 0;
14959         this.loadNext = false;
14960         this.hasFocus = true;
14961         
14962         if(this.triggerAction == 'all') {
14963             this.doQuery(this.allQuery, true);
14964         } else {
14965             this.doQuery(this.getRawValue());
14966         }
14967     },
14968     
14969     onSearchFieldClick : function(e)
14970     {
14971         if(this.hasFocus && !this.disabled && e.getTarget().nodeName.toLowerCase() != 'button'){
14972             this.onTickableFooterButtonClick(e, false, false);
14973             return;
14974         }
14975         
14976         if(this.hasFocus || this.disabled || e.getTarget().nodeName.toLowerCase() == 'button'){
14977             return;
14978         }
14979         
14980         this.page = 0;
14981         this.loadNext = false;
14982         this.hasFocus = true;
14983         
14984         if(this.triggerAction == 'all') {
14985             this.doQuery(this.allQuery, true);
14986         } else {
14987             this.doQuery(this.getRawValue());
14988         }
14989     },
14990     
14991     listKeyPress : function(e)
14992     {
14993         //Roo.log('listkeypress');
14994         // scroll to first matching element based on key pres..
14995         if (e.isSpecialKey()) {
14996             return false;
14997         }
14998         var k = String.fromCharCode(e.getKey()).toUpperCase();
14999         //Roo.log(k);
15000         var match  = false;
15001         var csel = this.view.getSelectedNodes();
15002         var cselitem = false;
15003         if (csel.length) {
15004             var ix = this.view.indexOf(csel[0]);
15005             cselitem  = this.store.getAt(ix);
15006             if (!cselitem.get(this.displayField) || cselitem.get(this.displayField).substring(0,1).toUpperCase() != k) {
15007                 cselitem = false;
15008             }
15009             
15010         }
15011         
15012         this.store.each(function(v) { 
15013             if (cselitem) {
15014                 // start at existing selection.
15015                 if (cselitem.id == v.id) {
15016                     cselitem = false;
15017                 }
15018                 return true;
15019             }
15020                 
15021             if (v.get(this.displayField) && v.get(this.displayField).substring(0,1).toUpperCase() == k) {
15022                 match = this.store.indexOf(v);
15023                 return false;
15024             }
15025             return true;
15026         }, this);
15027         
15028         if (match === false) {
15029             return true; // no more action?
15030         }
15031         // scroll to?
15032         this.view.select(match);
15033         var sn = Roo.get(this.view.getSelectedNodes()[0]);
15034         sn.scrollIntoView(sn.dom.parentNode, false);
15035     },
15036     
15037     onViewScroll : function(e, t){
15038         
15039         if(this.view.el.getScroll().top == 0 ||this.view.el.getScroll().top < this.view.el.dom.scrollHeight - this.view.el.dom.clientHeight || !this.hasFocus || !this.append || this.hasQuery){
15040             return;
15041         }
15042         
15043         this.hasQuery = true;
15044         
15045         this.loading = this.list.select('.loading', true).first();
15046         
15047         if(this.loading === null){
15048             this.list.createChild({
15049                 tag: 'div',
15050                 cls: 'loading roo-select2-more-results roo-select2-active',
15051                 html: 'Loading more results...'
15052             });
15053             
15054             this.loading = this.list.select('.loading', true).first();
15055             
15056             this.loading.setVisibilityMode(Roo.Element.DISPLAY);
15057             
15058             this.loading.hide();
15059         }
15060         
15061         this.loading.show();
15062         
15063         var _combo = this;
15064         
15065         this.page++;
15066         this.loadNext = true;
15067         
15068         (function() { _combo.doQuery(_combo.allQuery, true); }).defer(500);
15069         
15070         return;
15071     },
15072     
15073     addItem : function(o)
15074     {   
15075         var dv = ''; // display value
15076         
15077         if (this.displayField) {
15078             dv = !o || typeof(o[this.displayField]) == 'undefined' ? '' : o[this.displayField];
15079         } else {
15080             // this is an error condition!!!
15081             Roo.log('no  displayField value set for '+ (this.name ? this.name : this.id));
15082         }
15083         
15084         if(!dv.length){
15085             return;
15086         }
15087         
15088         var choice = this.choices.createChild({
15089             tag: 'li',
15090             cls: 'roo-select2-search-choice',
15091             cn: [
15092                 {
15093                     tag: 'div',
15094                     html: dv
15095                 },
15096                 {
15097                     tag: 'a',
15098                     href: '#',
15099                     cls: 'roo-select2-search-choice-close fa fa-times',
15100                     tabindex: '-1'
15101                 }
15102             ]
15103             
15104         }, this.searchField);
15105         
15106         var close = choice.select('a.roo-select2-search-choice-close', true).first();
15107         
15108         close.on('click', this.onRemoveItem, this, { item : choice, data : o} );
15109         
15110         this.item.push(o);
15111         
15112         this.lastData = o;
15113         
15114         this.syncValue();
15115         
15116         this.inputEl().dom.value = '';
15117         
15118         this.validate();
15119     },
15120     
15121     onRemoveItem : function(e, _self, o)
15122     {
15123         e.preventDefault();
15124         
15125         this.lastItem = Roo.apply([], this.item);
15126         
15127         var index = this.item.indexOf(o.data) * 1;
15128         
15129         if( index < 0){
15130             Roo.log('not this item?!');
15131             return;
15132         }
15133         
15134         this.item.splice(index, 1);
15135         o.item.remove();
15136         
15137         this.syncValue();
15138         
15139         this.fireEvent('remove', this, e);
15140         
15141         this.validate();
15142         
15143     },
15144     
15145     syncValue : function()
15146     {
15147         if(!this.item.length){
15148             this.clearValue();
15149             return;
15150         }
15151             
15152         var value = [];
15153         var _this = this;
15154         Roo.each(this.item, function(i){
15155             if(_this.valueField){
15156                 value.push(i[_this.valueField]);
15157                 return;
15158             }
15159
15160             value.push(i);
15161         });
15162
15163         this.value = value.join(',');
15164
15165         if(this.hiddenField){
15166             this.hiddenField.dom.value = this.value;
15167         }
15168         
15169         this.store.fireEvent("datachanged", this.store);
15170         
15171         this.validate();
15172     },
15173     
15174     clearItem : function()
15175     {
15176         if(!this.multiple){
15177             return;
15178         }
15179         
15180         this.item = [];
15181         
15182         Roo.each(this.choices.select('>li.roo-select2-search-choice', true).elements, function(c){
15183            c.remove();
15184         });
15185         
15186         this.syncValue();
15187         
15188         this.validate();
15189         
15190         if(this.tickable && !Roo.isTouch){
15191             this.view.refresh();
15192         }
15193     },
15194     
15195     inputEl: function ()
15196     {
15197         if(Roo.isIOS && this.useNativeIOS){
15198             return this.el.select('select.roo-ios-select', true).first();
15199         }
15200         
15201         if(Roo.isTouch && this.mobileTouchView){
15202             return this.el.select('input.form-control',true).first();
15203         }
15204         
15205         if(this.tickable){
15206             return this.searchField;
15207         }
15208         
15209         return this.el.select('input.form-control',true).first();
15210     },
15211     
15212     onTickableFooterButtonClick : function(e, btn, el)
15213     {
15214         e.preventDefault();
15215         
15216         this.lastItem = Roo.apply([], this.item);
15217         
15218         if(btn && btn.name == 'cancel'){
15219             this.tickItems = Roo.apply([], this.item);
15220             this.collapse();
15221             return;
15222         }
15223         
15224         this.clearItem();
15225         
15226         var _this = this;
15227         
15228         Roo.each(this.tickItems, function(o){
15229             _this.addItem(o);
15230         });
15231         
15232         this.collapse();
15233         
15234     },
15235     
15236     validate : function()
15237     {
15238         if(this.getVisibilityEl().hasClass('hidden')){
15239             return true;
15240         }
15241         
15242         var v = this.getRawValue();
15243         
15244         if(this.multiple){
15245             v = this.getValue();
15246         }
15247         
15248         if(this.disabled || this.allowBlank || v.length){
15249             this.markValid();
15250             return true;
15251         }
15252         
15253         this.markInvalid();
15254         return false;
15255     },
15256     
15257     tickableInputEl : function()
15258     {
15259         if(!this.tickable || !this.editable){
15260             return this.inputEl();
15261         }
15262         
15263         return this.inputEl().select('.roo-select2-search-field-input', true).first();
15264     },
15265     
15266     
15267     getAutoCreateTouchView : function()
15268     {
15269         var id = Roo.id();
15270         
15271         var cfg = {
15272             cls: 'form-group' //input-group
15273         };
15274         
15275         var input =  {
15276             tag: 'input',
15277             id : id,
15278             type : this.inputType,
15279             cls : 'form-control x-combo-noedit',
15280             autocomplete: 'new-password',
15281             placeholder : this.placeholder || '',
15282             readonly : true
15283         };
15284         
15285         if (this.name) {
15286             input.name = this.name;
15287         }
15288         
15289         if (this.size) {
15290             input.cls += ' input-' + this.size;
15291         }
15292         
15293         if (this.disabled) {
15294             input.disabled = true;
15295         }
15296         
15297         var inputblock = {
15298             cls : '',
15299             cn : [
15300                 input
15301             ]
15302         };
15303         
15304         if(this.before){
15305             inputblock.cls += ' input-group';
15306             
15307             inputblock.cn.unshift({
15308                 tag :'span',
15309                 cls : 'input-group-addon input-group-prepend input-group-text',
15310                 html : this.before
15311             });
15312         }
15313         
15314         if(this.removable && !this.multiple){
15315             inputblock.cls += ' roo-removable';
15316             
15317             inputblock.cn.push({
15318                 tag: 'button',
15319                 html : 'x',
15320                 cls : 'roo-combo-removable-btn close'
15321             });
15322         }
15323
15324         if(this.hasFeedback && !this.allowBlank){
15325             
15326             inputblock.cls += ' has-feedback';
15327             
15328             inputblock.cn.push({
15329                 tag: 'span',
15330                 cls: 'glyphicon form-control-feedback'
15331             });
15332             
15333         }
15334         
15335         if (this.after) {
15336             
15337             inputblock.cls += (this.before) ? '' : ' input-group';
15338             
15339             inputblock.cn.push({
15340                 tag :'span',
15341                 cls : 'input-group-addon input-group-append input-group-text',
15342                 html : this.after
15343             });
15344         }
15345
15346         
15347         var ibwrap = inputblock;
15348         
15349         if(this.multiple){
15350             ibwrap = {
15351                 tag: 'ul',
15352                 cls: 'roo-select2-choices',
15353                 cn:[
15354                     {
15355                         tag: 'li',
15356                         cls: 'roo-select2-search-field',
15357                         cn: [
15358
15359                             inputblock
15360                         ]
15361                     }
15362                 ]
15363             };
15364         
15365             
15366         }
15367         
15368         var combobox = {
15369             cls: 'roo-select2-container input-group roo-touchview-combobox ',
15370             cn: [
15371                 {
15372                     tag: 'input',
15373                     type : 'hidden',
15374                     cls: 'form-hidden-field'
15375                 },
15376                 ibwrap
15377             ]
15378         };
15379         
15380         if(!this.multiple && this.showToggleBtn){
15381             
15382             var caret = {
15383                         tag: 'span',
15384                         cls: 'caret'
15385             };
15386             
15387             if (this.caret != false) {
15388                 caret = {
15389                      tag: 'i',
15390                      cls: 'fa fa-' + this.caret
15391                 };
15392                 
15393             }
15394             
15395             combobox.cn.push({
15396                 tag :'span',
15397                 cls : 'input-group-addon input-group-append input-group-text btn dropdown-toggle',
15398                 cn : [
15399                     caret,
15400                     {
15401                         tag: 'span',
15402                         cls: 'combobox-clear',
15403                         cn  : [
15404                             {
15405                                 tag : 'i',
15406                                 cls: 'icon-remove'
15407                             }
15408                         ]
15409                     }
15410                 ]
15411
15412             })
15413         }
15414         
15415         if(this.multiple){
15416             combobox.cls += ' roo-select2-container-multi';
15417         }
15418         
15419         var align = this.labelAlign || this.parentLabelAlign();
15420         
15421         if (align ==='left' && this.fieldLabel.length) {
15422
15423             cfg.cn = [
15424                 {
15425                    tag : 'i',
15426                    cls : 'roo-required-indicator left-indicator text-danger fa fa-lg fa-star',
15427                    tooltip : 'This field is required'
15428                 },
15429                 {
15430                     tag: 'label',
15431                     cls : 'control-label col-form-label',
15432                     html : this.fieldLabel
15433
15434                 },
15435                 {
15436                     cls : '', 
15437                     cn: [
15438                         combobox
15439                     ]
15440                 }
15441             ];
15442             
15443             var labelCfg = cfg.cn[1];
15444             var contentCfg = cfg.cn[2];
15445             
15446
15447             if(this.indicatorpos == 'right'){
15448                 cfg.cn = [
15449                     {
15450                         tag: 'label',
15451                         'for' :  id,
15452                         cls : 'control-label col-form-label',
15453                         cn : [
15454                             {
15455                                 tag : 'span',
15456                                 html : this.fieldLabel
15457                             },
15458                             {
15459                                 tag : 'i',
15460                                 cls : 'roo-required-indicator right-indicator text-danger fa fa-lg fa-star',
15461                                 tooltip : 'This field is required'
15462                             }
15463                         ]
15464                     },
15465                     {
15466                         cls : "",
15467                         cn: [
15468                             combobox
15469                         ]
15470                     }
15471
15472                 ];
15473                 
15474                 labelCfg = cfg.cn[0];
15475                 contentCfg = cfg.cn[1];
15476             }
15477             
15478            
15479             
15480             if(this.labelWidth > 12){
15481                 labelCfg.style = "width: " + this.labelWidth + 'px';
15482             }
15483             
15484             if(this.labelWidth < 13 && this.labelmd == 0){
15485                 this.labelmd = this.labelWidth;
15486             }
15487             
15488             if(this.labellg > 0){
15489                 labelCfg.cls += ' col-lg-' + this.labellg;
15490                 contentCfg.cls += ' col-lg-' + (12 - this.labellg);
15491             }
15492             
15493             if(this.labelmd > 0){
15494                 labelCfg.cls += ' col-md-' + this.labelmd;
15495                 contentCfg.cls += ' col-md-' + (12 - this.labelmd);
15496             }
15497             
15498             if(this.labelsm > 0){
15499                 labelCfg.cls += ' col-sm-' + this.labelsm;
15500                 contentCfg.cls += ' col-sm-' + (12 - this.labelsm);
15501             }
15502             
15503             if(this.labelxs > 0){
15504                 labelCfg.cls += ' col-xs-' + this.labelxs;
15505                 contentCfg.cls += ' col-xs-' + (12 - this.labelxs);
15506             }
15507                 
15508                 
15509         } else if ( this.fieldLabel.length) {
15510             cfg.cn = [
15511                 {
15512                    tag : 'i',
15513                    cls : 'roo-required-indicator left-indicator text-danger fa fa-lg fa-star',
15514                    tooltip : 'This field is required'
15515                 },
15516                 {
15517                     tag: 'label',
15518                     cls : 'control-label',
15519                     html : this.fieldLabel
15520
15521                 },
15522                 {
15523                     cls : '', 
15524                     cn: [
15525                         combobox
15526                     ]
15527                 }
15528             ];
15529             
15530             if(this.indicatorpos == 'right'){
15531                 cfg.cn = [
15532                     {
15533                         tag: 'label',
15534                         cls : 'control-label',
15535                         html : this.fieldLabel,
15536                         cn : [
15537                             {
15538                                tag : 'i',
15539                                cls : 'roo-required-indicator right-indicator text-danger fa fa-lg fa-star',
15540                                tooltip : 'This field is required'
15541                             }
15542                         ]
15543                     },
15544                     {
15545                         cls : '', 
15546                         cn: [
15547                             combobox
15548                         ]
15549                     }
15550                 ];
15551             }
15552         } else {
15553             cfg.cn = combobox;    
15554         }
15555         
15556         
15557         var settings = this;
15558         
15559         ['xs','sm','md','lg'].map(function(size){
15560             if (settings[size]) {
15561                 cfg.cls += ' col-' + size + '-' + settings[size];
15562             }
15563         });
15564         
15565         return cfg;
15566     },
15567     
15568     initTouchView : function()
15569     {
15570         this.renderTouchView();
15571         
15572         this.touchViewEl.on('scroll', function(){
15573             this.el.dom.scrollTop = 0;
15574         }, this);
15575         
15576         this.originalValue = this.getValue();
15577         
15578         this.triggerEl = this.el.select('span.dropdown-toggle',true).first();
15579         
15580         this.inputEl().on("click", this.showTouchView, this);
15581         if (this.triggerEl) {
15582             this.triggerEl.on("click", this.showTouchView, this);
15583         }
15584         
15585         
15586         this.touchViewFooterEl.select('.roo-touch-view-cancel', true).first().on('click', this.hideTouchView, this);
15587         this.touchViewFooterEl.select('.roo-touch-view-ok', true).first().on('click', this.setTouchViewValue, this);
15588         
15589         this.maskEl = new Roo.LoadMask(this.touchViewEl, { store : this.store, msgCls: 'roo-el-mask-msg' });
15590         
15591         this.store.on('beforeload', this.onTouchViewBeforeLoad, this);
15592         this.store.on('load', this.onTouchViewLoad, this);
15593         this.store.on('loadexception', this.onTouchViewLoadException, this);
15594         
15595         if(this.hiddenName){
15596             
15597             this.hiddenField = this.el.select('input.form-hidden-field',true).first();
15598             
15599             this.hiddenField.dom.value =
15600                 this.hiddenValue !== undefined ? this.hiddenValue :
15601                 this.value !== undefined ? this.value : '';
15602         
15603             this.el.dom.removeAttribute('name');
15604             this.hiddenField.dom.setAttribute('name', this.hiddenName);
15605         }
15606         
15607         if(this.multiple){
15608             this.choices = this.el.select('ul.roo-select2-choices', true).first();
15609             this.searchField = this.el.select('ul li.roo-select2-search-field', true).first();
15610         }
15611         
15612         if(this.removable && !this.multiple){
15613             var close = this.closeTriggerEl();
15614             if(close){
15615                 close.setVisibilityMode(Roo.Element.DISPLAY).hide();
15616                 close.on('click', this.removeBtnClick, this, close);
15617             }
15618         }
15619         /*
15620          * fix the bug in Safari iOS8
15621          */
15622         this.inputEl().on("focus", function(e){
15623             document.activeElement.blur();
15624         }, this);
15625         
15626         this._touchViewMask = Roo.DomHelper.append(document.body, {tag: "div", cls:"x-dlg-mask"}, true);
15627         
15628         return;
15629         
15630         
15631     },
15632     
15633     renderTouchView : function()
15634     {
15635         this.touchViewEl = Roo.get(document.body).createChild(Roo.bootstrap.ComboBox.touchViewTemplate);
15636         this.touchViewEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
15637         
15638         this.touchViewHeaderEl = this.touchViewEl.select('.modal-header', true).first();
15639         this.touchViewHeaderEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
15640         
15641         this.touchViewBodyEl = this.touchViewEl.select('.modal-body', true).first();
15642         this.touchViewBodyEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
15643         this.touchViewBodyEl.setStyle('overflow', 'auto');
15644         
15645         this.touchViewListGroup = this.touchViewBodyEl.select('.list-group', true).first();
15646         this.touchViewListGroup.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
15647         
15648         this.touchViewFooterEl = this.touchViewEl.select('.modal-footer', true).first();
15649         this.touchViewFooterEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
15650         
15651     },
15652     
15653     showTouchView : function()
15654     {
15655         if(this.disabled){
15656             return;
15657         }
15658         
15659         this.touchViewHeaderEl.hide();
15660
15661         if(this.modalTitle.length){
15662             this.touchViewHeaderEl.dom.innerHTML = this.modalTitle;
15663             this.touchViewHeaderEl.show();
15664         }
15665
15666         this.touchViewEl.setStyle('z-index', Roo.bootstrap.Modal.zIndex++);
15667         this.touchViewEl.show();
15668
15669         this.touchViewEl.select('.modal-dialog', true).first().setStyle({ margin : '0px', width : '100%'});
15670         
15671         //this.touchViewEl.select('.modal-dialog > .modal-content', true).first().setSize(
15672         //        Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
15673
15674         var bodyHeight = Roo.lib.Dom.getViewHeight() - this.touchViewFooterEl.getHeight() + this.touchViewBodyEl.getPadding('tb');
15675
15676         if(this.modalTitle.length){
15677             bodyHeight = bodyHeight - this.touchViewHeaderEl.getHeight();
15678         }
15679         
15680         this.touchViewBodyEl.setHeight(bodyHeight);
15681
15682         if(this.animate){
15683             var _this = this;
15684             (function(){ _this.touchViewEl.addClass('in'); }).defer(50);
15685         }else{
15686             this.touchViewEl.addClass('in');
15687         }
15688         
15689         if(this._touchViewMask){
15690             Roo.get(document.body).addClass("x-body-masked");
15691             this._touchViewMask.setSize(Roo.lib.Dom.getViewWidth(true),   Roo.lib.Dom.getViewHeight(true));
15692             this._touchViewMask.setStyle('z-index', 10000);
15693             this._touchViewMask.addClass('show');
15694         }
15695         
15696         this.doTouchViewQuery();
15697         
15698     },
15699     
15700     hideTouchView : function()
15701     {
15702         this.touchViewEl.removeClass('in');
15703
15704         if(this.animate){
15705             var _this = this;
15706             (function(){ _this.touchViewEl.setStyle('display', 'none'); }).defer(150);
15707         }else{
15708             this.touchViewEl.setStyle('display', 'none');
15709         }
15710         
15711         if(this._touchViewMask){
15712             this._touchViewMask.removeClass('show');
15713             Roo.get(document.body).removeClass("x-body-masked");
15714         }
15715     },
15716     
15717     setTouchViewValue : function()
15718     {
15719         if(this.multiple){
15720             this.clearItem();
15721         
15722             var _this = this;
15723
15724             Roo.each(this.tickItems, function(o){
15725                 this.addItem(o);
15726             }, this);
15727         }
15728         
15729         this.hideTouchView();
15730     },
15731     
15732     doTouchViewQuery : function()
15733     {
15734         var qe = {
15735             query: '',
15736             forceAll: true,
15737             combo: this,
15738             cancel:false
15739         };
15740         
15741         if(this.fireEvent('beforequery', qe) ===false || qe.cancel){
15742             return false;
15743         }
15744         
15745         if(!this.alwaysQuery || this.mode == 'local'){
15746             this.onTouchViewLoad();
15747             return;
15748         }
15749         
15750         this.store.load();
15751     },
15752     
15753     onTouchViewBeforeLoad : function(combo,opts)
15754     {
15755         return;
15756     },
15757
15758     // private
15759     onTouchViewLoad : function()
15760     {
15761         if(this.store.getCount() < 1){
15762             this.onTouchViewEmptyResults();
15763             return;
15764         }
15765         
15766         this.clearTouchView();
15767         
15768         var rawValue = this.getRawValue();
15769         
15770         var template = (this.multiple) ? Roo.bootstrap.ComboBox.listItemCheckbox : Roo.bootstrap.ComboBox.listItemRadio;
15771         
15772         this.tickItems = [];
15773         
15774         this.store.data.each(function(d, rowIndex){
15775             var row = this.touchViewListGroup.createChild(template);
15776             
15777             if(typeof(d.data.cls) != 'undefined' && d.data.cls.length){
15778                 row.addClass(d.data.cls);
15779             }
15780             
15781             if(this.displayField && typeof(d.data[this.displayField]) != 'undefined'){
15782                 var cfg = {
15783                     data : d.data,
15784                     html : d.data[this.displayField]
15785                 };
15786                 
15787                 if(this.fireEvent('touchviewdisplay', this, cfg) !== false){
15788                     row.select('.roo-combobox-list-group-item-value', true).first().dom.innerHTML = cfg.html;
15789                 }
15790             }
15791             row.removeClass('selected');
15792             if(!this.multiple && this.valueField &&
15793                     typeof(d.data[this.valueField]) != 'undefined' && d.data[this.valueField] == this.getValue())
15794             {
15795                 // radio buttons..
15796                 row.select('.roo-combobox-list-group-item-box > input', true).first().attr('checked', true);
15797                 row.addClass('selected');
15798             }
15799             
15800             if(this.multiple && this.valueField &&
15801                     typeof(d.data[this.valueField]) != 'undefined' && this.getValue().indexOf(d.data[this.valueField]) != -1)
15802             {
15803                 
15804                 // checkboxes...
15805                 row.select('.roo-combobox-list-group-item-box > input', true).first().attr('checked', true);
15806                 this.tickItems.push(d.data);
15807             }
15808             
15809             row.on('click', this.onTouchViewClick, this, {row : row, rowIndex : rowIndex});
15810             
15811         }, this);
15812         
15813         var firstChecked = this.touchViewListGroup.select('.list-group-item > .roo-combobox-list-group-item-box > input:checked', true).first();
15814         
15815         var bodyHeight = Roo.lib.Dom.getViewHeight() - this.touchViewFooterEl.getHeight() + this.touchViewBodyEl.getPadding('tb');
15816
15817         if(this.modalTitle.length){
15818             bodyHeight = bodyHeight - this.touchViewHeaderEl.getHeight();
15819         }
15820
15821         var listHeight = this.touchViewListGroup.getHeight() + this.touchViewBodyEl.getPadding('tb') * 2;
15822         
15823         if(this.mobile_restrict_height && listHeight < bodyHeight){
15824             this.touchViewBodyEl.setHeight(listHeight);
15825         }
15826         
15827         var _this = this;
15828         
15829         if(firstChecked && listHeight > bodyHeight){
15830             (function() { firstChecked.findParent('li').scrollIntoView(_this.touchViewListGroup.dom); }).defer(500);
15831         }
15832         
15833     },
15834     
15835     onTouchViewLoadException : function()
15836     {
15837         this.hideTouchView();
15838     },
15839     
15840     onTouchViewEmptyResults : function()
15841     {
15842         this.clearTouchView();
15843         
15844         this.touchViewListGroup.createChild(Roo.bootstrap.ComboBox.emptyResult);
15845         
15846         this.touchViewListGroup.select('.roo-combobox-touch-view-empty-result', true).first().dom.innerHTML = this.emptyResultText;
15847         
15848     },
15849     
15850     clearTouchView : function()
15851     {
15852         this.touchViewListGroup.dom.innerHTML = '';
15853     },
15854     
15855     onTouchViewClick : function(e, el, o)
15856     {
15857         e.preventDefault();
15858         
15859         var row = o.row;
15860         var rowIndex = o.rowIndex;
15861         
15862         var r = this.store.getAt(rowIndex);
15863         
15864         if(this.fireEvent('beforeselect', this, r, rowIndex) !== false){
15865             
15866             if(!this.multiple){
15867                 Roo.each(this.touchViewListGroup.select('.list-group-item > .roo-combobox-list-group-item-box > input:checked', true).elements, function(c){
15868                     c.dom.removeAttribute('checked');
15869                 }, this);
15870
15871                 row.select('.roo-combobox-list-group-item-box > input', true).first().attr('checked', true);
15872
15873                 this.setFromData(r.data);
15874
15875                 var close = this.closeTriggerEl();
15876
15877                 if(close){
15878                     close.show();
15879                 }
15880
15881                 this.hideTouchView();
15882
15883                 this.fireEvent('select', this, r, rowIndex);
15884
15885                 return;
15886             }
15887
15888             if(this.valueField && typeof(r.data[this.valueField]) != 'undefined' && this.getValue().indexOf(r.data[this.valueField]) != -1){
15889                 row.select('.roo-combobox-list-group-item-box > input', true).first().dom.removeAttribute('checked');
15890                 this.tickItems.splice(this.tickItems.indexOf(r.data), 1);
15891                 return;
15892             }
15893
15894             row.select('.roo-combobox-list-group-item-box > input', true).first().attr('checked', true);
15895             this.addItem(r.data);
15896             this.tickItems.push(r.data);
15897         }
15898     },
15899     
15900     getAutoCreateNativeIOS : function()
15901     {
15902         var cfg = {
15903             cls: 'form-group' //input-group,
15904         };
15905         
15906         var combobox =  {
15907             tag: 'select',
15908             cls : 'roo-ios-select'
15909         };
15910         
15911         if (this.name) {
15912             combobox.name = this.name;
15913         }
15914         
15915         if (this.disabled) {
15916             combobox.disabled = true;
15917         }
15918         
15919         var settings = this;
15920         
15921         ['xs','sm','md','lg'].map(function(size){
15922             if (settings[size]) {
15923                 cfg.cls += ' col-' + size + '-' + settings[size];
15924             }
15925         });
15926         
15927         cfg.cn = combobox;
15928         
15929         return cfg;
15930         
15931     },
15932     
15933     initIOSView : function()
15934     {
15935         this.store.on('load', this.onIOSViewLoad, this);
15936         
15937         return;
15938     },
15939     
15940     onIOSViewLoad : function()
15941     {
15942         if(this.store.getCount() < 1){
15943             return;
15944         }
15945         
15946         this.clearIOSView();
15947         
15948         if(this.allowBlank) {
15949             
15950             var default_text = '-- SELECT --';
15951             
15952             if(this.placeholder.length){
15953                 default_text = this.placeholder;
15954             }
15955             
15956             if(this.emptyTitle.length){
15957                 default_text += ' - ' + this.emptyTitle + ' -';
15958             }
15959             
15960             var opt = this.inputEl().createChild({
15961                 tag: 'option',
15962                 value : 0,
15963                 html : default_text
15964             });
15965             
15966             var o = {};
15967             o[this.valueField] = 0;
15968             o[this.displayField] = default_text;
15969             
15970             this.ios_options.push({
15971                 data : o,
15972                 el : opt
15973             });
15974             
15975         }
15976         
15977         this.store.data.each(function(d, rowIndex){
15978             
15979             var html = '';
15980             
15981             if(this.displayField && typeof(d.data[this.displayField]) != 'undefined'){
15982                 html = d.data[this.displayField];
15983             }
15984             
15985             var value = '';
15986             
15987             if(this.valueField && typeof(d.data[this.valueField]) != 'undefined'){
15988                 value = d.data[this.valueField];
15989             }
15990             
15991             var option = {
15992                 tag: 'option',
15993                 value : value,
15994                 html : html
15995             };
15996             
15997             if(this.value == d.data[this.valueField]){
15998                 option['selected'] = true;
15999             }
16000             
16001             var opt = this.inputEl().createChild(option);
16002             
16003             this.ios_options.push({
16004                 data : d.data,
16005                 el : opt
16006             });
16007             
16008         }, this);
16009         
16010         this.inputEl().on('change', function(){
16011            this.fireEvent('select', this);
16012         }, this);
16013         
16014     },
16015     
16016     clearIOSView: function()
16017     {
16018         this.inputEl().dom.innerHTML = '';
16019         
16020         this.ios_options = [];
16021     },
16022     
16023     setIOSValue: function(v)
16024     {
16025         this.value = v;
16026         
16027         if(!this.ios_options){
16028             return;
16029         }
16030         
16031         Roo.each(this.ios_options, function(opts){
16032            
16033            opts.el.dom.removeAttribute('selected');
16034            
16035            if(opts.data[this.valueField] != v){
16036                return;
16037            }
16038            
16039            opts.el.dom.setAttribute('selected', true);
16040            
16041         }, this);
16042     }
16043
16044     /** 
16045     * @cfg {Boolean} grow 
16046     * @hide 
16047     */
16048     /** 
16049     * @cfg {Number} growMin 
16050     * @hide 
16051     */
16052     /** 
16053     * @cfg {Number} growMax 
16054     * @hide 
16055     */
16056     /**
16057      * @hide
16058      * @method autoSize
16059      */
16060 });
16061
16062 Roo.apply(Roo.bootstrap.ComboBox,  {
16063     
16064     header : {
16065         tag: 'div',
16066         cls: 'modal-header',
16067         cn: [
16068             {
16069                 tag: 'h4',
16070                 cls: 'modal-title'
16071             }
16072         ]
16073     },
16074     
16075     body : {
16076         tag: 'div',
16077         cls: 'modal-body',
16078         cn: [
16079             {
16080                 tag: 'ul',
16081                 cls: 'list-group'
16082             }
16083         ]
16084     },
16085     
16086     listItemRadio : {
16087         tag: 'li',
16088         cls: 'list-group-item',
16089         cn: [
16090             {
16091                 tag: 'span',
16092                 cls: 'roo-combobox-list-group-item-value'
16093             },
16094             {
16095                 tag: 'div',
16096                 cls: 'roo-combobox-list-group-item-box pull-xs-right radio-inline radio radio-info',
16097                 cn: [
16098                     {
16099                         tag: 'input',
16100                         type: 'radio'
16101                     },
16102                     {
16103                         tag: 'label'
16104                     }
16105                 ]
16106             }
16107         ]
16108     },
16109     
16110     listItemCheckbox : {
16111         tag: 'li',
16112         cls: 'list-group-item',
16113         cn: [
16114             {
16115                 tag: 'span',
16116                 cls: 'roo-combobox-list-group-item-value'
16117             },
16118             {
16119                 tag: 'div',
16120                 cls: 'roo-combobox-list-group-item-box pull-xs-right checkbox-inline checkbox checkbox-info',
16121                 cn: [
16122                     {
16123                         tag: 'input',
16124                         type: 'checkbox'
16125                     },
16126                     {
16127                         tag: 'label'
16128                     }
16129                 ]
16130             }
16131         ]
16132     },
16133     
16134     emptyResult : {
16135         tag: 'div',
16136         cls: 'alert alert-danger roo-combobox-touch-view-empty-result'
16137     },
16138     
16139     footer : {
16140         tag: 'div',
16141         cls: 'modal-footer',
16142         cn: [
16143             {
16144                 tag: 'div',
16145                 cls: 'row',
16146                 cn: [
16147                     {
16148                         tag: 'div',
16149                         cls: 'col-xs-6 text-left',
16150                         cn: {
16151                             tag: 'button',
16152                             cls: 'btn btn-danger roo-touch-view-cancel',
16153                             html: 'Cancel'
16154                         }
16155                     },
16156                     {
16157                         tag: 'div',
16158                         cls: 'col-xs-6 text-right',
16159                         cn: {
16160                             tag: 'button',
16161                             cls: 'btn btn-success roo-touch-view-ok',
16162                             html: 'OK'
16163                         }
16164                     }
16165                 ]
16166             }
16167         ]
16168         
16169     }
16170 });
16171
16172 Roo.apply(Roo.bootstrap.ComboBox,  {
16173     
16174     touchViewTemplate : {
16175         tag: 'div',
16176         cls: 'modal fade roo-combobox-touch-view',
16177         cn: [
16178             {
16179                 tag: 'div',
16180                 cls: 'modal-dialog',
16181                 style : 'position:fixed', // we have to fix position....
16182                 cn: [
16183                     {
16184                         tag: 'div',
16185                         cls: 'modal-content',
16186                         cn: [
16187                             Roo.bootstrap.ComboBox.header,
16188                             Roo.bootstrap.ComboBox.body,
16189                             Roo.bootstrap.ComboBox.footer
16190                         ]
16191                     }
16192                 ]
16193             }
16194         ]
16195     }
16196 });/*
16197  * Based on:
16198  * Ext JS Library 1.1.1
16199  * Copyright(c) 2006-2007, Ext JS, LLC.
16200  *
16201  * Originally Released Under LGPL - original licence link has changed is not relivant.
16202  *
16203  * Fork - LGPL
16204  * <script type="text/javascript">
16205  */
16206
16207 /**
16208  * @class Roo.View
16209  * @extends Roo.util.Observable
16210  * Create a "View" for an element based on a data model or UpdateManager and the supplied DomHelper template. 
16211  * This class also supports single and multi selection modes. <br>
16212  * Create a data model bound view:
16213  <pre><code>
16214  var store = new Roo.data.Store(...);
16215
16216  var view = new Roo.View({
16217     el : "my-element",
16218     tpl : '&lt;div id="{0}"&gt;{2} - {1}&lt;/div&gt;', // auto create template
16219  
16220     singleSelect: true,
16221     selectedClass: "ydataview-selected",
16222     store: store
16223  });
16224
16225  // listen for node click?
16226  view.on("click", function(vw, index, node, e){
16227  alert('Node "' + node.id + '" at index: ' + index + " was clicked.");
16228  });
16229
16230  // load XML data
16231  dataModel.load("foobar.xml");
16232  </code></pre>
16233  For an example of creating a JSON/UpdateManager view, see {@link Roo.JsonView}.
16234  * <br><br>
16235  * <b>Note: The root of your template must be a single node. Table/row implementations may work but are not supported due to
16236  * IE"s limited insertion support with tables and Opera"s faulty event bubbling.</b>
16237  * 
16238  * Note: old style constructor is still suported (container, template, config)
16239  * 
16240  * @constructor
16241  * Create a new View
16242  * @param {Object} config The config object
16243  * 
16244  */
16245 Roo.View = function(config, depreciated_tpl, depreciated_config){
16246     
16247     this.parent = false;
16248     
16249     if (typeof(depreciated_tpl) == 'undefined') {
16250         // new way.. - universal constructor.
16251         Roo.apply(this, config);
16252         this.el  = Roo.get(this.el);
16253     } else {
16254         // old format..
16255         this.el  = Roo.get(config);
16256         this.tpl = depreciated_tpl;
16257         Roo.apply(this, depreciated_config);
16258     }
16259     this.wrapEl  = this.el.wrap().wrap();
16260     ///this.el = this.wrapEla.appendChild(document.createElement("div"));
16261     
16262     
16263     if(typeof(this.tpl) == "string"){
16264         this.tpl = new Roo.Template(this.tpl);
16265     } else {
16266         // support xtype ctors..
16267         this.tpl = new Roo.factory(this.tpl, Roo);
16268     }
16269     
16270     
16271     this.tpl.compile();
16272     
16273     /** @private */
16274     this.addEvents({
16275         /**
16276          * @event beforeclick
16277          * Fires before a click is processed. Returns false to cancel the default action.
16278          * @param {Roo.View} this
16279          * @param {Number} index The index of the target node
16280          * @param {HTMLElement} node The target node
16281          * @param {Roo.EventObject} e The raw event object
16282          */
16283             "beforeclick" : true,
16284         /**
16285          * @event click
16286          * Fires when a template node is clicked.
16287          * @param {Roo.View} this
16288          * @param {Number} index The index of the target node
16289          * @param {HTMLElement} node The target node
16290          * @param {Roo.EventObject} e The raw event object
16291          */
16292             "click" : true,
16293         /**
16294          * @event dblclick
16295          * Fires when a template node is double clicked.
16296          * @param {Roo.View} this
16297          * @param {Number} index The index of the target node
16298          * @param {HTMLElement} node The target node
16299          * @param {Roo.EventObject} e The raw event object
16300          */
16301             "dblclick" : true,
16302         /**
16303          * @event contextmenu
16304          * Fires when a template node is right clicked.
16305          * @param {Roo.View} this
16306          * @param {Number} index The index of the target node
16307          * @param {HTMLElement} node The target node
16308          * @param {Roo.EventObject} e The raw event object
16309          */
16310             "contextmenu" : true,
16311         /**
16312          * @event selectionchange
16313          * Fires when the selected nodes change.
16314          * @param {Roo.View} this
16315          * @param {Array} selections Array of the selected nodes
16316          */
16317             "selectionchange" : true,
16318     
16319         /**
16320          * @event beforeselect
16321          * Fires before a selection is made. If any handlers return false, the selection is cancelled.
16322          * @param {Roo.View} this
16323          * @param {HTMLElement} node The node to be selected
16324          * @param {Array} selections Array of currently selected nodes
16325          */
16326             "beforeselect" : true,
16327         /**
16328          * @event preparedata
16329          * Fires on every row to render, to allow you to change the data.
16330          * @param {Roo.View} this
16331          * @param {Object} data to be rendered (change this)
16332          */
16333           "preparedata" : true
16334           
16335           
16336         });
16337
16338
16339
16340     this.el.on({
16341         "click": this.onClick,
16342         "dblclick": this.onDblClick,
16343         "contextmenu": this.onContextMenu,
16344         scope:this
16345     });
16346
16347     this.selections = [];
16348     this.nodes = [];
16349     this.cmp = new Roo.CompositeElementLite([]);
16350     if(this.store){
16351         this.store = Roo.factory(this.store, Roo.data);
16352         this.setStore(this.store, true);
16353     }
16354     
16355     if ( this.footer && this.footer.xtype) {
16356            
16357          var fctr = this.wrapEl.appendChild(document.createElement("div"));
16358         
16359         this.footer.dataSource = this.store;
16360         this.footer.container = fctr;
16361         this.footer = Roo.factory(this.footer, Roo);
16362         fctr.insertFirst(this.el);
16363         
16364         // this is a bit insane - as the paging toolbar seems to detach the el..
16365 //        dom.parentNode.parentNode.parentNode
16366          // they get detached?
16367     }
16368     
16369     
16370     Roo.View.superclass.constructor.call(this);
16371     
16372     
16373 };
16374
16375 Roo.extend(Roo.View, Roo.util.Observable, {
16376     
16377      /**
16378      * @cfg {Roo.data.Store} store Data store to load data from.
16379      */
16380     store : false,
16381     
16382     /**
16383      * @cfg {String|Roo.Element} el The container element.
16384      */
16385     el : '',
16386     
16387     /**
16388      * @cfg {String|Roo.Template} tpl The template used by this View 
16389      */
16390     tpl : false,
16391     /**
16392      * @cfg {String} dataName the named area of the template to use as the data area
16393      *                          Works with domtemplates roo-name="name"
16394      */
16395     dataName: false,
16396     /**
16397      * @cfg {String} selectedClass The css class to add to selected nodes
16398      */
16399     selectedClass : "x-view-selected",
16400      /**
16401      * @cfg {String} emptyText The empty text to show when nothing is loaded.
16402      */
16403     emptyText : "",
16404     
16405     /**
16406      * @cfg {String} text to display on mask (default Loading)
16407      */
16408     mask : false,
16409     /**
16410      * @cfg {Boolean} multiSelect Allow multiple selection
16411      */
16412     multiSelect : false,
16413     /**
16414      * @cfg {Boolean} singleSelect Allow single selection
16415      */
16416     singleSelect:  false,
16417     
16418     /**
16419      * @cfg {Boolean} toggleSelect - selecting 
16420      */
16421     toggleSelect : false,
16422     
16423     /**
16424      * @cfg {Boolean} tickable - selecting 
16425      */
16426     tickable : false,
16427     
16428     /**
16429      * Returns the element this view is bound to.
16430      * @return {Roo.Element}
16431      */
16432     getEl : function(){
16433         return this.wrapEl;
16434     },
16435     
16436     
16437
16438     /**
16439      * Refreshes the view. - called by datachanged on the store. - do not call directly.
16440      */
16441     refresh : function(){
16442         //Roo.log('refresh');
16443         var t = this.tpl;
16444         
16445         // if we are using something like 'domtemplate', then
16446         // the what gets used is:
16447         // t.applySubtemplate(NAME, data, wrapping data..)
16448         // the outer template then get' applied with
16449         //     the store 'extra data'
16450         // and the body get's added to the
16451         //      roo-name="data" node?
16452         //      <span class='roo-tpl-{name}'></span> ?????
16453         
16454         
16455         
16456         this.clearSelections();
16457         this.el.update("");
16458         var html = [];
16459         var records = this.store.getRange();
16460         if(records.length < 1) {
16461             
16462             // is this valid??  = should it render a template??
16463             
16464             this.el.update(this.emptyText);
16465             return;
16466         }
16467         var el = this.el;
16468         if (this.dataName) {
16469             this.el.update(t.apply(this.store.meta)); //????
16470             el = this.el.child('.roo-tpl-' + this.dataName);
16471         }
16472         
16473         for(var i = 0, len = records.length; i < len; i++){
16474             var data = this.prepareData(records[i].data, i, records[i]);
16475             this.fireEvent("preparedata", this, data, i, records[i]);
16476             
16477             var d = Roo.apply({}, data);
16478             
16479             if(this.tickable){
16480                 Roo.apply(d, {'roo-id' : Roo.id()});
16481                 
16482                 var _this = this;
16483             
16484                 Roo.each(this.parent.item, function(item){
16485                     if(item[_this.parent.valueField] != data[_this.parent.valueField]){
16486                         return;
16487                     }
16488                     Roo.apply(d, {'roo-data-checked' : 'checked'});
16489                 });
16490             }
16491             
16492             html[html.length] = Roo.util.Format.trim(
16493                 this.dataName ?
16494                     t.applySubtemplate(this.dataName, d, this.store.meta) :
16495                     t.apply(d)
16496             );
16497         }
16498         
16499         
16500         
16501         el.update(html.join(""));
16502         this.nodes = el.dom.childNodes;
16503         this.updateIndexes(0);
16504     },
16505     
16506
16507     /**
16508      * Function to override to reformat the data that is sent to
16509      * the template for each node.
16510      * DEPRICATED - use the preparedata event handler.
16511      * @param {Array/Object} data The raw data (array of colData for a data model bound view or
16512      * a JSON object for an UpdateManager bound view).
16513      */
16514     prepareData : function(data, index, record)
16515     {
16516         this.fireEvent("preparedata", this, data, index, record);
16517         return data;
16518     },
16519
16520     onUpdate : function(ds, record){
16521         // Roo.log('on update');   
16522         this.clearSelections();
16523         var index = this.store.indexOf(record);
16524         var n = this.nodes[index];
16525         this.tpl.insertBefore(n, this.prepareData(record.data, index, record));
16526         n.parentNode.removeChild(n);
16527         this.updateIndexes(index, index);
16528     },
16529
16530     
16531     
16532 // --------- FIXME     
16533     onAdd : function(ds, records, index)
16534     {
16535         //Roo.log(['on Add', ds, records, index] );        
16536         this.clearSelections();
16537         if(this.nodes.length == 0){
16538             this.refresh();
16539             return;
16540         }
16541         var n = this.nodes[index];
16542         for(var i = 0, len = records.length; i < len; i++){
16543             var d = this.prepareData(records[i].data, i, records[i]);
16544             if(n){
16545                 this.tpl.insertBefore(n, d);
16546             }else{
16547                 
16548                 this.tpl.append(this.el, d);
16549             }
16550         }
16551         this.updateIndexes(index);
16552     },
16553
16554     onRemove : function(ds, record, index){
16555        // Roo.log('onRemove');
16556         this.clearSelections();
16557         var el = this.dataName  ?
16558             this.el.child('.roo-tpl-' + this.dataName) :
16559             this.el; 
16560         
16561         el.dom.removeChild(this.nodes[index]);
16562         this.updateIndexes(index);
16563     },
16564
16565     /**
16566      * Refresh an individual node.
16567      * @param {Number} index
16568      */
16569     refreshNode : function(index){
16570         this.onUpdate(this.store, this.store.getAt(index));
16571     },
16572
16573     updateIndexes : function(startIndex, endIndex){
16574         var ns = this.nodes;
16575         startIndex = startIndex || 0;
16576         endIndex = endIndex || ns.length - 1;
16577         for(var i = startIndex; i <= endIndex; i++){
16578             ns[i].nodeIndex = i;
16579         }
16580     },
16581
16582     /**
16583      * Changes the data store this view uses and refresh the view.
16584      * @param {Store} store
16585      */
16586     setStore : function(store, initial){
16587         if(!initial && this.store){
16588             this.store.un("datachanged", this.refresh);
16589             this.store.un("add", this.onAdd);
16590             this.store.un("remove", this.onRemove);
16591             this.store.un("update", this.onUpdate);
16592             this.store.un("clear", this.refresh);
16593             this.store.un("beforeload", this.onBeforeLoad);
16594             this.store.un("load", this.onLoad);
16595             this.store.un("loadexception", this.onLoad);
16596         }
16597         if(store){
16598           
16599             store.on("datachanged", this.refresh, this);
16600             store.on("add", this.onAdd, this);
16601             store.on("remove", this.onRemove, this);
16602             store.on("update", this.onUpdate, this);
16603             store.on("clear", this.refresh, this);
16604             store.on("beforeload", this.onBeforeLoad, this);
16605             store.on("load", this.onLoad, this);
16606             store.on("loadexception", this.onLoad, this);
16607         }
16608         
16609         if(store){
16610             this.refresh();
16611         }
16612     },
16613     /**
16614      * onbeforeLoad - masks the loading area.
16615      *
16616      */
16617     onBeforeLoad : function(store,opts)
16618     {
16619          //Roo.log('onBeforeLoad');   
16620         if (!opts.add) {
16621             this.el.update("");
16622         }
16623         this.el.mask(this.mask ? this.mask : "Loading" ); 
16624     },
16625     onLoad : function ()
16626     {
16627         this.el.unmask();
16628     },
16629     
16630
16631     /**
16632      * Returns the template node the passed child belongs to or null if it doesn't belong to one.
16633      * @param {HTMLElement} node
16634      * @return {HTMLElement} The template node
16635      */
16636     findItemFromChild : function(node){
16637         var el = this.dataName  ?
16638             this.el.child('.roo-tpl-' + this.dataName,true) :
16639             this.el.dom; 
16640         
16641         if(!node || node.parentNode == el){
16642                     return node;
16643             }
16644             var p = node.parentNode;
16645             while(p && p != el){
16646             if(p.parentNode == el){
16647                 return p;
16648             }
16649             p = p.parentNode;
16650         }
16651             return null;
16652     },
16653
16654     /** @ignore */
16655     onClick : function(e){
16656         var item = this.findItemFromChild(e.getTarget());
16657         if(item){
16658             var index = this.indexOf(item);
16659             if(this.onItemClick(item, index, e) !== false){
16660                 this.fireEvent("click", this, index, item, e);
16661             }
16662         }else{
16663             this.clearSelections();
16664         }
16665     },
16666
16667     /** @ignore */
16668     onContextMenu : function(e){
16669         var item = this.findItemFromChild(e.getTarget());
16670         if(item){
16671             this.fireEvent("contextmenu", this, this.indexOf(item), item, e);
16672         }
16673     },
16674
16675     /** @ignore */
16676     onDblClick : function(e){
16677         var item = this.findItemFromChild(e.getTarget());
16678         if(item){
16679             this.fireEvent("dblclick", this, this.indexOf(item), item, e);
16680         }
16681     },
16682
16683     onItemClick : function(item, index, e)
16684     {
16685         if(this.fireEvent("beforeclick", this, index, item, e) === false){
16686             return false;
16687         }
16688         if (this.toggleSelect) {
16689             var m = this.isSelected(item) ? 'unselect' : 'select';
16690             //Roo.log(m);
16691             var _t = this;
16692             _t[m](item, true, false);
16693             return true;
16694         }
16695         if(this.multiSelect || this.singleSelect){
16696             if(this.multiSelect && e.shiftKey && this.lastSelection){
16697                 this.select(this.getNodes(this.indexOf(this.lastSelection), index), false);
16698             }else{
16699                 this.select(item, this.multiSelect && e.ctrlKey);
16700                 this.lastSelection = item;
16701             }
16702             
16703             if(!this.tickable){
16704                 e.preventDefault();
16705             }
16706             
16707         }
16708         return true;
16709     },
16710
16711     /**
16712      * Get the number of selected nodes.
16713      * @return {Number}
16714      */
16715     getSelectionCount : function(){
16716         return this.selections.length;
16717     },
16718
16719     /**
16720      * Get the currently selected nodes.
16721      * @return {Array} An array of HTMLElements
16722      */
16723     getSelectedNodes : function(){
16724         return this.selections;
16725     },
16726
16727     /**
16728      * Get the indexes of the selected nodes.
16729      * @return {Array}
16730      */
16731     getSelectedIndexes : function(){
16732         var indexes = [], s = this.selections;
16733         for(var i = 0, len = s.length; i < len; i++){
16734             indexes.push(s[i].nodeIndex);
16735         }
16736         return indexes;
16737     },
16738
16739     /**
16740      * Clear all selections
16741      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange event
16742      */
16743     clearSelections : function(suppressEvent){
16744         if(this.nodes && (this.multiSelect || this.singleSelect) && this.selections.length > 0){
16745             this.cmp.elements = this.selections;
16746             this.cmp.removeClass(this.selectedClass);
16747             this.selections = [];
16748             if(!suppressEvent){
16749                 this.fireEvent("selectionchange", this, this.selections);
16750             }
16751         }
16752     },
16753
16754     /**
16755      * Returns true if the passed node is selected
16756      * @param {HTMLElement/Number} node The node or node index
16757      * @return {Boolean}
16758      */
16759     isSelected : function(node){
16760         var s = this.selections;
16761         if(s.length < 1){
16762             return false;
16763         }
16764         node = this.getNode(node);
16765         return s.indexOf(node) !== -1;
16766     },
16767
16768     /**
16769      * Selects nodes.
16770      * @param {Array/HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node, id of a template node or an array of any of those to select
16771      * @param {Boolean} keepExisting (optional) true to keep existing selections
16772      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
16773      */
16774     select : function(nodeInfo, keepExisting, suppressEvent){
16775         if(nodeInfo instanceof Array){
16776             if(!keepExisting){
16777                 this.clearSelections(true);
16778             }
16779             for(var i = 0, len = nodeInfo.length; i < len; i++){
16780                 this.select(nodeInfo[i], true, true);
16781             }
16782             return;
16783         } 
16784         var node = this.getNode(nodeInfo);
16785         if(!node || this.isSelected(node)){
16786             return; // already selected.
16787         }
16788         if(!keepExisting){
16789             this.clearSelections(true);
16790         }
16791         
16792         if(this.fireEvent("beforeselect", this, node, this.selections) !== false){
16793             Roo.fly(node).addClass(this.selectedClass);
16794             this.selections.push(node);
16795             if(!suppressEvent){
16796                 this.fireEvent("selectionchange", this, this.selections);
16797             }
16798         }
16799         
16800         
16801     },
16802       /**
16803      * Unselects nodes.
16804      * @param {Array/HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node, id of a template node or an array of any of those to select
16805      * @param {Boolean} keepExisting (optional) true IGNORED (for campatibility with select)
16806      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
16807      */
16808     unselect : function(nodeInfo, keepExisting, suppressEvent)
16809     {
16810         if(nodeInfo instanceof Array){
16811             Roo.each(this.selections, function(s) {
16812                 this.unselect(s, nodeInfo);
16813             }, this);
16814             return;
16815         }
16816         var node = this.getNode(nodeInfo);
16817         if(!node || !this.isSelected(node)){
16818             //Roo.log("not selected");
16819             return; // not selected.
16820         }
16821         // fireevent???
16822         var ns = [];
16823         Roo.each(this.selections, function(s) {
16824             if (s == node ) {
16825                 Roo.fly(node).removeClass(this.selectedClass);
16826
16827                 return;
16828             }
16829             ns.push(s);
16830         },this);
16831         
16832         this.selections= ns;
16833         this.fireEvent("selectionchange", this, this.selections);
16834     },
16835
16836     /**
16837      * Gets a template node.
16838      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
16839      * @return {HTMLElement} The node or null if it wasn't found
16840      */
16841     getNode : function(nodeInfo){
16842         if(typeof nodeInfo == "string"){
16843             return document.getElementById(nodeInfo);
16844         }else if(typeof nodeInfo == "number"){
16845             return this.nodes[nodeInfo];
16846         }
16847         return nodeInfo;
16848     },
16849
16850     /**
16851      * Gets a range template nodes.
16852      * @param {Number} startIndex
16853      * @param {Number} endIndex
16854      * @return {Array} An array of nodes
16855      */
16856     getNodes : function(start, end){
16857         var ns = this.nodes;
16858         start = start || 0;
16859         end = typeof end == "undefined" ? ns.length - 1 : end;
16860         var nodes = [];
16861         if(start <= end){
16862             for(var i = start; i <= end; i++){
16863                 nodes.push(ns[i]);
16864             }
16865         } else{
16866             for(var i = start; i >= end; i--){
16867                 nodes.push(ns[i]);
16868             }
16869         }
16870         return nodes;
16871     },
16872
16873     /**
16874      * Finds the index of the passed node
16875      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
16876      * @return {Number} The index of the node or -1
16877      */
16878     indexOf : function(node){
16879         node = this.getNode(node);
16880         if(typeof node.nodeIndex == "number"){
16881             return node.nodeIndex;
16882         }
16883         var ns = this.nodes;
16884         for(var i = 0, len = ns.length; i < len; i++){
16885             if(ns[i] == node){
16886                 return i;
16887             }
16888         }
16889         return -1;
16890     }
16891 });
16892 /*
16893  * - LGPL
16894  *
16895  * based on jquery fullcalendar
16896  * 
16897  */
16898
16899 Roo.bootstrap = Roo.bootstrap || {};
16900 /**
16901  * @class Roo.bootstrap.Calendar
16902  * @extends Roo.bootstrap.Component
16903  * Bootstrap Calendar class
16904  * @cfg {Boolean} loadMask (true|false) default false
16905  * @cfg {Object} header generate the user specific header of the calendar, default false
16906
16907  * @constructor
16908  * Create a new Container
16909  * @param {Object} config The config object
16910  */
16911
16912
16913
16914 Roo.bootstrap.Calendar = function(config){
16915     Roo.bootstrap.Calendar.superclass.constructor.call(this, config);
16916      this.addEvents({
16917         /**
16918              * @event select
16919              * Fires when a date is selected
16920              * @param {DatePicker} this
16921              * @param {Date} date The selected date
16922              */
16923         'select': true,
16924         /**
16925              * @event monthchange
16926              * Fires when the displayed month changes 
16927              * @param {DatePicker} this
16928              * @param {Date} date The selected month
16929              */
16930         'monthchange': true,
16931         /**
16932              * @event evententer
16933              * Fires when mouse over an event
16934              * @param {Calendar} this
16935              * @param {event} Event
16936              */
16937         'evententer': true,
16938         /**
16939              * @event eventleave
16940              * Fires when the mouse leaves an
16941              * @param {Calendar} this
16942              * @param {event}
16943              */
16944         'eventleave': true,
16945         /**
16946              * @event eventclick
16947              * Fires when the mouse click an
16948              * @param {Calendar} this
16949              * @param {event}
16950              */
16951         'eventclick': true
16952         
16953     });
16954
16955 };
16956
16957 Roo.extend(Roo.bootstrap.Calendar, Roo.bootstrap.Component,  {
16958     
16959      /**
16960      * @cfg {Number} startDay
16961      * Day index at which the week should begin, 0-based (defaults to 0, which is Sunday)
16962      */
16963     startDay : 0,
16964     
16965     loadMask : false,
16966     
16967     header : false,
16968       
16969     getAutoCreate : function(){
16970         
16971         
16972         var fc_button = function(name, corner, style, content ) {
16973             return Roo.apply({},{
16974                 tag : 'span',
16975                 cls : 'fc-button fc-button-'+name+' fc-state-default ' + 
16976                          (corner.length ?
16977                             'fc-corner-' + corner.split(' ').join(' fc-corner-') :
16978                             ''
16979                         ),
16980                 html : '<SPAN class="fc-text-'+style+ '">'+content +'</SPAN>',
16981                 unselectable: 'on'
16982             });
16983         };
16984         
16985         var header = {};
16986         
16987         if(!this.header){
16988             header = {
16989                 tag : 'table',
16990                 cls : 'fc-header',
16991                 style : 'width:100%',
16992                 cn : [
16993                     {
16994                         tag: 'tr',
16995                         cn : [
16996                             {
16997                                 tag : 'td',
16998                                 cls : 'fc-header-left',
16999                                 cn : [
17000                                     fc_button('prev', 'left', 'arrow', '&#8249;' ),
17001                                     fc_button('next', 'right', 'arrow', '&#8250;' ),
17002                                     { tag: 'span', cls: 'fc-header-space' },
17003                                     fc_button('today', 'left right', '', 'today' )  // neds state disabled..
17004
17005
17006                                 ]
17007                             },
17008
17009                             {
17010                                 tag : 'td',
17011                                 cls : 'fc-header-center',
17012                                 cn : [
17013                                     {
17014                                         tag: 'span',
17015                                         cls: 'fc-header-title',
17016                                         cn : {
17017                                             tag: 'H2',
17018                                             html : 'month / year'
17019                                         }
17020                                     }
17021
17022                                 ]
17023                             },
17024                             {
17025                                 tag : 'td',
17026                                 cls : 'fc-header-right',
17027                                 cn : [
17028                               /*      fc_button('month', 'left', '', 'month' ),
17029                                     fc_button('week', '', '', 'week' ),
17030                                     fc_button('day', 'right', '', 'day' )
17031                                 */    
17032
17033                                 ]
17034                             }
17035
17036                         ]
17037                     }
17038                 ]
17039             };
17040         }
17041         
17042         header = this.header;
17043         
17044        
17045         var cal_heads = function() {
17046             var ret = [];
17047             // fixme - handle this.
17048             
17049             for (var i =0; i < Date.dayNames.length; i++) {
17050                 var d = Date.dayNames[i];
17051                 ret.push({
17052                     tag: 'th',
17053                     cls : 'fc-day-header fc-' + d.substring(0,3).toLowerCase() + ' fc-widget-header',
17054                     html : d.substring(0,3)
17055                 });
17056                 
17057             }
17058             ret[0].cls += ' fc-first';
17059             ret[6].cls += ' fc-last';
17060             return ret;
17061         };
17062         var cal_cell = function(n) {
17063             return  {
17064                 tag: 'td',
17065                 cls : 'fc-day fc-'+n + ' fc-widget-content', ///fc-other-month fc-past
17066                 cn : [
17067                     {
17068                         cn : [
17069                             {
17070                                 cls: 'fc-day-number',
17071                                 html: 'D'
17072                             },
17073                             {
17074                                 cls: 'fc-day-content',
17075                              
17076                                 cn : [
17077                                      {
17078                                         style: 'position: relative;' // height: 17px;
17079                                     }
17080                                 ]
17081                             }
17082                             
17083                             
17084                         ]
17085                     }
17086                 ]
17087                 
17088             }
17089         };
17090         var cal_rows = function() {
17091             
17092             var ret = [];
17093             for (var r = 0; r < 6; r++) {
17094                 var row= {
17095                     tag : 'tr',
17096                     cls : 'fc-week',
17097                     cn : []
17098                 };
17099                 
17100                 for (var i =0; i < Date.dayNames.length; i++) {
17101                     var d = Date.dayNames[i];
17102                     row.cn.push(cal_cell(d.substring(0,3).toLowerCase()));
17103
17104                 }
17105                 row.cn[0].cls+=' fc-first';
17106                 row.cn[0].cn[0].style = 'min-height:90px';
17107                 row.cn[6].cls+=' fc-last';
17108                 ret.push(row);
17109                 
17110             }
17111             ret[0].cls += ' fc-first';
17112             ret[4].cls += ' fc-prev-last';
17113             ret[5].cls += ' fc-last';
17114             return ret;
17115             
17116         };
17117         
17118         var cal_table = {
17119             tag: 'table',
17120             cls: 'fc-border-separate',
17121             style : 'width:100%',
17122             cellspacing  : 0,
17123             cn : [
17124                 { 
17125                     tag: 'thead',
17126                     cn : [
17127                         { 
17128                             tag: 'tr',
17129                             cls : 'fc-first fc-last',
17130                             cn : cal_heads()
17131                         }
17132                     ]
17133                 },
17134                 { 
17135                     tag: 'tbody',
17136                     cn : cal_rows()
17137                 }
17138                   
17139             ]
17140         };
17141          
17142          var cfg = {
17143             cls : 'fc fc-ltr',
17144             cn : [
17145                 header,
17146                 {
17147                     cls : 'fc-content',
17148                     style : "position: relative;",
17149                     cn : [
17150                         {
17151                             cls : 'fc-view fc-view-month fc-grid',
17152                             style : 'position: relative',
17153                             unselectable : 'on',
17154                             cn : [
17155                                 {
17156                                     cls : 'fc-event-container',
17157                                     style : 'position:absolute;z-index:8;top:0;left:0;'
17158                                 },
17159                                 cal_table
17160                             ]
17161                         }
17162                     ]
17163     
17164                 }
17165            ] 
17166             
17167         };
17168         
17169          
17170         
17171         return cfg;
17172     },
17173     
17174     
17175     initEvents : function()
17176     {
17177         if(!this.store){
17178             throw "can not find store for calendar";
17179         }
17180         
17181         var mark = {
17182             tag: "div",
17183             cls:"x-dlg-mask",
17184             style: "text-align:center",
17185             cn: [
17186                 {
17187                     tag: "div",
17188                     style: "background-color:white;width:50%;margin:250 auto",
17189                     cn: [
17190                         {
17191                             tag: "img",
17192                             src: Roo.rootURL + '/images/ux/lightbox/loading.gif' 
17193                         },
17194                         {
17195                             tag: "span",
17196                             html: "Loading"
17197                         }
17198                         
17199                     ]
17200                 }
17201             ]
17202         };
17203         this.maskEl = Roo.DomHelper.append(this.el.select('.fc-content', true).first(), mark, true);
17204         
17205         var size = this.el.select('.fc-content', true).first().getSize();
17206         this.maskEl.setSize(size.width, size.height);
17207         this.maskEl.enableDisplayMode("block");
17208         if(!this.loadMask){
17209             this.maskEl.hide();
17210         }
17211         
17212         this.store = Roo.factory(this.store, Roo.data);
17213         this.store.on('load', this.onLoad, this);
17214         this.store.on('beforeload', this.onBeforeLoad, this);
17215         
17216         this.resize();
17217         
17218         this.cells = this.el.select('.fc-day',true);
17219         //Roo.log(this.cells);
17220         this.textNodes = this.el.query('.fc-day-number');
17221         this.cells.addClassOnOver('fc-state-hover');
17222         
17223         this.el.select('.fc-button-prev',true).on('click', this.showPrevMonth, this);
17224         this.el.select('.fc-button-next',true).on('click', this.showNextMonth, this);
17225         this.el.select('.fc-button-today',true).on('click', this.showToday, this);
17226         this.el.select('.fc-button',true).addClassOnOver('fc-state-hover');
17227         
17228         this.on('monthchange', this.onMonthChange, this);
17229         
17230         this.update(new Date().clearTime());
17231     },
17232     
17233     resize : function() {
17234         var sz  = this.el.getSize();
17235         
17236         this.el.select('.fc-day-header',true).setWidth(sz.width / 7);
17237         this.el.select('.fc-day-content div',true).setHeight(34);
17238     },
17239     
17240     
17241     // private
17242     showPrevMonth : function(e){
17243         this.update(this.activeDate.add("mo", -1));
17244     },
17245     showToday : function(e){
17246         this.update(new Date().clearTime());
17247     },
17248     // private
17249     showNextMonth : function(e){
17250         this.update(this.activeDate.add("mo", 1));
17251     },
17252
17253     // private
17254     showPrevYear : function(){
17255         this.update(this.activeDate.add("y", -1));
17256     },
17257
17258     // private
17259     showNextYear : function(){
17260         this.update(this.activeDate.add("y", 1));
17261     },
17262
17263     
17264    // private
17265     update : function(date)
17266     {
17267         var vd = this.activeDate;
17268         this.activeDate = date;
17269 //        if(vd && this.el){
17270 //            var t = date.getTime();
17271 //            if(vd.getMonth() == date.getMonth() && vd.getFullYear() == date.getFullYear()){
17272 //                Roo.log('using add remove');
17273 //                
17274 //                this.fireEvent('monthchange', this, date);
17275 //                
17276 //                this.cells.removeClass("fc-state-highlight");
17277 //                this.cells.each(function(c){
17278 //                   if(c.dateValue == t){
17279 //                       c.addClass("fc-state-highlight");
17280 //                       setTimeout(function(){
17281 //                            try{c.dom.firstChild.focus();}catch(e){}
17282 //                       }, 50);
17283 //                       return false;
17284 //                   }
17285 //                   return true;
17286 //                });
17287 //                return;
17288 //            }
17289 //        }
17290         
17291         var days = date.getDaysInMonth();
17292         
17293         var firstOfMonth = date.getFirstDateOfMonth();
17294         var startingPos = firstOfMonth.getDay()-this.startDay;
17295         
17296         if(startingPos < this.startDay){
17297             startingPos += 7;
17298         }
17299         
17300         var pm = date.add(Date.MONTH, -1);
17301         var prevStart = pm.getDaysInMonth()-startingPos;
17302 //        
17303         this.cells = this.el.select('.fc-day',true);
17304         this.textNodes = this.el.query('.fc-day-number');
17305         this.cells.addClassOnOver('fc-state-hover');
17306         
17307         var cells = this.cells.elements;
17308         var textEls = this.textNodes;
17309         
17310         Roo.each(cells, function(cell){
17311             cell.removeClass([ 'fc-past', 'fc-other-month', 'fc-future', 'fc-state-highlight', 'fc-state-disabled']);
17312         });
17313         
17314         days += startingPos;
17315
17316         // convert everything to numbers so it's fast
17317         var day = 86400000;
17318         var d = (new Date(pm.getFullYear(), pm.getMonth(), prevStart)).clearTime();
17319         //Roo.log(d);
17320         //Roo.log(pm);
17321         //Roo.log(prevStart);
17322         
17323         var today = new Date().clearTime().getTime();
17324         var sel = date.clearTime().getTime();
17325         var min = this.minDate ? this.minDate.clearTime() : Number.NEGATIVE_INFINITY;
17326         var max = this.maxDate ? this.maxDate.clearTime() : Number.POSITIVE_INFINITY;
17327         var ddMatch = this.disabledDatesRE;
17328         var ddText = this.disabledDatesText;
17329         var ddays = this.disabledDays ? this.disabledDays.join("") : false;
17330         var ddaysText = this.disabledDaysText;
17331         var format = this.format;
17332         
17333         var setCellClass = function(cal, cell){
17334             cell.row = 0;
17335             cell.events = [];
17336             cell.more = [];
17337             //Roo.log('set Cell Class');
17338             cell.title = "";
17339             var t = d.getTime();
17340             
17341             //Roo.log(d);
17342             
17343             cell.dateValue = t;
17344             if(t == today){
17345                 cell.className += " fc-today";
17346                 cell.className += " fc-state-highlight";
17347                 cell.title = cal.todayText;
17348             }
17349             if(t == sel){
17350                 // disable highlight in other month..
17351                 //cell.className += " fc-state-highlight";
17352                 
17353             }
17354             // disabling
17355             if(t < min) {
17356                 cell.className = " fc-state-disabled";
17357                 cell.title = cal.minText;
17358                 return;
17359             }
17360             if(t > max) {
17361                 cell.className = " fc-state-disabled";
17362                 cell.title = cal.maxText;
17363                 return;
17364             }
17365             if(ddays){
17366                 if(ddays.indexOf(d.getDay()) != -1){
17367                     cell.title = ddaysText;
17368                     cell.className = " fc-state-disabled";
17369                 }
17370             }
17371             if(ddMatch && format){
17372                 var fvalue = d.dateFormat(format);
17373                 if(ddMatch.test(fvalue)){
17374                     cell.title = ddText.replace("%0", fvalue);
17375                     cell.className = " fc-state-disabled";
17376                 }
17377             }
17378             
17379             if (!cell.initialClassName) {
17380                 cell.initialClassName = cell.dom.className;
17381             }
17382             
17383             cell.dom.className = cell.initialClassName  + ' ' +  cell.className;
17384         };
17385
17386         var i = 0;
17387         
17388         for(; i < startingPos; i++) {
17389             textEls[i].innerHTML = (++prevStart);
17390             d.setDate(d.getDate()+1);
17391             
17392             cells[i].className = "fc-past fc-other-month";
17393             setCellClass(this, cells[i]);
17394         }
17395         
17396         var intDay = 0;
17397         
17398         for(; i < days; i++){
17399             intDay = i - startingPos + 1;
17400             textEls[i].innerHTML = (intDay);
17401             d.setDate(d.getDate()+1);
17402             
17403             cells[i].className = ''; // "x-date-active";
17404             setCellClass(this, cells[i]);
17405         }
17406         var extraDays = 0;
17407         
17408         for(; i < 42; i++) {
17409             textEls[i].innerHTML = (++extraDays);
17410             d.setDate(d.getDate()+1);
17411             
17412             cells[i].className = "fc-future fc-other-month";
17413             setCellClass(this, cells[i]);
17414         }
17415         
17416         this.el.select('.fc-header-title h2',true).update(Date.monthNames[date.getMonth()] + " " + date.getFullYear());
17417         
17418         var totalRows = Math.ceil((date.getDaysInMonth() + date.getFirstDateOfMonth().getDay()) / 7);
17419         
17420         this.el.select('tr.fc-week.fc-prev-last',true).removeClass('fc-last');
17421         this.el.select('tr.fc-week.fc-next-last',true).addClass('fc-last').show();
17422         
17423         if(totalRows != 6){
17424             this.el.select('tr.fc-week.fc-last',true).removeClass('fc-last').addClass('fc-next-last').hide();
17425             this.el.select('tr.fc-week.fc-prev-last',true).addClass('fc-last');
17426         }
17427         
17428         this.fireEvent('monthchange', this, date);
17429         
17430         
17431         /*
17432         if(!this.internalRender){
17433             var main = this.el.dom.firstChild;
17434             var w = main.offsetWidth;
17435             this.el.setWidth(w + this.el.getBorderWidth("lr"));
17436             Roo.fly(main).setWidth(w);
17437             this.internalRender = true;
17438             // opera does not respect the auto grow header center column
17439             // then, after it gets a width opera refuses to recalculate
17440             // without a second pass
17441             if(Roo.isOpera && !this.secondPass){
17442                 main.rows[0].cells[1].style.width = (w - (main.rows[0].cells[0].offsetWidth+main.rows[0].cells[2].offsetWidth)) + "px";
17443                 this.secondPass = true;
17444                 this.update.defer(10, this, [date]);
17445             }
17446         }
17447         */
17448         
17449     },
17450     
17451     findCell : function(dt) {
17452         dt = dt.clearTime().getTime();
17453         var ret = false;
17454         this.cells.each(function(c){
17455             //Roo.log("check " +c.dateValue + '?=' + dt);
17456             if(c.dateValue == dt){
17457                 ret = c;
17458                 return false;
17459             }
17460             return true;
17461         });
17462         
17463         return ret;
17464     },
17465     
17466     findCells : function(ev) {
17467         var s = ev.start.clone().clearTime().getTime();
17468        // Roo.log(s);
17469         var e= ev.end.clone().clearTime().getTime();
17470        // Roo.log(e);
17471         var ret = [];
17472         this.cells.each(function(c){
17473              ////Roo.log("check " +c.dateValue + '<' + e + ' > ' + s);
17474             
17475             if(c.dateValue > e){
17476                 return ;
17477             }
17478             if(c.dateValue < s){
17479                 return ;
17480             }
17481             ret.push(c);
17482         });
17483         
17484         return ret;    
17485     },
17486     
17487 //    findBestRow: function(cells)
17488 //    {
17489 //        var ret = 0;
17490 //        
17491 //        for (var i =0 ; i < cells.length;i++) {
17492 //            ret  = Math.max(cells[i].rows || 0,ret);
17493 //        }
17494 //        return ret;
17495 //        
17496 //    },
17497     
17498     
17499     addItem : function(ev)
17500     {
17501         // look for vertical location slot in
17502         var cells = this.findCells(ev);
17503         
17504 //        ev.row = this.findBestRow(cells);
17505         
17506         // work out the location.
17507         
17508         var crow = false;
17509         var rows = [];
17510         for(var i =0; i < cells.length; i++) {
17511             
17512             cells[i].row = cells[0].row;
17513             
17514             if(i == 0){
17515                 cells[i].row = cells[i].row + 1;
17516             }
17517             
17518             if (!crow) {
17519                 crow = {
17520                     start : cells[i],
17521                     end :  cells[i]
17522                 };
17523                 continue;
17524             }
17525             if (crow.start.getY() == cells[i].getY()) {
17526                 // on same row.
17527                 crow.end = cells[i];
17528                 continue;
17529             }
17530             // different row.
17531             rows.push(crow);
17532             crow = {
17533                 start: cells[i],
17534                 end : cells[i]
17535             };
17536             
17537         }
17538         
17539         rows.push(crow);
17540         ev.els = [];
17541         ev.rows = rows;
17542         ev.cells = cells;
17543         
17544         cells[0].events.push(ev);
17545         
17546         this.calevents.push(ev);
17547     },
17548     
17549     clearEvents: function() {
17550         
17551         if(!this.calevents){
17552             return;
17553         }
17554         
17555         Roo.each(this.cells.elements, function(c){
17556             c.row = 0;
17557             c.events = [];
17558             c.more = [];
17559         });
17560         
17561         Roo.each(this.calevents, function(e) {
17562             Roo.each(e.els, function(el) {
17563                 el.un('mouseenter' ,this.onEventEnter, this);
17564                 el.un('mouseleave' ,this.onEventLeave, this);
17565                 el.remove();
17566             },this);
17567         },this);
17568         
17569         Roo.each(Roo.select('.fc-more-event', true).elements, function(e){
17570             e.remove();
17571         });
17572         
17573     },
17574     
17575     renderEvents: function()
17576     {   
17577         var _this = this;
17578         
17579         this.cells.each(function(c) {
17580             
17581             if(c.row < 5){
17582                 return;
17583             }
17584             
17585             var ev = c.events;
17586             
17587             var r = 4;
17588             if(c.row != c.events.length){
17589                 r = 4 - (4 - (c.row - c.events.length));
17590             }
17591             
17592             c.events = ev.slice(0, r);
17593             c.more = ev.slice(r);
17594             
17595             if(c.more.length && c.more.length == 1){
17596                 c.events.push(c.more.pop());
17597             }
17598             
17599             c.row = (c.row - ev.length) + c.events.length + ((c.more.length) ? 1 : 0);
17600             
17601         });
17602             
17603         this.cells.each(function(c) {
17604             
17605             c.select('.fc-day-content div',true).first().setHeight(Math.max(34, c.row * 20));
17606             
17607             
17608             for (var e = 0; e < c.events.length; e++){
17609                 var ev = c.events[e];
17610                 var rows = ev.rows;
17611                 
17612                 for(var i = 0; i < rows.length; i++) {
17613                 
17614                     // how many rows should it span..
17615
17616                     var  cfg = {
17617                         cls : 'roo-dynamic fc-event fc-event-hori fc-event-draggable ui-draggable',
17618                         style : 'position: absolute', // left: 387px; width: 121px; top: 359px;
17619
17620                         unselectable : "on",
17621                         cn : [
17622                             {
17623                                 cls: 'fc-event-inner',
17624                                 cn : [
17625     //                                {
17626     //                                  tag:'span',
17627     //                                  cls: 'fc-event-time',
17628     //                                  html : cells.length > 1 ? '' : ev.time
17629     //                                },
17630                                     {
17631                                       tag:'span',
17632                                       cls: 'fc-event-title',
17633                                       html : String.format('{0}', ev.title)
17634                                     }
17635
17636
17637                                 ]
17638                             },
17639                             {
17640                                 cls: 'ui-resizable-handle ui-resizable-e',
17641                                 html : '&nbsp;&nbsp;&nbsp'
17642                             }
17643
17644                         ]
17645                     };
17646
17647                     if (i == 0) {
17648                         cfg.cls += ' fc-event-start';
17649                     }
17650                     if ((i+1) == rows.length) {
17651                         cfg.cls += ' fc-event-end';
17652                     }
17653
17654                     var ctr = _this.el.select('.fc-event-container',true).first();
17655                     var cg = ctr.createChild(cfg);
17656
17657                     var sbox = rows[i].start.select('.fc-day-content',true).first().getBox();
17658                     var ebox = rows[i].end.select('.fc-day-content',true).first().getBox();
17659
17660                     var r = (c.more.length) ? 1 : 0;
17661                     cg.setXY([sbox.x +2, sbox.y + ((c.row - c.events.length - r + e) * 20)]);    
17662                     cg.setWidth(ebox.right - sbox.x -2);
17663
17664                     cg.on('mouseenter' ,_this.onEventEnter, _this, ev);
17665                     cg.on('mouseleave' ,_this.onEventLeave, _this, ev);
17666                     cg.on('click', _this.onEventClick, _this, ev);
17667
17668                     ev.els.push(cg);
17669                     
17670                 }
17671                 
17672             }
17673             
17674             
17675             if(c.more.length){
17676                 var  cfg = {
17677                     cls : 'fc-more-event roo-dynamic fc-event fc-event-hori fc-event-draggable ui-draggable fc-event-start fc-event-end',
17678                     style : 'position: absolute',
17679                     unselectable : "on",
17680                     cn : [
17681                         {
17682                             cls: 'fc-event-inner',
17683                             cn : [
17684                                 {
17685                                   tag:'span',
17686                                   cls: 'fc-event-title',
17687                                   html : 'More'
17688                                 }
17689
17690
17691                             ]
17692                         },
17693                         {
17694                             cls: 'ui-resizable-handle ui-resizable-e',
17695                             html : '&nbsp;&nbsp;&nbsp'
17696                         }
17697
17698                     ]
17699                 };
17700
17701                 var ctr = _this.el.select('.fc-event-container',true).first();
17702                 var cg = ctr.createChild(cfg);
17703
17704                 var sbox = c.select('.fc-day-content',true).first().getBox();
17705                 var ebox = c.select('.fc-day-content',true).first().getBox();
17706                 //Roo.log(cg);
17707                 cg.setXY([sbox.x +2, sbox.y +((c.row - 1) * 20)]);    
17708                 cg.setWidth(ebox.right - sbox.x -2);
17709
17710                 cg.on('click', _this.onMoreEventClick, _this, c.more);
17711                 
17712             }
17713             
17714         });
17715         
17716         
17717         
17718     },
17719     
17720     onEventEnter: function (e, el,event,d) {
17721         this.fireEvent('evententer', this, el, event);
17722     },
17723     
17724     onEventLeave: function (e, el,event,d) {
17725         this.fireEvent('eventleave', this, el, event);
17726     },
17727     
17728     onEventClick: function (e, el,event,d) {
17729         this.fireEvent('eventclick', this, el, event);
17730     },
17731     
17732     onMonthChange: function () {
17733         this.store.load();
17734     },
17735     
17736     onMoreEventClick: function(e, el, more)
17737     {
17738         var _this = this;
17739         
17740         this.calpopover.placement = 'right';
17741         this.calpopover.setTitle('More');
17742         
17743         this.calpopover.setContent('');
17744         
17745         var ctr = this.calpopover.el.select('.popover-content', true).first();
17746         
17747         Roo.each(more, function(m){
17748             var cfg = {
17749                 cls : 'fc-event-hori fc-event-draggable',
17750                 html : m.title
17751             };
17752             var cg = ctr.createChild(cfg);
17753             
17754             cg.on('click', _this.onEventClick, _this, m);
17755         });
17756         
17757         this.calpopover.show(el);
17758         
17759         
17760     },
17761     
17762     onLoad: function () 
17763     {   
17764         this.calevents = [];
17765         var cal = this;
17766         
17767         if(this.store.getCount() > 0){
17768             this.store.data.each(function(d){
17769                cal.addItem({
17770                     id : d.data.id,
17771                     start: (typeof(d.data.start_dt) === 'string') ? new Date.parseDate(d.data.start_dt, 'Y-m-d H:i:s') : d.data.start_dt,
17772                     end : (typeof(d.data.end_dt) === 'string') ? new Date.parseDate(d.data.end_dt, 'Y-m-d H:i:s') : d.data.end_dt,
17773                     time : d.data.start_time,
17774                     title : d.data.title,
17775                     description : d.data.description,
17776                     venue : d.data.venue
17777                 });
17778             });
17779         }
17780         
17781         this.renderEvents();
17782         
17783         if(this.calevents.length && this.loadMask){
17784             this.maskEl.hide();
17785         }
17786     },
17787     
17788     onBeforeLoad: function()
17789     {
17790         this.clearEvents();
17791         if(this.loadMask){
17792             this.maskEl.show();
17793         }
17794     }
17795 });
17796
17797  
17798  /*
17799  * - LGPL
17800  *
17801  * element
17802  * 
17803  */
17804
17805 /**
17806  * @class Roo.bootstrap.Popover
17807  * @extends Roo.bootstrap.Component
17808  * Bootstrap Popover class
17809  * @cfg {String} html contents of the popover   (or false to use children..)
17810  * @cfg {String} title of popover (or false to hide)
17811  * @cfg {String} placement how it is placed
17812  * @cfg {String} trigger click || hover (or false to trigger manually)
17813  * @cfg {String} over what (parent or false to trigger manually.)
17814  * @cfg {Number} delay - delay before showing
17815  
17816  * @constructor
17817  * Create a new Popover
17818  * @param {Object} config The config object
17819  */
17820
17821 Roo.bootstrap.Popover = function(config){
17822     Roo.bootstrap.Popover.superclass.constructor.call(this, config);
17823     
17824     this.addEvents({
17825         // raw events
17826          /**
17827          * @event show
17828          * After the popover show
17829          * 
17830          * @param {Roo.bootstrap.Popover} this
17831          */
17832         "show" : true,
17833         /**
17834          * @event hide
17835          * After the popover hide
17836          * 
17837          * @param {Roo.bootstrap.Popover} this
17838          */
17839         "hide" : true
17840     });
17841 };
17842
17843 Roo.extend(Roo.bootstrap.Popover, Roo.bootstrap.Component,  {
17844     
17845     title: 'Fill in a title',
17846     html: false,
17847     
17848     placement : 'right',
17849     trigger : 'hover', // hover
17850     
17851     delay : 0,
17852     
17853     over: 'parent',
17854     
17855     can_build_overlaid : false,
17856     
17857     getChildContainer : function()
17858     {
17859         return this.el.select('.popover-content',true).first();
17860     },
17861     
17862     getAutoCreate : function(){
17863          
17864         var cfg = {
17865            cls : 'popover roo-dynamic',
17866            style: 'display:block',
17867            cn : [
17868                 {
17869                     cls : 'arrow'
17870                 },
17871                 {
17872                     cls : 'popover-inner',
17873                     cn : [
17874                         {
17875                             tag: 'h3',
17876                             cls: 'popover-title popover-header',
17877                             html : this.title
17878                         },
17879                         {
17880                             cls : 'popover-content popover-body',
17881                             html : this.html
17882                         }
17883                     ]
17884                     
17885                 }
17886            ]
17887         };
17888         
17889         return cfg;
17890     },
17891     setTitle: function(str)
17892     {
17893         this.title = str;
17894         this.el.select('.popover-title',true).first().dom.innerHTML = str;
17895     },
17896     setContent: function(str)
17897     {
17898         this.html = str;
17899         this.el.select('.popover-content',true).first().dom.innerHTML = str;
17900     },
17901     // as it get's added to the bottom of the page.
17902     onRender : function(ct, position)
17903     {
17904         Roo.bootstrap.Component.superclass.onRender.call(this, ct, position);
17905         if(!this.el){
17906             var cfg = Roo.apply({},  this.getAutoCreate());
17907             cfg.id = Roo.id();
17908             
17909             if (this.cls) {
17910                 cfg.cls += ' ' + this.cls;
17911             }
17912             if (this.style) {
17913                 cfg.style = this.style;
17914             }
17915             //Roo.log("adding to ");
17916             this.el = Roo.get(document.body).createChild(cfg, position);
17917 //            Roo.log(this.el);
17918         }
17919         this.initEvents();
17920     },
17921     
17922     initEvents : function()
17923     {
17924         this.el.select('.popover-title',true).setVisibilityMode(Roo.Element.DISPLAY);
17925         this.el.enableDisplayMode('block');
17926         this.el.hide();
17927         if (this.over === false) {
17928             return; 
17929         }
17930         if (this.triggers === false) {
17931             return;
17932         }
17933         var on_el = (this.over == 'parent') ? this.parent().el : Roo.get(this.over);
17934         var triggers = this.trigger ? this.trigger.split(' ') : [];
17935         Roo.each(triggers, function(trigger) {
17936         
17937             if (trigger == 'click') {
17938                 on_el.on('click', this.toggle, this);
17939             } else if (trigger != 'manual') {
17940                 var eventIn  = trigger == 'hover' ? 'mouseenter' : 'focusin';
17941                 var eventOut = trigger == 'hover' ? 'mouseleave' : 'focusout';
17942       
17943                 on_el.on(eventIn  ,this.enter, this);
17944                 on_el.on(eventOut, this.leave, this);
17945             }
17946         }, this);
17947         
17948     },
17949     
17950     
17951     // private
17952     timeout : null,
17953     hoverState : null,
17954     
17955     toggle : function () {
17956         this.hoverState == 'in' ? this.leave() : this.enter();
17957     },
17958     
17959     enter : function () {
17960         
17961         clearTimeout(this.timeout);
17962     
17963         this.hoverState = 'in';
17964     
17965         if (!this.delay || !this.delay.show) {
17966             this.show();
17967             return;
17968         }
17969         var _t = this;
17970         this.timeout = setTimeout(function () {
17971             if (_t.hoverState == 'in') {
17972                 _t.show();
17973             }
17974         }, this.delay.show)
17975     },
17976     
17977     leave : function() {
17978         clearTimeout(this.timeout);
17979     
17980         this.hoverState = 'out';
17981     
17982         if (!this.delay || !this.delay.hide) {
17983             this.hide();
17984             return;
17985         }
17986         var _t = this;
17987         this.timeout = setTimeout(function () {
17988             if (_t.hoverState == 'out') {
17989                 _t.hide();
17990             }
17991         }, this.delay.hide)
17992     },
17993     
17994     show : function (on_el)
17995     {
17996         if (!on_el) {
17997             on_el= (this.over == 'parent') ? this.parent().el : Roo.get(this.over);
17998         }
17999         
18000         // set content.
18001         this.el.select('.popover-title',true).first().dom.innerHtml = this.title;
18002         if (this.html !== false) {
18003             this.el.select('.popover-content',true).first().dom.innerHtml = this.html;
18004         }
18005         this.el.removeClass([
18006             'fade','top','bottom', 'left', 'right','in',
18007             'bs-popover-top','bs-popover-bottom', 'bs-popover-left', 'bs-popover-right'
18008         ]);
18009         if (!this.title.length) {
18010             this.el.select('.popover-title',true).hide();
18011         }
18012         
18013         var placement = typeof this.placement == 'function' ?
18014             this.placement.call(this, this.el, on_el) :
18015             this.placement;
18016             
18017         var autoToken = /\s?auto?\s?/i;
18018         var autoPlace = autoToken.test(placement);
18019         if (autoPlace) {
18020             placement = placement.replace(autoToken, '') || 'top';
18021         }
18022         
18023         //this.el.detach()
18024         //this.el.setXY([0,0]);
18025         this.el.show();
18026         this.el.dom.style.display='block';
18027         this.el.addClass(placement);
18028         
18029         //this.el.appendTo(on_el);
18030         
18031         var p = this.getPosition();
18032         var box = this.el.getBox();
18033         
18034         if (autoPlace) {
18035             // fixme..
18036         }
18037         var align = Roo.bootstrap.Popover.alignment[placement];
18038         
18039 //        Roo.log(align);
18040         this.el.alignTo(on_el, align[0],align[1]);
18041         //var arrow = this.el.select('.arrow',true).first();
18042         //arrow.set(align[2], 
18043         
18044         this.el.addClass('in');
18045         
18046         
18047         if (this.el.hasClass('fade')) {
18048             // fade it?
18049         }
18050         
18051         this.hoverState = 'in';
18052         
18053         this.fireEvent('show', this);
18054         
18055     },
18056     hide : function()
18057     {
18058         this.el.setXY([0,0]);
18059         this.el.removeClass('in');
18060         this.el.hide();
18061         this.hoverState = null;
18062         
18063         this.fireEvent('hide', this);
18064     }
18065     
18066 });
18067
18068 Roo.bootstrap.Popover.alignment = {
18069     'left' : ['r-l', [-10,0], 'right bs-popover-right'],
18070     'right' : ['l-r', [10,0], 'left bs-popover-left'],
18071     'bottom' : ['t-b', [0,10], 'top bs-popover-top'],
18072     'top' : [ 'b-t', [0,-10], 'bottom bs-popover-bottom']
18073 };
18074
18075  /*
18076  * - LGPL
18077  *
18078  * Progress
18079  * 
18080  */
18081
18082 /**
18083  * @class Roo.bootstrap.Progress
18084  * @extends Roo.bootstrap.Component
18085  * Bootstrap Progress class
18086  * @cfg {Boolean} striped striped of the progress bar
18087  * @cfg {Boolean} active animated of the progress bar
18088  * 
18089  * 
18090  * @constructor
18091  * Create a new Progress
18092  * @param {Object} config The config object
18093  */
18094
18095 Roo.bootstrap.Progress = function(config){
18096     Roo.bootstrap.Progress.superclass.constructor.call(this, config);
18097 };
18098
18099 Roo.extend(Roo.bootstrap.Progress, Roo.bootstrap.Component,  {
18100     
18101     striped : false,
18102     active: false,
18103     
18104     getAutoCreate : function(){
18105         var cfg = {
18106             tag: 'div',
18107             cls: 'progress'
18108         };
18109         
18110         
18111         if(this.striped){
18112             cfg.cls += ' progress-striped';
18113         }
18114       
18115         if(this.active){
18116             cfg.cls += ' active';
18117         }
18118         
18119         
18120         return cfg;
18121     }
18122    
18123 });
18124
18125  
18126
18127  /*
18128  * - LGPL
18129  *
18130  * ProgressBar
18131  * 
18132  */
18133
18134 /**
18135  * @class Roo.bootstrap.ProgressBar
18136  * @extends Roo.bootstrap.Component
18137  * Bootstrap ProgressBar class
18138  * @cfg {Number} aria_valuenow aria-value now
18139  * @cfg {Number} aria_valuemin aria-value min
18140  * @cfg {Number} aria_valuemax aria-value max
18141  * @cfg {String} label label for the progress bar
18142  * @cfg {String} panel (success | info | warning | danger )
18143  * @cfg {String} role role of the progress bar
18144  * @cfg {String} sr_only text
18145  * 
18146  * 
18147  * @constructor
18148  * Create a new ProgressBar
18149  * @param {Object} config The config object
18150  */
18151
18152 Roo.bootstrap.ProgressBar = function(config){
18153     Roo.bootstrap.ProgressBar.superclass.constructor.call(this, config);
18154 };
18155
18156 Roo.extend(Roo.bootstrap.ProgressBar, Roo.bootstrap.Component,  {
18157     
18158     aria_valuenow : 0,
18159     aria_valuemin : 0,
18160     aria_valuemax : 100,
18161     label : false,
18162     panel : false,
18163     role : false,
18164     sr_only: false,
18165     
18166     getAutoCreate : function()
18167     {
18168         
18169         var cfg = {
18170             tag: 'div',
18171             cls: 'progress-bar',
18172             style: 'width:' + Math.ceil((this.aria_valuenow / this.aria_valuemax) * 100) + '%'
18173         };
18174         
18175         if(this.sr_only){
18176             cfg.cn = {
18177                 tag: 'span',
18178                 cls: 'sr-only',
18179                 html: this.sr_only
18180             }
18181         }
18182         
18183         if(this.role){
18184             cfg.role = this.role;
18185         }
18186         
18187         if(this.aria_valuenow){
18188             cfg['aria-valuenow'] = this.aria_valuenow;
18189         }
18190         
18191         if(this.aria_valuemin){
18192             cfg['aria-valuemin'] = this.aria_valuemin;
18193         }
18194         
18195         if(this.aria_valuemax){
18196             cfg['aria-valuemax'] = this.aria_valuemax;
18197         }
18198         
18199         if(this.label && !this.sr_only){
18200             cfg.html = this.label;
18201         }
18202         
18203         if(this.panel){
18204             cfg.cls += ' progress-bar-' + this.panel;
18205         }
18206         
18207         return cfg;
18208     },
18209     
18210     update : function(aria_valuenow)
18211     {
18212         this.aria_valuenow = aria_valuenow;
18213         
18214         this.el.setStyle('width', Math.ceil((this.aria_valuenow / this.aria_valuemax) * 100) + '%');
18215     }
18216    
18217 });
18218
18219  
18220
18221  /*
18222  * - LGPL
18223  *
18224  * column
18225  * 
18226  */
18227
18228 /**
18229  * @class Roo.bootstrap.TabGroup
18230  * @extends Roo.bootstrap.Column
18231  * Bootstrap Column class
18232  * @cfg {String} navId the navigation id (for use with navbars) - will be auto generated if it does not exist..
18233  * @cfg {Boolean} carousel true to make the group behave like a carousel
18234  * @cfg {Boolean} bullets show bullets for the panels
18235  * @cfg {Boolean} autoslide (true|false) auto slide .. default false
18236  * @cfg {Number} timer auto slide timer .. default 0 millisecond
18237  * @cfg {Boolean} showarrow (true|false) show arrow default true
18238  * 
18239  * @constructor
18240  * Create a new TabGroup
18241  * @param {Object} config The config object
18242  */
18243
18244 Roo.bootstrap.TabGroup = function(config){
18245     Roo.bootstrap.TabGroup.superclass.constructor.call(this, config);
18246     if (!this.navId) {
18247         this.navId = Roo.id();
18248     }
18249     this.tabs = [];
18250     Roo.bootstrap.TabGroup.register(this);
18251     
18252 };
18253
18254 Roo.extend(Roo.bootstrap.TabGroup, Roo.bootstrap.Column,  {
18255     
18256     carousel : false,
18257     transition : false,
18258     bullets : 0,
18259     timer : 0,
18260     autoslide : false,
18261     slideFn : false,
18262     slideOnTouch : false,
18263     showarrow : true,
18264     
18265     getAutoCreate : function()
18266     {
18267         var cfg = Roo.apply({}, Roo.bootstrap.TabGroup.superclass.getAutoCreate.call(this));
18268         
18269         cfg.cls += ' tab-content';
18270         
18271         if (this.carousel) {
18272             cfg.cls += ' carousel slide';
18273             
18274             cfg.cn = [{
18275                cls : 'carousel-inner',
18276                cn : []
18277             }];
18278         
18279             if(this.bullets  && !Roo.isTouch){
18280                 
18281                 var bullets = {
18282                     cls : 'carousel-bullets',
18283                     cn : []
18284                 };
18285                
18286                 if(this.bullets_cls){
18287                     bullets.cls = bullets.cls + ' ' + this.bullets_cls;
18288                 }
18289                 
18290                 bullets.cn.push({
18291                     cls : 'clear'
18292                 });
18293                 
18294                 cfg.cn[0].cn.push(bullets);
18295             }
18296             
18297             if(this.showarrow){
18298                 cfg.cn[0].cn.push({
18299                     tag : 'div',
18300                     class : 'carousel-arrow',
18301                     cn : [
18302                         {
18303                             tag : 'div',
18304                             class : 'carousel-prev',
18305                             cn : [
18306                                 {
18307                                     tag : 'i',
18308                                     class : 'fa fa-chevron-left'
18309                                 }
18310                             ]
18311                         },
18312                         {
18313                             tag : 'div',
18314                             class : 'carousel-next',
18315                             cn : [
18316                                 {
18317                                     tag : 'i',
18318                                     class : 'fa fa-chevron-right'
18319                                 }
18320                             ]
18321                         }
18322                     ]
18323                 });
18324             }
18325             
18326         }
18327         
18328         return cfg;
18329     },
18330     
18331     initEvents:  function()
18332     {
18333 //        if(Roo.isTouch && this.slideOnTouch && !this.showarrow){
18334 //            this.el.on("touchstart", this.onTouchStart, this);
18335 //        }
18336         
18337         if(this.autoslide){
18338             var _this = this;
18339             
18340             this.slideFn = window.setInterval(function() {
18341                 _this.showPanelNext();
18342             }, this.timer);
18343         }
18344         
18345         if(this.showarrow){
18346             this.el.select('.carousel-prev', true).first().on('click', this.showPanelPrev, this);
18347             this.el.select('.carousel-next', true).first().on('click', this.showPanelNext, this);
18348         }
18349         
18350         
18351     },
18352     
18353 //    onTouchStart : function(e, el, o)
18354 //    {
18355 //        if(!this.slideOnTouch || !Roo.isTouch || Roo.get(e.getTarget()).hasClass('roo-button-text')){
18356 //            return;
18357 //        }
18358 //        
18359 //        this.showPanelNext();
18360 //    },
18361     
18362     
18363     getChildContainer : function()
18364     {
18365         return this.carousel ? this.el.select('.carousel-inner', true).first() : this.el;
18366     },
18367     
18368     /**
18369     * register a Navigation item
18370     * @param {Roo.bootstrap.NavItem} the navitem to add
18371     */
18372     register : function(item)
18373     {
18374         this.tabs.push( item);
18375         item.navId = this.navId; // not really needed..
18376         this.addBullet();
18377     
18378     },
18379     
18380     getActivePanel : function()
18381     {
18382         var r = false;
18383         Roo.each(this.tabs, function(t) {
18384             if (t.active) {
18385                 r = t;
18386                 return false;
18387             }
18388             return null;
18389         });
18390         return r;
18391         
18392     },
18393     getPanelByName : function(n)
18394     {
18395         var r = false;
18396         Roo.each(this.tabs, function(t) {
18397             if (t.tabId == n) {
18398                 r = t;
18399                 return false;
18400             }
18401             return null;
18402         });
18403         return r;
18404     },
18405     indexOfPanel : function(p)
18406     {
18407         var r = false;
18408         Roo.each(this.tabs, function(t,i) {
18409             if (t.tabId == p.tabId) {
18410                 r = i;
18411                 return false;
18412             }
18413             return null;
18414         });
18415         return r;
18416     },
18417     /**
18418      * show a specific panel
18419      * @param {Roo.bootstrap.TabPanel|number|string} panel to change to (use the tabId to specify a specific one)
18420      * @return {boolean} false if panel was not shown (invalid entry or beforedeactivate fails.)
18421      */
18422     showPanel : function (pan)
18423     {
18424         if(this.transition || typeof(pan) == 'undefined'){
18425             Roo.log("waiting for the transitionend");
18426             return false;
18427         }
18428         
18429         if (typeof(pan) == 'number') {
18430             pan = this.tabs[pan];
18431         }
18432         
18433         if (typeof(pan) == 'string') {
18434             pan = this.getPanelByName(pan);
18435         }
18436         
18437         var cur = this.getActivePanel();
18438         
18439         if(!pan || !cur){
18440             Roo.log('pan or acitve pan is undefined');
18441             return false;
18442         }
18443         
18444         if (pan.tabId == this.getActivePanel().tabId) {
18445             return true;
18446         }
18447         
18448         if (false === cur.fireEvent('beforedeactivate')) {
18449             return false;
18450         }
18451         
18452         if(this.bullets > 0 && !Roo.isTouch){
18453             this.setActiveBullet(this.indexOfPanel(pan));
18454         }
18455         
18456         if (this.carousel && typeof(Roo.get(document.body).dom.style.transition) != 'undefined') {
18457             
18458             //class="carousel-item carousel-item-next carousel-item-left"
18459             
18460             this.transition = true;
18461             var dir = this.indexOfPanel(pan) > this.indexOfPanel(cur)  ? 'next' : 'prev';
18462             var lr = dir == 'next' ? 'left' : 'right';
18463             pan.el.addClass(dir); // or prev
18464             pan.el.addClass('carousel-item-' + dir); // or prev
18465             pan.el.dom.offsetWidth; // find the offset with - causing a reflow?
18466             cur.el.addClass(lr); // or right
18467             pan.el.addClass(lr);
18468             cur.el.addClass('carousel-item-' +lr); // or right
18469             pan.el.addClass('carousel-item-' +lr);
18470             
18471             
18472             var _this = this;
18473             cur.el.on('transitionend', function() {
18474                 Roo.log("trans end?");
18475                 
18476                 pan.el.removeClass([lr,dir, 'carousel-item-' + lr, 'carousel-item-' + dir]);
18477                 pan.setActive(true);
18478                 
18479                 cur.el.removeClass([lr, 'carousel-item-' + lr]);
18480                 cur.setActive(false);
18481                 
18482                 _this.transition = false;
18483                 
18484             }, this, { single:  true } );
18485             
18486             return true;
18487         }
18488         
18489         cur.setActive(false);
18490         pan.setActive(true);
18491         
18492         return true;
18493         
18494     },
18495     showPanelNext : function()
18496     {
18497         var i = this.indexOfPanel(this.getActivePanel());
18498         
18499         if (i >= this.tabs.length - 1 && !this.autoslide) {
18500             return;
18501         }
18502         
18503         if (i >= this.tabs.length - 1 && this.autoslide) {
18504             i = -1;
18505         }
18506         
18507         this.showPanel(this.tabs[i+1]);
18508     },
18509     
18510     showPanelPrev : function()
18511     {
18512         var i = this.indexOfPanel(this.getActivePanel());
18513         
18514         if (i  < 1 && !this.autoslide) {
18515             return;
18516         }
18517         
18518         if (i < 1 && this.autoslide) {
18519             i = this.tabs.length;
18520         }
18521         
18522         this.showPanel(this.tabs[i-1]);
18523     },
18524     
18525     
18526     addBullet: function()
18527     {
18528         if(!this.bullets || Roo.isTouch){
18529             return;
18530         }
18531         var ctr = this.el.select('.carousel-bullets',true).first();
18532         var i = this.el.select('.carousel-bullets .bullet',true).getCount() ;
18533         var bullet = ctr.createChild({
18534             cls : 'bullet bullet-' + i
18535         },ctr.dom.lastChild);
18536         
18537         
18538         var _this = this;
18539         
18540         bullet.on('click', (function(e, el, o, ii, t){
18541
18542             e.preventDefault();
18543
18544             this.showPanel(ii);
18545
18546             if(this.autoslide && this.slideFn){
18547                 clearInterval(this.slideFn);
18548                 this.slideFn = window.setInterval(function() {
18549                     _this.showPanelNext();
18550                 }, this.timer);
18551             }
18552
18553         }).createDelegate(this, [i, bullet], true));
18554                 
18555         
18556     },
18557      
18558     setActiveBullet : function(i)
18559     {
18560         if(Roo.isTouch){
18561             return;
18562         }
18563         
18564         Roo.each(this.el.select('.bullet', true).elements, function(el){
18565             el.removeClass('selected');
18566         });
18567
18568         var bullet = this.el.select('.bullet-' + i, true).first();
18569         
18570         if(!bullet){
18571             return;
18572         }
18573         
18574         bullet.addClass('selected');
18575     }
18576     
18577     
18578   
18579 });
18580
18581  
18582
18583  
18584  
18585 Roo.apply(Roo.bootstrap.TabGroup, {
18586     
18587     groups: {},
18588      /**
18589     * register a Navigation Group
18590     * @param {Roo.bootstrap.NavGroup} the navgroup to add
18591     */
18592     register : function(navgrp)
18593     {
18594         this.groups[navgrp.navId] = navgrp;
18595         
18596     },
18597     /**
18598     * fetch a Navigation Group based on the navigation ID
18599     * if one does not exist , it will get created.
18600     * @param {string} the navgroup to add
18601     * @returns {Roo.bootstrap.NavGroup} the navgroup 
18602     */
18603     get: function(navId) {
18604         if (typeof(this.groups[navId]) == 'undefined') {
18605             this.register(new Roo.bootstrap.TabGroup({ navId : navId }));
18606         }
18607         return this.groups[navId] ;
18608     }
18609     
18610     
18611     
18612 });
18613
18614  /*
18615  * - LGPL
18616  *
18617  * TabPanel
18618  * 
18619  */
18620
18621 /**
18622  * @class Roo.bootstrap.TabPanel
18623  * @extends Roo.bootstrap.Component
18624  * Bootstrap TabPanel class
18625  * @cfg {Boolean} active panel active
18626  * @cfg {String} html panel content
18627  * @cfg {String} tabId  unique tab ID (will be autogenerated if not set. - used to match TabItem to Panel)
18628  * @cfg {String} navId The Roo.bootstrap.NavGroup which triggers show hide ()
18629  * @cfg {String} href click to link..
18630  * 
18631  * 
18632  * @constructor
18633  * Create a new TabPanel
18634  * @param {Object} config The config object
18635  */
18636
18637 Roo.bootstrap.TabPanel = function(config){
18638     Roo.bootstrap.TabPanel.superclass.constructor.call(this, config);
18639     this.addEvents({
18640         /**
18641              * @event changed
18642              * Fires when the active status changes
18643              * @param {Roo.bootstrap.TabPanel} this
18644              * @param {Boolean} state the new state
18645             
18646          */
18647         'changed': true,
18648         /**
18649              * @event beforedeactivate
18650              * Fires before a tab is de-activated - can be used to do validation on a form.
18651              * @param {Roo.bootstrap.TabPanel} this
18652              * @return {Boolean} false if there is an error
18653             
18654          */
18655         'beforedeactivate': true
18656      });
18657     
18658     this.tabId = this.tabId || Roo.id();
18659   
18660 };
18661
18662 Roo.extend(Roo.bootstrap.TabPanel, Roo.bootstrap.Component,  {
18663     
18664     active: false,
18665     html: false,
18666     tabId: false,
18667     navId : false,
18668     href : '',
18669     
18670     getAutoCreate : function(){
18671         
18672         
18673         var cfg = {
18674             tag: 'div',
18675             // item is needed for carousel - not sure if it has any effect otherwise
18676             cls: 'carousel-item tab-pane item' + ((this.href.length) ? ' clickable ' : ''),
18677             html: this.html || ''
18678         };
18679         
18680         if(this.active){
18681             cfg.cls += ' active';
18682         }
18683         
18684         if(this.tabId){
18685             cfg.tabId = this.tabId;
18686         }
18687         
18688         
18689         
18690         return cfg;
18691     },
18692     
18693     initEvents:  function()
18694     {
18695         var p = this.parent();
18696         
18697         this.navId = this.navId || p.navId;
18698         
18699         if (typeof(this.navId) != 'undefined') {
18700             // not really needed.. but just in case.. parent should be a NavGroup.
18701             var tg = Roo.bootstrap.TabGroup.get(this.navId);
18702             
18703             tg.register(this);
18704             
18705             var i = tg.tabs.length - 1;
18706             
18707             if(this.active && tg.bullets > 0 && i < tg.bullets){
18708                 tg.setActiveBullet(i);
18709             }
18710         }
18711         
18712         this.el.on('click', this.onClick, this);
18713         
18714         if(Roo.isTouch){
18715             this.el.on("touchstart", this.onTouchStart, this);
18716             this.el.on("touchmove", this.onTouchMove, this);
18717             this.el.on("touchend", this.onTouchEnd, this);
18718         }
18719         
18720     },
18721     
18722     onRender : function(ct, position)
18723     {
18724         Roo.bootstrap.TabPanel.superclass.onRender.call(this, ct, position);
18725     },
18726     
18727     setActive : function(state)
18728     {
18729         Roo.log("panel - set active " + this.tabId + "=" + state);
18730         
18731         this.active = state;
18732         if (!state) {
18733             this.el.removeClass('active');
18734             
18735         } else  if (!this.el.hasClass('active')) {
18736             this.el.addClass('active');
18737         }
18738         
18739         this.fireEvent('changed', this, state);
18740     },
18741     
18742     onClick : function(e)
18743     {
18744         e.preventDefault();
18745         
18746         if(!this.href.length){
18747             return;
18748         }
18749         
18750         window.location.href = this.href;
18751     },
18752     
18753     startX : 0,
18754     startY : 0,
18755     endX : 0,
18756     endY : 0,
18757     swiping : false,
18758     
18759     onTouchStart : function(e)
18760     {
18761         this.swiping = false;
18762         
18763         this.startX = e.browserEvent.touches[0].clientX;
18764         this.startY = e.browserEvent.touches[0].clientY;
18765     },
18766     
18767     onTouchMove : function(e)
18768     {
18769         this.swiping = true;
18770         
18771         this.endX = e.browserEvent.touches[0].clientX;
18772         this.endY = e.browserEvent.touches[0].clientY;
18773     },
18774     
18775     onTouchEnd : function(e)
18776     {
18777         if(!this.swiping){
18778             this.onClick(e);
18779             return;
18780         }
18781         
18782         var tabGroup = this.parent();
18783         
18784         if(this.endX > this.startX){ // swiping right
18785             tabGroup.showPanelPrev();
18786             return;
18787         }
18788         
18789         if(this.startX > this.endX){ // swiping left
18790             tabGroup.showPanelNext();
18791             return;
18792         }
18793     }
18794     
18795     
18796 });
18797  
18798
18799  
18800
18801  /*
18802  * - LGPL
18803  *
18804  * DateField
18805  * 
18806  */
18807
18808 /**
18809  * @class Roo.bootstrap.DateField
18810  * @extends Roo.bootstrap.Input
18811  * Bootstrap DateField class
18812  * @cfg {Number} weekStart default 0
18813  * @cfg {String} viewMode default empty, (months|years)
18814  * @cfg {String} minViewMode default empty, (months|years)
18815  * @cfg {Number} startDate default -Infinity
18816  * @cfg {Number} endDate default Infinity
18817  * @cfg {Boolean} todayHighlight default false
18818  * @cfg {Boolean} todayBtn default false
18819  * @cfg {Boolean} calendarWeeks default false
18820  * @cfg {Object} daysOfWeekDisabled default empty
18821  * @cfg {Boolean} singleMode default false (true | false)
18822  * 
18823  * @cfg {Boolean} keyboardNavigation default true
18824  * @cfg {String} language default en
18825  * 
18826  * @constructor
18827  * Create a new DateField
18828  * @param {Object} config The config object
18829  */
18830
18831 Roo.bootstrap.DateField = function(config){
18832     Roo.bootstrap.DateField.superclass.constructor.call(this, config);
18833      this.addEvents({
18834             /**
18835              * @event show
18836              * Fires when this field show.
18837              * @param {Roo.bootstrap.DateField} this
18838              * @param {Mixed} date The date value
18839              */
18840             show : true,
18841             /**
18842              * @event show
18843              * Fires when this field hide.
18844              * @param {Roo.bootstrap.DateField} this
18845              * @param {Mixed} date The date value
18846              */
18847             hide : true,
18848             /**
18849              * @event select
18850              * Fires when select a date.
18851              * @param {Roo.bootstrap.DateField} this
18852              * @param {Mixed} date The date value
18853              */
18854             select : true,
18855             /**
18856              * @event beforeselect
18857              * Fires when before select a date.
18858              * @param {Roo.bootstrap.DateField} this
18859              * @param {Mixed} date The date value
18860              */
18861             beforeselect : true
18862         });
18863 };
18864
18865 Roo.extend(Roo.bootstrap.DateField, Roo.bootstrap.Input,  {
18866     
18867     /**
18868      * @cfg {String} format
18869      * The default date format string which can be overriden for localization support.  The format must be
18870      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
18871      */
18872     format : "m/d/y",
18873     /**
18874      * @cfg {String} altFormats
18875      * Multiple date formats separated by "|" to try when parsing a user input value and it doesn't match the defined
18876      * format (defaults to 'm/d/Y|m-d-y|m-d-Y|m/d|m-d|d').
18877      */
18878     altFormats : "m/d/Y|m-d-y|m-d-Y|m/d|m-d|md|mdy|mdY|d",
18879     
18880     weekStart : 0,
18881     
18882     viewMode : '',
18883     
18884     minViewMode : '',
18885     
18886     todayHighlight : false,
18887     
18888     todayBtn: false,
18889     
18890     language: 'en',
18891     
18892     keyboardNavigation: true,
18893     
18894     calendarWeeks: false,
18895     
18896     startDate: -Infinity,
18897     
18898     endDate: Infinity,
18899     
18900     daysOfWeekDisabled: [],
18901     
18902     _events: [],
18903     
18904     singleMode : false,
18905     
18906     UTCDate: function()
18907     {
18908         return new Date(Date.UTC.apply(Date, arguments));
18909     },
18910     
18911     UTCToday: function()
18912     {
18913         var today = new Date();
18914         return this.UTCDate(today.getUTCFullYear(), today.getUTCMonth(), today.getUTCDate());
18915     },
18916     
18917     getDate: function() {
18918             var d = this.getUTCDate();
18919             return new Date(d.getTime() + (d.getTimezoneOffset()*60000));
18920     },
18921     
18922     getUTCDate: function() {
18923             return this.date;
18924     },
18925     
18926     setDate: function(d) {
18927             this.setUTCDate(new Date(d.getTime() - (d.getTimezoneOffset()*60000)));
18928     },
18929     
18930     setUTCDate: function(d) {
18931             this.date = d;
18932             this.setValue(this.formatDate(this.date));
18933     },
18934         
18935     onRender: function(ct, position)
18936     {
18937         
18938         Roo.bootstrap.DateField.superclass.onRender.call(this, ct, position);
18939         
18940         this.language = this.language || 'en';
18941         this.language = this.language in Roo.bootstrap.DateField.dates ? this.language : this.language.split('-')[0];
18942         this.language = this.language in Roo.bootstrap.DateField.dates ? this.language : "en";
18943         
18944         this.isRTL = Roo.bootstrap.DateField.dates[this.language].rtl || false;
18945         this.format = this.format || 'm/d/y';
18946         this.isInline = false;
18947         this.isInput = true;
18948         this.component = this.el.select('.add-on', true).first() || false;
18949         this.component = (this.component && this.component.length === 0) ? false : this.component;
18950         this.hasInput = this.component && this.inputEl().length;
18951         
18952         if (typeof(this.minViewMode === 'string')) {
18953             switch (this.minViewMode) {
18954                 case 'months':
18955                     this.minViewMode = 1;
18956                     break;
18957                 case 'years':
18958                     this.minViewMode = 2;
18959                     break;
18960                 default:
18961                     this.minViewMode = 0;
18962                     break;
18963             }
18964         }
18965         
18966         if (typeof(this.viewMode === 'string')) {
18967             switch (this.viewMode) {
18968                 case 'months':
18969                     this.viewMode = 1;
18970                     break;
18971                 case 'years':
18972                     this.viewMode = 2;
18973                     break;
18974                 default:
18975                     this.viewMode = 0;
18976                     break;
18977             }
18978         }
18979                 
18980         this.pickerEl = Roo.get(document.body).createChild(Roo.bootstrap.DateField.template);
18981         
18982 //        this.el.select('>.input-group', true).first().createChild(Roo.bootstrap.DateField.template);
18983         
18984         this.picker().setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
18985         
18986         this.picker().on('mousedown', this.onMousedown, this);
18987         this.picker().on('click', this.onClick, this);
18988         
18989         this.picker().addClass('datepicker-dropdown');
18990         
18991         this.startViewMode = this.viewMode;
18992         
18993         if(this.singleMode){
18994             Roo.each(this.picker().select('thead > tr > th', true).elements, function(v){
18995                 v.setVisibilityMode(Roo.Element.DISPLAY);
18996                 v.hide();
18997             });
18998             
18999             Roo.each(this.picker().select('tbody > tr > td', true).elements, function(v){
19000                 v.setStyle('width', '189px');
19001             });
19002         }
19003         
19004         Roo.each(this.picker().select('tfoot th.today', true).elements, function(v){
19005             if(!this.calendarWeeks){
19006                 v.remove();
19007                 return;
19008             }
19009             
19010             v.dom.innerHTML = Roo.bootstrap.DateField.dates[this.language].today;
19011             v.attr('colspan', function(i, val){
19012                 return parseInt(val) + 1;
19013             });
19014         });
19015                         
19016         
19017         this.weekEnd = this.weekStart === 0 ? 6 : this.weekStart - 1;
19018         
19019         this.setStartDate(this.startDate);
19020         this.setEndDate(this.endDate);
19021         
19022         this.setDaysOfWeekDisabled(this.daysOfWeekDisabled);
19023         
19024         this.fillDow();
19025         this.fillMonths();
19026         this.update();
19027         this.showMode();
19028         
19029         if(this.isInline) {
19030             this.showPopup();
19031         }
19032     },
19033     
19034     picker : function()
19035     {
19036         return this.pickerEl;
19037 //        return this.el.select('.datepicker', true).first();
19038     },
19039     
19040     fillDow: function()
19041     {
19042         var dowCnt = this.weekStart;
19043         
19044         var dow = {
19045             tag: 'tr',
19046             cn: [
19047                 
19048             ]
19049         };
19050         
19051         if(this.calendarWeeks){
19052             dow.cn.push({
19053                 tag: 'th',
19054                 cls: 'cw',
19055                 html: '&nbsp;'
19056             })
19057         }
19058         
19059         while (dowCnt < this.weekStart + 7) {
19060             dow.cn.push({
19061                 tag: 'th',
19062                 cls: 'dow',
19063                 html: Roo.bootstrap.DateField.dates[this.language].daysMin[(dowCnt++)%7]
19064             });
19065         }
19066         
19067         this.picker().select('>.datepicker-days thead', true).first().createChild(dow);
19068     },
19069     
19070     fillMonths: function()
19071     {    
19072         var i = 0;
19073         var months = this.picker().select('>.datepicker-months td', true).first();
19074         
19075         months.dom.innerHTML = '';
19076         
19077         while (i < 12) {
19078             var month = {
19079                 tag: 'span',
19080                 cls: 'month',
19081                 html: Roo.bootstrap.DateField.dates[this.language].monthsShort[i++]
19082             };
19083             
19084             months.createChild(month);
19085         }
19086         
19087     },
19088     
19089     update: function()
19090     {
19091         this.date = (typeof(this.date) === 'undefined' || ((typeof(this.date) === 'string') && !this.date.length)) ? this.UTCToday() : (typeof(this.date) === 'string') ? this.parseDate(this.date) : this.date;
19092         
19093         if (this.date < this.startDate) {
19094             this.viewDate = new Date(this.startDate);
19095         } else if (this.date > this.endDate) {
19096             this.viewDate = new Date(this.endDate);
19097         } else {
19098             this.viewDate = new Date(this.date);
19099         }
19100         
19101         this.fill();
19102     },
19103     
19104     fill: function() 
19105     {
19106         var d = new Date(this.viewDate),
19107                 year = d.getUTCFullYear(),
19108                 month = d.getUTCMonth(),
19109                 startYear = this.startDate !== -Infinity ? this.startDate.getUTCFullYear() : -Infinity,
19110                 startMonth = this.startDate !== -Infinity ? this.startDate.getUTCMonth() : -Infinity,
19111                 endYear = this.endDate !== Infinity ? this.endDate.getUTCFullYear() : Infinity,
19112                 endMonth = this.endDate !== Infinity ? this.endDate.getUTCMonth() : Infinity,
19113                 currentDate = this.date && this.date.valueOf(),
19114                 today = this.UTCToday();
19115         
19116         this.picker().select('>.datepicker-days thead th.switch', true).first().dom.innerHTML = Roo.bootstrap.DateField.dates[this.language].months[month]+' '+year;
19117         
19118 //        this.picker().select('>tfoot th.today', true).first().dom.innerHTML = Roo.bootstrap.DateField.dates[this.language].today;
19119         
19120 //        this.picker.select('>tfoot th.today').
19121 //                                              .text(dates[this.language].today)
19122 //                                              .toggle(this.todayBtn !== false);
19123     
19124         this.updateNavArrows();
19125         this.fillMonths();
19126                                                 
19127         var prevMonth = this.UTCDate(year, month-1, 28,0,0,0,0),
19128         
19129         day = prevMonth.getDaysInMonth(prevMonth.getUTCFullYear(), prevMonth.getUTCMonth());
19130          
19131         prevMonth.setUTCDate(day);
19132         
19133         prevMonth.setUTCDate(day - (prevMonth.getUTCDay() - this.weekStart + 7)%7);
19134         
19135         var nextMonth = new Date(prevMonth);
19136         
19137         nextMonth.setUTCDate(nextMonth.getUTCDate() + 42);
19138         
19139         nextMonth = nextMonth.valueOf();
19140         
19141         var fillMonths = false;
19142         
19143         this.picker().select('>.datepicker-days tbody',true).first().dom.innerHTML = '';
19144         
19145         while(prevMonth.valueOf() <= nextMonth) {
19146             var clsName = '';
19147             
19148             if (prevMonth.getUTCDay() === this.weekStart) {
19149                 if(fillMonths){
19150                     this.picker().select('>.datepicker-days tbody',true).first().createChild(fillMonths);
19151                 }
19152                     
19153                 fillMonths = {
19154                     tag: 'tr',
19155                     cn: []
19156                 };
19157                 
19158                 if(this.calendarWeeks){
19159                     // ISO 8601: First week contains first thursday.
19160                     // ISO also states week starts on Monday, but we can be more abstract here.
19161                     var
19162                     // Start of current week: based on weekstart/current date
19163                     ws = new Date(+prevMonth + (this.weekStart - prevMonth.getUTCDay() - 7) % 7 * 864e5),
19164                     // Thursday of this week
19165                     th = new Date(+ws + (7 + 4 - ws.getUTCDay()) % 7 * 864e5),
19166                     // First Thursday of year, year from thursday
19167                     yth = new Date(+(yth = this.UTCDate(th.getUTCFullYear(), 0, 1)) + (7 + 4 - yth.getUTCDay())%7*864e5),
19168                     // Calendar week: ms between thursdays, div ms per day, div 7 days
19169                     calWeek =  (th - yth) / 864e5 / 7 + 1;
19170                     
19171                     fillMonths.cn.push({
19172                         tag: 'td',
19173                         cls: 'cw',
19174                         html: calWeek
19175                     });
19176                 }
19177             }
19178             
19179             if (prevMonth.getUTCFullYear() < year || (prevMonth.getUTCFullYear() == year && prevMonth.getUTCMonth() < month)) {
19180                 clsName += ' old';
19181             } else if (prevMonth.getUTCFullYear() > year || (prevMonth.getUTCFullYear() == year && prevMonth.getUTCMonth() > month)) {
19182                 clsName += ' new';
19183             }
19184             if (this.todayHighlight &&
19185                 prevMonth.getUTCFullYear() == today.getFullYear() &&
19186                 prevMonth.getUTCMonth() == today.getMonth() &&
19187                 prevMonth.getUTCDate() == today.getDate()) {
19188                 clsName += ' today';
19189             }
19190             
19191             if (currentDate && prevMonth.valueOf() === currentDate) {
19192                 clsName += ' active';
19193             }
19194             
19195             if (prevMonth.valueOf() < this.startDate || prevMonth.valueOf() > this.endDate ||
19196                     this.daysOfWeekDisabled.indexOf(prevMonth.getUTCDay()) !== -1) {
19197                     clsName += ' disabled';
19198             }
19199             
19200             fillMonths.cn.push({
19201                 tag: 'td',
19202                 cls: 'day ' + clsName,
19203                 html: prevMonth.getDate()
19204             });
19205             
19206             prevMonth.setDate(prevMonth.getDate()+1);
19207         }
19208           
19209         var currentYear = this.date && this.date.getUTCFullYear();
19210         var currentMonth = this.date && this.date.getUTCMonth();
19211         
19212         this.picker().select('>.datepicker-months th.switch',true).first().dom.innerHTML = year;
19213         
19214         Roo.each(this.picker().select('>.datepicker-months tbody span',true).elements, function(v,k){
19215             v.removeClass('active');
19216             
19217             if(currentYear === year && k === currentMonth){
19218                 v.addClass('active');
19219             }
19220             
19221             if (year < startYear || year > endYear || (year == startYear && k < startMonth) || (year == endYear && k > endMonth)) {
19222                 v.addClass('disabled');
19223             }
19224             
19225         });
19226         
19227         
19228         year = parseInt(year/10, 10) * 10;
19229         
19230         this.picker().select('>.datepicker-years th.switch', true).first().dom.innerHTML = year + '-' + (year + 9);
19231         
19232         this.picker().select('>.datepicker-years tbody td',true).first().dom.innerHTML = '';
19233         
19234         year -= 1;
19235         for (var i = -1; i < 11; i++) {
19236             this.picker().select('>.datepicker-years tbody td',true).first().createChild({
19237                 tag: 'span',
19238                 cls: 'year' + (i === -1 || i === 10 ? ' old' : '') + (currentYear === year ? ' active' : '') + (year < startYear || year > endYear ? ' disabled' : ''),
19239                 html: year
19240             });
19241             
19242             year += 1;
19243         }
19244     },
19245     
19246     showMode: function(dir) 
19247     {
19248         if (dir) {
19249             this.viewMode = Math.max(this.minViewMode, Math.min(2, this.viewMode + dir));
19250         }
19251         
19252         Roo.each(this.picker().select('>div',true).elements, function(v){
19253             v.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
19254             v.hide();
19255         });
19256         this.picker().select('>.datepicker-'+Roo.bootstrap.DateField.modes[this.viewMode].clsName, true).first().show();
19257     },
19258     
19259     place: function()
19260     {
19261         if(this.isInline) {
19262             return;
19263         }
19264         
19265         this.picker().removeClass(['bottom', 'top']);
19266         
19267         if((Roo.lib.Dom.getViewHeight() + Roo.get(document.body).getScroll().top) - (this.inputEl().getBottom() + this.picker().getHeight()) < 0){
19268             /*
19269              * place to the top of element!
19270              *
19271              */
19272             
19273             this.picker().addClass('top');
19274             this.picker().setTop(this.inputEl().getTop() - this.picker().getHeight()).setLeft(this.inputEl().getLeft());
19275             
19276             return;
19277         }
19278         
19279         this.picker().addClass('bottom');
19280         
19281         this.picker().setTop(this.inputEl().getBottom()).setLeft(this.inputEl().getLeft());
19282     },
19283     
19284     parseDate : function(value)
19285     {
19286         if(!value || value instanceof Date){
19287             return value;
19288         }
19289         var v = Date.parseDate(value, this.format);
19290         if (!v && (this.useIso || value.match(/^(\d{4})-0?(\d+)-0?(\d+)/))) {
19291             v = Date.parseDate(value, 'Y-m-d');
19292         }
19293         if(!v && this.altFormats){
19294             if(!this.altFormatsArray){
19295                 this.altFormatsArray = this.altFormats.split("|");
19296             }
19297             for(var i = 0, len = this.altFormatsArray.length; i < len && !v; i++){
19298                 v = Date.parseDate(value, this.altFormatsArray[i]);
19299             }
19300         }
19301         return v;
19302     },
19303     
19304     formatDate : function(date, fmt)
19305     {   
19306         return (!date || !(date instanceof Date)) ?
19307         date : date.dateFormat(fmt || this.format);
19308     },
19309     
19310     onFocus : function()
19311     {
19312         Roo.bootstrap.DateField.superclass.onFocus.call(this);
19313         this.showPopup();
19314     },
19315     
19316     onBlur : function()
19317     {
19318         Roo.bootstrap.DateField.superclass.onBlur.call(this);
19319         
19320         var d = this.inputEl().getValue();
19321         
19322         this.setValue(d);
19323                 
19324         this.hidePopup();
19325     },
19326     
19327     showPopup : function()
19328     {
19329         this.picker().show();
19330         this.update();
19331         this.place();
19332         
19333         this.fireEvent('showpopup', this, this.date);
19334     },
19335     
19336     hidePopup : function()
19337     {
19338         if(this.isInline) {
19339             return;
19340         }
19341         this.picker().hide();
19342         this.viewMode = this.startViewMode;
19343         this.showMode();
19344         
19345         this.fireEvent('hidepopup', this, this.date);
19346         
19347     },
19348     
19349     onMousedown: function(e)
19350     {
19351         e.stopPropagation();
19352         e.preventDefault();
19353     },
19354     
19355     keyup: function(e)
19356     {
19357         Roo.bootstrap.DateField.superclass.keyup.call(this);
19358         this.update();
19359     },
19360
19361     setValue: function(v)
19362     {
19363         if(this.fireEvent('beforeselect', this, v) !== false){
19364             var d = new Date(this.parseDate(v) ).clearTime();
19365         
19366             if(isNaN(d.getTime())){
19367                 this.date = this.viewDate = '';
19368                 Roo.bootstrap.DateField.superclass.setValue.call(this, '');
19369                 return;
19370             }
19371
19372             v = this.formatDate(d);
19373
19374             Roo.bootstrap.DateField.superclass.setValue.call(this, v);
19375
19376             this.date = new Date(d.getTime() - d.getTimezoneOffset()*60000);
19377
19378             this.update();
19379
19380             this.fireEvent('select', this, this.date);
19381         }
19382     },
19383     
19384     getValue: function()
19385     {
19386         return this.formatDate(this.date);
19387     },
19388     
19389     fireKey: function(e)
19390     {
19391         if (!this.picker().isVisible()){
19392             if (e.keyCode == 27) { // allow escape to hide and re-show picker
19393                 this.showPopup();
19394             }
19395             return;
19396         }
19397         
19398         var dateChanged = false,
19399         dir, day, month,
19400         newDate, newViewDate;
19401         
19402         switch(e.keyCode){
19403             case 27: // escape
19404                 this.hidePopup();
19405                 e.preventDefault();
19406                 break;
19407             case 37: // left
19408             case 39: // right
19409                 if (!this.keyboardNavigation) {
19410                     break;
19411                 }
19412                 dir = e.keyCode == 37 ? -1 : 1;
19413                 
19414                 if (e.ctrlKey){
19415                     newDate = this.moveYear(this.date, dir);
19416                     newViewDate = this.moveYear(this.viewDate, dir);
19417                 } else if (e.shiftKey){
19418                     newDate = this.moveMonth(this.date, dir);
19419                     newViewDate = this.moveMonth(this.viewDate, dir);
19420                 } else {
19421                     newDate = new Date(this.date);
19422                     newDate.setUTCDate(this.date.getUTCDate() + dir);
19423                     newViewDate = new Date(this.viewDate);
19424                     newViewDate.setUTCDate(this.viewDate.getUTCDate() + dir);
19425                 }
19426                 if (this.dateWithinRange(newDate)){
19427                     this.date = newDate;
19428                     this.viewDate = newViewDate;
19429                     this.setValue(this.formatDate(this.date));
19430 //                    this.update();
19431                     e.preventDefault();
19432                     dateChanged = true;
19433                 }
19434                 break;
19435             case 38: // up
19436             case 40: // down
19437                 if (!this.keyboardNavigation) {
19438                     break;
19439                 }
19440                 dir = e.keyCode == 38 ? -1 : 1;
19441                 if (e.ctrlKey){
19442                     newDate = this.moveYear(this.date, dir);
19443                     newViewDate = this.moveYear(this.viewDate, dir);
19444                 } else if (e.shiftKey){
19445                     newDate = this.moveMonth(this.date, dir);
19446                     newViewDate = this.moveMonth(this.viewDate, dir);
19447                 } else {
19448                     newDate = new Date(this.date);
19449                     newDate.setUTCDate(this.date.getUTCDate() + dir * 7);
19450                     newViewDate = new Date(this.viewDate);
19451                     newViewDate.setUTCDate(this.viewDate.getUTCDate() + dir * 7);
19452                 }
19453                 if (this.dateWithinRange(newDate)){
19454                     this.date = newDate;
19455                     this.viewDate = newViewDate;
19456                     this.setValue(this.formatDate(this.date));
19457 //                    this.update();
19458                     e.preventDefault();
19459                     dateChanged = true;
19460                 }
19461                 break;
19462             case 13: // enter
19463                 this.setValue(this.formatDate(this.date));
19464                 this.hidePopup();
19465                 e.preventDefault();
19466                 break;
19467             case 9: // tab
19468                 this.setValue(this.formatDate(this.date));
19469                 this.hidePopup();
19470                 break;
19471             case 16: // shift
19472             case 17: // ctrl
19473             case 18: // alt
19474                 break;
19475             default :
19476                 this.hidePopup();
19477                 
19478         }
19479     },
19480     
19481     
19482     onClick: function(e) 
19483     {
19484         e.stopPropagation();
19485         e.preventDefault();
19486         
19487         var target = e.getTarget();
19488         
19489         if(target.nodeName.toLowerCase() === 'i'){
19490             target = Roo.get(target).dom.parentNode;
19491         }
19492         
19493         var nodeName = target.nodeName;
19494         var className = target.className;
19495         var html = target.innerHTML;
19496         //Roo.log(nodeName);
19497         
19498         switch(nodeName.toLowerCase()) {
19499             case 'th':
19500                 switch(className) {
19501                     case 'switch':
19502                         this.showMode(1);
19503                         break;
19504                     case 'prev':
19505                     case 'next':
19506                         var dir = Roo.bootstrap.DateField.modes[this.viewMode].navStep * (className == 'prev' ? -1 : 1);
19507                         switch(this.viewMode){
19508                                 case 0:
19509                                         this.viewDate = this.moveMonth(this.viewDate, dir);
19510                                         break;
19511                                 case 1:
19512                                 case 2:
19513                                         this.viewDate = this.moveYear(this.viewDate, dir);
19514                                         break;
19515                         }
19516                         this.fill();
19517                         break;
19518                     case 'today':
19519                         var date = new Date();
19520                         this.date = this.UTCDate(date.getFullYear(), date.getMonth(), date.getDate(), 0, 0, 0);
19521 //                        this.fill()
19522                         this.setValue(this.formatDate(this.date));
19523                         
19524                         this.hidePopup();
19525                         break;
19526                 }
19527                 break;
19528             case 'span':
19529                 if (className.indexOf('disabled') < 0) {
19530                     this.viewDate.setUTCDate(1);
19531                     if (className.indexOf('month') > -1) {
19532                         this.viewDate.setUTCMonth(Roo.bootstrap.DateField.dates[this.language].monthsShort.indexOf(html));
19533                     } else {
19534                         var year = parseInt(html, 10) || 0;
19535                         this.viewDate.setUTCFullYear(year);
19536                         
19537                     }
19538                     
19539                     if(this.singleMode){
19540                         this.setValue(this.formatDate(this.viewDate));
19541                         this.hidePopup();
19542                         return;
19543                     }
19544                     
19545                     this.showMode(-1);
19546                     this.fill();
19547                 }
19548                 break;
19549                 
19550             case 'td':
19551                 //Roo.log(className);
19552                 if (className.indexOf('day') > -1 && className.indexOf('disabled') < 0 ){
19553                     var day = parseInt(html, 10) || 1;
19554                     var year = this.viewDate.getUTCFullYear(),
19555                         month = this.viewDate.getUTCMonth();
19556
19557                     if (className.indexOf('old') > -1) {
19558                         if(month === 0 ){
19559                             month = 11;
19560                             year -= 1;
19561                         }else{
19562                             month -= 1;
19563                         }
19564                     } else if (className.indexOf('new') > -1) {
19565                         if (month == 11) {
19566                             month = 0;
19567                             year += 1;
19568                         } else {
19569                             month += 1;
19570                         }
19571                     }
19572                     //Roo.log([year,month,day]);
19573                     this.date = this.UTCDate(year, month, day,0,0,0,0);
19574                     this.viewDate = this.UTCDate(year, month, Math.min(28, day),0,0,0,0);
19575 //                    this.fill();
19576                     //Roo.log(this.formatDate(this.date));
19577                     this.setValue(this.formatDate(this.date));
19578                     this.hidePopup();
19579                 }
19580                 break;
19581         }
19582     },
19583     
19584     setStartDate: function(startDate)
19585     {
19586         this.startDate = startDate || -Infinity;
19587         if (this.startDate !== -Infinity) {
19588             this.startDate = this.parseDate(this.startDate);
19589         }
19590         this.update();
19591         this.updateNavArrows();
19592     },
19593
19594     setEndDate: function(endDate)
19595     {
19596         this.endDate = endDate || Infinity;
19597         if (this.endDate !== Infinity) {
19598             this.endDate = this.parseDate(this.endDate);
19599         }
19600         this.update();
19601         this.updateNavArrows();
19602     },
19603     
19604     setDaysOfWeekDisabled: function(daysOfWeekDisabled)
19605     {
19606         this.daysOfWeekDisabled = daysOfWeekDisabled || [];
19607         if (typeof(this.daysOfWeekDisabled) !== 'object') {
19608             this.daysOfWeekDisabled = this.daysOfWeekDisabled.split(/,\s*/);
19609         }
19610         this.daysOfWeekDisabled = this.daysOfWeekDisabled.map(function (d) {
19611             return parseInt(d, 10);
19612         });
19613         this.update();
19614         this.updateNavArrows();
19615     },
19616     
19617     updateNavArrows: function() 
19618     {
19619         if(this.singleMode){
19620             return;
19621         }
19622         
19623         var d = new Date(this.viewDate),
19624         year = d.getUTCFullYear(),
19625         month = d.getUTCMonth();
19626         
19627         Roo.each(this.picker().select('.prev', true).elements, function(v){
19628             v.show();
19629             switch (this.viewMode) {
19630                 case 0:
19631
19632                     if (this.startDate !== -Infinity && year <= this.startDate.getUTCFullYear() && month <= this.startDate.getUTCMonth()) {
19633                         v.hide();
19634                     }
19635                     break;
19636                 case 1:
19637                 case 2:
19638                     if (this.startDate !== -Infinity && year <= this.startDate.getUTCFullYear()) {
19639                         v.hide();
19640                     }
19641                     break;
19642             }
19643         });
19644         
19645         Roo.each(this.picker().select('.next', true).elements, function(v){
19646             v.show();
19647             switch (this.viewMode) {
19648                 case 0:
19649
19650                     if (this.endDate !== Infinity && year >= this.endDate.getUTCFullYear() && month >= this.endDate.getUTCMonth()) {
19651                         v.hide();
19652                     }
19653                     break;
19654                 case 1:
19655                 case 2:
19656                     if (this.endDate !== Infinity && year >= this.endDate.getUTCFullYear()) {
19657                         v.hide();
19658                     }
19659                     break;
19660             }
19661         })
19662     },
19663     
19664     moveMonth: function(date, dir)
19665     {
19666         if (!dir) {
19667             return date;
19668         }
19669         var new_date = new Date(date.valueOf()),
19670         day = new_date.getUTCDate(),
19671         month = new_date.getUTCMonth(),
19672         mag = Math.abs(dir),
19673         new_month, test;
19674         dir = dir > 0 ? 1 : -1;
19675         if (mag == 1){
19676             test = dir == -1
19677             // If going back one month, make sure month is not current month
19678             // (eg, Mar 31 -> Feb 31 == Feb 28, not Mar 02)
19679             ? function(){
19680                 return new_date.getUTCMonth() == month;
19681             }
19682             // If going forward one month, make sure month is as expected
19683             // (eg, Jan 31 -> Feb 31 == Feb 28, not Mar 02)
19684             : function(){
19685                 return new_date.getUTCMonth() != new_month;
19686             };
19687             new_month = month + dir;
19688             new_date.setUTCMonth(new_month);
19689             // Dec -> Jan (12) or Jan -> Dec (-1) -- limit expected date to 0-11
19690             if (new_month < 0 || new_month > 11) {
19691                 new_month = (new_month + 12) % 12;
19692             }
19693         } else {
19694             // For magnitudes >1, move one month at a time...
19695             for (var i=0; i<mag; i++) {
19696                 // ...which might decrease the day (eg, Jan 31 to Feb 28, etc)...
19697                 new_date = this.moveMonth(new_date, dir);
19698             }
19699             // ...then reset the day, keeping it in the new month
19700             new_month = new_date.getUTCMonth();
19701             new_date.setUTCDate(day);
19702             test = function(){
19703                 return new_month != new_date.getUTCMonth();
19704             };
19705         }
19706         // Common date-resetting loop -- if date is beyond end of month, make it
19707         // end of month
19708         while (test()){
19709             new_date.setUTCDate(--day);
19710             new_date.setUTCMonth(new_month);
19711         }
19712         return new_date;
19713     },
19714
19715     moveYear: function(date, dir)
19716     {
19717         return this.moveMonth(date, dir*12);
19718     },
19719
19720     dateWithinRange: function(date)
19721     {
19722         return date >= this.startDate && date <= this.endDate;
19723     },
19724
19725     
19726     remove: function() 
19727     {
19728         this.picker().remove();
19729     },
19730     
19731     validateValue : function(value)
19732     {
19733         if(this.getVisibilityEl().hasClass('hidden')){
19734             return true;
19735         }
19736         
19737         if(value.length < 1)  {
19738             if(this.allowBlank){
19739                 return true;
19740             }
19741             return false;
19742         }
19743         
19744         if(value.length < this.minLength){
19745             return false;
19746         }
19747         if(value.length > this.maxLength){
19748             return false;
19749         }
19750         if(this.vtype){
19751             var vt = Roo.form.VTypes;
19752             if(!vt[this.vtype](value, this)){
19753                 return false;
19754             }
19755         }
19756         if(typeof this.validator == "function"){
19757             var msg = this.validator(value);
19758             if(msg !== true){
19759                 return false;
19760             }
19761         }
19762         
19763         if(this.regex && !this.regex.test(value)){
19764             return false;
19765         }
19766         
19767         if(typeof(this.parseDate(value)) == 'undefined'){
19768             return false;
19769         }
19770         
19771         if (this.endDate !== Infinity && this.parseDate(value).getTime() > this.endDate.getTime()) {
19772             return false;
19773         }      
19774         
19775         if (this.startDate !== -Infinity && this.parseDate(value).getTime() < this.startDate.getTime()) {
19776             return false;
19777         } 
19778         
19779         
19780         return true;
19781     },
19782     
19783     reset : function()
19784     {
19785         this.date = this.viewDate = '';
19786         
19787         Roo.bootstrap.DateField.superclass.setValue.call(this, '');
19788     }
19789    
19790 });
19791
19792 Roo.apply(Roo.bootstrap.DateField,  {
19793     
19794     head : {
19795         tag: 'thead',
19796         cn: [
19797         {
19798             tag: 'tr',
19799             cn: [
19800             {
19801                 tag: 'th',
19802                 cls: 'prev',
19803                 html: '<i class="fa fa-arrow-left"/>'
19804             },
19805             {
19806                 tag: 'th',
19807                 cls: 'switch',
19808                 colspan: '5'
19809             },
19810             {
19811                 tag: 'th',
19812                 cls: 'next',
19813                 html: '<i class="fa fa-arrow-right"/>'
19814             }
19815
19816             ]
19817         }
19818         ]
19819     },
19820     
19821     content : {
19822         tag: 'tbody',
19823         cn: [
19824         {
19825             tag: 'tr',
19826             cn: [
19827             {
19828                 tag: 'td',
19829                 colspan: '7'
19830             }
19831             ]
19832         }
19833         ]
19834     },
19835     
19836     footer : {
19837         tag: 'tfoot',
19838         cn: [
19839         {
19840             tag: 'tr',
19841             cn: [
19842             {
19843                 tag: 'th',
19844                 colspan: '7',
19845                 cls: 'today'
19846             }
19847                     
19848             ]
19849         }
19850         ]
19851     },
19852     
19853     dates:{
19854         en: {
19855             days: ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"],
19856             daysShort: ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"],
19857             daysMin: ["Su", "Mo", "Tu", "We", "Th", "Fr", "Sa", "Su"],
19858             months: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"],
19859             monthsShort: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"],
19860             today: "Today"
19861         }
19862     },
19863     
19864     modes: [
19865     {
19866         clsName: 'days',
19867         navFnc: 'Month',
19868         navStep: 1
19869     },
19870     {
19871         clsName: 'months',
19872         navFnc: 'FullYear',
19873         navStep: 1
19874     },
19875     {
19876         clsName: 'years',
19877         navFnc: 'FullYear',
19878         navStep: 10
19879     }]
19880 });
19881
19882 Roo.apply(Roo.bootstrap.DateField,  {
19883   
19884     template : {
19885         tag: 'div',
19886         cls: 'datepicker dropdown-menu roo-dynamic',
19887         cn: [
19888         {
19889             tag: 'div',
19890             cls: 'datepicker-days',
19891             cn: [
19892             {
19893                 tag: 'table',
19894                 cls: 'table-condensed',
19895                 cn:[
19896                 Roo.bootstrap.DateField.head,
19897                 {
19898                     tag: 'tbody'
19899                 },
19900                 Roo.bootstrap.DateField.footer
19901                 ]
19902             }
19903             ]
19904         },
19905         {
19906             tag: 'div',
19907             cls: 'datepicker-months',
19908             cn: [
19909             {
19910                 tag: 'table',
19911                 cls: 'table-condensed',
19912                 cn:[
19913                 Roo.bootstrap.DateField.head,
19914                 Roo.bootstrap.DateField.content,
19915                 Roo.bootstrap.DateField.footer
19916                 ]
19917             }
19918             ]
19919         },
19920         {
19921             tag: 'div',
19922             cls: 'datepicker-years',
19923             cn: [
19924             {
19925                 tag: 'table',
19926                 cls: 'table-condensed',
19927                 cn:[
19928                 Roo.bootstrap.DateField.head,
19929                 Roo.bootstrap.DateField.content,
19930                 Roo.bootstrap.DateField.footer
19931                 ]
19932             }
19933             ]
19934         }
19935         ]
19936     }
19937 });
19938
19939  
19940
19941  /*
19942  * - LGPL
19943  *
19944  * TimeField
19945  * 
19946  */
19947
19948 /**
19949  * @class Roo.bootstrap.TimeField
19950  * @extends Roo.bootstrap.Input
19951  * Bootstrap DateField class
19952  * 
19953  * 
19954  * @constructor
19955  * Create a new TimeField
19956  * @param {Object} config The config object
19957  */
19958
19959 Roo.bootstrap.TimeField = function(config){
19960     Roo.bootstrap.TimeField.superclass.constructor.call(this, config);
19961     this.addEvents({
19962             /**
19963              * @event show
19964              * Fires when this field show.
19965              * @param {Roo.bootstrap.DateField} thisthis
19966              * @param {Mixed} date The date value
19967              */
19968             show : true,
19969             /**
19970              * @event show
19971              * Fires when this field hide.
19972              * @param {Roo.bootstrap.DateField} this
19973              * @param {Mixed} date The date value
19974              */
19975             hide : true,
19976             /**
19977              * @event select
19978              * Fires when select a date.
19979              * @param {Roo.bootstrap.DateField} this
19980              * @param {Mixed} date The date value
19981              */
19982             select : true
19983         });
19984 };
19985
19986 Roo.extend(Roo.bootstrap.TimeField, Roo.bootstrap.Input,  {
19987     
19988     /**
19989      * @cfg {String} format
19990      * The default time format string which can be overriden for localization support.  The format must be
19991      * valid according to {@link Date#parseDate} (defaults to 'H:i').
19992      */
19993     format : "H:i",
19994        
19995     onRender: function(ct, position)
19996     {
19997         
19998         Roo.bootstrap.TimeField.superclass.onRender.call(this, ct, position);
19999                 
20000         this.el.select('>.input-group', true).first().createChild(Roo.bootstrap.TimeField.template);
20001         
20002         this.picker().setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
20003         
20004         this.pop = this.picker().select('>.datepicker-time',true).first();
20005         this.pop.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
20006         
20007         this.picker().on('mousedown', this.onMousedown, this);
20008         this.picker().on('click', this.onClick, this);
20009         
20010         this.picker().addClass('datepicker-dropdown');
20011     
20012         this.fillTime();
20013         this.update();
20014             
20015         this.pop.select('span.hours-up', true).first().on('click', this.onIncrementHours, this);
20016         this.pop.select('span.hours-down', true).first().on('click', this.onDecrementHours, this);
20017         this.pop.select('span.minutes-up', true).first().on('click', this.onIncrementMinutes, this);
20018         this.pop.select('span.minutes-down', true).first().on('click', this.onDecrementMinutes, this);
20019         this.pop.select('button.period', true).first().on('click', this.onTogglePeriod, this);
20020         this.pop.select('button.ok', true).first().on('click', this.setTime, this);
20021
20022     },
20023     
20024     fireKey: function(e){
20025         if (!this.picker().isVisible()){
20026             if (e.keyCode == 27) { // allow escape to hide and re-show picker
20027                 this.show();
20028             }
20029             return;
20030         }
20031
20032         e.preventDefault();
20033         
20034         switch(e.keyCode){
20035             case 27: // escape
20036                 this.hide();
20037                 break;
20038             case 37: // left
20039             case 39: // right
20040                 this.onTogglePeriod();
20041                 break;
20042             case 38: // up
20043                 this.onIncrementMinutes();
20044                 break;
20045             case 40: // down
20046                 this.onDecrementMinutes();
20047                 break;
20048             case 13: // enter
20049             case 9: // tab
20050                 this.setTime();
20051                 break;
20052         }
20053     },
20054     
20055     onClick: function(e) {
20056         e.stopPropagation();
20057         e.preventDefault();
20058     },
20059     
20060     picker : function()
20061     {
20062         return this.el.select('.datepicker', true).first();
20063     },
20064     
20065     fillTime: function()
20066     {    
20067         var time = this.pop.select('tbody', true).first();
20068         
20069         time.dom.innerHTML = '';
20070         
20071         time.createChild({
20072             tag: 'tr',
20073             cn: [
20074                 {
20075                     tag: 'td',
20076                     cn: [
20077                         {
20078                             tag: 'a',
20079                             href: '#',
20080                             cls: 'btn',
20081                             cn: [
20082                                 {
20083                                     tag: 'span',
20084                                     cls: 'hours-up glyphicon glyphicon-chevron-up'
20085                                 }
20086                             ]
20087                         } 
20088                     ]
20089                 },
20090                 {
20091                     tag: 'td',
20092                     cls: 'separator'
20093                 },
20094                 {
20095                     tag: 'td',
20096                     cn: [
20097                         {
20098                             tag: 'a',
20099                             href: '#',
20100                             cls: 'btn',
20101                             cn: [
20102                                 {
20103                                     tag: 'span',
20104                                     cls: 'minutes-up glyphicon glyphicon-chevron-up'
20105                                 }
20106                             ]
20107                         }
20108                     ]
20109                 },
20110                 {
20111                     tag: 'td',
20112                     cls: 'separator'
20113                 }
20114             ]
20115         });
20116         
20117         time.createChild({
20118             tag: 'tr',
20119             cn: [
20120                 {
20121                     tag: 'td',
20122                     cn: [
20123                         {
20124                             tag: 'span',
20125                             cls: 'timepicker-hour',
20126                             html: '00'
20127                         }  
20128                     ]
20129                 },
20130                 {
20131                     tag: 'td',
20132                     cls: 'separator',
20133                     html: ':'
20134                 },
20135                 {
20136                     tag: 'td',
20137                     cn: [
20138                         {
20139                             tag: 'span',
20140                             cls: 'timepicker-minute',
20141                             html: '00'
20142                         }  
20143                     ]
20144                 },
20145                 {
20146                     tag: 'td',
20147                     cls: 'separator'
20148                 },
20149                 {
20150                     tag: 'td',
20151                     cn: [
20152                         {
20153                             tag: 'button',
20154                             type: 'button',
20155                             cls: 'btn btn-primary period',
20156                             html: 'AM'
20157                             
20158                         }
20159                     ]
20160                 }
20161             ]
20162         });
20163         
20164         time.createChild({
20165             tag: 'tr',
20166             cn: [
20167                 {
20168                     tag: 'td',
20169                     cn: [
20170                         {
20171                             tag: 'a',
20172                             href: '#',
20173                             cls: 'btn',
20174                             cn: [
20175                                 {
20176                                     tag: 'span',
20177                                     cls: 'hours-down glyphicon glyphicon-chevron-down'
20178                                 }
20179                             ]
20180                         }
20181                     ]
20182                 },
20183                 {
20184                     tag: 'td',
20185                     cls: 'separator'
20186                 },
20187                 {
20188                     tag: 'td',
20189                     cn: [
20190                         {
20191                             tag: 'a',
20192                             href: '#',
20193                             cls: 'btn',
20194                             cn: [
20195                                 {
20196                                     tag: 'span',
20197                                     cls: 'minutes-down glyphicon glyphicon-chevron-down'
20198                                 }
20199                             ]
20200                         }
20201                     ]
20202                 },
20203                 {
20204                     tag: 'td',
20205                     cls: 'separator'
20206                 }
20207             ]
20208         });
20209         
20210     },
20211     
20212     update: function()
20213     {
20214         
20215         this.time = (typeof(this.time) === 'undefined') ? new Date() : this.time;
20216         
20217         this.fill();
20218     },
20219     
20220     fill: function() 
20221     {
20222         var hours = this.time.getHours();
20223         var minutes = this.time.getMinutes();
20224         var period = 'AM';
20225         
20226         if(hours > 11){
20227             period = 'PM';
20228         }
20229         
20230         if(hours == 0){
20231             hours = 12;
20232         }
20233         
20234         
20235         if(hours > 12){
20236             hours = hours - 12;
20237         }
20238         
20239         if(hours < 10){
20240             hours = '0' + hours;
20241         }
20242         
20243         if(minutes < 10){
20244             minutes = '0' + minutes;
20245         }
20246         
20247         this.pop.select('.timepicker-hour', true).first().dom.innerHTML = hours;
20248         this.pop.select('.timepicker-minute', true).first().dom.innerHTML = minutes;
20249         this.pop.select('button', true).first().dom.innerHTML = period;
20250         
20251     },
20252     
20253     place: function()
20254     {   
20255         this.picker().removeClass(['bottom-left', 'bottom-right', 'top-left', 'top-right']);
20256         
20257         var cls = ['bottom'];
20258         
20259         if((Roo.lib.Dom.getViewHeight() + Roo.get(document.body).getScroll().top) - (this.inputEl().getBottom() + this.picker().getHeight()) < 0){ // top
20260             cls.pop();
20261             cls.push('top');
20262         }
20263         
20264         cls.push('right');
20265         
20266         if((Roo.lib.Dom.getViewWidth() + Roo.get(document.body).getScroll().left) - (this.inputEl().getLeft() + this.picker().getWidth()) < 0){ // left
20267             cls.pop();
20268             cls.push('left');
20269         }
20270         
20271         this.picker().addClass(cls.join('-'));
20272         
20273         var _this = this;
20274         
20275         Roo.each(cls, function(c){
20276             if(c == 'bottom'){
20277                 _this.picker().setTop(_this.inputEl().getHeight());
20278                 return;
20279             }
20280             if(c == 'top'){
20281                 _this.picker().setTop(0 - _this.picker().getHeight());
20282                 return;
20283             }
20284             
20285             if(c == 'left'){
20286                 _this.picker().setLeft(_this.inputEl().getLeft() + _this.inputEl().getWidth() - _this.el.getLeft() - _this.picker().getWidth());
20287                 return;
20288             }
20289             if(c == 'right'){
20290                 _this.picker().setLeft(_this.inputEl().getLeft() - _this.el.getLeft());
20291                 return;
20292             }
20293         });
20294         
20295     },
20296   
20297     onFocus : function()
20298     {
20299         Roo.bootstrap.TimeField.superclass.onFocus.call(this);
20300         this.show();
20301     },
20302     
20303     onBlur : function()
20304     {
20305         Roo.bootstrap.TimeField.superclass.onBlur.call(this);
20306         this.hide();
20307     },
20308     
20309     show : function()
20310     {
20311         this.picker().show();
20312         this.pop.show();
20313         this.update();
20314         this.place();
20315         
20316         this.fireEvent('show', this, this.date);
20317     },
20318     
20319     hide : function()
20320     {
20321         this.picker().hide();
20322         this.pop.hide();
20323         
20324         this.fireEvent('hide', this, this.date);
20325     },
20326     
20327     setTime : function()
20328     {
20329         this.hide();
20330         this.setValue(this.time.format(this.format));
20331         
20332         this.fireEvent('select', this, this.date);
20333         
20334         
20335     },
20336     
20337     onMousedown: function(e){
20338         e.stopPropagation();
20339         e.preventDefault();
20340     },
20341     
20342     onIncrementHours: function()
20343     {
20344         Roo.log('onIncrementHours');
20345         this.time = this.time.add(Date.HOUR, 1);
20346         this.update();
20347         
20348     },
20349     
20350     onDecrementHours: function()
20351     {
20352         Roo.log('onDecrementHours');
20353         this.time = this.time.add(Date.HOUR, -1);
20354         this.update();
20355     },
20356     
20357     onIncrementMinutes: function()
20358     {
20359         Roo.log('onIncrementMinutes');
20360         this.time = this.time.add(Date.MINUTE, 1);
20361         this.update();
20362     },
20363     
20364     onDecrementMinutes: function()
20365     {
20366         Roo.log('onDecrementMinutes');
20367         this.time = this.time.add(Date.MINUTE, -1);
20368         this.update();
20369     },
20370     
20371     onTogglePeriod: function()
20372     {
20373         Roo.log('onTogglePeriod');
20374         this.time = this.time.add(Date.HOUR, 12);
20375         this.update();
20376     }
20377     
20378    
20379 });
20380
20381 Roo.apply(Roo.bootstrap.TimeField,  {
20382     
20383     content : {
20384         tag: 'tbody',
20385         cn: [
20386             {
20387                 tag: 'tr',
20388                 cn: [
20389                 {
20390                     tag: 'td',
20391                     colspan: '7'
20392                 }
20393                 ]
20394             }
20395         ]
20396     },
20397     
20398     footer : {
20399         tag: 'tfoot',
20400         cn: [
20401             {
20402                 tag: 'tr',
20403                 cn: [
20404                 {
20405                     tag: 'th',
20406                     colspan: '7',
20407                     cls: '',
20408                     cn: [
20409                         {
20410                             tag: 'button',
20411                             cls: 'btn btn-info ok',
20412                             html: 'OK'
20413                         }
20414                     ]
20415                 }
20416
20417                 ]
20418             }
20419         ]
20420     }
20421 });
20422
20423 Roo.apply(Roo.bootstrap.TimeField,  {
20424   
20425     template : {
20426         tag: 'div',
20427         cls: 'datepicker dropdown-menu',
20428         cn: [
20429             {
20430                 tag: 'div',
20431                 cls: 'datepicker-time',
20432                 cn: [
20433                 {
20434                     tag: 'table',
20435                     cls: 'table-condensed',
20436                     cn:[
20437                     Roo.bootstrap.TimeField.content,
20438                     Roo.bootstrap.TimeField.footer
20439                     ]
20440                 }
20441                 ]
20442             }
20443         ]
20444     }
20445 });
20446
20447  
20448
20449  /*
20450  * - LGPL
20451  *
20452  * MonthField
20453  * 
20454  */
20455
20456 /**
20457  * @class Roo.bootstrap.MonthField
20458  * @extends Roo.bootstrap.Input
20459  * Bootstrap MonthField class
20460  * 
20461  * @cfg {String} language default en
20462  * 
20463  * @constructor
20464  * Create a new MonthField
20465  * @param {Object} config The config object
20466  */
20467
20468 Roo.bootstrap.MonthField = function(config){
20469     Roo.bootstrap.MonthField.superclass.constructor.call(this, config);
20470     
20471     this.addEvents({
20472         /**
20473          * @event show
20474          * Fires when this field show.
20475          * @param {Roo.bootstrap.MonthField} this
20476          * @param {Mixed} date The date value
20477          */
20478         show : true,
20479         /**
20480          * @event show
20481          * Fires when this field hide.
20482          * @param {Roo.bootstrap.MonthField} this
20483          * @param {Mixed} date The date value
20484          */
20485         hide : true,
20486         /**
20487          * @event select
20488          * Fires when select a date.
20489          * @param {Roo.bootstrap.MonthField} this
20490          * @param {String} oldvalue The old value
20491          * @param {String} newvalue The new value
20492          */
20493         select : true
20494     });
20495 };
20496
20497 Roo.extend(Roo.bootstrap.MonthField, Roo.bootstrap.Input,  {
20498     
20499     onRender: function(ct, position)
20500     {
20501         
20502         Roo.bootstrap.MonthField.superclass.onRender.call(this, ct, position);
20503         
20504         this.language = this.language || 'en';
20505         this.language = this.language in Roo.bootstrap.MonthField.dates ? this.language : this.language.split('-')[0];
20506         this.language = this.language in Roo.bootstrap.MonthField.dates ? this.language : "en";
20507         
20508         this.isRTL = Roo.bootstrap.MonthField.dates[this.language].rtl || false;
20509         this.isInline = false;
20510         this.isInput = true;
20511         this.component = this.el.select('.add-on', true).first() || false;
20512         this.component = (this.component && this.component.length === 0) ? false : this.component;
20513         this.hasInput = this.component && this.inputEL().length;
20514         
20515         this.pickerEl = Roo.get(document.body).createChild(Roo.bootstrap.MonthField.template);
20516         
20517         this.picker().setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
20518         
20519         this.picker().on('mousedown', this.onMousedown, this);
20520         this.picker().on('click', this.onClick, this);
20521         
20522         this.picker().addClass('datepicker-dropdown');
20523         
20524         Roo.each(this.picker().select('tbody > tr > td', true).elements, function(v){
20525             v.setStyle('width', '189px');
20526         });
20527         
20528         this.fillMonths();
20529         
20530         this.update();
20531         
20532         if(this.isInline) {
20533             this.show();
20534         }
20535         
20536     },
20537     
20538     setValue: function(v, suppressEvent)
20539     {   
20540         var o = this.getValue();
20541         
20542         Roo.bootstrap.MonthField.superclass.setValue.call(this, v);
20543         
20544         this.update();
20545
20546         if(suppressEvent !== true){
20547             this.fireEvent('select', this, o, v);
20548         }
20549         
20550     },
20551     
20552     getValue: function()
20553     {
20554         return this.value;
20555     },
20556     
20557     onClick: function(e) 
20558     {
20559         e.stopPropagation();
20560         e.preventDefault();
20561         
20562         var target = e.getTarget();
20563         
20564         if(target.nodeName.toLowerCase() === 'i'){
20565             target = Roo.get(target).dom.parentNode;
20566         }
20567         
20568         var nodeName = target.nodeName;
20569         var className = target.className;
20570         var html = target.innerHTML;
20571         
20572         if(nodeName.toLowerCase() != 'span' || className.indexOf('disabled') > -1 || className.indexOf('month') == -1){
20573             return;
20574         }
20575         
20576         this.vIndex = Roo.bootstrap.MonthField.dates[this.language].monthsShort.indexOf(html);
20577         
20578         this.setValue(Roo.bootstrap.MonthField.dates[this.language].months[this.vIndex]);
20579         
20580         this.hide();
20581                         
20582     },
20583     
20584     picker : function()
20585     {
20586         return this.pickerEl;
20587     },
20588     
20589     fillMonths: function()
20590     {    
20591         var i = 0;
20592         var months = this.picker().select('>.datepicker-months td', true).first();
20593         
20594         months.dom.innerHTML = '';
20595         
20596         while (i < 12) {
20597             var month = {
20598                 tag: 'span',
20599                 cls: 'month',
20600                 html: Roo.bootstrap.MonthField.dates[this.language].monthsShort[i++]
20601             };
20602             
20603             months.createChild(month);
20604         }
20605         
20606     },
20607     
20608     update: function()
20609     {
20610         var _this = this;
20611         
20612         if(typeof(this.vIndex) == 'undefined' && this.value.length){
20613             this.vIndex = Roo.bootstrap.MonthField.dates[this.language].months.indexOf(this.value);
20614         }
20615         
20616         Roo.each(this.pickerEl.select('> .datepicker-months tbody > tr > td > span', true).elements, function(e, k){
20617             e.removeClass('active');
20618             
20619             if(typeof(_this.vIndex) != 'undefined' && k == _this.vIndex){
20620                 e.addClass('active');
20621             }
20622         })
20623     },
20624     
20625     place: function()
20626     {
20627         if(this.isInline) {
20628             return;
20629         }
20630         
20631         this.picker().removeClass(['bottom', 'top']);
20632         
20633         if((Roo.lib.Dom.getViewHeight() + Roo.get(document.body).getScroll().top) - (this.inputEl().getBottom() + this.picker().getHeight()) < 0){
20634             /*
20635              * place to the top of element!
20636              *
20637              */
20638             
20639             this.picker().addClass('top');
20640             this.picker().setTop(this.inputEl().getTop() - this.picker().getHeight()).setLeft(this.inputEl().getLeft());
20641             
20642             return;
20643         }
20644         
20645         this.picker().addClass('bottom');
20646         
20647         this.picker().setTop(this.inputEl().getBottom()).setLeft(this.inputEl().getLeft());
20648     },
20649     
20650     onFocus : function()
20651     {
20652         Roo.bootstrap.MonthField.superclass.onFocus.call(this);
20653         this.show();
20654     },
20655     
20656     onBlur : function()
20657     {
20658         Roo.bootstrap.MonthField.superclass.onBlur.call(this);
20659         
20660         var d = this.inputEl().getValue();
20661         
20662         this.setValue(d);
20663                 
20664         this.hide();
20665     },
20666     
20667     show : function()
20668     {
20669         this.picker().show();
20670         this.picker().select('>.datepicker-months', true).first().show();
20671         this.update();
20672         this.place();
20673         
20674         this.fireEvent('show', this, this.date);
20675     },
20676     
20677     hide : function()
20678     {
20679         if(this.isInline) {
20680             return;
20681         }
20682         this.picker().hide();
20683         this.fireEvent('hide', this, this.date);
20684         
20685     },
20686     
20687     onMousedown: function(e)
20688     {
20689         e.stopPropagation();
20690         e.preventDefault();
20691     },
20692     
20693     keyup: function(e)
20694     {
20695         Roo.bootstrap.MonthField.superclass.keyup.call(this);
20696         this.update();
20697     },
20698
20699     fireKey: function(e)
20700     {
20701         if (!this.picker().isVisible()){
20702             if (e.keyCode == 27)   {// allow escape to hide and re-show picker
20703                 this.show();
20704             }
20705             return;
20706         }
20707         
20708         var dir;
20709         
20710         switch(e.keyCode){
20711             case 27: // escape
20712                 this.hide();
20713                 e.preventDefault();
20714                 break;
20715             case 37: // left
20716             case 39: // right
20717                 dir = e.keyCode == 37 ? -1 : 1;
20718                 
20719                 this.vIndex = this.vIndex + dir;
20720                 
20721                 if(this.vIndex < 0){
20722                     this.vIndex = 0;
20723                 }
20724                 
20725                 if(this.vIndex > 11){
20726                     this.vIndex = 11;
20727                 }
20728                 
20729                 if(isNaN(this.vIndex)){
20730                     this.vIndex = 0;
20731                 }
20732                 
20733                 this.setValue(Roo.bootstrap.MonthField.dates[this.language].months[this.vIndex]);
20734                 
20735                 break;
20736             case 38: // up
20737             case 40: // down
20738                 
20739                 dir = e.keyCode == 38 ? -1 : 1;
20740                 
20741                 this.vIndex = this.vIndex + dir * 4;
20742                 
20743                 if(this.vIndex < 0){
20744                     this.vIndex = 0;
20745                 }
20746                 
20747                 if(this.vIndex > 11){
20748                     this.vIndex = 11;
20749                 }
20750                 
20751                 if(isNaN(this.vIndex)){
20752                     this.vIndex = 0;
20753                 }
20754                 
20755                 this.setValue(Roo.bootstrap.MonthField.dates[this.language].months[this.vIndex]);
20756                 break;
20757                 
20758             case 13: // enter
20759                 
20760                 if(typeof(this.vIndex) != 'undefined' && !isNaN(this.vIndex)){
20761                     this.setValue(Roo.bootstrap.MonthField.dates[this.language].months[this.vIndex]);
20762                 }
20763                 
20764                 this.hide();
20765                 e.preventDefault();
20766                 break;
20767             case 9: // tab
20768                 if(typeof(this.vIndex) != 'undefined' && !isNaN(this.vIndex)){
20769                     this.setValue(Roo.bootstrap.MonthField.dates[this.language].months[this.vIndex]);
20770                 }
20771                 this.hide();
20772                 break;
20773             case 16: // shift
20774             case 17: // ctrl
20775             case 18: // alt
20776                 break;
20777             default :
20778                 this.hide();
20779                 
20780         }
20781     },
20782     
20783     remove: function() 
20784     {
20785         this.picker().remove();
20786     }
20787    
20788 });
20789
20790 Roo.apply(Roo.bootstrap.MonthField,  {
20791     
20792     content : {
20793         tag: 'tbody',
20794         cn: [
20795         {
20796             tag: 'tr',
20797             cn: [
20798             {
20799                 tag: 'td',
20800                 colspan: '7'
20801             }
20802             ]
20803         }
20804         ]
20805     },
20806     
20807     dates:{
20808         en: {
20809             months: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"],
20810             monthsShort: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"]
20811         }
20812     }
20813 });
20814
20815 Roo.apply(Roo.bootstrap.MonthField,  {
20816   
20817     template : {
20818         tag: 'div',
20819         cls: 'datepicker dropdown-menu roo-dynamic',
20820         cn: [
20821             {
20822                 tag: 'div',
20823                 cls: 'datepicker-months',
20824                 cn: [
20825                 {
20826                     tag: 'table',
20827                     cls: 'table-condensed',
20828                     cn:[
20829                         Roo.bootstrap.DateField.content
20830                     ]
20831                 }
20832                 ]
20833             }
20834         ]
20835     }
20836 });
20837
20838  
20839
20840  
20841  /*
20842  * - LGPL
20843  *
20844  * CheckBox
20845  * 
20846  */
20847
20848 /**
20849  * @class Roo.bootstrap.CheckBox
20850  * @extends Roo.bootstrap.Input
20851  * Bootstrap CheckBox class
20852  * 
20853  * @cfg {String} valueOff The value that should go into the generated input element's value when unchecked.
20854  * @cfg {String} inputValue The value that should go into the generated input element's value when checked.
20855  * @cfg {String} boxLabel The text that appears beside the checkbox
20856  * @cfg {String} weight (primary|warning|info|danger|success) The text that appears beside the checkbox
20857  * @cfg {Boolean} checked initnal the element
20858  * @cfg {Boolean} inline inline the element (default false)
20859  * @cfg {String} groupId the checkbox group id // normal just use for checkbox
20860  * @cfg {String} tooltip label tooltip
20861  * 
20862  * @constructor
20863  * Create a new CheckBox
20864  * @param {Object} config The config object
20865  */
20866
20867 Roo.bootstrap.CheckBox = function(config){
20868     Roo.bootstrap.CheckBox.superclass.constructor.call(this, config);
20869    
20870     this.addEvents({
20871         /**
20872         * @event check
20873         * Fires when the element is checked or unchecked.
20874         * @param {Roo.bootstrap.CheckBox} this This input
20875         * @param {Boolean} checked The new checked value
20876         */
20877        check : true,
20878        /**
20879         * @event click
20880         * Fires when the element is click.
20881         * @param {Roo.bootstrap.CheckBox} this This input
20882         */
20883        click : true
20884     });
20885     
20886 };
20887
20888 Roo.extend(Roo.bootstrap.CheckBox, Roo.bootstrap.Input,  {
20889   
20890     inputType: 'checkbox',
20891     inputValue: 1,
20892     valueOff: 0,
20893     boxLabel: false,
20894     checked: false,
20895     weight : false,
20896     inline: false,
20897     tooltip : '',
20898     
20899     getAutoCreate : function()
20900     {
20901         var align = (!this.labelAlign) ? this.parentLabelAlign() : this.labelAlign;
20902         
20903         var id = Roo.id();
20904         
20905         var cfg = {};
20906         
20907         cfg.cls = 'form-group ' + this.inputType; //input-group
20908         
20909         if(this.inline){
20910             cfg.cls += ' ' + this.inputType + '-inline';
20911         }
20912         
20913         var input =  {
20914             tag: 'input',
20915             id : id,
20916             type : this.inputType,
20917             value : this.inputValue,
20918             cls : 'roo-' + this.inputType, //'form-box',
20919             placeholder : this.placeholder || ''
20920             
20921         };
20922         
20923         if(this.inputType != 'radio'){
20924             var hidden =  {
20925                 tag: 'input',
20926                 type : 'hidden',
20927                 cls : 'roo-hidden-value',
20928                 value : this.checked ? this.inputValue : this.valueOff
20929             };
20930         }
20931         
20932             
20933         if (this.weight) { // Validity check?
20934             cfg.cls += " " + this.inputType + "-" + this.weight;
20935         }
20936         
20937         if (this.disabled) {
20938             input.disabled=true;
20939         }
20940         
20941         if(this.checked){
20942             input.checked = this.checked;
20943         }
20944         
20945         if (this.name) {
20946             
20947             input.name = this.name;
20948             
20949             if(this.inputType != 'radio'){
20950                 hidden.name = this.name;
20951                 input.name = '_hidden_' + this.name;
20952             }
20953         }
20954         
20955         if (this.size) {
20956             input.cls += ' input-' + this.size;
20957         }
20958         
20959         var settings=this;
20960         
20961         ['xs','sm','md','lg'].map(function(size){
20962             if (settings[size]) {
20963                 cfg.cls += ' col-' + size + '-' + settings[size];
20964             }
20965         });
20966         
20967         var inputblock = input;
20968          
20969         if (this.before || this.after) {
20970             
20971             inputblock = {
20972                 cls : 'input-group',
20973                 cn :  [] 
20974             };
20975             
20976             if (this.before) {
20977                 inputblock.cn.push({
20978                     tag :'span',
20979                     cls : 'input-group-addon',
20980                     html : this.before
20981                 });
20982             }
20983             
20984             inputblock.cn.push(input);
20985             
20986             if(this.inputType != 'radio'){
20987                 inputblock.cn.push(hidden);
20988             }
20989             
20990             if (this.after) {
20991                 inputblock.cn.push({
20992                     tag :'span',
20993                     cls : 'input-group-addon',
20994                     html : this.after
20995                 });
20996             }
20997             
20998         }
20999         
21000         if (align ==='left' && this.fieldLabel.length) {
21001 //                Roo.log("left and has label");
21002             cfg.cn = [
21003                 {
21004                     tag: 'label',
21005                     'for' :  id,
21006                     cls : 'control-label',
21007                     html : this.fieldLabel
21008                 },
21009                 {
21010                     cls : "", 
21011                     cn: [
21012                         inputblock
21013                     ]
21014                 }
21015             ];
21016             
21017             if(this.labelWidth > 12){
21018                 cfg.cn[0].style = "width: " + this.labelWidth + 'px';
21019             }
21020             
21021             if(this.labelWidth < 13 && this.labelmd == 0){
21022                 this.labelmd = this.labelWidth;
21023             }
21024             
21025             if(this.labellg > 0){
21026                 cfg.cn[0].cls += ' col-lg-' + this.labellg;
21027                 cfg.cn[1].cls += ' col-lg-' + (12 - this.labellg);
21028             }
21029             
21030             if(this.labelmd > 0){
21031                 cfg.cn[0].cls += ' col-md-' + this.labelmd;
21032                 cfg.cn[1].cls += ' col-md-' + (12 - this.labelmd);
21033             }
21034             
21035             if(this.labelsm > 0){
21036                 cfg.cn[0].cls += ' col-sm-' + this.labelsm;
21037                 cfg.cn[1].cls += ' col-sm-' + (12 - this.labelsm);
21038             }
21039             
21040             if(this.labelxs > 0){
21041                 cfg.cn[0].cls += ' col-xs-' + this.labelxs;
21042                 cfg.cn[1].cls += ' col-xs-' + (12 - this.labelxs);
21043             }
21044             
21045         } else if ( this.fieldLabel.length) {
21046 //                Roo.log(" label");
21047                 cfg.cn = [
21048                    
21049                     {
21050                         tag: this.boxLabel ? 'span' : 'label',
21051                         'for': id,
21052                         cls: 'control-label box-input-label',
21053                         //cls : 'input-group-addon',
21054                         html : this.fieldLabel
21055                     },
21056                     
21057                     inputblock
21058                     
21059                 ];
21060
21061         } else {
21062             
21063 //                Roo.log(" no label && no align");
21064                 cfg.cn = [  inputblock ] ;
21065                 
21066                 
21067         }
21068         
21069         if(this.boxLabel){
21070              var boxLabelCfg = {
21071                 tag: 'label',
21072                 //'for': id, // box label is handled by onclick - so no for...
21073                 cls: 'box-label',
21074                 html: this.boxLabel
21075             };
21076             
21077             if(this.tooltip){
21078                 boxLabelCfg.tooltip = this.tooltip;
21079             }
21080              
21081             cfg.cn.push(boxLabelCfg);
21082         }
21083         
21084         if(this.inputType != 'radio'){
21085             cfg.cn.push(hidden);
21086         }
21087         
21088         return cfg;
21089         
21090     },
21091     
21092     /**
21093      * return the real input element.
21094      */
21095     inputEl: function ()
21096     {
21097         return this.el.select('input.roo-' + this.inputType,true).first();
21098     },
21099     hiddenEl: function ()
21100     {
21101         return this.el.select('input.roo-hidden-value',true).first();
21102     },
21103     
21104     labelEl: function()
21105     {
21106         return this.el.select('label.control-label',true).first();
21107     },
21108     /* depricated... */
21109     
21110     label: function()
21111     {
21112         return this.labelEl();
21113     },
21114     
21115     boxLabelEl: function()
21116     {
21117         return this.el.select('label.box-label',true).first();
21118     },
21119     
21120     initEvents : function()
21121     {
21122 //        Roo.bootstrap.CheckBox.superclass.initEvents.call(this);
21123         
21124         this.inputEl().on('click', this.onClick,  this);
21125         
21126         if (this.boxLabel) { 
21127             this.el.select('label.box-label',true).first().on('click', this.onClick,  this);
21128         }
21129         
21130         this.startValue = this.getValue();
21131         
21132         if(this.groupId){
21133             Roo.bootstrap.CheckBox.register(this);
21134         }
21135     },
21136     
21137     onClick : function(e)
21138     {   
21139         if(this.fireEvent('click', this, e) !== false){
21140             this.setChecked(!this.checked);
21141         }
21142         
21143     },
21144     
21145     setChecked : function(state,suppressEvent)
21146     {
21147         this.startValue = this.getValue();
21148
21149         if(this.inputType == 'radio'){
21150             
21151             Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
21152                 e.dom.checked = false;
21153             });
21154             
21155             this.inputEl().dom.checked = true;
21156             
21157             this.inputEl().dom.value = this.inputValue;
21158             
21159             if(suppressEvent !== true){
21160                 this.fireEvent('check', this, true);
21161             }
21162             
21163             this.validate();
21164             
21165             return;
21166         }
21167         
21168         this.checked = state;
21169         
21170         this.inputEl().dom.checked = state;
21171         
21172         
21173         this.hiddenEl().dom.value = state ? this.inputValue : this.valueOff;
21174         
21175         if(suppressEvent !== true){
21176             this.fireEvent('check', this, state);
21177         }
21178         
21179         this.validate();
21180     },
21181     
21182     getValue : function()
21183     {
21184         if(this.inputType == 'radio'){
21185             return this.getGroupValue();
21186         }
21187         
21188         return this.hiddenEl().dom.value;
21189         
21190     },
21191     
21192     getGroupValue : function()
21193     {
21194         if(typeof(this.el.up('form').child('input[name='+this.name+']:checked', true)) == 'undefined'){
21195             return '';
21196         }
21197         
21198         return this.el.up('form').child('input[name='+this.name+']:checked', true).value;
21199     },
21200     
21201     setValue : function(v,suppressEvent)
21202     {
21203         if(this.inputType == 'radio'){
21204             this.setGroupValue(v, suppressEvent);
21205             return;
21206         }
21207         
21208         this.setChecked(((typeof(v) == 'undefined') ? this.checked : (String(v) === String(this.inputValue))), suppressEvent);
21209         
21210         this.validate();
21211     },
21212     
21213     setGroupValue : function(v, suppressEvent)
21214     {
21215         this.startValue = this.getValue();
21216         
21217         Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
21218             e.dom.checked = false;
21219             
21220             if(e.dom.value == v){
21221                 e.dom.checked = true;
21222             }
21223         });
21224         
21225         if(suppressEvent !== true){
21226             this.fireEvent('check', this, true);
21227         }
21228
21229         this.validate();
21230         
21231         return;
21232     },
21233     
21234     validate : function()
21235     {
21236         if(this.getVisibilityEl().hasClass('hidden')){
21237             return true;
21238         }
21239         
21240         if(
21241                 this.disabled || 
21242                 (this.inputType == 'radio' && this.validateRadio()) ||
21243                 (this.inputType == 'checkbox' && this.validateCheckbox())
21244         ){
21245             this.markValid();
21246             return true;
21247         }
21248         
21249         this.markInvalid();
21250         return false;
21251     },
21252     
21253     validateRadio : function()
21254     {
21255         if(this.getVisibilityEl().hasClass('hidden')){
21256             return true;
21257         }
21258         
21259         if(this.allowBlank){
21260             return true;
21261         }
21262         
21263         var valid = false;
21264         
21265         Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
21266             if(!e.dom.checked){
21267                 return;
21268             }
21269             
21270             valid = true;
21271             
21272             return false;
21273         });
21274         
21275         return valid;
21276     },
21277     
21278     validateCheckbox : function()
21279     {
21280         if(!this.groupId){
21281             return (this.getValue() == this.inputValue || this.allowBlank) ? true : false;
21282             //return (this.getValue() == this.inputValue) ? true : false;
21283         }
21284         
21285         var group = Roo.bootstrap.CheckBox.get(this.groupId);
21286         
21287         if(!group){
21288             return false;
21289         }
21290         
21291         var r = false;
21292         
21293         for(var i in group){
21294             if(group[i].el.isVisible(true)){
21295                 r = false;
21296                 break;
21297             }
21298             
21299             r = true;
21300         }
21301         
21302         for(var i in group){
21303             if(r){
21304                 break;
21305             }
21306             
21307             r = (group[i].getValue() == group[i].inputValue) ? true : false;
21308         }
21309         
21310         return r;
21311     },
21312     
21313     /**
21314      * Mark this field as valid
21315      */
21316     markValid : function()
21317     {
21318         var _this = this;
21319         
21320         this.fireEvent('valid', this);
21321         
21322         var label = Roo.bootstrap.FieldLabel.get(this.name + '-group');
21323         
21324         if(this.groupId){
21325             label = Roo.bootstrap.FieldLabel.get(this.groupId + '-group');
21326         }
21327         
21328         if(label){
21329             label.markValid();
21330         }
21331
21332         if(this.inputType == 'radio'){
21333             Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
21334                 var fg = e.findParent('.form-group', false, true);
21335                 if (Roo.bootstrap.version == 3) {
21336                     fg.removeClass([_this.invalidClass, _this.validClass]);
21337                     fg.addClass(_this.validClass);
21338                 } else {
21339                     fg.removeClass(['is-valid', 'is-invalid']);
21340                     fg.addClass('is-valid');
21341                 }
21342             });
21343             
21344             return;
21345         }
21346
21347         if(!this.groupId){
21348             var fg = this.el.findParent('.form-group', false, true);
21349             if (Roo.bootstrap.version == 3) {
21350                 fg.removeClass([this.invalidClass, this.validClass]);
21351                 fg.addClass(this.validClass);
21352             } else {
21353                 fg.removeClass(['is-valid', 'is-invalid']);
21354                 fg.addClass('is-valid');
21355             }
21356             return;
21357         }
21358         
21359         var group = Roo.bootstrap.CheckBox.get(this.groupId);
21360         
21361         if(!group){
21362             return;
21363         }
21364         
21365         for(var i in group){
21366             var fg = group[i].el.findParent('.form-group', false, true);
21367             if (Roo.bootstrap.version == 3) {
21368                 fg.removeClass([this.invalidClass, this.validClass]);
21369                 fg.addClass(this.validClass);
21370             } else {
21371                 fg.removeClass(['is-valid', 'is-invalid']);
21372                 fg.addClass('is-valid');
21373             }
21374         }
21375     },
21376     
21377      /**
21378      * Mark this field as invalid
21379      * @param {String} msg The validation message
21380      */
21381     markInvalid : function(msg)
21382     {
21383         if(this.allowBlank){
21384             return;
21385         }
21386         
21387         var _this = this;
21388         
21389         this.fireEvent('invalid', this, msg);
21390         
21391         var label = Roo.bootstrap.FieldLabel.get(this.name + '-group');
21392         
21393         if(this.groupId){
21394             label = Roo.bootstrap.FieldLabel.get(this.groupId + '-group');
21395         }
21396         
21397         if(label){
21398             label.markInvalid();
21399         }
21400             
21401         if(this.inputType == 'radio'){
21402             
21403             Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
21404                 var fg = e.findParent('.form-group', false, true);
21405                 if (Roo.bootstrap.version == 3) {
21406                     fg.removeClass([_this.invalidClass, _this.validClass]);
21407                     fg.addClass(_this.invalidClass);
21408                 } else {
21409                     fg.removeClass(['is-invalid', 'is-valid']);
21410                     fg.addClass('is-invalid');
21411                 }
21412             });
21413             
21414             return;
21415         }
21416         
21417         if(!this.groupId){
21418             var fg = this.el.findParent('.form-group', false, true);
21419             if (Roo.bootstrap.version == 3) {
21420                 fg.removeClass([_this.invalidClass, _this.validClass]);
21421                 fg.addClass(_this.invalidClass);
21422             } else {
21423                 fg.removeClass(['is-invalid', 'is-valid']);
21424                 fg.addClass('is-invalid');
21425             }
21426             return;
21427         }
21428         
21429         var group = Roo.bootstrap.CheckBox.get(this.groupId);
21430         
21431         if(!group){
21432             return;
21433         }
21434         
21435         for(var i in group){
21436             var fg = group[i].el.findParent('.form-group', false, true);
21437             if (Roo.bootstrap.version == 3) {
21438                 fg.removeClass([_this.invalidClass, _this.validClass]);
21439                 fg.addClass(_this.invalidClass);
21440             } else {
21441                 fg.removeClass(['is-invalid', 'is-valid']);
21442                 fg.addClass('is-invalid');
21443             }
21444         }
21445         
21446     },
21447     
21448     clearInvalid : function()
21449     {
21450         Roo.bootstrap.Input.prototype.clearInvalid.call(this);
21451         
21452         // this.el.findParent('.form-group', false, true).removeClass([this.invalidClass, this.validClass]);
21453         
21454         var label = Roo.bootstrap.FieldLabel.get(this.name + '-group');
21455         
21456         if (label && label.iconEl) {
21457             label.iconEl.removeClass([ label.validClass, label.invalidClass ]);
21458             label.iconEl.removeClass(['is-invalid', 'is-valid']);
21459         }
21460     },
21461     
21462     disable : function()
21463     {
21464         if(this.inputType != 'radio'){
21465             Roo.bootstrap.CheckBox.superclass.disable.call(this);
21466             return;
21467         }
21468         
21469         var _this = this;
21470         
21471         if(this.rendered){
21472             Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
21473                 _this.getActionEl().addClass(this.disabledClass);
21474                 e.dom.disabled = true;
21475             });
21476         }
21477         
21478         this.disabled = true;
21479         this.fireEvent("disable", this);
21480         return this;
21481     },
21482
21483     enable : function()
21484     {
21485         if(this.inputType != 'radio'){
21486             Roo.bootstrap.CheckBox.superclass.enable.call(this);
21487             return;
21488         }
21489         
21490         var _this = this;
21491         
21492         if(this.rendered){
21493             Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
21494                 _this.getActionEl().removeClass(this.disabledClass);
21495                 e.dom.disabled = false;
21496             });
21497         }
21498         
21499         this.disabled = false;
21500         this.fireEvent("enable", this);
21501         return this;
21502     },
21503     
21504     setBoxLabel : function(v)
21505     {
21506         this.boxLabel = v;
21507         
21508         if(this.rendered){
21509             this.el.select('label.box-label',true).first().dom.innerHTML = (v === null || v === undefined ? '' : v);
21510         }
21511     }
21512
21513 });
21514
21515 Roo.apply(Roo.bootstrap.CheckBox, {
21516     
21517     groups: {},
21518     
21519      /**
21520     * register a CheckBox Group
21521     * @param {Roo.bootstrap.CheckBox} the CheckBox to add
21522     */
21523     register : function(checkbox)
21524     {
21525         if(typeof(this.groups[checkbox.groupId]) == 'undefined'){
21526             this.groups[checkbox.groupId] = {};
21527         }
21528         
21529         if(this.groups[checkbox.groupId].hasOwnProperty(checkbox.name)){
21530             return;
21531         }
21532         
21533         this.groups[checkbox.groupId][checkbox.name] = checkbox;
21534         
21535     },
21536     /**
21537     * fetch a CheckBox Group based on the group ID
21538     * @param {string} the group ID
21539     * @returns {Roo.bootstrap.CheckBox} the CheckBox group
21540     */
21541     get: function(groupId) {
21542         if (typeof(this.groups[groupId]) == 'undefined') {
21543             return false;
21544         }
21545         
21546         return this.groups[groupId] ;
21547     }
21548     
21549     
21550 });
21551 /*
21552  * - LGPL
21553  *
21554  * RadioItem
21555  * 
21556  */
21557
21558 /**
21559  * @class Roo.bootstrap.Radio
21560  * @extends Roo.bootstrap.Component
21561  * Bootstrap Radio class
21562  * @cfg {String} boxLabel - the label associated
21563  * @cfg {String} value - the value of radio
21564  * 
21565  * @constructor
21566  * Create a new Radio
21567  * @param {Object} config The config object
21568  */
21569 Roo.bootstrap.Radio = function(config){
21570     Roo.bootstrap.Radio.superclass.constructor.call(this, config);
21571     
21572 };
21573
21574 Roo.extend(Roo.bootstrap.Radio, Roo.bootstrap.Component, {
21575     
21576     boxLabel : '',
21577     
21578     value : '',
21579     
21580     getAutoCreate : function()
21581     {
21582         var cfg = {
21583             tag : 'div',
21584             cls : 'form-group radio',
21585             cn : [
21586                 {
21587                     tag : 'label',
21588                     cls : 'box-label',
21589                     html : this.boxLabel
21590                 }
21591             ]
21592         };
21593         
21594         return cfg;
21595     },
21596     
21597     initEvents : function() 
21598     {
21599         this.parent().register(this);
21600         
21601         this.el.on('click', this.onClick, this);
21602         
21603     },
21604     
21605     onClick : function(e)
21606     {
21607         if(this.parent().fireEvent('click', this.parent(), this, e) !== false){
21608             this.setChecked(true);
21609         }
21610     },
21611     
21612     setChecked : function(state, suppressEvent)
21613     {
21614         this.parent().setValue(this.value, suppressEvent);
21615         
21616     },
21617     
21618     setBoxLabel : function(v)
21619     {
21620         this.boxLabel = v;
21621         
21622         if(this.rendered){
21623             this.el.select('label.box-label',true).first().dom.innerHTML = (v === null || v === undefined ? '' : v);
21624         }
21625     }
21626     
21627 });
21628  
21629
21630  /*
21631  * - LGPL
21632  *
21633  * Input
21634  * 
21635  */
21636
21637 /**
21638  * @class Roo.bootstrap.SecurePass
21639  * @extends Roo.bootstrap.Input
21640  * Bootstrap SecurePass class
21641  *
21642  * 
21643  * @constructor
21644  * Create a new SecurePass
21645  * @param {Object} config The config object
21646  */
21647  
21648 Roo.bootstrap.SecurePass = function (config) {
21649     // these go here, so the translation tool can replace them..
21650     this.errors = {
21651         PwdEmpty: "Please type a password, and then retype it to confirm.",
21652         PwdShort: "Your password must be at least 6 characters long. Please type a different password.",
21653         PwdLong: "Your password can't contain more than 16 characters. Please type a different password.",
21654         PwdBadChar: "The password contains characters that aren't allowed. Please type a different password.",
21655         IDInPwd: "Your password can't include the part of your ID. Please type a different password.",
21656         FNInPwd: "Your password can't contain your first name. Please type a different password.",
21657         LNInPwd: "Your password can't contain your last name. Please type a different password.",
21658         TooWeak: "Your password is Too Weak."
21659     },
21660     this.meterLabel = "Password strength:";
21661     this.pwdStrengths = ["Too Weak", "Weak", "Medium", "Strong"];
21662     this.meterClass = [
21663         "roo-password-meter-tooweak", 
21664         "roo-password-meter-weak", 
21665         "roo-password-meter-medium", 
21666         "roo-password-meter-strong", 
21667         "roo-password-meter-grey"
21668     ];
21669     
21670     this.errors = {};
21671     
21672     Roo.bootstrap.SecurePass.superclass.constructor.call(this, config);
21673 }
21674
21675 Roo.extend(Roo.bootstrap.SecurePass, Roo.bootstrap.Input, {
21676     /**
21677      * @cfg {String/Object} errors A Error spec, or true for a default spec (defaults to
21678      * {
21679      *  PwdEmpty: "Please type a password, and then retype it to confirm.",
21680      *  PwdShort: "Your password must be at least 6 characters long. Please type a different password.",
21681      *  PwdLong: "Your password can't contain more than 16 characters. Please type a different password.",
21682      *  PwdBadChar: "The password contains characters that aren't allowed. Please type a different password.",
21683      *  IDInPwd: "Your password can't include the part of your ID. Please type a different password.",
21684      *  FNInPwd: "Your password can't contain your first name. Please type a different password.",
21685      *  LNInPwd: "Your password can't contain your last name. Please type a different password."
21686      * })
21687      */
21688     // private
21689     
21690     meterWidth: 300,
21691     errorMsg :'',    
21692     errors: false,
21693     imageRoot: '/',
21694     /**
21695      * @cfg {String/Object} Label for the strength meter (defaults to
21696      * 'Password strength:')
21697      */
21698     // private
21699     meterLabel: '',
21700     /**
21701      * @cfg {String/Object} pwdStrengths A pwdStrengths spec, or true for a default spec (defaults to
21702      * ['Weak', 'Medium', 'Strong'])
21703      */
21704     // private    
21705     pwdStrengths: false,    
21706     // private
21707     strength: 0,
21708     // private
21709     _lastPwd: null,
21710     // private
21711     kCapitalLetter: 0,
21712     kSmallLetter: 1,
21713     kDigit: 2,
21714     kPunctuation: 3,
21715     
21716     insecure: false,
21717     // private
21718     initEvents: function ()
21719     {
21720         Roo.bootstrap.SecurePass.superclass.initEvents.call(this);
21721
21722         if (this.el.is('input[type=password]') && Roo.isSafari) {
21723             this.el.on('keydown', this.SafariOnKeyDown, this);
21724         }
21725
21726         this.el.on('keyup', this.checkStrength, this, {buffer: 50});
21727     },
21728     // private
21729     onRender: function (ct, position)
21730     {
21731         Roo.bootstrap.SecurePass.superclass.onRender.call(this, ct, position);
21732         this.wrap = this.el.wrap({cls: 'x-form-field-wrap'});
21733         this.trigger = this.wrap.createChild({tag: 'div', cls: 'StrengthMeter ' + this.triggerClass});
21734
21735         this.trigger.createChild({
21736                    cn: [
21737                     {
21738                     //id: 'PwdMeter',
21739                     tag: 'div',
21740                     cls: 'roo-password-meter-grey col-xs-12',
21741                     style: {
21742                         //width: 0,
21743                         //width: this.meterWidth + 'px'                                                
21744                         }
21745                     },
21746                     {                            
21747                          cls: 'roo-password-meter-text'                          
21748                     }
21749                 ]            
21750         });
21751
21752          
21753         if (this.hideTrigger) {
21754             this.trigger.setDisplayed(false);
21755         }
21756         this.setSize(this.width || '', this.height || '');
21757     },
21758     // private
21759     onDestroy: function ()
21760     {
21761         if (this.trigger) {
21762             this.trigger.removeAllListeners();
21763             this.trigger.remove();
21764         }
21765         if (this.wrap) {
21766             this.wrap.remove();
21767         }
21768         Roo.bootstrap.TriggerField.superclass.onDestroy.call(this);
21769     },
21770     // private
21771     checkStrength: function ()
21772     {
21773         var pwd = this.inputEl().getValue();
21774         if (pwd == this._lastPwd) {
21775             return;
21776         }
21777
21778         var strength;
21779         if (this.ClientSideStrongPassword(pwd)) {
21780             strength = 3;
21781         } else if (this.ClientSideMediumPassword(pwd)) {
21782             strength = 2;
21783         } else if (this.ClientSideWeakPassword(pwd)) {
21784             strength = 1;
21785         } else {
21786             strength = 0;
21787         }
21788         
21789         Roo.log('strength1: ' + strength);
21790         
21791         //var pm = this.trigger.child('div/div/div').dom;
21792         var pm = this.trigger.child('div/div');
21793         pm.removeClass(this.meterClass);
21794         pm.addClass(this.meterClass[strength]);
21795                 
21796         
21797         var pt = this.trigger.child('/div').child('>*[class=roo-password-meter-text]').dom;        
21798                 
21799         pt.innerHTML = this.meterLabel + '&nbsp;' + this.pwdStrengths[strength];
21800         
21801         this._lastPwd = pwd;
21802     },
21803     reset: function ()
21804     {
21805         Roo.bootstrap.SecurePass.superclass.reset.call(this);
21806         
21807         this._lastPwd = '';
21808         
21809         var pm = this.trigger.child('div/div');
21810         pm.removeClass(this.meterClass);
21811         pm.addClass('roo-password-meter-grey');        
21812         
21813         
21814         var pt = this.trigger.child('/div').child('>*[class=roo-password-meter-text]').dom;        
21815         
21816         pt.innerHTML = '';
21817         this.inputEl().dom.type='password';
21818     },
21819     // private
21820     validateValue: function (value)
21821     {
21822         
21823         if (!Roo.bootstrap.SecurePass.superclass.validateValue.call(this, value)) {
21824             return false;
21825         }
21826         if (value.length == 0) {
21827             if (this.allowBlank) {
21828                 this.clearInvalid();
21829                 return true;
21830             }
21831
21832             this.markInvalid(this.errors.PwdEmpty);
21833             this.errorMsg = this.errors.PwdEmpty;
21834             return false;
21835         }
21836         
21837         if(this.insecure){
21838             return true;
21839         }
21840         
21841         if ('[\x21-\x7e]*'.match(value)) {
21842             this.markInvalid(this.errors.PwdBadChar);
21843             this.errorMsg = this.errors.PwdBadChar;
21844             return false;
21845         }
21846         if (value.length < 6) {
21847             this.markInvalid(this.errors.PwdShort);
21848             this.errorMsg = this.errors.PwdShort;
21849             return false;
21850         }
21851         if (value.length > 16) {
21852             this.markInvalid(this.errors.PwdLong);
21853             this.errorMsg = this.errors.PwdLong;
21854             return false;
21855         }
21856         var strength;
21857         if (this.ClientSideStrongPassword(value)) {
21858             strength = 3;
21859         } else if (this.ClientSideMediumPassword(value)) {
21860             strength = 2;
21861         } else if (this.ClientSideWeakPassword(value)) {
21862             strength = 1;
21863         } else {
21864             strength = 0;
21865         }
21866
21867         
21868         if (strength < 2) {
21869             //this.markInvalid(this.errors.TooWeak);
21870             this.errorMsg = this.errors.TooWeak;
21871             //return false;
21872         }
21873         
21874         
21875         console.log('strength2: ' + strength);
21876         
21877         //var pm = this.trigger.child('div/div/div').dom;
21878         
21879         var pm = this.trigger.child('div/div');
21880         pm.removeClass(this.meterClass);
21881         pm.addClass(this.meterClass[strength]);
21882                 
21883         var pt = this.trigger.child('/div').child('>*[class=roo-password-meter-text]').dom;        
21884                 
21885         pt.innerHTML = this.meterLabel + '&nbsp;' + this.pwdStrengths[strength];
21886         
21887         this.errorMsg = ''; 
21888         return true;
21889     },
21890     // private
21891     CharacterSetChecks: function (type)
21892     {
21893         this.type = type;
21894         this.fResult = false;
21895     },
21896     // private
21897     isctype: function (character, type)
21898     {
21899         switch (type) {  
21900             case this.kCapitalLetter:
21901                 if (character >= 'A' && character <= 'Z') {
21902                     return true;
21903                 }
21904                 break;
21905             
21906             case this.kSmallLetter:
21907                 if (character >= 'a' && character <= 'z') {
21908                     return true;
21909                 }
21910                 break;
21911             
21912             case this.kDigit:
21913                 if (character >= '0' && character <= '9') {
21914                     return true;
21915                 }
21916                 break;
21917             
21918             case this.kPunctuation:
21919                 if ('!@#$%^&*()_+-=\'";:[{]}|.>,</?`~'.indexOf(character) >= 0) {
21920                     return true;
21921                 }
21922                 break;
21923             
21924             default:
21925                 return false;
21926         }
21927
21928     },
21929     // private
21930     IsLongEnough: function (pwd, size)
21931     {
21932         return !(pwd == null || isNaN(size) || pwd.length < size);
21933     },
21934     // private
21935     SpansEnoughCharacterSets: function (word, nb)
21936     {
21937         if (!this.IsLongEnough(word, nb))
21938         {
21939             return false;
21940         }
21941
21942         var characterSetChecks = new Array(
21943             new this.CharacterSetChecks(this.kCapitalLetter), new this.CharacterSetChecks(this.kSmallLetter),
21944             new this.CharacterSetChecks(this.kDigit), new this.CharacterSetChecks(this.kPunctuation)
21945         );
21946         
21947         for (var index = 0; index < word.length; ++index) {
21948             for (var nCharSet = 0; nCharSet < characterSetChecks.length; ++nCharSet) {
21949                 if (!characterSetChecks[nCharSet].fResult && this.isctype(word.charAt(index), characterSetChecks[nCharSet].type)) {
21950                     characterSetChecks[nCharSet].fResult = true;
21951                     break;
21952                 }
21953             }
21954         }
21955
21956         var nCharSets = 0;
21957         for (var nCharSet = 0; nCharSet < characterSetChecks.length; ++nCharSet) {
21958             if (characterSetChecks[nCharSet].fResult) {
21959                 ++nCharSets;
21960             }
21961         }
21962
21963         if (nCharSets < nb) {
21964             return false;
21965         }
21966         return true;
21967     },
21968     // private
21969     ClientSideStrongPassword: function (pwd)
21970     {
21971         return this.IsLongEnough(pwd, 8) && this.SpansEnoughCharacterSets(pwd, 3);
21972     },
21973     // private
21974     ClientSideMediumPassword: function (pwd)
21975     {
21976         return this.IsLongEnough(pwd, 7) && this.SpansEnoughCharacterSets(pwd, 2);
21977     },
21978     // private
21979     ClientSideWeakPassword: function (pwd)
21980     {
21981         return this.IsLongEnough(pwd, 6) || !this.IsLongEnough(pwd, 0);
21982     }
21983           
21984 })//<script type="text/javascript">
21985
21986 /*
21987  * Based  Ext JS Library 1.1.1
21988  * Copyright(c) 2006-2007, Ext JS, LLC.
21989  * LGPL
21990  *
21991  */
21992  
21993 /**
21994  * @class Roo.HtmlEditorCore
21995  * @extends Roo.Component
21996  * Provides a the editing component for the HTML editors in Roo. (bootstrap and Roo.form)
21997  *
21998  * any element that has display set to 'none' can cause problems in Safari and Firefox.<br/><br/>
21999  */
22000
22001 Roo.HtmlEditorCore = function(config){
22002     
22003     
22004     Roo.HtmlEditorCore.superclass.constructor.call(this, config);
22005     
22006     
22007     this.addEvents({
22008         /**
22009          * @event initialize
22010          * Fires when the editor is fully initialized (including the iframe)
22011          * @param {Roo.HtmlEditorCore} this
22012          */
22013         initialize: true,
22014         /**
22015          * @event activate
22016          * Fires when the editor is first receives the focus. Any insertion must wait
22017          * until after this event.
22018          * @param {Roo.HtmlEditorCore} this
22019          */
22020         activate: true,
22021          /**
22022          * @event beforesync
22023          * Fires before the textarea is updated with content from the editor iframe. Return false
22024          * to cancel the sync.
22025          * @param {Roo.HtmlEditorCore} this
22026          * @param {String} html
22027          */
22028         beforesync: true,
22029          /**
22030          * @event beforepush
22031          * Fires before the iframe editor is updated with content from the textarea. Return false
22032          * to cancel the push.
22033          * @param {Roo.HtmlEditorCore} this
22034          * @param {String} html
22035          */
22036         beforepush: true,
22037          /**
22038          * @event sync
22039          * Fires when the textarea is updated with content from the editor iframe.
22040          * @param {Roo.HtmlEditorCore} this
22041          * @param {String} html
22042          */
22043         sync: true,
22044          /**
22045          * @event push
22046          * Fires when the iframe editor is updated with content from the textarea.
22047          * @param {Roo.HtmlEditorCore} this
22048          * @param {String} html
22049          */
22050         push: true,
22051         
22052         /**
22053          * @event editorevent
22054          * Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks.
22055          * @param {Roo.HtmlEditorCore} this
22056          */
22057         editorevent: true
22058         
22059     });
22060     
22061     // at this point this.owner is set, so we can start working out the whitelisted / blacklisted elements
22062     
22063     // defaults : white / black...
22064     this.applyBlacklists();
22065     
22066     
22067     
22068 };
22069
22070
22071 Roo.extend(Roo.HtmlEditorCore, Roo.Component,  {
22072
22073
22074      /**
22075      * @cfg {Roo.form.HtmlEditor|Roo.bootstrap.HtmlEditor} the owner field 
22076      */
22077     
22078     owner : false,
22079     
22080      /**
22081      * @cfg {String} resizable  's' or 'se' or 'e' - wrapps the element in a
22082      *                        Roo.resizable.
22083      */
22084     resizable : false,
22085      /**
22086      * @cfg {Number} height (in pixels)
22087      */   
22088     height: 300,
22089    /**
22090      * @cfg {Number} width (in pixels)
22091      */   
22092     width: 500,
22093     
22094     /**
22095      * @cfg {Array} stylesheets url of stylesheets. set to [] to disable stylesheets.
22096      * 
22097      */
22098     stylesheets: false,
22099     
22100     // id of frame..
22101     frameId: false,
22102     
22103     // private properties
22104     validationEvent : false,
22105     deferHeight: true,
22106     initialized : false,
22107     activated : false,
22108     sourceEditMode : false,
22109     onFocus : Roo.emptyFn,
22110     iframePad:3,
22111     hideMode:'offsets',
22112     
22113     clearUp: true,
22114     
22115     // blacklist + whitelisted elements..
22116     black: false,
22117     white: false,
22118      
22119     bodyCls : '',
22120
22121     /**
22122      * Protected method that will not generally be called directly. It
22123      * is called when the editor initializes the iframe with HTML contents. Override this method if you
22124      * want to change the initialization markup of the iframe (e.g. to add stylesheets).
22125      */
22126     getDocMarkup : function(){
22127         // body styles..
22128         var st = '';
22129         
22130         // inherit styels from page...?? 
22131         if (this.stylesheets === false) {
22132             
22133             Roo.get(document.head).select('style').each(function(node) {
22134                 st += node.dom.outerHTML || new XMLSerializer().serializeToString(node.dom);
22135             });
22136             
22137             Roo.get(document.head).select('link').each(function(node) { 
22138                 st += node.dom.outerHTML || new XMLSerializer().serializeToString(node.dom);
22139             });
22140             
22141         } else if (!this.stylesheets.length) {
22142                 // simple..
22143                 st = '<style type="text/css">' +
22144                     'body{border:0;margin:0;padding:3px;height:98%;cursor:text;}' +
22145                    '</style>';
22146         } else { 
22147             st = '<style type="text/css">' +
22148                     this.stylesheets +
22149                 '</style>';
22150         }
22151         
22152         st +=  '<style type="text/css">' +
22153             'IMG { cursor: pointer } ' +
22154         '</style>';
22155
22156         var cls = 'roo-htmleditor-body';
22157         
22158         if(this.bodyCls.length){
22159             cls += ' ' + this.bodyCls;
22160         }
22161         
22162         return '<html><head>' + st  +
22163             //<style type="text/css">' +
22164             //'body{border:0;margin:0;padding:3px;height:98%;cursor:text;}' +
22165             //'</style>' +
22166             ' </head><body class="' +  cls + '"></body></html>';
22167     },
22168
22169     // private
22170     onRender : function(ct, position)
22171     {
22172         var _t = this;
22173         //Roo.HtmlEditorCore.superclass.onRender.call(this, ct, position);
22174         this.el = this.owner.inputEl ? this.owner.inputEl() : this.owner.el;
22175         
22176         
22177         this.el.dom.style.border = '0 none';
22178         this.el.dom.setAttribute('tabIndex', -1);
22179         this.el.addClass('x-hidden hide');
22180         
22181         
22182         
22183         if(Roo.isIE){ // fix IE 1px bogus margin
22184             this.el.applyStyles('margin-top:-1px;margin-bottom:-1px;')
22185         }
22186        
22187         
22188         this.frameId = Roo.id();
22189         
22190          
22191         
22192         var iframe = this.owner.wrap.createChild({
22193             tag: 'iframe',
22194             cls: 'form-control', // bootstrap..
22195             id: this.frameId,
22196             name: this.frameId,
22197             frameBorder : 'no',
22198             'src' : Roo.SSL_SECURE_URL ? Roo.SSL_SECURE_URL  :  "javascript:false"
22199         }, this.el
22200         );
22201         
22202         
22203         this.iframe = iframe.dom;
22204
22205          this.assignDocWin();
22206         
22207         this.doc.designMode = 'on';
22208        
22209         this.doc.open();
22210         this.doc.write(this.getDocMarkup());
22211         this.doc.close();
22212
22213         
22214         var task = { // must defer to wait for browser to be ready
22215             run : function(){
22216                 //console.log("run task?" + this.doc.readyState);
22217                 this.assignDocWin();
22218                 if(this.doc.body || this.doc.readyState == 'complete'){
22219                     try {
22220                         this.doc.designMode="on";
22221                     } catch (e) {
22222                         return;
22223                     }
22224                     Roo.TaskMgr.stop(task);
22225                     this.initEditor.defer(10, this);
22226                 }
22227             },
22228             interval : 10,
22229             duration: 10000,
22230             scope: this
22231         };
22232         Roo.TaskMgr.start(task);
22233
22234     },
22235
22236     // private
22237     onResize : function(w, h)
22238     {
22239          Roo.log('resize: ' +w + ',' + h );
22240         //Roo.HtmlEditorCore.superclass.onResize.apply(this, arguments);
22241         if(!this.iframe){
22242             return;
22243         }
22244         if(typeof w == 'number'){
22245             
22246             this.iframe.style.width = w + 'px';
22247         }
22248         if(typeof h == 'number'){
22249             
22250             this.iframe.style.height = h + 'px';
22251             if(this.doc){
22252                 (this.doc.body || this.doc.documentElement).style.height = (h - (this.iframePad*2)) + 'px';
22253             }
22254         }
22255         
22256     },
22257
22258     /**
22259      * Toggles the editor between standard and source edit mode.
22260      * @param {Boolean} sourceEdit (optional) True for source edit, false for standard
22261      */
22262     toggleSourceEdit : function(sourceEditMode){
22263         
22264         this.sourceEditMode = sourceEditMode === true;
22265         
22266         if(this.sourceEditMode){
22267  
22268             Roo.get(this.iframe).addClass(['x-hidden','hide']);     //FIXME - what's the BS styles for these
22269             
22270         }else{
22271             Roo.get(this.iframe).removeClass(['x-hidden','hide']);
22272             //this.iframe.className = '';
22273             this.deferFocus();
22274         }
22275         //this.setSize(this.owner.wrap.getSize());
22276         //this.fireEvent('editmodechange', this, this.sourceEditMode);
22277     },
22278
22279     
22280   
22281
22282     /**
22283      * Protected method that will not generally be called directly. If you need/want
22284      * custom HTML cleanup, this is the method you should override.
22285      * @param {String} html The HTML to be cleaned
22286      * return {String} The cleaned HTML
22287      */
22288     cleanHtml : function(html){
22289         html = String(html);
22290         if(html.length > 5){
22291             if(Roo.isSafari){ // strip safari nonsense
22292                 html = html.replace(/\sclass="(?:Apple-style-span|khtml-block-placeholder)"/gi, '');
22293             }
22294         }
22295         if(html == '&nbsp;'){
22296             html = '';
22297         }
22298         return html;
22299     },
22300
22301     /**
22302      * HTML Editor -> Textarea
22303      * Protected method that will not generally be called directly. Syncs the contents
22304      * of the editor iframe with the textarea.
22305      */
22306     syncValue : function(){
22307         if(this.initialized){
22308             var bd = (this.doc.body || this.doc.documentElement);
22309             //this.cleanUpPaste(); -- this is done else where and causes havoc..
22310             var html = bd.innerHTML;
22311             if(Roo.isSafari){
22312                 var bs = bd.getAttribute('style'); // Safari puts text-align styles on the body element!
22313                 var m = bs ? bs.match(/text-align:(.*?);/i) : false;
22314                 if(m && m[1]){
22315                     html = '<div style="'+m[0]+'">' + html + '</div>';
22316                 }
22317             }
22318             html = this.cleanHtml(html);
22319             // fix up the special chars.. normaly like back quotes in word...
22320             // however we do not want to do this with chinese..
22321             html = html.replace(/([\x80-\uffff])/g, function (a, b) {
22322                 var cc = b.charCodeAt();
22323                 if (
22324                     (cc >= 0x4E00 && cc < 0xA000 ) ||
22325                     (cc >= 0x3400 && cc < 0x4E00 ) ||
22326                     (cc >= 0xf900 && cc < 0xfb00 )
22327                 ) {
22328                         return b;
22329                 }
22330                 return "&#"+cc+";" 
22331             });
22332             if(this.owner.fireEvent('beforesync', this, html) !== false){
22333                 this.el.dom.value = html;
22334                 this.owner.fireEvent('sync', this, html);
22335             }
22336         }
22337     },
22338
22339     /**
22340      * Protected method that will not generally be called directly. Pushes the value of the textarea
22341      * into the iframe editor.
22342      */
22343     pushValue : function(){
22344         if(this.initialized){
22345             var v = this.el.dom.value.trim();
22346             
22347 //            if(v.length < 1){
22348 //                v = '&#160;';
22349 //            }
22350             
22351             if(this.owner.fireEvent('beforepush', this, v) !== false){
22352                 var d = (this.doc.body || this.doc.documentElement);
22353                 d.innerHTML = v;
22354                 this.cleanUpPaste();
22355                 this.el.dom.value = d.innerHTML;
22356                 this.owner.fireEvent('push', this, v);
22357             }
22358         }
22359     },
22360
22361     // private
22362     deferFocus : function(){
22363         this.focus.defer(10, this);
22364     },
22365
22366     // doc'ed in Field
22367     focus : function(){
22368         if(this.win && !this.sourceEditMode){
22369             this.win.focus();
22370         }else{
22371             this.el.focus();
22372         }
22373     },
22374     
22375     assignDocWin: function()
22376     {
22377         var iframe = this.iframe;
22378         
22379          if(Roo.isIE){
22380             this.doc = iframe.contentWindow.document;
22381             this.win = iframe.contentWindow;
22382         } else {
22383 //            if (!Roo.get(this.frameId)) {
22384 //                return;
22385 //            }
22386 //            this.doc = (iframe.contentDocument || Roo.get(this.frameId).dom.document);
22387 //            this.win = Roo.get(this.frameId).dom.contentWindow;
22388             
22389             if (!Roo.get(this.frameId) && !iframe.contentDocument) {
22390                 return;
22391             }
22392             
22393             this.doc = (iframe.contentDocument || Roo.get(this.frameId).dom.document);
22394             this.win = (iframe.contentWindow || Roo.get(this.frameId).dom.contentWindow);
22395         }
22396     },
22397     
22398     // private
22399     initEditor : function(){
22400         //console.log("INIT EDITOR");
22401         this.assignDocWin();
22402         
22403         
22404         
22405         this.doc.designMode="on";
22406         this.doc.open();
22407         this.doc.write(this.getDocMarkup());
22408         this.doc.close();
22409         
22410         var dbody = (this.doc.body || this.doc.documentElement);
22411         //var ss = this.el.getStyles('font-size', 'font-family', 'background-image', 'background-repeat');
22412         // this copies styles from the containing element into thsi one..
22413         // not sure why we need all of this..
22414         //var ss = this.el.getStyles('font-size', 'background-image', 'background-repeat');
22415         
22416         //var ss = this.el.getStyles( 'background-image', 'background-repeat');
22417         //ss['background-attachment'] = 'fixed'; // w3c
22418         dbody.bgProperties = 'fixed'; // ie
22419         //Roo.DomHelper.applyStyles(dbody, ss);
22420         Roo.EventManager.on(this.doc, {
22421             //'mousedown': this.onEditorEvent,
22422             'mouseup': this.onEditorEvent,
22423             'dblclick': this.onEditorEvent,
22424             'click': this.onEditorEvent,
22425             'keyup': this.onEditorEvent,
22426             buffer:100,
22427             scope: this
22428         });
22429         if(Roo.isGecko){
22430             Roo.EventManager.on(this.doc, 'keypress', this.mozKeyPress, this);
22431         }
22432         if(Roo.isIE || Roo.isSafari || Roo.isOpera){
22433             Roo.EventManager.on(this.doc, 'keydown', this.fixKeys, this);
22434         }
22435         this.initialized = true;
22436
22437         this.owner.fireEvent('initialize', this);
22438         this.pushValue();
22439     },
22440
22441     // private
22442     onDestroy : function(){
22443         
22444         
22445         
22446         if(this.rendered){
22447             
22448             //for (var i =0; i < this.toolbars.length;i++) {
22449             //    // fixme - ask toolbars for heights?
22450             //    this.toolbars[i].onDestroy();
22451            // }
22452             
22453             //this.wrap.dom.innerHTML = '';
22454             //this.wrap.remove();
22455         }
22456     },
22457
22458     // private
22459     onFirstFocus : function(){
22460         
22461         this.assignDocWin();
22462         
22463         
22464         this.activated = true;
22465          
22466     
22467         if(Roo.isGecko){ // prevent silly gecko errors
22468             this.win.focus();
22469             var s = this.win.getSelection();
22470             if(!s.focusNode || s.focusNode.nodeType != 3){
22471                 var r = s.getRangeAt(0);
22472                 r.selectNodeContents((this.doc.body || this.doc.documentElement));
22473                 r.collapse(true);
22474                 this.deferFocus();
22475             }
22476             try{
22477                 this.execCmd('useCSS', true);
22478                 this.execCmd('styleWithCSS', false);
22479             }catch(e){}
22480         }
22481         this.owner.fireEvent('activate', this);
22482     },
22483
22484     // private
22485     adjustFont: function(btn){
22486         var adjust = btn.cmd == 'increasefontsize' ? 1 : -1;
22487         //if(Roo.isSafari){ // safari
22488         //    adjust *= 2;
22489        // }
22490         var v = parseInt(this.doc.queryCommandValue('FontSize')|| 3, 10);
22491         if(Roo.isSafari){ // safari
22492             var sm = { 10 : 1, 13: 2, 16:3, 18:4, 24: 5, 32:6, 48: 7 };
22493             v =  (v < 10) ? 10 : v;
22494             v =  (v > 48) ? 48 : v;
22495             v = typeof(sm[v]) == 'undefined' ? 1 : sm[v];
22496             
22497         }
22498         
22499         
22500         v = Math.max(1, v+adjust);
22501         
22502         this.execCmd('FontSize', v  );
22503     },
22504
22505     onEditorEvent : function(e)
22506     {
22507         this.owner.fireEvent('editorevent', this, e);
22508       //  this.updateToolbar();
22509         this.syncValue(); //we can not sync so often.. sync cleans, so this breaks stuff
22510     },
22511
22512     insertTag : function(tg)
22513     {
22514         // could be a bit smarter... -> wrap the current selected tRoo..
22515         if (tg.toLowerCase() == 'span' || tg.toLowerCase() == 'code') {
22516             
22517             range = this.createRange(this.getSelection());
22518             var wrappingNode = this.doc.createElement(tg.toLowerCase());
22519             wrappingNode.appendChild(range.extractContents());
22520             range.insertNode(wrappingNode);
22521
22522             return;
22523             
22524             
22525             
22526         }
22527         this.execCmd("formatblock",   tg);
22528         
22529     },
22530     
22531     insertText : function(txt)
22532     {
22533         
22534         
22535         var range = this.createRange();
22536         range.deleteContents();
22537                //alert(Sender.getAttribute('label'));
22538                
22539         range.insertNode(this.doc.createTextNode(txt));
22540     } ,
22541     
22542      
22543
22544     /**
22545      * Executes a Midas editor command on the editor document and performs necessary focus and
22546      * toolbar updates. <b>This should only be called after the editor is initialized.</b>
22547      * @param {String} cmd The Midas command
22548      * @param {String/Boolean} value (optional) The value to pass to the command (defaults to null)
22549      */
22550     relayCmd : function(cmd, value){
22551         this.win.focus();
22552         this.execCmd(cmd, value);
22553         this.owner.fireEvent('editorevent', this);
22554         //this.updateToolbar();
22555         this.owner.deferFocus();
22556     },
22557
22558     /**
22559      * Executes a Midas editor command directly on the editor document.
22560      * For visual commands, you should use {@link #relayCmd} instead.
22561      * <b>This should only be called after the editor is initialized.</b>
22562      * @param {String} cmd The Midas command
22563      * @param {String/Boolean} value (optional) The value to pass to the command (defaults to null)
22564      */
22565     execCmd : function(cmd, value){
22566         this.doc.execCommand(cmd, false, value === undefined ? null : value);
22567         this.syncValue();
22568     },
22569  
22570  
22571    
22572     /**
22573      * Inserts the passed text at the current cursor position. Note: the editor must be initialized and activated
22574      * to insert tRoo.
22575      * @param {String} text | dom node.. 
22576      */
22577     insertAtCursor : function(text)
22578     {
22579         
22580         if(!this.activated){
22581             return;
22582         }
22583         /*
22584         if(Roo.isIE){
22585             this.win.focus();
22586             var r = this.doc.selection.createRange();
22587             if(r){
22588                 r.collapse(true);
22589                 r.pasteHTML(text);
22590                 this.syncValue();
22591                 this.deferFocus();
22592             
22593             }
22594             return;
22595         }
22596         */
22597         if(Roo.isGecko || Roo.isOpera || Roo.isSafari){
22598             this.win.focus();
22599             
22600             
22601             // from jquery ui (MIT licenced)
22602             var range, node;
22603             var win = this.win;
22604             
22605             if (win.getSelection && win.getSelection().getRangeAt) {
22606                 range = win.getSelection().getRangeAt(0);
22607                 node = typeof(text) == 'string' ? range.createContextualFragment(text) : text;
22608                 range.insertNode(node);
22609             } else if (win.document.selection && win.document.selection.createRange) {
22610                 // no firefox support
22611                 var txt = typeof(text) == 'string' ? text : text.outerHTML;
22612                 win.document.selection.createRange().pasteHTML(txt);
22613             } else {
22614                 // no firefox support
22615                 var txt = typeof(text) == 'string' ? text : text.outerHTML;
22616                 this.execCmd('InsertHTML', txt);
22617             } 
22618             
22619             this.syncValue();
22620             
22621             this.deferFocus();
22622         }
22623     },
22624  // private
22625     mozKeyPress : function(e){
22626         if(e.ctrlKey){
22627             var c = e.getCharCode(), cmd;
22628           
22629             if(c > 0){
22630                 c = String.fromCharCode(c).toLowerCase();
22631                 switch(c){
22632                     case 'b':
22633                         cmd = 'bold';
22634                         break;
22635                     case 'i':
22636                         cmd = 'italic';
22637                         break;
22638                     
22639                     case 'u':
22640                         cmd = 'underline';
22641                         break;
22642                     
22643                     case 'v':
22644                         this.cleanUpPaste.defer(100, this);
22645                         return;
22646                         
22647                 }
22648                 if(cmd){
22649                     this.win.focus();
22650                     this.execCmd(cmd);
22651                     this.deferFocus();
22652                     e.preventDefault();
22653                 }
22654                 
22655             }
22656         }
22657     },
22658
22659     // private
22660     fixKeys : function(){ // load time branching for fastest keydown performance
22661         if(Roo.isIE){
22662             return function(e){
22663                 var k = e.getKey(), r;
22664                 if(k == e.TAB){
22665                     e.stopEvent();
22666                     r = this.doc.selection.createRange();
22667                     if(r){
22668                         r.collapse(true);
22669                         r.pasteHTML('&#160;&#160;&#160;&#160;');
22670                         this.deferFocus();
22671                     }
22672                     return;
22673                 }
22674                 
22675                 if(k == e.ENTER){
22676                     r = this.doc.selection.createRange();
22677                     if(r){
22678                         var target = r.parentElement();
22679                         if(!target || target.tagName.toLowerCase() != 'li'){
22680                             e.stopEvent();
22681                             r.pasteHTML('<br />');
22682                             r.collapse(false);
22683                             r.select();
22684                         }
22685                     }
22686                 }
22687                 if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
22688                     this.cleanUpPaste.defer(100, this);
22689                     return;
22690                 }
22691                 
22692                 
22693             };
22694         }else if(Roo.isOpera){
22695             return function(e){
22696                 var k = e.getKey();
22697                 if(k == e.TAB){
22698                     e.stopEvent();
22699                     this.win.focus();
22700                     this.execCmd('InsertHTML','&#160;&#160;&#160;&#160;');
22701                     this.deferFocus();
22702                 }
22703                 if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
22704                     this.cleanUpPaste.defer(100, this);
22705                     return;
22706                 }
22707                 
22708             };
22709         }else if(Roo.isSafari){
22710             return function(e){
22711                 var k = e.getKey();
22712                 
22713                 if(k == e.TAB){
22714                     e.stopEvent();
22715                     this.execCmd('InsertText','\t');
22716                     this.deferFocus();
22717                     return;
22718                 }
22719                if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
22720                     this.cleanUpPaste.defer(100, this);
22721                     return;
22722                 }
22723                 
22724              };
22725         }
22726     }(),
22727     
22728     getAllAncestors: function()
22729     {
22730         var p = this.getSelectedNode();
22731         var a = [];
22732         if (!p) {
22733             a.push(p); // push blank onto stack..
22734             p = this.getParentElement();
22735         }
22736         
22737         
22738         while (p && (p.nodeType == 1) && (p.tagName.toLowerCase() != 'body')) {
22739             a.push(p);
22740             p = p.parentNode;
22741         }
22742         a.push(this.doc.body);
22743         return a;
22744     },
22745     lastSel : false,
22746     lastSelNode : false,
22747     
22748     
22749     getSelection : function() 
22750     {
22751         this.assignDocWin();
22752         return Roo.isIE ? this.doc.selection : this.win.getSelection();
22753     },
22754     
22755     getSelectedNode: function() 
22756     {
22757         // this may only work on Gecko!!!
22758         
22759         // should we cache this!!!!
22760         
22761         
22762         
22763          
22764         var range = this.createRange(this.getSelection()).cloneRange();
22765         
22766         if (Roo.isIE) {
22767             var parent = range.parentElement();
22768             while (true) {
22769                 var testRange = range.duplicate();
22770                 testRange.moveToElementText(parent);
22771                 if (testRange.inRange(range)) {
22772                     break;
22773                 }
22774                 if ((parent.nodeType != 1) || (parent.tagName.toLowerCase() == 'body')) {
22775                     break;
22776                 }
22777                 parent = parent.parentElement;
22778             }
22779             return parent;
22780         }
22781         
22782         // is ancestor a text element.
22783         var ac =  range.commonAncestorContainer;
22784         if (ac.nodeType == 3) {
22785             ac = ac.parentNode;
22786         }
22787         
22788         var ar = ac.childNodes;
22789          
22790         var nodes = [];
22791         var other_nodes = [];
22792         var has_other_nodes = false;
22793         for (var i=0;i<ar.length;i++) {
22794             if ((ar[i].nodeType == 3) && (!ar[i].data.length)) { // empty text ? 
22795                 continue;
22796             }
22797             // fullly contained node.
22798             
22799             if (this.rangeIntersectsNode(range,ar[i]) && this.rangeCompareNode(range,ar[i]) == 3) {
22800                 nodes.push(ar[i]);
22801                 continue;
22802             }
22803             
22804             // probably selected..
22805             if ((ar[i].nodeType == 1) && this.rangeIntersectsNode(range,ar[i]) && (this.rangeCompareNode(range,ar[i]) > 0)) {
22806                 other_nodes.push(ar[i]);
22807                 continue;
22808             }
22809             // outer..
22810             if (!this.rangeIntersectsNode(range,ar[i])|| (this.rangeCompareNode(range,ar[i]) == 0))  {
22811                 continue;
22812             }
22813             
22814             
22815             has_other_nodes = true;
22816         }
22817         if (!nodes.length && other_nodes.length) {
22818             nodes= other_nodes;
22819         }
22820         if (has_other_nodes || !nodes.length || (nodes.length > 1)) {
22821             return false;
22822         }
22823         
22824         return nodes[0];
22825     },
22826     createRange: function(sel)
22827     {
22828         // this has strange effects when using with 
22829         // top toolbar - not sure if it's a great idea.
22830         //this.editor.contentWindow.focus();
22831         if (typeof sel != "undefined") {
22832             try {
22833                 return sel.getRangeAt ? sel.getRangeAt(0) : sel.createRange();
22834             } catch(e) {
22835                 return this.doc.createRange();
22836             }
22837         } else {
22838             return this.doc.createRange();
22839         }
22840     },
22841     getParentElement: function()
22842     {
22843         
22844         this.assignDocWin();
22845         var sel = Roo.isIE ? this.doc.selection : this.win.getSelection();
22846         
22847         var range = this.createRange(sel);
22848          
22849         try {
22850             var p = range.commonAncestorContainer;
22851             while (p.nodeType == 3) { // text node
22852                 p = p.parentNode;
22853             }
22854             return p;
22855         } catch (e) {
22856             return null;
22857         }
22858     
22859     },
22860     /***
22861      *
22862      * Range intersection.. the hard stuff...
22863      *  '-1' = before
22864      *  '0' = hits..
22865      *  '1' = after.
22866      *         [ -- selected range --- ]
22867      *   [fail]                        [fail]
22868      *
22869      *    basically..
22870      *      if end is before start or  hits it. fail.
22871      *      if start is after end or hits it fail.
22872      *
22873      *   if either hits (but other is outside. - then it's not 
22874      *   
22875      *    
22876      **/
22877     
22878     
22879     // @see http://www.thismuchiknow.co.uk/?p=64.
22880     rangeIntersectsNode : function(range, node)
22881     {
22882         var nodeRange = node.ownerDocument.createRange();
22883         try {
22884             nodeRange.selectNode(node);
22885         } catch (e) {
22886             nodeRange.selectNodeContents(node);
22887         }
22888     
22889         var rangeStartRange = range.cloneRange();
22890         rangeStartRange.collapse(true);
22891     
22892         var rangeEndRange = range.cloneRange();
22893         rangeEndRange.collapse(false);
22894     
22895         var nodeStartRange = nodeRange.cloneRange();
22896         nodeStartRange.collapse(true);
22897     
22898         var nodeEndRange = nodeRange.cloneRange();
22899         nodeEndRange.collapse(false);
22900     
22901         return rangeStartRange.compareBoundaryPoints(
22902                  Range.START_TO_START, nodeEndRange) == -1 &&
22903                rangeEndRange.compareBoundaryPoints(
22904                  Range.START_TO_START, nodeStartRange) == 1;
22905         
22906          
22907     },
22908     rangeCompareNode : function(range, node)
22909     {
22910         var nodeRange = node.ownerDocument.createRange();
22911         try {
22912             nodeRange.selectNode(node);
22913         } catch (e) {
22914             nodeRange.selectNodeContents(node);
22915         }
22916         
22917         
22918         range.collapse(true);
22919     
22920         nodeRange.collapse(true);
22921      
22922         var ss = range.compareBoundaryPoints( Range.START_TO_START, nodeRange);
22923         var ee = range.compareBoundaryPoints(  Range.END_TO_END, nodeRange);
22924          
22925         //Roo.log(node.tagName + ': ss='+ss +', ee='+ee)
22926         
22927         var nodeIsBefore   =  ss == 1;
22928         var nodeIsAfter    = ee == -1;
22929         
22930         if (nodeIsBefore && nodeIsAfter) {
22931             return 0; // outer
22932         }
22933         if (!nodeIsBefore && nodeIsAfter) {
22934             return 1; //right trailed.
22935         }
22936         
22937         if (nodeIsBefore && !nodeIsAfter) {
22938             return 2;  // left trailed.
22939         }
22940         // fully contined.
22941         return 3;
22942     },
22943
22944     // private? - in a new class?
22945     cleanUpPaste :  function()
22946     {
22947         // cleans up the whole document..
22948         Roo.log('cleanuppaste');
22949         
22950         this.cleanUpChildren(this.doc.body);
22951         var clean = this.cleanWordChars(this.doc.body.innerHTML);
22952         if (clean != this.doc.body.innerHTML) {
22953             this.doc.body.innerHTML = clean;
22954         }
22955         
22956     },
22957     
22958     cleanWordChars : function(input) {// change the chars to hex code
22959         var he = Roo.HtmlEditorCore;
22960         
22961         var output = input;
22962         Roo.each(he.swapCodes, function(sw) { 
22963             var swapper = new RegExp("\\u" + sw[0].toString(16), "g"); // hex codes
22964             
22965             output = output.replace(swapper, sw[1]);
22966         });
22967         
22968         return output;
22969     },
22970     
22971     
22972     cleanUpChildren : function (n)
22973     {
22974         if (!n.childNodes.length) {
22975             return;
22976         }
22977         for (var i = n.childNodes.length-1; i > -1 ; i--) {
22978            this.cleanUpChild(n.childNodes[i]);
22979         }
22980     },
22981     
22982     
22983         
22984     
22985     cleanUpChild : function (node)
22986     {
22987         var ed = this;
22988         //console.log(node);
22989         if (node.nodeName == "#text") {
22990             // clean up silly Windows -- stuff?
22991             return; 
22992         }
22993         if (node.nodeName == "#comment") {
22994             node.parentNode.removeChild(node);
22995             // clean up silly Windows -- stuff?
22996             return; 
22997         }
22998         var lcname = node.tagName.toLowerCase();
22999         // we ignore whitelists... ?? = not really the way to go, but we probably have not got a full
23000         // whitelist of tags..
23001         
23002         if (this.black.indexOf(lcname) > -1 && this.clearUp ) {
23003             // remove node.
23004             node.parentNode.removeChild(node);
23005             return;
23006             
23007         }
23008         
23009         var remove_keep_children= Roo.HtmlEditorCore.remove.indexOf(node.tagName.toLowerCase()) > -1;
23010         
23011         // remove <a name=....> as rendering on yahoo mailer is borked with this.
23012         // this will have to be flaged elsewhere - perhaps ablack=name... on the mailer..
23013         
23014         //if (node.tagName.toLowerCase() == 'a' && !node.hasAttribute('href')) {
23015         //    remove_keep_children = true;
23016         //}
23017         
23018         if (remove_keep_children) {
23019             this.cleanUpChildren(node);
23020             // inserts everything just before this node...
23021             while (node.childNodes.length) {
23022                 var cn = node.childNodes[0];
23023                 node.removeChild(cn);
23024                 node.parentNode.insertBefore(cn, node);
23025             }
23026             node.parentNode.removeChild(node);
23027             return;
23028         }
23029         
23030         if (!node.attributes || !node.attributes.length) {
23031             this.cleanUpChildren(node);
23032             return;
23033         }
23034         
23035         function cleanAttr(n,v)
23036         {
23037             
23038             if (v.match(/^\./) || v.match(/^\//)) {
23039                 return;
23040             }
23041             if (v.match(/^(http|https):\/\//) || v.match(/^mailto:/) || v.match(/^ftp:/)) {
23042                 return;
23043             }
23044             if (v.match(/^#/)) {
23045                 return;
23046             }
23047 //            Roo.log("(REMOVE TAG)"+ node.tagName +'.' + n + '=' + v);
23048             node.removeAttribute(n);
23049             
23050         }
23051         
23052         var cwhite = this.cwhite;
23053         var cblack = this.cblack;
23054             
23055         function cleanStyle(n,v)
23056         {
23057             if (v.match(/expression/)) { //XSS?? should we even bother..
23058                 node.removeAttribute(n);
23059                 return;
23060             }
23061             
23062             var parts = v.split(/;/);
23063             var clean = [];
23064             
23065             Roo.each(parts, function(p) {
23066                 p = p.replace(/^\s+/g,'').replace(/\s+$/g,'');
23067                 if (!p.length) {
23068                     return true;
23069                 }
23070                 var l = p.split(':').shift().replace(/\s+/g,'');
23071                 l = l.replace(/^\s+/g,'').replace(/\s+$/g,'');
23072                 
23073                 if ( cwhite.length && cblack.indexOf(l) > -1) {
23074 //                    Roo.log('(REMOVE CSS)' + node.tagName +'.' + n + ':'+l + '=' + v);
23075                     //node.removeAttribute(n);
23076                     return true;
23077                 }
23078                 //Roo.log()
23079                 // only allow 'c whitelisted system attributes'
23080                 if ( cwhite.length &&  cwhite.indexOf(l) < 0) {
23081 //                    Roo.log('(REMOVE CSS)' + node.tagName +'.' + n + ':'+l + '=' + v);
23082                     //node.removeAttribute(n);
23083                     return true;
23084                 }
23085                 
23086                 
23087                  
23088                 
23089                 clean.push(p);
23090                 return true;
23091             });
23092             if (clean.length) { 
23093                 node.setAttribute(n, clean.join(';'));
23094             } else {
23095                 node.removeAttribute(n);
23096             }
23097             
23098         }
23099         
23100         
23101         for (var i = node.attributes.length-1; i > -1 ; i--) {
23102             var a = node.attributes[i];
23103             //console.log(a);
23104             
23105             if (a.name.toLowerCase().substr(0,2)=='on')  {
23106                 node.removeAttribute(a.name);
23107                 continue;
23108             }
23109             if (Roo.HtmlEditorCore.ablack.indexOf(a.name.toLowerCase()) > -1) {
23110                 node.removeAttribute(a.name);
23111                 continue;
23112             }
23113             if (Roo.HtmlEditorCore.aclean.indexOf(a.name.toLowerCase()) > -1) {
23114                 cleanAttr(a.name,a.value); // fixme..
23115                 continue;
23116             }
23117             if (a.name == 'style') {
23118                 cleanStyle(a.name,a.value);
23119                 continue;
23120             }
23121             /// clean up MS crap..
23122             // tecnically this should be a list of valid class'es..
23123             
23124             
23125             if (a.name == 'class') {
23126                 if (a.value.match(/^Mso/)) {
23127                     node.className = '';
23128                 }
23129                 
23130                 if (a.value.match(/^body$/)) {
23131                     node.className = '';
23132                 }
23133                 continue;
23134             }
23135             
23136             // style cleanup!?
23137             // class cleanup?
23138             
23139         }
23140         
23141         
23142         this.cleanUpChildren(node);
23143         
23144         
23145     },
23146     
23147     /**
23148      * Clean up MS wordisms...
23149      */
23150     cleanWord : function(node)
23151     {
23152         
23153         
23154         if (!node) {
23155             this.cleanWord(this.doc.body);
23156             return;
23157         }
23158         if (node.nodeName == "#text") {
23159             // clean up silly Windows -- stuff?
23160             return; 
23161         }
23162         if (node.nodeName == "#comment") {
23163             node.parentNode.removeChild(node);
23164             // clean up silly Windows -- stuff?
23165             return; 
23166         }
23167         
23168         if (node.tagName.toLowerCase().match(/^(style|script|applet|embed|noframes|noscript)$/)) {
23169             node.parentNode.removeChild(node);
23170             return;
23171         }
23172         
23173         // remove - but keep children..
23174         if (node.tagName.toLowerCase().match(/^(meta|link|\\?xml:|st1:|o:|font)/)) {
23175             while (node.childNodes.length) {
23176                 var cn = node.childNodes[0];
23177                 node.removeChild(cn);
23178                 node.parentNode.insertBefore(cn, node);
23179             }
23180             node.parentNode.removeChild(node);
23181             this.iterateChildren(node, this.cleanWord);
23182             return;
23183         }
23184         // clean styles
23185         if (node.className.length) {
23186             
23187             var cn = node.className.split(/\W+/);
23188             var cna = [];
23189             Roo.each(cn, function(cls) {
23190                 if (cls.match(/Mso[a-zA-Z]+/)) {
23191                     return;
23192                 }
23193                 cna.push(cls);
23194             });
23195             node.className = cna.length ? cna.join(' ') : '';
23196             if (!cna.length) {
23197                 node.removeAttribute("class");
23198             }
23199         }
23200         
23201         if (node.hasAttribute("lang")) {
23202             node.removeAttribute("lang");
23203         }
23204         
23205         if (node.hasAttribute("style")) {
23206             
23207             var styles = node.getAttribute("style").split(";");
23208             var nstyle = [];
23209             Roo.each(styles, function(s) {
23210                 if (!s.match(/:/)) {
23211                     return;
23212                 }
23213                 var kv = s.split(":");
23214                 if (kv[0].match(/^(mso-|line|font|background|margin|padding|color)/)) {
23215                     return;
23216                 }
23217                 // what ever is left... we allow.
23218                 nstyle.push(s);
23219             });
23220             node.setAttribute("style", nstyle.length ? nstyle.join(';') : '');
23221             if (!nstyle.length) {
23222                 node.removeAttribute('style');
23223             }
23224         }
23225         this.iterateChildren(node, this.cleanWord);
23226         
23227         
23228         
23229     },
23230     /**
23231      * iterateChildren of a Node, calling fn each time, using this as the scole..
23232      * @param {DomNode} node node to iterate children of.
23233      * @param {Function} fn method of this class to call on each item.
23234      */
23235     iterateChildren : function(node, fn)
23236     {
23237         if (!node.childNodes.length) {
23238                 return;
23239         }
23240         for (var i = node.childNodes.length-1; i > -1 ; i--) {
23241            fn.call(this, node.childNodes[i])
23242         }
23243     },
23244     
23245     
23246     /**
23247      * cleanTableWidths.
23248      *
23249      * Quite often pasting from word etc.. results in tables with column and widths.
23250      * This does not work well on fluid HTML layouts - like emails. - so this code should hunt an destroy them..
23251      *
23252      */
23253     cleanTableWidths : function(node)
23254     {
23255          
23256          
23257         if (!node) {
23258             this.cleanTableWidths(this.doc.body);
23259             return;
23260         }
23261         
23262         // ignore list...
23263         if (node.nodeName == "#text" || node.nodeName == "#comment") {
23264             return; 
23265         }
23266         Roo.log(node.tagName);
23267         if (!node.tagName.toLowerCase().match(/^(table|td|tr)$/)) {
23268             this.iterateChildren(node, this.cleanTableWidths);
23269             return;
23270         }
23271         if (node.hasAttribute('width')) {
23272             node.removeAttribute('width');
23273         }
23274         
23275          
23276         if (node.hasAttribute("style")) {
23277             // pretty basic...
23278             
23279             var styles = node.getAttribute("style").split(";");
23280             var nstyle = [];
23281             Roo.each(styles, function(s) {
23282                 if (!s.match(/:/)) {
23283                     return;
23284                 }
23285                 var kv = s.split(":");
23286                 if (kv[0].match(/^\s*(width|min-width)\s*$/)) {
23287                     return;
23288                 }
23289                 // what ever is left... we allow.
23290                 nstyle.push(s);
23291             });
23292             node.setAttribute("style", nstyle.length ? nstyle.join(';') : '');
23293             if (!nstyle.length) {
23294                 node.removeAttribute('style');
23295             }
23296         }
23297         
23298         this.iterateChildren(node, this.cleanTableWidths);
23299         
23300         
23301     },
23302     
23303     
23304     
23305     
23306     domToHTML : function(currentElement, depth, nopadtext) {
23307         
23308         depth = depth || 0;
23309         nopadtext = nopadtext || false;
23310     
23311         if (!currentElement) {
23312             return this.domToHTML(this.doc.body);
23313         }
23314         
23315         //Roo.log(currentElement);
23316         var j;
23317         var allText = false;
23318         var nodeName = currentElement.nodeName;
23319         var tagName = Roo.util.Format.htmlEncode(currentElement.tagName);
23320         
23321         if  (nodeName == '#text') {
23322             
23323             return nopadtext ? currentElement.nodeValue : currentElement.nodeValue.trim();
23324         }
23325         
23326         
23327         var ret = '';
23328         if (nodeName != 'BODY') {
23329              
23330             var i = 0;
23331             // Prints the node tagName, such as <A>, <IMG>, etc
23332             if (tagName) {
23333                 var attr = [];
23334                 for(i = 0; i < currentElement.attributes.length;i++) {
23335                     // quoting?
23336                     var aname = currentElement.attributes.item(i).name;
23337                     if (!currentElement.attributes.item(i).value.length) {
23338                         continue;
23339                     }
23340                     attr.push(aname + '="' + Roo.util.Format.htmlEncode(currentElement.attributes.item(i).value) + '"' );
23341                 }
23342                 
23343                 ret = "<"+currentElement.tagName+ ( attr.length ? (' ' + attr.join(' ') ) : '') + ">";
23344             } 
23345             else {
23346                 
23347                 // eack
23348             }
23349         } else {
23350             tagName = false;
23351         }
23352         if (['IMG', 'BR', 'HR', 'INPUT'].indexOf(tagName) > -1) {
23353             return ret;
23354         }
23355         if (['PRE', 'TEXTAREA', 'TD', 'A', 'SPAN'].indexOf(tagName) > -1) { // or code?
23356             nopadtext = true;
23357         }
23358         
23359         
23360         // Traverse the tree
23361         i = 0;
23362         var currentElementChild = currentElement.childNodes.item(i);
23363         var allText = true;
23364         var innerHTML  = '';
23365         lastnode = '';
23366         while (currentElementChild) {
23367             // Formatting code (indent the tree so it looks nice on the screen)
23368             var nopad = nopadtext;
23369             if (lastnode == 'SPAN') {
23370                 nopad  = true;
23371             }
23372             // text
23373             if  (currentElementChild.nodeName == '#text') {
23374                 var toadd = Roo.util.Format.htmlEncode(currentElementChild.nodeValue);
23375                 toadd = nopadtext ? toadd : toadd.trim();
23376                 if (!nopad && toadd.length > 80) {
23377                     innerHTML  += "\n" + (new Array( depth + 1 )).join( "  "  );
23378                 }
23379                 innerHTML  += toadd;
23380                 
23381                 i++;
23382                 currentElementChild = currentElement.childNodes.item(i);
23383                 lastNode = '';
23384                 continue;
23385             }
23386             allText = false;
23387             
23388             innerHTML  += nopad ? '' : "\n" + (new Array( depth + 1 )).join( "  "  );
23389                 
23390             // Recursively traverse the tree structure of the child node
23391             innerHTML   += this.domToHTML(currentElementChild, depth+1, nopadtext);
23392             lastnode = currentElementChild.nodeName;
23393             i++;
23394             currentElementChild=currentElement.childNodes.item(i);
23395         }
23396         
23397         ret += innerHTML;
23398         
23399         if (!allText) {
23400                 // The remaining code is mostly for formatting the tree
23401             ret+= nopadtext ? '' : "\n" + (new Array( depth  )).join( "  "  );
23402         }
23403         
23404         
23405         if (tagName) {
23406             ret+= "</"+tagName+">";
23407         }
23408         return ret;
23409         
23410     },
23411         
23412     applyBlacklists : function()
23413     {
23414         var w = typeof(this.owner.white) != 'undefined' && this.owner.white ? this.owner.white  : [];
23415         var b = typeof(this.owner.black) != 'undefined' && this.owner.black ? this.owner.black :  [];
23416         
23417         this.white = [];
23418         this.black = [];
23419         Roo.each(Roo.HtmlEditorCore.white, function(tag) {
23420             if (b.indexOf(tag) > -1) {
23421                 return;
23422             }
23423             this.white.push(tag);
23424             
23425         }, this);
23426         
23427         Roo.each(w, function(tag) {
23428             if (b.indexOf(tag) > -1) {
23429                 return;
23430             }
23431             if (this.white.indexOf(tag) > -1) {
23432                 return;
23433             }
23434             this.white.push(tag);
23435             
23436         }, this);
23437         
23438         
23439         Roo.each(Roo.HtmlEditorCore.black, function(tag) {
23440             if (w.indexOf(tag) > -1) {
23441                 return;
23442             }
23443             this.black.push(tag);
23444             
23445         }, this);
23446         
23447         Roo.each(b, function(tag) {
23448             if (w.indexOf(tag) > -1) {
23449                 return;
23450             }
23451             if (this.black.indexOf(tag) > -1) {
23452                 return;
23453             }
23454             this.black.push(tag);
23455             
23456         }, this);
23457         
23458         
23459         w = typeof(this.owner.cwhite) != 'undefined' && this.owner.cwhite ? this.owner.cwhite  : [];
23460         b = typeof(this.owner.cblack) != 'undefined' && this.owner.cblack ? this.owner.cblack :  [];
23461         
23462         this.cwhite = [];
23463         this.cblack = [];
23464         Roo.each(Roo.HtmlEditorCore.cwhite, function(tag) {
23465             if (b.indexOf(tag) > -1) {
23466                 return;
23467             }
23468             this.cwhite.push(tag);
23469             
23470         }, this);
23471         
23472         Roo.each(w, function(tag) {
23473             if (b.indexOf(tag) > -1) {
23474                 return;
23475             }
23476             if (this.cwhite.indexOf(tag) > -1) {
23477                 return;
23478             }
23479             this.cwhite.push(tag);
23480             
23481         }, this);
23482         
23483         
23484         Roo.each(Roo.HtmlEditorCore.cblack, function(tag) {
23485             if (w.indexOf(tag) > -1) {
23486                 return;
23487             }
23488             this.cblack.push(tag);
23489             
23490         }, this);
23491         
23492         Roo.each(b, function(tag) {
23493             if (w.indexOf(tag) > -1) {
23494                 return;
23495             }
23496             if (this.cblack.indexOf(tag) > -1) {
23497                 return;
23498             }
23499             this.cblack.push(tag);
23500             
23501         }, this);
23502     },
23503     
23504     setStylesheets : function(stylesheets)
23505     {
23506         if(typeof(stylesheets) == 'string'){
23507             Roo.get(this.iframe.contentDocument.head).createChild({
23508                 tag : 'link',
23509                 rel : 'stylesheet',
23510                 type : 'text/css',
23511                 href : stylesheets
23512             });
23513             
23514             return;
23515         }
23516         var _this = this;
23517      
23518         Roo.each(stylesheets, function(s) {
23519             if(!s.length){
23520                 return;
23521             }
23522             
23523             Roo.get(_this.iframe.contentDocument.head).createChild({
23524                 tag : 'link',
23525                 rel : 'stylesheet',
23526                 type : 'text/css',
23527                 href : s
23528             });
23529         });
23530
23531         
23532     },
23533     
23534     removeStylesheets : function()
23535     {
23536         var _this = this;
23537         
23538         Roo.each(Roo.get(_this.iframe.contentDocument.head).select('link[rel=stylesheet]', true).elements, function(s){
23539             s.remove();
23540         });
23541     },
23542     
23543     setStyle : function(style)
23544     {
23545         Roo.get(this.iframe.contentDocument.head).createChild({
23546             tag : 'style',
23547             type : 'text/css',
23548             html : style
23549         });
23550
23551         return;
23552     }
23553     
23554     // hide stuff that is not compatible
23555     /**
23556      * @event blur
23557      * @hide
23558      */
23559     /**
23560      * @event change
23561      * @hide
23562      */
23563     /**
23564      * @event focus
23565      * @hide
23566      */
23567     /**
23568      * @event specialkey
23569      * @hide
23570      */
23571     /**
23572      * @cfg {String} fieldClass @hide
23573      */
23574     /**
23575      * @cfg {String} focusClass @hide
23576      */
23577     /**
23578      * @cfg {String} autoCreate @hide
23579      */
23580     /**
23581      * @cfg {String} inputType @hide
23582      */
23583     /**
23584      * @cfg {String} invalidClass @hide
23585      */
23586     /**
23587      * @cfg {String} invalidText @hide
23588      */
23589     /**
23590      * @cfg {String} msgFx @hide
23591      */
23592     /**
23593      * @cfg {String} validateOnBlur @hide
23594      */
23595 });
23596
23597 Roo.HtmlEditorCore.white = [
23598         'area', 'br', 'img', 'input', 'hr', 'wbr',
23599         
23600        'address', 'blockquote', 'center', 'dd',      'dir',       'div', 
23601        'dl',      'dt',         'h1',     'h2',      'h3',        'h4', 
23602        'h5',      'h6',         'hr',     'isindex', 'listing',   'marquee', 
23603        'menu',    'multicol',   'ol',     'p',       'plaintext', 'pre', 
23604        'table',   'ul',         'xmp', 
23605        
23606        'caption', 'col', 'colgroup', 'tbody', 'td', 'tfoot', 'th', 
23607       'thead',   'tr', 
23608      
23609       'dir', 'menu', 'ol', 'ul', 'dl',
23610        
23611       'embed',  'object'
23612 ];
23613
23614
23615 Roo.HtmlEditorCore.black = [
23616     //    'embed',  'object', // enable - backend responsiblity to clean thiese
23617         'applet', // 
23618         'base',   'basefont', 'bgsound', 'blink',  'body', 
23619         'frame',  'frameset', 'head',    'html',   'ilayer', 
23620         'iframe', 'layer',  'link',     'meta',    'object',   
23621         'script', 'style' ,'title',  'xml' // clean later..
23622 ];
23623 Roo.HtmlEditorCore.clean = [
23624     'script', 'style', 'title', 'xml'
23625 ];
23626 Roo.HtmlEditorCore.remove = [
23627     'font'
23628 ];
23629 // attributes..
23630
23631 Roo.HtmlEditorCore.ablack = [
23632     'on'
23633 ];
23634     
23635 Roo.HtmlEditorCore.aclean = [ 
23636     'action', 'background', 'codebase', 'dynsrc', 'href', 'lowsrc' 
23637 ];
23638
23639 // protocols..
23640 Roo.HtmlEditorCore.pwhite= [
23641         'http',  'https',  'mailto'
23642 ];
23643
23644 // white listed style attributes.
23645 Roo.HtmlEditorCore.cwhite= [
23646       //  'text-align', /// default is to allow most things..
23647       
23648          
23649 //        'font-size'//??
23650 ];
23651
23652 // black listed style attributes.
23653 Roo.HtmlEditorCore.cblack= [
23654       //  'font-size' -- this can be set by the project 
23655 ];
23656
23657
23658 Roo.HtmlEditorCore.swapCodes   =[ 
23659     [    8211, "--" ], 
23660     [    8212, "--" ], 
23661     [    8216,  "'" ],  
23662     [    8217, "'" ],  
23663     [    8220, '"' ],  
23664     [    8221, '"' ],  
23665     [    8226, "*" ],  
23666     [    8230, "..." ]
23667 ]; 
23668
23669     /*
23670  * - LGPL
23671  *
23672  * HtmlEditor
23673  * 
23674  */
23675
23676 /**
23677  * @class Roo.bootstrap.HtmlEditor
23678  * @extends Roo.bootstrap.TextArea
23679  * Bootstrap HtmlEditor class
23680
23681  * @constructor
23682  * Create a new HtmlEditor
23683  * @param {Object} config The config object
23684  */
23685
23686 Roo.bootstrap.HtmlEditor = function(config){
23687     Roo.bootstrap.HtmlEditor.superclass.constructor.call(this, config);
23688     if (!this.toolbars) {
23689         this.toolbars = [];
23690     }
23691     
23692     this.editorcore = new Roo.HtmlEditorCore(Roo.apply({ owner : this} , config));
23693     this.addEvents({
23694             /**
23695              * @event initialize
23696              * Fires when the editor is fully initialized (including the iframe)
23697              * @param {HtmlEditor} this
23698              */
23699             initialize: true,
23700             /**
23701              * @event activate
23702              * Fires when the editor is first receives the focus. Any insertion must wait
23703              * until after this event.
23704              * @param {HtmlEditor} this
23705              */
23706             activate: true,
23707              /**
23708              * @event beforesync
23709              * Fires before the textarea is updated with content from the editor iframe. Return false
23710              * to cancel the sync.
23711              * @param {HtmlEditor} this
23712              * @param {String} html
23713              */
23714             beforesync: true,
23715              /**
23716              * @event beforepush
23717              * Fires before the iframe editor is updated with content from the textarea. Return false
23718              * to cancel the push.
23719              * @param {HtmlEditor} this
23720              * @param {String} html
23721              */
23722             beforepush: true,
23723              /**
23724              * @event sync
23725              * Fires when the textarea is updated with content from the editor iframe.
23726              * @param {HtmlEditor} this
23727              * @param {String} html
23728              */
23729             sync: true,
23730              /**
23731              * @event push
23732              * Fires when the iframe editor is updated with content from the textarea.
23733              * @param {HtmlEditor} this
23734              * @param {String} html
23735              */
23736             push: true,
23737              /**
23738              * @event editmodechange
23739              * Fires when the editor switches edit modes
23740              * @param {HtmlEditor} this
23741              * @param {Boolean} sourceEdit True if source edit, false if standard editing.
23742              */
23743             editmodechange: true,
23744             /**
23745              * @event editorevent
23746              * Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks.
23747              * @param {HtmlEditor} this
23748              */
23749             editorevent: true,
23750             /**
23751              * @event firstfocus
23752              * Fires when on first focus - needed by toolbars..
23753              * @param {HtmlEditor} this
23754              */
23755             firstfocus: true,
23756             /**
23757              * @event autosave
23758              * Auto save the htmlEditor value as a file into Events
23759              * @param {HtmlEditor} this
23760              */
23761             autosave: true,
23762             /**
23763              * @event savedpreview
23764              * preview the saved version of htmlEditor
23765              * @param {HtmlEditor} this
23766              */
23767             savedpreview: true
23768         });
23769 };
23770
23771
23772 Roo.extend(Roo.bootstrap.HtmlEditor, Roo.bootstrap.TextArea,  {
23773     
23774     
23775       /**
23776      * @cfg {Array} toolbars Array of toolbars. - defaults to just the Standard one
23777      */
23778     toolbars : false,
23779     
23780      /**
23781     * @cfg {Array} buttons Array of toolbar's buttons. - defaults to empty
23782     */
23783     btns : [],
23784    
23785      /**
23786      * @cfg {String} resizable  's' or 'se' or 'e' - wrapps the element in a
23787      *                        Roo.resizable.
23788      */
23789     resizable : false,
23790      /**
23791      * @cfg {Number} height (in pixels)
23792      */   
23793     height: 300,
23794    /**
23795      * @cfg {Number} width (in pixels)
23796      */   
23797     width: false,
23798     
23799     /**
23800      * @cfg {Array} stylesheets url of stylesheets. set to [] to disable stylesheets.
23801      * 
23802      */
23803     stylesheets: false,
23804     
23805     // id of frame..
23806     frameId: false,
23807     
23808     // private properties
23809     validationEvent : false,
23810     deferHeight: true,
23811     initialized : false,
23812     activated : false,
23813     
23814     onFocus : Roo.emptyFn,
23815     iframePad:3,
23816     hideMode:'offsets',
23817     
23818     tbContainer : false,
23819     
23820     bodyCls : '',
23821     
23822     toolbarContainer :function() {
23823         return this.wrap.select('.x-html-editor-tb',true).first();
23824     },
23825
23826     /**
23827      * Protected method that will not generally be called directly. It
23828      * is called when the editor creates its toolbar. Override this method if you need to
23829      * add custom toolbar buttons.
23830      * @param {HtmlEditor} editor
23831      */
23832     createToolbar : function(){
23833         Roo.log('renewing');
23834         Roo.log("create toolbars");
23835         
23836         this.toolbars = [ new Roo.bootstrap.htmleditor.ToolbarStandard({editor: this} ) ];
23837         this.toolbars[0].render(this.toolbarContainer());
23838         
23839         return;
23840         
23841 //        if (!editor.toolbars || !editor.toolbars.length) {
23842 //            editor.toolbars = [ new Roo.bootstrap.HtmlEditor.ToolbarStandard() ]; // can be empty?
23843 //        }
23844 //        
23845 //        for (var i =0 ; i < editor.toolbars.length;i++) {
23846 //            editor.toolbars[i] = Roo.factory(
23847 //                    typeof(editor.toolbars[i]) == 'string' ?
23848 //                        { xtype: editor.toolbars[i]} : editor.toolbars[i],
23849 //                Roo.bootstrap.HtmlEditor);
23850 //            editor.toolbars[i].init(editor);
23851 //        }
23852     },
23853
23854      
23855     // private
23856     onRender : function(ct, position)
23857     {
23858        // Roo.log("Call onRender: " + this.xtype);
23859         var _t = this;
23860         Roo.bootstrap.HtmlEditor.superclass.onRender.call(this, ct, position);
23861       
23862         this.wrap = this.inputEl().wrap({
23863             cls:'x-html-editor-wrap', cn:{cls:'x-html-editor-tb'}
23864         });
23865         
23866         this.editorcore.onRender(ct, position);
23867          
23868         if (this.resizable) {
23869             this.resizeEl = new Roo.Resizable(this.wrap, {
23870                 pinned : true,
23871                 wrap: true,
23872                 dynamic : true,
23873                 minHeight : this.height,
23874                 height: this.height,
23875                 handles : this.resizable,
23876                 width: this.width,
23877                 listeners : {
23878                     resize : function(r, w, h) {
23879                         _t.onResize(w,h); // -something
23880                     }
23881                 }
23882             });
23883             
23884         }
23885         this.createToolbar(this);
23886        
23887         
23888         if(!this.width && this.resizable){
23889             this.setSize(this.wrap.getSize());
23890         }
23891         if (this.resizeEl) {
23892             this.resizeEl.resizeTo.defer(100, this.resizeEl,[ this.width,this.height ] );
23893             // should trigger onReize..
23894         }
23895         
23896     },
23897
23898     // private
23899     onResize : function(w, h)
23900     {
23901         Roo.log('resize: ' +w + ',' + h );
23902         Roo.bootstrap.HtmlEditor.superclass.onResize.apply(this, arguments);
23903         var ew = false;
23904         var eh = false;
23905         
23906         if(this.inputEl() ){
23907             if(typeof w == 'number'){
23908                 var aw = w - this.wrap.getFrameWidth('lr');
23909                 this.inputEl().setWidth(this.adjustWidth('textarea', aw));
23910                 ew = aw;
23911             }
23912             if(typeof h == 'number'){
23913                  var tbh = -11;  // fixme it needs to tool bar size!
23914                 for (var i =0; i < this.toolbars.length;i++) {
23915                     // fixme - ask toolbars for heights?
23916                     tbh += this.toolbars[i].el.getHeight();
23917                     //if (this.toolbars[i].footer) {
23918                     //    tbh += this.toolbars[i].footer.el.getHeight();
23919                     //}
23920                 }
23921               
23922                 
23923                 
23924                 
23925                 
23926                 var ah = h - this.wrap.getFrameWidth('tb') - tbh;// this.tb.el.getHeight();
23927                 ah -= 5; // knock a few pixes off for look..
23928                 this.inputEl().setHeight(this.adjustWidth('textarea', ah));
23929                 var eh = ah;
23930             }
23931         }
23932         Roo.log('onResize:' + [w,h,ew,eh].join(',') );
23933         this.editorcore.onResize(ew,eh);
23934         
23935     },
23936
23937     /**
23938      * Toggles the editor between standard and source edit mode.
23939      * @param {Boolean} sourceEdit (optional) True for source edit, false for standard
23940      */
23941     toggleSourceEdit : function(sourceEditMode)
23942     {
23943         this.editorcore.toggleSourceEdit(sourceEditMode);
23944         
23945         if(this.editorcore.sourceEditMode){
23946             Roo.log('editor - showing textarea');
23947             
23948 //            Roo.log('in');
23949 //            Roo.log(this.syncValue());
23950             this.syncValue();
23951             this.inputEl().removeClass(['hide', 'x-hidden']);
23952             this.inputEl().dom.removeAttribute('tabIndex');
23953             this.inputEl().focus();
23954         }else{
23955             Roo.log('editor - hiding textarea');
23956 //            Roo.log('out')
23957 //            Roo.log(this.pushValue()); 
23958             this.pushValue();
23959             
23960             this.inputEl().addClass(['hide', 'x-hidden']);
23961             this.inputEl().dom.setAttribute('tabIndex', -1);
23962             //this.deferFocus();
23963         }
23964          
23965         if(this.resizable){
23966             this.setSize(this.wrap.getSize());
23967         }
23968         
23969         this.fireEvent('editmodechange', this, this.editorcore.sourceEditMode);
23970     },
23971  
23972     // private (for BoxComponent)
23973     adjustSize : Roo.BoxComponent.prototype.adjustSize,
23974
23975     // private (for BoxComponent)
23976     getResizeEl : function(){
23977         return this.wrap;
23978     },
23979
23980     // private (for BoxComponent)
23981     getPositionEl : function(){
23982         return this.wrap;
23983     },
23984
23985     // private
23986     initEvents : function(){
23987         this.originalValue = this.getValue();
23988     },
23989
23990 //    /**
23991 //     * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
23992 //     * @method
23993 //     */
23994 //    markInvalid : Roo.emptyFn,
23995 //    /**
23996 //     * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
23997 //     * @method
23998 //     */
23999 //    clearInvalid : Roo.emptyFn,
24000
24001     setValue : function(v){
24002         Roo.bootstrap.HtmlEditor.superclass.setValue.call(this, v);
24003         this.editorcore.pushValue();
24004     },
24005
24006      
24007     // private
24008     deferFocus : function(){
24009         this.focus.defer(10, this);
24010     },
24011
24012     // doc'ed in Field
24013     focus : function(){
24014         this.editorcore.focus();
24015         
24016     },
24017       
24018
24019     // private
24020     onDestroy : function(){
24021         
24022         
24023         
24024         if(this.rendered){
24025             
24026             for (var i =0; i < this.toolbars.length;i++) {
24027                 // fixme - ask toolbars for heights?
24028                 this.toolbars[i].onDestroy();
24029             }
24030             
24031             this.wrap.dom.innerHTML = '';
24032             this.wrap.remove();
24033         }
24034     },
24035
24036     // private
24037     onFirstFocus : function(){
24038         //Roo.log("onFirstFocus");
24039         this.editorcore.onFirstFocus();
24040          for (var i =0; i < this.toolbars.length;i++) {
24041             this.toolbars[i].onFirstFocus();
24042         }
24043         
24044     },
24045     
24046     // private
24047     syncValue : function()
24048     {   
24049         this.editorcore.syncValue();
24050     },
24051     
24052     pushValue : function()
24053     {   
24054         this.editorcore.pushValue();
24055     }
24056      
24057     
24058     // hide stuff that is not compatible
24059     /**
24060      * @event blur
24061      * @hide
24062      */
24063     /**
24064      * @event change
24065      * @hide
24066      */
24067     /**
24068      * @event focus
24069      * @hide
24070      */
24071     /**
24072      * @event specialkey
24073      * @hide
24074      */
24075     /**
24076      * @cfg {String} fieldClass @hide
24077      */
24078     /**
24079      * @cfg {String} focusClass @hide
24080      */
24081     /**
24082      * @cfg {String} autoCreate @hide
24083      */
24084     /**
24085      * @cfg {String} inputType @hide
24086      */
24087      
24088     /**
24089      * @cfg {String} invalidText @hide
24090      */
24091     /**
24092      * @cfg {String} msgFx @hide
24093      */
24094     /**
24095      * @cfg {String} validateOnBlur @hide
24096      */
24097 });
24098  
24099     
24100    
24101    
24102    
24103       
24104 Roo.namespace('Roo.bootstrap.htmleditor');
24105 /**
24106  * @class Roo.bootstrap.HtmlEditorToolbar1
24107  * Basic Toolbar
24108  * 
24109  * @example
24110  * Usage:
24111  *
24112  new Roo.bootstrap.HtmlEditor({
24113     ....
24114     toolbars : [
24115         new Roo.bootstrap.HtmlEditorToolbar1({
24116             disable : { fonts: 1 , format: 1, ..., ... , ...],
24117             btns : [ .... ]
24118         })
24119     }
24120      
24121  * 
24122  * @cfg {Object} disable List of elements to disable..
24123  * @cfg {Array} btns List of additional buttons.
24124  * 
24125  * 
24126  * NEEDS Extra CSS? 
24127  * .x-html-editor-tb .x-edit-none .x-btn-text { background: none; }
24128  */
24129  
24130 Roo.bootstrap.htmleditor.ToolbarStandard = function(config)
24131 {
24132     
24133     Roo.apply(this, config);
24134     
24135     // default disabled, based on 'good practice'..
24136     this.disable = this.disable || {};
24137     Roo.applyIf(this.disable, {
24138         fontSize : true,
24139         colors : true,
24140         specialElements : true
24141     });
24142     Roo.bootstrap.htmleditor.ToolbarStandard.superclass.constructor.call(this, config);
24143     
24144     this.editor = config.editor;
24145     this.editorcore = config.editor.editorcore;
24146     
24147     this.buttons   = new Roo.util.MixedCollection(false, function(o) { return o.cmd; });
24148     
24149     //Roo.form.HtmlEditorToolbar1.superclass.constructor.call(this, editor.wrap.dom.firstChild, [], config);
24150     // dont call parent... till later.
24151 }
24152 Roo.extend(Roo.bootstrap.htmleditor.ToolbarStandard, Roo.bootstrap.NavSimplebar,  {
24153      
24154     bar : true,
24155     
24156     editor : false,
24157     editorcore : false,
24158     
24159     
24160     formats : [
24161         "p" ,  
24162         "h1","h2","h3","h4","h5","h6", 
24163         "pre", "code", 
24164         "abbr", "acronym", "address", "cite", "samp", "var",
24165         'div','span'
24166     ],
24167     
24168     onRender : function(ct, position)
24169     {
24170        // Roo.log("Call onRender: " + this.xtype);
24171         
24172        Roo.bootstrap.htmleditor.ToolbarStandard.superclass.onRender.call(this, ct, position);
24173        Roo.log(this.el);
24174        this.el.dom.style.marginBottom = '0';
24175        var _this = this;
24176        var editorcore = this.editorcore;
24177        var editor= this.editor;
24178        
24179        var children = [];
24180        var btn = function(id,cmd , toggle, handler, html){
24181        
24182             var  event = toggle ? 'toggle' : 'click';
24183        
24184             var a = {
24185                 size : 'sm',
24186                 xtype: 'Button',
24187                 xns: Roo.bootstrap,
24188                 //glyphicon : id,
24189                 fa: id,
24190                 cmd : id || cmd,
24191                 enableToggle:toggle !== false,
24192                 html : html || '',
24193                 pressed : toggle ? false : null,
24194                 listeners : {}
24195             };
24196             a.listeners[toggle ? 'toggle' : 'click'] = function() {
24197                 handler ? handler.call(_this,this) :_this.onBtnClick.call(_this, cmd ||  id);
24198             };
24199             children.push(a);
24200             return a;
24201        }
24202        
24203     //    var cb_box = function...
24204         
24205         var style = {
24206                 xtype: 'Button',
24207                 size : 'sm',
24208                 xns: Roo.bootstrap,
24209                 fa : 'font',
24210                 //html : 'submit'
24211                 menu : {
24212                     xtype: 'Menu',
24213                     xns: Roo.bootstrap,
24214                     items:  []
24215                 }
24216         };
24217         Roo.each(this.formats, function(f) {
24218             style.menu.items.push({
24219                 xtype :'MenuItem',
24220                 xns: Roo.bootstrap,
24221                 html : '<'+ f+' style="margin:2px">'+f +'</'+ f+'>',
24222                 tagname : f,
24223                 listeners : {
24224                     click : function()
24225                     {
24226                         editorcore.insertTag(this.tagname);
24227                         editor.focus();
24228                     }
24229                 }
24230                 
24231             });
24232         });
24233         children.push(style);   
24234         
24235         btn('bold',false,true);
24236         btn('italic',false,true);
24237         btn('align-left', 'justifyleft',true);
24238         btn('align-center', 'justifycenter',true);
24239         btn('align-right' , 'justifyright',true);
24240         btn('link', false, false, function(btn) {
24241             //Roo.log("create link?");
24242             var url = prompt(this.createLinkText, this.defaultLinkValue);
24243             if(url && url != 'http:/'+'/'){
24244                 this.editorcore.relayCmd('createlink', url);
24245             }
24246         }),
24247         btn('list','insertunorderedlist',true);
24248         btn('pencil', false,true, function(btn){
24249                 Roo.log(this);
24250                 this.toggleSourceEdit(btn.pressed);
24251         });
24252         
24253         if (this.editor.btns.length > 0) {
24254             for (var i = 0; i<this.editor.btns.length; i++) {
24255                 children.push(this.editor.btns[i]);
24256             }
24257         }
24258         
24259         /*
24260         var cog = {
24261                 xtype: 'Button',
24262                 size : 'sm',
24263                 xns: Roo.bootstrap,
24264                 glyphicon : 'cog',
24265                 //html : 'submit'
24266                 menu : {
24267                     xtype: 'Menu',
24268                     xns: Roo.bootstrap,
24269                     items:  []
24270                 }
24271         };
24272         
24273         cog.menu.items.push({
24274             xtype :'MenuItem',
24275             xns: Roo.bootstrap,
24276             html : Clean styles,
24277             tagname : f,
24278             listeners : {
24279                 click : function()
24280                 {
24281                     editorcore.insertTag(this.tagname);
24282                     editor.focus();
24283                 }
24284             }
24285             
24286         });
24287        */
24288         
24289          
24290        this.xtype = 'NavSimplebar';
24291         
24292         for(var i=0;i< children.length;i++) {
24293             
24294             this.buttons.add(this.addxtypeChild(children[i]));
24295             
24296         }
24297         
24298         editor.on('editorevent', this.updateToolbar, this);
24299     },
24300     onBtnClick : function(id)
24301     {
24302        this.editorcore.relayCmd(id);
24303        this.editorcore.focus();
24304     },
24305     
24306     /**
24307      * Protected method that will not generally be called directly. It triggers
24308      * a toolbar update by reading the markup state of the current selection in the editor.
24309      */
24310     updateToolbar: function(){
24311
24312         if(!this.editorcore.activated){
24313             this.editor.onFirstFocus(); // is this neeed?
24314             return;
24315         }
24316
24317         var btns = this.buttons; 
24318         var doc = this.editorcore.doc;
24319         btns.get('bold').setActive(doc.queryCommandState('bold'));
24320         btns.get('italic').setActive(doc.queryCommandState('italic'));
24321         //btns.get('underline').setActive(doc.queryCommandState('underline'));
24322         
24323         btns.get('align-left').setActive(doc.queryCommandState('justifyleft'));
24324         btns.get('align-center').setActive(doc.queryCommandState('justifycenter'));
24325         btns.get('align-right').setActive(doc.queryCommandState('justifyright'));
24326         
24327         //btns[frameId + '-insertorderedlist').setActive(doc.queryCommandState('insertorderedlist'));
24328         btns.get('list').setActive(doc.queryCommandState('insertunorderedlist'));
24329          /*
24330         
24331         var ans = this.editorcore.getAllAncestors();
24332         if (this.formatCombo) {
24333             
24334             
24335             var store = this.formatCombo.store;
24336             this.formatCombo.setValue("");
24337             for (var i =0; i < ans.length;i++) {
24338                 if (ans[i] && store.query('tag',ans[i].tagName.toLowerCase(), false).length) {
24339                     // select it..
24340                     this.formatCombo.setValue(ans[i].tagName.toLowerCase());
24341                     break;
24342                 }
24343             }
24344         }
24345         
24346         
24347         
24348         // hides menus... - so this cant be on a menu...
24349         Roo.bootstrap.MenuMgr.hideAll();
24350         */
24351         Roo.bootstrap.MenuMgr.hideAll();
24352         //this.editorsyncValue();
24353     },
24354     onFirstFocus: function() {
24355         this.buttons.each(function(item){
24356            item.enable();
24357         });
24358     },
24359     toggleSourceEdit : function(sourceEditMode){
24360         
24361           
24362         if(sourceEditMode){
24363             Roo.log("disabling buttons");
24364            this.buttons.each( function(item){
24365                 if(item.cmd != 'pencil'){
24366                     item.disable();
24367                 }
24368             });
24369           
24370         }else{
24371             Roo.log("enabling buttons");
24372             if(this.editorcore.initialized){
24373                 this.buttons.each( function(item){
24374                     item.enable();
24375                 });
24376             }
24377             
24378         }
24379         Roo.log("calling toggole on editor");
24380         // tell the editor that it's been pressed..
24381         this.editor.toggleSourceEdit(sourceEditMode);
24382        
24383     }
24384 });
24385
24386
24387
24388
24389
24390 /**
24391  * @class Roo.bootstrap.Table.AbstractSelectionModel
24392  * @extends Roo.util.Observable
24393  * Abstract base class for grid SelectionModels.  It provides the interface that should be
24394  * implemented by descendant classes.  This class should not be directly instantiated.
24395  * @constructor
24396  */
24397 Roo.bootstrap.Table.AbstractSelectionModel = function(){
24398     this.locked = false;
24399     Roo.bootstrap.Table.AbstractSelectionModel.superclass.constructor.call(this);
24400 };
24401
24402
24403 Roo.extend(Roo.bootstrap.Table.AbstractSelectionModel, Roo.util.Observable,  {
24404     /** @ignore Called by the grid automatically. Do not call directly. */
24405     init : function(grid){
24406         this.grid = grid;
24407         this.initEvents();
24408     },
24409
24410     /**
24411      * Locks the selections.
24412      */
24413     lock : function(){
24414         this.locked = true;
24415     },
24416
24417     /**
24418      * Unlocks the selections.
24419      */
24420     unlock : function(){
24421         this.locked = false;
24422     },
24423
24424     /**
24425      * Returns true if the selections are locked.
24426      * @return {Boolean}
24427      */
24428     isLocked : function(){
24429         return this.locked;
24430     }
24431 });
24432 /**
24433  * @extends Roo.bootstrap.Table.AbstractSelectionModel
24434  * @class Roo.bootstrap.Table.RowSelectionModel
24435  * The default SelectionModel used by {@link Roo.bootstrap.Table}.
24436  * It supports multiple selections and keyboard selection/navigation. 
24437  * @constructor
24438  * @param {Object} config
24439  */
24440
24441 Roo.bootstrap.Table.RowSelectionModel = function(config){
24442     Roo.apply(this, config);
24443     this.selections = new Roo.util.MixedCollection(false, function(o){
24444         return o.id;
24445     });
24446
24447     this.last = false;
24448     this.lastActive = false;
24449
24450     this.addEvents({
24451         /**
24452              * @event selectionchange
24453              * Fires when the selection changes
24454              * @param {SelectionModel} this
24455              */
24456             "selectionchange" : true,
24457         /**
24458              * @event afterselectionchange
24459              * Fires after the selection changes (eg. by key press or clicking)
24460              * @param {SelectionModel} this
24461              */
24462             "afterselectionchange" : true,
24463         /**
24464              * @event beforerowselect
24465              * Fires when a row is selected being selected, return false to cancel.
24466              * @param {SelectionModel} this
24467              * @param {Number} rowIndex The selected index
24468              * @param {Boolean} keepExisting False if other selections will be cleared
24469              */
24470             "beforerowselect" : true,
24471         /**
24472              * @event rowselect
24473              * Fires when a row is selected.
24474              * @param {SelectionModel} this
24475              * @param {Number} rowIndex The selected index
24476              * @param {Roo.data.Record} r The record
24477              */
24478             "rowselect" : true,
24479         /**
24480              * @event rowdeselect
24481              * Fires when a row is deselected.
24482              * @param {SelectionModel} this
24483              * @param {Number} rowIndex The selected index
24484              */
24485         "rowdeselect" : true
24486     });
24487     Roo.bootstrap.Table.RowSelectionModel.superclass.constructor.call(this);
24488     this.locked = false;
24489  };
24490
24491 Roo.extend(Roo.bootstrap.Table.RowSelectionModel, Roo.bootstrap.Table.AbstractSelectionModel,  {
24492     /**
24493      * @cfg {Boolean} singleSelect
24494      * True to allow selection of only one row at a time (defaults to false)
24495      */
24496     singleSelect : false,
24497
24498     // private
24499     initEvents : function()
24500     {
24501
24502         //if(!this.grid.enableDragDrop && !this.grid.enableDrag){
24503         //    this.growclickrid.on("mousedown", this.handleMouseDown, this);
24504         //}else{ // allow click to work like normal
24505          //   this.grid.on("rowclick", this.handleDragableRowClick, this);
24506         //}
24507         //this.grid.on("rowdblclick", this.handleMouseDBClick, this);
24508         this.grid.on("rowclick", this.handleMouseDown, this);
24509         
24510         this.rowNav = new Roo.KeyNav(this.grid.getGridEl(), {
24511             "up" : function(e){
24512                 if(!e.shiftKey){
24513                     this.selectPrevious(e.shiftKey);
24514                 }else if(this.last !== false && this.lastActive !== false){
24515                     var last = this.last;
24516                     this.selectRange(this.last,  this.lastActive-1);
24517                     this.grid.getView().focusRow(this.lastActive);
24518                     if(last !== false){
24519                         this.last = last;
24520                     }
24521                 }else{
24522                     this.selectFirstRow();
24523                 }
24524                 this.fireEvent("afterselectionchange", this);
24525             },
24526             "down" : function(e){
24527                 if(!e.shiftKey){
24528                     this.selectNext(e.shiftKey);
24529                 }else if(this.last !== false && this.lastActive !== false){
24530                     var last = this.last;
24531                     this.selectRange(this.last,  this.lastActive+1);
24532                     this.grid.getView().focusRow(this.lastActive);
24533                     if(last !== false){
24534                         this.last = last;
24535                     }
24536                 }else{
24537                     this.selectFirstRow();
24538                 }
24539                 this.fireEvent("afterselectionchange", this);
24540             },
24541             scope: this
24542         });
24543         this.grid.store.on('load', function(){
24544             this.selections.clear();
24545         },this);
24546         /*
24547         var view = this.grid.view;
24548         view.on("refresh", this.onRefresh, this);
24549         view.on("rowupdated", this.onRowUpdated, this);
24550         view.on("rowremoved", this.onRemove, this);
24551         */
24552     },
24553
24554     // private
24555     onRefresh : function()
24556     {
24557         var ds = this.grid.store, i, v = this.grid.view;
24558         var s = this.selections;
24559         s.each(function(r){
24560             if((i = ds.indexOfId(r.id)) != -1){
24561                 v.onRowSelect(i);
24562             }else{
24563                 s.remove(r);
24564             }
24565         });
24566     },
24567
24568     // private
24569     onRemove : function(v, index, r){
24570         this.selections.remove(r);
24571     },
24572
24573     // private
24574     onRowUpdated : function(v, index, r){
24575         if(this.isSelected(r)){
24576             v.onRowSelect(index);
24577         }
24578     },
24579
24580     /**
24581      * Select records.
24582      * @param {Array} records The records to select
24583      * @param {Boolean} keepExisting (optional) True to keep existing selections
24584      */
24585     selectRecords : function(records, keepExisting)
24586     {
24587         if(!keepExisting){
24588             this.clearSelections();
24589         }
24590             var ds = this.grid.store;
24591         for(var i = 0, len = records.length; i < len; i++){
24592             this.selectRow(ds.indexOf(records[i]), true);
24593         }
24594     },
24595
24596     /**
24597      * Gets the number of selected rows.
24598      * @return {Number}
24599      */
24600     getCount : function(){
24601         return this.selections.length;
24602     },
24603
24604     /**
24605      * Selects the first row in the grid.
24606      */
24607     selectFirstRow : function(){
24608         this.selectRow(0);
24609     },
24610
24611     /**
24612      * Select the last row.
24613      * @param {Boolean} keepExisting (optional) True to keep existing selections
24614      */
24615     selectLastRow : function(keepExisting){
24616         //this.selectRow(this.grid.dataSource.getCount() - 1, keepExisting);
24617         this.selectRow(this.grid.store.getCount() - 1, keepExisting);
24618     },
24619
24620     /**
24621      * Selects the row immediately following the last selected row.
24622      * @param {Boolean} keepExisting (optional) True to keep existing selections
24623      */
24624     selectNext : function(keepExisting)
24625     {
24626             if(this.last !== false && (this.last+1) < this.grid.store.getCount()){
24627             this.selectRow(this.last+1, keepExisting);
24628             this.grid.getView().focusRow(this.last);
24629         }
24630     },
24631
24632     /**
24633      * Selects the row that precedes the last selected row.
24634      * @param {Boolean} keepExisting (optional) True to keep existing selections
24635      */
24636     selectPrevious : function(keepExisting){
24637         if(this.last){
24638             this.selectRow(this.last-1, keepExisting);
24639             this.grid.getView().focusRow(this.last);
24640         }
24641     },
24642
24643     /**
24644      * Returns the selected records
24645      * @return {Array} Array of selected records
24646      */
24647     getSelections : function(){
24648         return [].concat(this.selections.items);
24649     },
24650
24651     /**
24652      * Returns the first selected record.
24653      * @return {Record}
24654      */
24655     getSelected : function(){
24656         return this.selections.itemAt(0);
24657     },
24658
24659
24660     /**
24661      * Clears all selections.
24662      */
24663     clearSelections : function(fast)
24664     {
24665         if(this.locked) {
24666             return;
24667         }
24668         if(fast !== true){
24669                 var ds = this.grid.store;
24670             var s = this.selections;
24671             s.each(function(r){
24672                 this.deselectRow(ds.indexOfId(r.id));
24673             }, this);
24674             s.clear();
24675         }else{
24676             this.selections.clear();
24677         }
24678         this.last = false;
24679     },
24680
24681
24682     /**
24683      * Selects all rows.
24684      */
24685     selectAll : function(){
24686         if(this.locked) {
24687             return;
24688         }
24689         this.selections.clear();
24690         for(var i = 0, len = this.grid.store.getCount(); i < len; i++){
24691             this.selectRow(i, true);
24692         }
24693     },
24694
24695     /**
24696      * Returns True if there is a selection.
24697      * @return {Boolean}
24698      */
24699     hasSelection : function(){
24700         return this.selections.length > 0;
24701     },
24702
24703     /**
24704      * Returns True if the specified row is selected.
24705      * @param {Number/Record} record The record or index of the record to check
24706      * @return {Boolean}
24707      */
24708     isSelected : function(index){
24709             var r = typeof index == "number" ? this.grid.store.getAt(index) : index;
24710         return (r && this.selections.key(r.id) ? true : false);
24711     },
24712
24713     /**
24714      * Returns True if the specified record id is selected.
24715      * @param {String} id The id of record to check
24716      * @return {Boolean}
24717      */
24718     isIdSelected : function(id){
24719         return (this.selections.key(id) ? true : false);
24720     },
24721
24722
24723     // private
24724     handleMouseDBClick : function(e, t){
24725         
24726     },
24727     // private
24728     handleMouseDown : function(e, t)
24729     {
24730             var rowIndex = this.grid.headerShow  ? t.dom.rowIndex - 1 : t.dom.rowIndex ; // first row is header???
24731         if(this.isLocked() || rowIndex < 0 ){
24732             return;
24733         };
24734         if(e.shiftKey && this.last !== false){
24735             var last = this.last;
24736             this.selectRange(last, rowIndex, e.ctrlKey);
24737             this.last = last; // reset the last
24738             t.focus();
24739     
24740         }else{
24741             var isSelected = this.isSelected(rowIndex);
24742             //Roo.log("select row:" + rowIndex);
24743             if(isSelected){
24744                 this.deselectRow(rowIndex);
24745             } else {
24746                         this.selectRow(rowIndex, true);
24747             }
24748     
24749             /*
24750                 if(e.button !== 0 && isSelected){
24751                 alert('rowIndex 2: ' + rowIndex);
24752                     view.focusRow(rowIndex);
24753                 }else if(e.ctrlKey && isSelected){
24754                     this.deselectRow(rowIndex);
24755                 }else if(!isSelected){
24756                     this.selectRow(rowIndex, e.button === 0 && (e.ctrlKey || e.shiftKey));
24757                     view.focusRow(rowIndex);
24758                 }
24759             */
24760         }
24761         this.fireEvent("afterselectionchange", this);
24762     },
24763     // private
24764     handleDragableRowClick :  function(grid, rowIndex, e) 
24765     {
24766         if(e.button === 0 && !e.shiftKey && !e.ctrlKey) {
24767             this.selectRow(rowIndex, false);
24768             grid.view.focusRow(rowIndex);
24769              this.fireEvent("afterselectionchange", this);
24770         }
24771     },
24772     
24773     /**
24774      * Selects multiple rows.
24775      * @param {Array} rows Array of the indexes of the row to select
24776      * @param {Boolean} keepExisting (optional) True to keep existing selections
24777      */
24778     selectRows : function(rows, keepExisting){
24779         if(!keepExisting){
24780             this.clearSelections();
24781         }
24782         for(var i = 0, len = rows.length; i < len; i++){
24783             this.selectRow(rows[i], true);
24784         }
24785     },
24786
24787     /**
24788      * Selects a range of rows. All rows in between startRow and endRow are also selected.
24789      * @param {Number} startRow The index of the first row in the range
24790      * @param {Number} endRow The index of the last row in the range
24791      * @param {Boolean} keepExisting (optional) True to retain existing selections
24792      */
24793     selectRange : function(startRow, endRow, keepExisting){
24794         if(this.locked) {
24795             return;
24796         }
24797         if(!keepExisting){
24798             this.clearSelections();
24799         }
24800         if(startRow <= endRow){
24801             for(var i = startRow; i <= endRow; i++){
24802                 this.selectRow(i, true);
24803             }
24804         }else{
24805             for(var i = startRow; i >= endRow; i--){
24806                 this.selectRow(i, true);
24807             }
24808         }
24809     },
24810
24811     /**
24812      * Deselects a range of rows. All rows in between startRow and endRow are also deselected.
24813      * @param {Number} startRow The index of the first row in the range
24814      * @param {Number} endRow The index of the last row in the range
24815      */
24816     deselectRange : function(startRow, endRow, preventViewNotify){
24817         if(this.locked) {
24818             return;
24819         }
24820         for(var i = startRow; i <= endRow; i++){
24821             this.deselectRow(i, preventViewNotify);
24822         }
24823     },
24824
24825     /**
24826      * Selects a row.
24827      * @param {Number} row The index of the row to select
24828      * @param {Boolean} keepExisting (optional) True to keep existing selections
24829      */
24830     selectRow : function(index, keepExisting, preventViewNotify)
24831     {
24832             if(this.locked || (index < 0 || index > this.grid.store.getCount())) {
24833             return;
24834         }
24835         if(this.fireEvent("beforerowselect", this, index, keepExisting) !== false){
24836             if(!keepExisting || this.singleSelect){
24837                 this.clearSelections();
24838             }
24839             
24840             var r = this.grid.store.getAt(index);
24841             //console.log('selectRow - record id :' + r.id);
24842             
24843             this.selections.add(r);
24844             this.last = this.lastActive = index;
24845             if(!preventViewNotify){
24846                 var proxy = new Roo.Element(
24847                                 this.grid.getRowDom(index)
24848                 );
24849                 proxy.addClass('bg-info info');
24850             }
24851             this.fireEvent("rowselect", this, index, r);
24852             this.fireEvent("selectionchange", this);
24853         }
24854     },
24855
24856     /**
24857      * Deselects a row.
24858      * @param {Number} row The index of the row to deselect
24859      */
24860     deselectRow : function(index, preventViewNotify)
24861     {
24862         if(this.locked) {
24863             return;
24864         }
24865         if(this.last == index){
24866             this.last = false;
24867         }
24868         if(this.lastActive == index){
24869             this.lastActive = false;
24870         }
24871         
24872         var r = this.grid.store.getAt(index);
24873         if (!r) {
24874             return;
24875         }
24876         
24877         this.selections.remove(r);
24878         //.console.log('deselectRow - record id :' + r.id);
24879         if(!preventViewNotify){
24880         
24881             var proxy = new Roo.Element(
24882                 this.grid.getRowDom(index)
24883             );
24884             proxy.removeClass('bg-info info');
24885         }
24886         this.fireEvent("rowdeselect", this, index);
24887         this.fireEvent("selectionchange", this);
24888     },
24889
24890     // private
24891     restoreLast : function(){
24892         if(this._last){
24893             this.last = this._last;
24894         }
24895     },
24896
24897     // private
24898     acceptsNav : function(row, col, cm){
24899         return !cm.isHidden(col) && cm.isCellEditable(col, row);
24900     },
24901
24902     // private
24903     onEditorKey : function(field, e){
24904         var k = e.getKey(), newCell, g = this.grid, ed = g.activeEditor;
24905         if(k == e.TAB){
24906             e.stopEvent();
24907             ed.completeEdit();
24908             if(e.shiftKey){
24909                 newCell = g.walkCells(ed.row, ed.col-1, -1, this.acceptsNav, this);
24910             }else{
24911                 newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
24912             }
24913         }else if(k == e.ENTER && !e.ctrlKey){
24914             e.stopEvent();
24915             ed.completeEdit();
24916             if(e.shiftKey){
24917                 newCell = g.walkCells(ed.row-1, ed.col, -1, this.acceptsNav, this);
24918             }else{
24919                 newCell = g.walkCells(ed.row+1, ed.col, 1, this.acceptsNav, this);
24920             }
24921         }else if(k == e.ESC){
24922             ed.cancelEdit();
24923         }
24924         if(newCell){
24925             g.startEditing(newCell[0], newCell[1]);
24926         }
24927     }
24928 });
24929 /*
24930  * Based on:
24931  * Ext JS Library 1.1.1
24932  * Copyright(c) 2006-2007, Ext JS, LLC.
24933  *
24934  * Originally Released Under LGPL - original licence link has changed is not relivant.
24935  *
24936  * Fork - LGPL
24937  * <script type="text/javascript">
24938  */
24939  
24940 /**
24941  * @class Roo.bootstrap.PagingToolbar
24942  * @extends Roo.bootstrap.NavSimplebar
24943  * A specialized toolbar that is bound to a {@link Roo.data.Store} and provides automatic paging controls.
24944  * @constructor
24945  * Create a new PagingToolbar
24946  * @param {Object} config The config object
24947  * @param {Roo.data.Store} store
24948  */
24949 Roo.bootstrap.PagingToolbar = function(config)
24950 {
24951     // old args format still supported... - xtype is prefered..
24952         // created from xtype...
24953     
24954     this.ds = config.dataSource;
24955     
24956     if (config.store && !this.ds) {
24957         this.store= Roo.factory(config.store, Roo.data);
24958         this.ds = this.store;
24959         this.ds.xmodule = this.xmodule || false;
24960     }
24961     
24962     this.toolbarItems = [];
24963     if (config.items) {
24964         this.toolbarItems = config.items;
24965     }
24966     
24967     Roo.bootstrap.PagingToolbar.superclass.constructor.call(this, config);
24968     
24969     this.cursor = 0;
24970     
24971     if (this.ds) { 
24972         this.bind(this.ds);
24973     }
24974     
24975     if (Roo.bootstrap.version == 4) {
24976         this.navgroup = new Roo.bootstrap.ButtonGroup({ cls: 'pagination' });
24977     } else {
24978         this.navgroup = new Roo.bootstrap.NavGroup({ cls: 'pagination' });
24979     }
24980     
24981 };
24982
24983 Roo.extend(Roo.bootstrap.PagingToolbar, Roo.bootstrap.NavSimplebar, {
24984     /**
24985      * @cfg {Roo.data.Store} dataSource
24986      * The underlying data store providing the paged data
24987      */
24988     /**
24989      * @cfg {String/HTMLElement/Element} container
24990      * container The id or element that will contain the toolbar
24991      */
24992     /**
24993      * @cfg {Boolean} displayInfo
24994      * True to display the displayMsg (defaults to false)
24995      */
24996     /**
24997      * @cfg {Number} pageSize
24998      * The number of records to display per page (defaults to 20)
24999      */
25000     pageSize: 20,
25001     /**
25002      * @cfg {String} displayMsg
25003      * The paging status message to display (defaults to "Displaying {start} - {end} of {total}")
25004      */
25005     displayMsg : 'Displaying {0} - {1} of {2}',
25006     /**
25007      * @cfg {String} emptyMsg
25008      * The message to display when no records are found (defaults to "No data to display")
25009      */
25010     emptyMsg : 'No data to display',
25011     /**
25012      * Customizable piece of the default paging text (defaults to "Page")
25013      * @type String
25014      */
25015     beforePageText : "Page",
25016     /**
25017      * Customizable piece of the default paging text (defaults to "of %0")
25018      * @type String
25019      */
25020     afterPageText : "of {0}",
25021     /**
25022      * Customizable piece of the default paging text (defaults to "First Page")
25023      * @type String
25024      */
25025     firstText : "First Page",
25026     /**
25027      * Customizable piece of the default paging text (defaults to "Previous Page")
25028      * @type String
25029      */
25030     prevText : "Previous Page",
25031     /**
25032      * Customizable piece of the default paging text (defaults to "Next Page")
25033      * @type String
25034      */
25035     nextText : "Next Page",
25036     /**
25037      * Customizable piece of the default paging text (defaults to "Last Page")
25038      * @type String
25039      */
25040     lastText : "Last Page",
25041     /**
25042      * Customizable piece of the default paging text (defaults to "Refresh")
25043      * @type String
25044      */
25045     refreshText : "Refresh",
25046
25047     buttons : false,
25048     // private
25049     onRender : function(ct, position) 
25050     {
25051         Roo.bootstrap.PagingToolbar.superclass.onRender.call(this, ct, position);
25052         this.navgroup.parentId = this.id;
25053         this.navgroup.onRender(this.el, null);
25054         // add the buttons to the navgroup
25055         
25056         if(this.displayInfo){
25057             this.el.select('ul.navbar-nav',true).first().createChild({cls:'x-paging-info'});
25058             this.displayEl = this.el.select('.x-paging-info', true).first();
25059 //            var navel = this.navgroup.addItem( { tagtype : 'span', html : '', cls : 'x-paging-info', preventDefault : true } );
25060 //            this.displayEl = navel.el.select('span',true).first();
25061         }
25062         
25063         var _this = this;
25064         
25065         if(this.buttons){
25066             Roo.each(_this.buttons, function(e){ // this might need to use render????
25067                Roo.factory(e).render(_this.el);
25068             });
25069         }
25070             
25071         Roo.each(_this.toolbarItems, function(e) {
25072             _this.navgroup.addItem(e);
25073         });
25074         
25075         
25076         this.first = this.navgroup.addItem({
25077             tooltip: this.firstText,
25078             cls: "prev btn-outline-secondary",
25079             html : ' <i class="fa fa-step-backward"></i>',
25080             disabled: true,
25081             preventDefault: true,
25082             listeners : { click : this.onClick.createDelegate(this, ["first"]) }
25083         });
25084         
25085         this.prev =  this.navgroup.addItem({
25086             tooltip: this.prevText,
25087             cls: "prev btn-outline-secondary",
25088             html : ' <i class="fa fa-backward"></i>',
25089             disabled: true,
25090             preventDefault: true,
25091             listeners : { click :  this.onClick.createDelegate(this, ["prev"]) }
25092         });
25093     //this.addSeparator();
25094         
25095         
25096         var field = this.navgroup.addItem( {
25097             tagtype : 'span',
25098             cls : 'x-paging-position  btn-outline-secondary',
25099              disabled: true,
25100             html : this.beforePageText  +
25101                 '<input type="text" size="3" value="1" class="x-grid-page-number">' +
25102                 '<span class="x-paging-after">' +  String.format(this.afterPageText, 1) + '</span>'
25103          } ); //?? escaped?
25104         
25105         this.field = field.el.select('input', true).first();
25106         this.field.on("keydown", this.onPagingKeydown, this);
25107         this.field.on("focus", function(){this.dom.select();});
25108     
25109     
25110         this.afterTextEl =  field.el.select('.x-paging-after',true).first();
25111         //this.field.setHeight(18);
25112         //this.addSeparator();
25113         this.next = this.navgroup.addItem({
25114             tooltip: this.nextText,
25115             cls: "next btn-outline-secondary",
25116             html : ' <i class="fa fa-forward"></i>',
25117             disabled: true,
25118             preventDefault: true,
25119             listeners : { click :  this.onClick.createDelegate(this, ["next"]) }
25120         });
25121         this.last = this.navgroup.addItem({
25122             tooltip: this.lastText,
25123             html : ' <i class="fa fa-step-forward"></i>',
25124             cls: "next btn-outline-secondary",
25125             disabled: true,
25126             preventDefault: true,
25127             listeners : { click :  this.onClick.createDelegate(this, ["last"]) }
25128         });
25129     //this.addSeparator();
25130         this.loading = this.navgroup.addItem({
25131             tooltip: this.refreshText,
25132             cls: "btn-outline-secondary",
25133             html : ' <i class="fa fa-refresh"></i>',
25134             preventDefault: true,
25135             listeners : { click : this.onClick.createDelegate(this, ["refresh"]) }
25136         });
25137         
25138     },
25139
25140     // private
25141     updateInfo : function(){
25142         if(this.displayEl){
25143             var count = (typeof(this.getCount) == 'undefined') ? this.ds.getCount() : this.getCount();
25144             var msg = count == 0 ?
25145                 this.emptyMsg :
25146                 String.format(
25147                     this.displayMsg,
25148                     this.cursor+1, this.cursor+count, this.ds.getTotalCount()    
25149                 );
25150             this.displayEl.update(msg);
25151         }
25152     },
25153
25154     // private
25155     onLoad : function(ds, r, o)
25156     {
25157         this.cursor = o.params.start ? o.params.start : 0;
25158         
25159         var d = this.getPageData(),
25160             ap = d.activePage,
25161             ps = d.pages;
25162         
25163         
25164         this.afterTextEl.dom.innerHTML = String.format(this.afterPageText, d.pages);
25165         this.field.dom.value = ap;
25166         this.first.setDisabled(ap == 1);
25167         this.prev.setDisabled(ap == 1);
25168         this.next.setDisabled(ap == ps);
25169         this.last.setDisabled(ap == ps);
25170         this.loading.enable();
25171         this.updateInfo();
25172     },
25173
25174     // private
25175     getPageData : function(){
25176         var total = this.ds.getTotalCount();
25177         return {
25178             total : total,
25179             activePage : Math.ceil((this.cursor+this.pageSize)/this.pageSize),
25180             pages :  total < this.pageSize ? 1 : Math.ceil(total/this.pageSize)
25181         };
25182     },
25183
25184     // private
25185     onLoadError : function(){
25186         this.loading.enable();
25187     },
25188
25189     // private
25190     onPagingKeydown : function(e){
25191         var k = e.getKey();
25192         var d = this.getPageData();
25193         if(k == e.RETURN){
25194             var v = this.field.dom.value, pageNum;
25195             if(!v || isNaN(pageNum = parseInt(v, 10))){
25196                 this.field.dom.value = d.activePage;
25197                 return;
25198             }
25199             pageNum = Math.min(Math.max(1, pageNum), d.pages) - 1;
25200             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
25201             e.stopEvent();
25202         }
25203         else if(k == e.HOME || (k == e.UP && e.ctrlKey) || (k == e.PAGEUP && e.ctrlKey) || (k == e.RIGHT && e.ctrlKey) || k == e.END || (k == e.DOWN && e.ctrlKey) || (k == e.LEFT && e.ctrlKey) || (k == e.PAGEDOWN && e.ctrlKey))
25204         {
25205           var pageNum = (k == e.HOME || (k == e.DOWN && e.ctrlKey) || (k == e.LEFT && e.ctrlKey) || (k == e.PAGEDOWN && e.ctrlKey)) ? 1 : d.pages;
25206           this.field.dom.value = pageNum;
25207           this.ds.load({params:{start: (pageNum - 1) * this.pageSize, limit: this.pageSize}});
25208           e.stopEvent();
25209         }
25210         else if(k == e.UP || k == e.RIGHT || k == e.PAGEUP || k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN)
25211         {
25212           var v = this.field.dom.value, pageNum; 
25213           var increment = (e.shiftKey) ? 10 : 1;
25214           if(k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN) {
25215                 increment *= -1;
25216           }
25217           if(!v || isNaN(pageNum = parseInt(v, 10))) {
25218             this.field.dom.value = d.activePage;
25219             return;
25220           }
25221           else if(parseInt(v, 10) + increment >= 1 & parseInt(v, 10) + increment <= d.pages)
25222           {
25223             this.field.dom.value = parseInt(v, 10) + increment;
25224             pageNum = Math.min(Math.max(1, pageNum + increment), d.pages) - 1;
25225             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
25226           }
25227           e.stopEvent();
25228         }
25229     },
25230
25231     // private
25232     beforeLoad : function(){
25233         if(this.loading){
25234             this.loading.disable();
25235         }
25236     },
25237
25238     // private
25239     onClick : function(which){
25240         
25241         var ds = this.ds;
25242         if (!ds) {
25243             return;
25244         }
25245         
25246         switch(which){
25247             case "first":
25248                 ds.load({params:{start: 0, limit: this.pageSize}});
25249             break;
25250             case "prev":
25251                 ds.load({params:{start: Math.max(0, this.cursor-this.pageSize), limit: this.pageSize}});
25252             break;
25253             case "next":
25254                 ds.load({params:{start: this.cursor+this.pageSize, limit: this.pageSize}});
25255             break;
25256             case "last":
25257                 var total = ds.getTotalCount();
25258                 var extra = total % this.pageSize;
25259                 var lastStart = extra ? (total - extra) : total-this.pageSize;
25260                 ds.load({params:{start: lastStart, limit: this.pageSize}});
25261             break;
25262             case "refresh":
25263                 ds.load({params:{start: this.cursor, limit: this.pageSize}});
25264             break;
25265         }
25266     },
25267
25268     /**
25269      * Unbinds the paging toolbar from the specified {@link Roo.data.Store}
25270      * @param {Roo.data.Store} store The data store to unbind
25271      */
25272     unbind : function(ds){
25273         ds.un("beforeload", this.beforeLoad, this);
25274         ds.un("load", this.onLoad, this);
25275         ds.un("loadexception", this.onLoadError, this);
25276         ds.un("remove", this.updateInfo, this);
25277         ds.un("add", this.updateInfo, this);
25278         this.ds = undefined;
25279     },
25280
25281     /**
25282      * Binds the paging toolbar to the specified {@link Roo.data.Store}
25283      * @param {Roo.data.Store} store The data store to bind
25284      */
25285     bind : function(ds){
25286         ds.on("beforeload", this.beforeLoad, this);
25287         ds.on("load", this.onLoad, this);
25288         ds.on("loadexception", this.onLoadError, this);
25289         ds.on("remove", this.updateInfo, this);
25290         ds.on("add", this.updateInfo, this);
25291         this.ds = ds;
25292     }
25293 });/*
25294  * - LGPL
25295  *
25296  * element
25297  * 
25298  */
25299
25300 /**
25301  * @class Roo.bootstrap.MessageBar
25302  * @extends Roo.bootstrap.Component
25303  * Bootstrap MessageBar class
25304  * @cfg {String} html contents of the MessageBar
25305  * @cfg {String} weight (info | success | warning | danger) default info
25306  * @cfg {String} beforeClass insert the bar before the given class
25307  * @cfg {Boolean} closable (true | false) default false
25308  * @cfg {Boolean} fixed (true | false) default false, fix the bar at the top
25309  * 
25310  * @constructor
25311  * Create a new Element
25312  * @param {Object} config The config object
25313  */
25314
25315 Roo.bootstrap.MessageBar = function(config){
25316     Roo.bootstrap.MessageBar.superclass.constructor.call(this, config);
25317 };
25318
25319 Roo.extend(Roo.bootstrap.MessageBar, Roo.bootstrap.Component,  {
25320     
25321     html: '',
25322     weight: 'info',
25323     closable: false,
25324     fixed: false,
25325     beforeClass: 'bootstrap-sticky-wrap',
25326     
25327     getAutoCreate : function(){
25328         
25329         var cfg = {
25330             tag: 'div',
25331             cls: 'alert alert-dismissable alert-' + this.weight,
25332             cn: [
25333                 {
25334                     tag: 'span',
25335                     cls: 'message',
25336                     html: this.html || ''
25337                 }
25338             ]
25339         };
25340         
25341         if(this.fixed){
25342             cfg.cls += ' alert-messages-fixed';
25343         }
25344         
25345         if(this.closable){
25346             cfg.cn.push({
25347                 tag: 'button',
25348                 cls: 'close',
25349                 html: 'x'
25350             });
25351         }
25352         
25353         return cfg;
25354     },
25355     
25356     onRender : function(ct, position)
25357     {
25358         Roo.bootstrap.Component.superclass.onRender.call(this, ct, position);
25359         
25360         if(!this.el){
25361             var cfg = Roo.apply({},  this.getAutoCreate());
25362             cfg.id = Roo.id();
25363             
25364             if (this.cls) {
25365                 cfg.cls += ' ' + this.cls;
25366             }
25367             if (this.style) {
25368                 cfg.style = this.style;
25369             }
25370             this.el = Roo.get(document.body).createChild(cfg, Roo.select('.'+this.beforeClass, true).first());
25371             
25372             this.el.setVisibilityMode(Roo.Element.DISPLAY);
25373         }
25374         
25375         this.el.select('>button.close').on('click', this.hide, this);
25376         
25377     },
25378     
25379     show : function()
25380     {
25381         if (!this.rendered) {
25382             this.render();
25383         }
25384         
25385         this.el.show();
25386         
25387         this.fireEvent('show', this);
25388         
25389     },
25390     
25391     hide : function()
25392     {
25393         if (!this.rendered) {
25394             this.render();
25395         }
25396         
25397         this.el.hide();
25398         
25399         this.fireEvent('hide', this);
25400     },
25401     
25402     update : function()
25403     {
25404 //        var e = this.el.dom.firstChild;
25405 //        
25406 //        if(this.closable){
25407 //            e = e.nextSibling;
25408 //        }
25409 //        
25410 //        e.data = this.html || '';
25411
25412         this.el.select('>.message', true).first().dom.innerHTML = this.html || '';
25413     }
25414    
25415 });
25416
25417  
25418
25419      /*
25420  * - LGPL
25421  *
25422  * Graph
25423  * 
25424  */
25425
25426
25427 /**
25428  * @class Roo.bootstrap.Graph
25429  * @extends Roo.bootstrap.Component
25430  * Bootstrap Graph class
25431 > Prameters
25432  -sm {number} sm 4
25433  -md {number} md 5
25434  @cfg {String} graphtype  bar | vbar | pie
25435  @cfg {number} g_x coodinator | centre x (pie)
25436  @cfg {number} g_y coodinator | centre y (pie)
25437  @cfg {number} g_r radius (pie)
25438  @cfg {number} g_height height of the chart (respected by all elements in the set)
25439  @cfg {number} g_width width of the chart (respected by all elements in the set)
25440  @cfg {Object} title The title of the chart
25441     
25442  -{Array}  values
25443  -opts (object) options for the chart 
25444      o {
25445      o type (string) type of endings of the bar. Default: 'square'. Other options are: 'round', 'sharp', 'soft'.
25446      o gutter (number)(string) default '20%' (WHAT DOES IT DO?)
25447      o vgutter (number)
25448      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.
25449      o stacked (boolean) whether or not to tread values as in a stacked bar chart
25450      o to
25451      o stretch (boolean)
25452      o }
25453  -opts (object) options for the pie
25454      o{
25455      o cut
25456      o startAngle (number)
25457      o endAngle (number)
25458      } 
25459  *
25460  * @constructor
25461  * Create a new Input
25462  * @param {Object} config The config object
25463  */
25464
25465 Roo.bootstrap.Graph = function(config){
25466     Roo.bootstrap.Graph.superclass.constructor.call(this, config);
25467     
25468     this.addEvents({
25469         // img events
25470         /**
25471          * @event click
25472          * The img click event for the img.
25473          * @param {Roo.EventObject} e
25474          */
25475         "click" : true
25476     });
25477 };
25478
25479 Roo.extend(Roo.bootstrap.Graph, Roo.bootstrap.Component,  {
25480     
25481     sm: 4,
25482     md: 5,
25483     graphtype: 'bar',
25484     g_height: 250,
25485     g_width: 400,
25486     g_x: 50,
25487     g_y: 50,
25488     g_r: 30,
25489     opts:{
25490         //g_colors: this.colors,
25491         g_type: 'soft',
25492         g_gutter: '20%'
25493
25494     },
25495     title : false,
25496
25497     getAutoCreate : function(){
25498         
25499         var cfg = {
25500             tag: 'div',
25501             html : null
25502         };
25503         
25504         
25505         return  cfg;
25506     },
25507
25508     onRender : function(ct,position){
25509         
25510         
25511         Roo.bootstrap.Graph.superclass.onRender.call(this,ct,position);
25512         
25513         if (typeof(Raphael) == 'undefined') {
25514             Roo.bootstrap.MessageBox.alert("Error","Raphael is not availabe");
25515             return;
25516         }
25517         
25518         this.raphael = Raphael(this.el.dom);
25519         
25520                     // data1 = [[55, 20, 13, 32, 5, 1, 2, 10], [10, 2, 1, 5, 32, 13, 20, 55], [12, 20, 30]],
25521                     // data2 = [[55, 20, 13, 32, 5, 1, 2, 10], [10, 2, 1, 5, 32, 13, 20, 55], [12, 20, 30]],
25522                     // data3 = [[55, 20, 13, 32, 5, 1, 2, 10], [10, 2, 1, 5, 32, 13, 20, 55], [12, 20, 30]],
25523                     // txtattr = { font: "12px 'Fontin Sans', Fontin-Sans, sans-serif" };
25524                 /*
25525                 r.text(160, 10, "Single Series Chart").attr(txtattr);
25526                 r.text(480, 10, "Multiline Series Chart").attr(txtattr);
25527                 r.text(160, 250, "Multiple Series Stacked Chart").attr(txtattr);
25528                 r.text(480, 250, 'Multiline Series Stacked Vertical Chart. Type "round"').attr(txtattr);
25529                 
25530                 r.barchart(10, 10, 300, 220, [[55, 20, 13, 32, 5, 1, 2, 10]], 0, {type: "sharp"});
25531                 r.barchart(330, 10, 300, 220, data1);
25532                 r.barchart(10, 250, 300, 220, data2, {stacked: true});
25533                 r.barchart(330, 250, 300, 220, data3, {stacked: true, type: "round"});
25534                 */
25535                 
25536                 // var xdata = [55, 20, 13, 32, 5, 1, 2, 10,5 , 10];
25537                 // r.barchart(30, 30, 560, 250,  xdata, {
25538                 //    labels : [55, 20, 13, 32, 5, 1, 2, 10,5 , 10],
25539                 //     axis : "0 0 1 1",
25540                 //     axisxlabels :  xdata
25541                 //     //yvalues : cols,
25542                    
25543                 // });
25544 //        var xdata = [55, 20, 13, 32, 5, 1, 2, 10,5 , 10];
25545 //        
25546 //        this.load(null,xdata,{
25547 //                axis : "0 0 1 1",
25548 //                axisxlabels :  xdata
25549 //                });
25550
25551     },
25552
25553     load : function(graphtype,xdata,opts)
25554     {
25555         this.raphael.clear();
25556         if(!graphtype) {
25557             graphtype = this.graphtype;
25558         }
25559         if(!opts){
25560             opts = this.opts;
25561         }
25562         var r = this.raphael,
25563             fin = function () {
25564                 this.flag = r.popup(this.bar.x, this.bar.y, this.bar.value || "0").insertBefore(this);
25565             },
25566             fout = function () {
25567                 this.flag.animate({opacity: 0}, 300, function () {this.remove();});
25568             },
25569             pfin = function() {
25570                 this.sector.stop();
25571                 this.sector.scale(1.1, 1.1, this.cx, this.cy);
25572
25573                 if (this.label) {
25574                     this.label[0].stop();
25575                     this.label[0].attr({ r: 7.5 });
25576                     this.label[1].attr({ "font-weight": 800 });
25577                 }
25578             },
25579             pfout = function() {
25580                 this.sector.animate({ transform: 's1 1 ' + this.cx + ' ' + this.cy }, 500, "bounce");
25581
25582                 if (this.label) {
25583                     this.label[0].animate({ r: 5 }, 500, "bounce");
25584                     this.label[1].attr({ "font-weight": 400 });
25585                 }
25586             };
25587
25588         switch(graphtype){
25589             case 'bar':
25590                 this.raphael.barchart(this.g_x,this.g_y,this.g_width,this.g_height,xdata,opts).hover(fin,fout);
25591                 break;
25592             case 'hbar':
25593                 this.raphael.hbarchart(this.g_x,this.g_y,this.g_width,this.g_height,xdata,opts).hover(fin,fout);
25594                 break;
25595             case 'pie':
25596 //                opts = { legend: ["%% - Enterprise Users", "% - ddd","Chrome Users"], legendpos: "west", 
25597 //                href: ["http://raphaeljs.com", "http://g.raphaeljs.com"]};
25598 //            
25599                 this.raphael.piechart(this.g_x,this.g_y,this.g_r,xdata,opts).hover(pfin, pfout);
25600                 
25601                 break;
25602
25603         }
25604         
25605         if(this.title){
25606             this.raphael.text(this.title.x, this.title.y, this.title.text).attr(this.title.attr);
25607         }
25608         
25609     },
25610     
25611     setTitle: function(o)
25612     {
25613         this.title = o;
25614     },
25615     
25616     initEvents: function() {
25617         
25618         if(!this.href){
25619             this.el.on('click', this.onClick, this);
25620         }
25621     },
25622     
25623     onClick : function(e)
25624     {
25625         Roo.log('img onclick');
25626         this.fireEvent('click', this, e);
25627     }
25628    
25629 });
25630
25631  
25632 /*
25633  * - LGPL
25634  *
25635  * numberBox
25636  * 
25637  */
25638 Roo.bootstrap.dash = Roo.bootstrap.dash || {};
25639
25640 /**
25641  * @class Roo.bootstrap.dash.NumberBox
25642  * @extends Roo.bootstrap.Component
25643  * Bootstrap NumberBox class
25644  * @cfg {String} headline Box headline
25645  * @cfg {String} content Box content
25646  * @cfg {String} icon Box icon
25647  * @cfg {String} footer Footer text
25648  * @cfg {String} fhref Footer href
25649  * 
25650  * @constructor
25651  * Create a new NumberBox
25652  * @param {Object} config The config object
25653  */
25654
25655
25656 Roo.bootstrap.dash.NumberBox = function(config){
25657     Roo.bootstrap.dash.NumberBox.superclass.constructor.call(this, config);
25658     
25659 };
25660
25661 Roo.extend(Roo.bootstrap.dash.NumberBox, Roo.bootstrap.Component,  {
25662     
25663     headline : '',
25664     content : '',
25665     icon : '',
25666     footer : '',
25667     fhref : '',
25668     ficon : '',
25669     
25670     getAutoCreate : function(){
25671         
25672         var cfg = {
25673             tag : 'div',
25674             cls : 'small-box ',
25675             cn : [
25676                 {
25677                     tag : 'div',
25678                     cls : 'inner',
25679                     cn :[
25680                         {
25681                             tag : 'h3',
25682                             cls : 'roo-headline',
25683                             html : this.headline
25684                         },
25685                         {
25686                             tag : 'p',
25687                             cls : 'roo-content',
25688                             html : this.content
25689                         }
25690                     ]
25691                 }
25692             ]
25693         };
25694         
25695         if(this.icon){
25696             cfg.cn.push({
25697                 tag : 'div',
25698                 cls : 'icon',
25699                 cn :[
25700                     {
25701                         tag : 'i',
25702                         cls : 'ion ' + this.icon
25703                     }
25704                 ]
25705             });
25706         }
25707         
25708         if(this.footer){
25709             var footer = {
25710                 tag : 'a',
25711                 cls : 'small-box-footer',
25712                 href : this.fhref || '#',
25713                 html : this.footer
25714             };
25715             
25716             cfg.cn.push(footer);
25717             
25718         }
25719         
25720         return  cfg;
25721     },
25722
25723     onRender : function(ct,position){
25724         Roo.bootstrap.dash.NumberBox.superclass.onRender.call(this,ct,position);
25725
25726
25727        
25728                 
25729     },
25730
25731     setHeadline: function (value)
25732     {
25733         this.el.select('.roo-headline',true).first().dom.innerHTML = value;
25734     },
25735     
25736     setFooter: function (value, href)
25737     {
25738         this.el.select('a.small-box-footer',true).first().dom.innerHTML = value;
25739         
25740         if(href){
25741             this.el.select('a.small-box-footer',true).first().attr('href', href);
25742         }
25743         
25744     },
25745
25746     setContent: function (value)
25747     {
25748         this.el.select('.roo-content',true).first().dom.innerHTML = value;
25749     },
25750
25751     initEvents: function() 
25752     {   
25753         
25754     }
25755     
25756 });
25757
25758  
25759 /*
25760  * - LGPL
25761  *
25762  * TabBox
25763  * 
25764  */
25765 Roo.bootstrap.dash = Roo.bootstrap.dash || {};
25766
25767 /**
25768  * @class Roo.bootstrap.dash.TabBox
25769  * @extends Roo.bootstrap.Component
25770  * Bootstrap TabBox class
25771  * @cfg {String} title Title of the TabBox
25772  * @cfg {String} icon Icon of the TabBox
25773  * @cfg {Boolean} showtabs (true|false) show the tabs default true
25774  * @cfg {Boolean} tabScrollable (true|false) tab scrollable when mobile view default false
25775  * 
25776  * @constructor
25777  * Create a new TabBox
25778  * @param {Object} config The config object
25779  */
25780
25781
25782 Roo.bootstrap.dash.TabBox = function(config){
25783     Roo.bootstrap.dash.TabBox.superclass.constructor.call(this, config);
25784     this.addEvents({
25785         // raw events
25786         /**
25787          * @event addpane
25788          * When a pane is added
25789          * @param {Roo.bootstrap.dash.TabPane} pane
25790          */
25791         "addpane" : true,
25792         /**
25793          * @event activatepane
25794          * When a pane is activated
25795          * @param {Roo.bootstrap.dash.TabPane} pane
25796          */
25797         "activatepane" : true
25798         
25799          
25800     });
25801     
25802     this.panes = [];
25803 };
25804
25805 Roo.extend(Roo.bootstrap.dash.TabBox, Roo.bootstrap.Component,  {
25806
25807     title : '',
25808     icon : false,
25809     showtabs : true,
25810     tabScrollable : false,
25811     
25812     getChildContainer : function()
25813     {
25814         return this.el.select('.tab-content', true).first();
25815     },
25816     
25817     getAutoCreate : function(){
25818         
25819         var header = {
25820             tag: 'li',
25821             cls: 'pull-left header',
25822             html: this.title,
25823             cn : []
25824         };
25825         
25826         if(this.icon){
25827             header.cn.push({
25828                 tag: 'i',
25829                 cls: 'fa ' + this.icon
25830             });
25831         }
25832         
25833         var h = {
25834             tag: 'ul',
25835             cls: 'nav nav-tabs pull-right',
25836             cn: [
25837                 header
25838             ]
25839         };
25840         
25841         if(this.tabScrollable){
25842             h = {
25843                 tag: 'div',
25844                 cls: 'tab-header',
25845                 cn: [
25846                     {
25847                         tag: 'ul',
25848                         cls: 'nav nav-tabs pull-right',
25849                         cn: [
25850                             header
25851                         ]
25852                     }
25853                 ]
25854             };
25855         }
25856         
25857         var cfg = {
25858             tag: 'div',
25859             cls: 'nav-tabs-custom',
25860             cn: [
25861                 h,
25862                 {
25863                     tag: 'div',
25864                     cls: 'tab-content no-padding',
25865                     cn: []
25866                 }
25867             ]
25868         };
25869
25870         return  cfg;
25871     },
25872     initEvents : function()
25873     {
25874         //Roo.log('add add pane handler');
25875         this.on('addpane', this.onAddPane, this);
25876     },
25877      /**
25878      * Updates the box title
25879      * @param {String} html to set the title to.
25880      */
25881     setTitle : function(value)
25882     {
25883         this.el.select('.nav-tabs .header', true).first().dom.innerHTML = value;
25884     },
25885     onAddPane : function(pane)
25886     {
25887         this.panes.push(pane);
25888         //Roo.log('addpane');
25889         //Roo.log(pane);
25890         // tabs are rendere left to right..
25891         if(!this.showtabs){
25892             return;
25893         }
25894         
25895         var ctr = this.el.select('.nav-tabs', true).first();
25896          
25897          
25898         var existing = ctr.select('.nav-tab',true);
25899         var qty = existing.getCount();;
25900         
25901         
25902         var tab = ctr.createChild({
25903             tag : 'li',
25904             cls : 'nav-tab' + (qty ? '' : ' active'),
25905             cn : [
25906                 {
25907                     tag : 'a',
25908                     href:'#',
25909                     html : pane.title
25910                 }
25911             ]
25912         }, qty ? existing.first().dom : ctr.select('.header', true).first().dom );
25913         pane.tab = tab;
25914         
25915         tab.on('click', this.onTabClick.createDelegate(this, [pane], true));
25916         if (!qty) {
25917             pane.el.addClass('active');
25918         }
25919         
25920                 
25921     },
25922     onTabClick : function(ev,un,ob,pane)
25923     {
25924         //Roo.log('tab - prev default');
25925         ev.preventDefault();
25926         
25927         
25928         this.el.select('.nav-tabs li.nav-tab', true).removeClass('active');
25929         pane.tab.addClass('active');
25930         //Roo.log(pane.title);
25931         this.getChildContainer().select('.tab-pane',true).removeClass('active');
25932         // technically we should have a deactivate event.. but maybe add later.
25933         // and it should not de-activate the selected tab...
25934         this.fireEvent('activatepane', pane);
25935         pane.el.addClass('active');
25936         pane.fireEvent('activate');
25937         
25938         
25939     },
25940     
25941     getActivePane : function()
25942     {
25943         var r = false;
25944         Roo.each(this.panes, function(p) {
25945             if(p.el.hasClass('active')){
25946                 r = p;
25947                 return false;
25948             }
25949             
25950             return;
25951         });
25952         
25953         return r;
25954     }
25955     
25956     
25957 });
25958
25959  
25960 /*
25961  * - LGPL
25962  *
25963  * Tab pane
25964  * 
25965  */
25966 Roo.bootstrap.dash = Roo.bootstrap.dash || {};
25967 /**
25968  * @class Roo.bootstrap.TabPane
25969  * @extends Roo.bootstrap.Component
25970  * Bootstrap TabPane class
25971  * @cfg {Boolean} active (false | true) Default false
25972  * @cfg {String} title title of panel
25973
25974  * 
25975  * @constructor
25976  * Create a new TabPane
25977  * @param {Object} config The config object
25978  */
25979
25980 Roo.bootstrap.dash.TabPane = function(config){
25981     Roo.bootstrap.dash.TabPane.superclass.constructor.call(this, config);
25982     
25983     this.addEvents({
25984         // raw events
25985         /**
25986          * @event activate
25987          * When a pane is activated
25988          * @param {Roo.bootstrap.dash.TabPane} pane
25989          */
25990         "activate" : true
25991          
25992     });
25993 };
25994
25995 Roo.extend(Roo.bootstrap.dash.TabPane, Roo.bootstrap.Component,  {
25996     
25997     active : false,
25998     title : '',
25999     
26000     // the tabBox that this is attached to.
26001     tab : false,
26002      
26003     getAutoCreate : function() 
26004     {
26005         var cfg = {
26006             tag: 'div',
26007             cls: 'tab-pane'
26008         };
26009         
26010         if(this.active){
26011             cfg.cls += ' active';
26012         }
26013         
26014         return cfg;
26015     },
26016     initEvents  : function()
26017     {
26018         //Roo.log('trigger add pane handler');
26019         this.parent().fireEvent('addpane', this)
26020     },
26021     
26022      /**
26023      * Updates the tab title 
26024      * @param {String} html to set the title to.
26025      */
26026     setTitle: function(str)
26027     {
26028         if (!this.tab) {
26029             return;
26030         }
26031         this.title = str;
26032         this.tab.select('a', true).first().dom.innerHTML = str;
26033         
26034     }
26035     
26036     
26037     
26038 });
26039
26040  
26041
26042
26043  /*
26044  * - LGPL
26045  *
26046  * menu
26047  * 
26048  */
26049 Roo.bootstrap.menu = Roo.bootstrap.menu || {};
26050
26051 /**
26052  * @class Roo.bootstrap.menu.Menu
26053  * @extends Roo.bootstrap.Component
26054  * Bootstrap Menu class - container for Menu
26055  * @cfg {String} html Text of the menu
26056  * @cfg {String} weight (default | primary | success | info | warning | danger | inverse)
26057  * @cfg {String} icon Font awesome icon
26058  * @cfg {String} pos Menu align to (top | bottom) default bottom
26059  * 
26060  * 
26061  * @constructor
26062  * Create a new Menu
26063  * @param {Object} config The config object
26064  */
26065
26066
26067 Roo.bootstrap.menu.Menu = function(config){
26068     Roo.bootstrap.menu.Menu.superclass.constructor.call(this, config);
26069     
26070     this.addEvents({
26071         /**
26072          * @event beforeshow
26073          * Fires before this menu is displayed
26074          * @param {Roo.bootstrap.menu.Menu} this
26075          */
26076         beforeshow : true,
26077         /**
26078          * @event beforehide
26079          * Fires before this menu is hidden
26080          * @param {Roo.bootstrap.menu.Menu} this
26081          */
26082         beforehide : true,
26083         /**
26084          * @event show
26085          * Fires after this menu is displayed
26086          * @param {Roo.bootstrap.menu.Menu} this
26087          */
26088         show : true,
26089         /**
26090          * @event hide
26091          * Fires after this menu is hidden
26092          * @param {Roo.bootstrap.menu.Menu} this
26093          */
26094         hide : true,
26095         /**
26096          * @event click
26097          * Fires when this menu is clicked (or when the enter key is pressed while it is active)
26098          * @param {Roo.bootstrap.menu.Menu} this
26099          * @param {Roo.EventObject} e
26100          */
26101         click : true
26102     });
26103     
26104 };
26105
26106 Roo.extend(Roo.bootstrap.menu.Menu, Roo.bootstrap.Component,  {
26107     
26108     submenu : false,
26109     html : '',
26110     weight : 'default',
26111     icon : false,
26112     pos : 'bottom',
26113     
26114     
26115     getChildContainer : function() {
26116         if(this.isSubMenu){
26117             return this.el;
26118         }
26119         
26120         return this.el.select('ul.dropdown-menu', true).first();  
26121     },
26122     
26123     getAutoCreate : function()
26124     {
26125         var text = [
26126             {
26127                 tag : 'span',
26128                 cls : 'roo-menu-text',
26129                 html : this.html
26130             }
26131         ];
26132         
26133         if(this.icon){
26134             text.unshift({
26135                 tag : 'i',
26136                 cls : 'fa ' + this.icon
26137             })
26138         }
26139         
26140         
26141         var cfg = {
26142             tag : 'div',
26143             cls : 'btn-group',
26144             cn : [
26145                 {
26146                     tag : 'button',
26147                     cls : 'dropdown-button btn btn-' + this.weight,
26148                     cn : text
26149                 },
26150                 {
26151                     tag : 'button',
26152                     cls : 'dropdown-toggle btn btn-' + this.weight,
26153                     cn : [
26154                         {
26155                             tag : 'span',
26156                             cls : 'caret'
26157                         }
26158                     ]
26159                 },
26160                 {
26161                     tag : 'ul',
26162                     cls : 'dropdown-menu'
26163                 }
26164             ]
26165             
26166         };
26167         
26168         if(this.pos == 'top'){
26169             cfg.cls += ' dropup';
26170         }
26171         
26172         if(this.isSubMenu){
26173             cfg = {
26174                 tag : 'ul',
26175                 cls : 'dropdown-menu'
26176             }
26177         }
26178         
26179         return cfg;
26180     },
26181     
26182     onRender : function(ct, position)
26183     {
26184         this.isSubMenu = ct.hasClass('dropdown-submenu');
26185         
26186         Roo.bootstrap.menu.Menu.superclass.onRender.call(this, ct, position);
26187     },
26188     
26189     initEvents : function() 
26190     {
26191         if(this.isSubMenu){
26192             return;
26193         }
26194         
26195         this.hidden = true;
26196         
26197         this.triggerEl = this.el.select('button.dropdown-toggle', true).first();
26198         this.triggerEl.on('click', this.onTriggerPress, this);
26199         
26200         this.buttonEl = this.el.select('button.dropdown-button', true).first();
26201         this.buttonEl.on('click', this.onClick, this);
26202         
26203     },
26204     
26205     list : function()
26206     {
26207         if(this.isSubMenu){
26208             return this.el;
26209         }
26210         
26211         return this.el.select('ul.dropdown-menu', true).first();
26212     },
26213     
26214     onClick : function(e)
26215     {
26216         this.fireEvent("click", this, e);
26217     },
26218     
26219     onTriggerPress  : function(e)
26220     {   
26221         if (this.isVisible()) {
26222             this.hide();
26223         } else {
26224             this.show();
26225         }
26226     },
26227     
26228     isVisible : function(){
26229         return !this.hidden;
26230     },
26231     
26232     show : function()
26233     {
26234         this.fireEvent("beforeshow", this);
26235         
26236         this.hidden = false;
26237         this.el.addClass('open');
26238         
26239         Roo.get(document).on("mouseup", this.onMouseUp, this);
26240         
26241         this.fireEvent("show", this);
26242         
26243         
26244     },
26245     
26246     hide : function()
26247     {
26248         this.fireEvent("beforehide", this);
26249         
26250         this.hidden = true;
26251         this.el.removeClass('open');
26252         
26253         Roo.get(document).un("mouseup", this.onMouseUp);
26254         
26255         this.fireEvent("hide", this);
26256     },
26257     
26258     onMouseUp : function()
26259     {
26260         this.hide();
26261     }
26262     
26263 });
26264
26265  
26266  /*
26267  * - LGPL
26268  *
26269  * menu item
26270  * 
26271  */
26272 Roo.bootstrap.menu = Roo.bootstrap.menu || {};
26273
26274 /**
26275  * @class Roo.bootstrap.menu.Item
26276  * @extends Roo.bootstrap.Component
26277  * Bootstrap MenuItem class
26278  * @cfg {Boolean} submenu (true | false) default false
26279  * @cfg {String} html text of the item
26280  * @cfg {String} href the link
26281  * @cfg {Boolean} disable (true | false) default false
26282  * @cfg {Boolean} preventDefault (true | false) default true
26283  * @cfg {String} icon Font awesome icon
26284  * @cfg {String} pos Submenu align to (left | right) default right 
26285  * 
26286  * 
26287  * @constructor
26288  * Create a new Item
26289  * @param {Object} config The config object
26290  */
26291
26292
26293 Roo.bootstrap.menu.Item = function(config){
26294     Roo.bootstrap.menu.Item.superclass.constructor.call(this, config);
26295     this.addEvents({
26296         /**
26297          * @event mouseover
26298          * Fires when the mouse is hovering over this menu
26299          * @param {Roo.bootstrap.menu.Item} this
26300          * @param {Roo.EventObject} e
26301          */
26302         mouseover : true,
26303         /**
26304          * @event mouseout
26305          * Fires when the mouse exits this menu
26306          * @param {Roo.bootstrap.menu.Item} this
26307          * @param {Roo.EventObject} e
26308          */
26309         mouseout : true,
26310         // raw events
26311         /**
26312          * @event click
26313          * The raw click event for the entire grid.
26314          * @param {Roo.EventObject} e
26315          */
26316         click : true
26317     });
26318 };
26319
26320 Roo.extend(Roo.bootstrap.menu.Item, Roo.bootstrap.Component,  {
26321     
26322     submenu : false,
26323     href : '',
26324     html : '',
26325     preventDefault: true,
26326     disable : false,
26327     icon : false,
26328     pos : 'right',
26329     
26330     getAutoCreate : function()
26331     {
26332         var text = [
26333             {
26334                 tag : 'span',
26335                 cls : 'roo-menu-item-text',
26336                 html : this.html
26337             }
26338         ];
26339         
26340         if(this.icon){
26341             text.unshift({
26342                 tag : 'i',
26343                 cls : 'fa ' + this.icon
26344             })
26345         }
26346         
26347         var cfg = {
26348             tag : 'li',
26349             cn : [
26350                 {
26351                     tag : 'a',
26352                     href : this.href || '#',
26353                     cn : text
26354                 }
26355             ]
26356         };
26357         
26358         if(this.disable){
26359             cfg.cls = (typeof(cfg.cls) == 'undefined') ? 'disabled' : (cfg.cls + ' disabled');
26360         }
26361         
26362         if(this.submenu){
26363             cfg.cls = (typeof(cfg.cls) == 'undefined') ? 'dropdown-submenu' : (cfg.cls + ' dropdown-submenu');
26364             
26365             if(this.pos == 'left'){
26366                 cfg.cls = (typeof(cfg.cls) == 'undefined') ? 'pull-left' : (cfg.cls + ' pull-left');
26367             }
26368         }
26369         
26370         return cfg;
26371     },
26372     
26373     initEvents : function() 
26374     {
26375         this.el.on('mouseover', this.onMouseOver, this);
26376         this.el.on('mouseout', this.onMouseOut, this);
26377         
26378         this.el.select('a', true).first().on('click', this.onClick, this);
26379         
26380     },
26381     
26382     onClick : function(e)
26383     {
26384         if(this.preventDefault){
26385             e.preventDefault();
26386         }
26387         
26388         this.fireEvent("click", this, e);
26389     },
26390     
26391     onMouseOver : function(e)
26392     {
26393         if(this.submenu && this.pos == 'left'){
26394             this.el.select('ul.dropdown-menu', true).first().setLeft(this.el.select('ul.dropdown-menu', true).first().getWidth() * -1);
26395         }
26396         
26397         this.fireEvent("mouseover", this, e);
26398     },
26399     
26400     onMouseOut : function(e)
26401     {
26402         this.fireEvent("mouseout", this, e);
26403     }
26404 });
26405
26406  
26407
26408  /*
26409  * - LGPL
26410  *
26411  * menu separator
26412  * 
26413  */
26414 Roo.bootstrap.menu = Roo.bootstrap.menu || {};
26415
26416 /**
26417  * @class Roo.bootstrap.menu.Separator
26418  * @extends Roo.bootstrap.Component
26419  * Bootstrap Separator class
26420  * 
26421  * @constructor
26422  * Create a new Separator
26423  * @param {Object} config The config object
26424  */
26425
26426
26427 Roo.bootstrap.menu.Separator = function(config){
26428     Roo.bootstrap.menu.Separator.superclass.constructor.call(this, config);
26429 };
26430
26431 Roo.extend(Roo.bootstrap.menu.Separator, Roo.bootstrap.Component,  {
26432     
26433     getAutoCreate : function(){
26434         var cfg = {
26435             tag : 'li',
26436             cls: 'divider'
26437         };
26438         
26439         return cfg;
26440     }
26441    
26442 });
26443
26444  
26445
26446  /*
26447  * - LGPL
26448  *
26449  * Tooltip
26450  * 
26451  */
26452
26453 /**
26454  * @class Roo.bootstrap.Tooltip
26455  * Bootstrap Tooltip class
26456  * This is basic at present - all componets support it by default, however they should add tooltipEl() method
26457  * to determine which dom element triggers the tooltip.
26458  * 
26459  * It needs to add support for additional attributes like tooltip-position
26460  * 
26461  * @constructor
26462  * Create a new Toolti
26463  * @param {Object} config The config object
26464  */
26465
26466 Roo.bootstrap.Tooltip = function(config){
26467     Roo.bootstrap.Tooltip.superclass.constructor.call(this, config);
26468     
26469     this.alignment = Roo.bootstrap.Tooltip.alignment;
26470     
26471     if(typeof(config) != 'undefined' && typeof(config.alignment) != 'undefined'){
26472         this.alignment = config.alignment;
26473     }
26474     
26475 };
26476
26477 Roo.apply(Roo.bootstrap.Tooltip, {
26478     /**
26479      * @function init initialize tooltip monitoring.
26480      * @static
26481      */
26482     currentEl : false,
26483     currentTip : false,
26484     currentRegion : false,
26485     
26486     //  init : delay?
26487     
26488     init : function()
26489     {
26490         Roo.get(document).on('mouseover', this.enter ,this);
26491         Roo.get(document).on('mouseout', this.leave, this);
26492          
26493         
26494         this.currentTip = new Roo.bootstrap.Tooltip();
26495     },
26496     
26497     enter : function(ev)
26498     {
26499         var dom = ev.getTarget();
26500         
26501         //Roo.log(['enter',dom]);
26502         var el = Roo.fly(dom);
26503         if (this.currentEl) {
26504             //Roo.log(dom);
26505             //Roo.log(this.currentEl);
26506             //Roo.log(this.currentEl.contains(dom));
26507             if (this.currentEl == el) {
26508                 return;
26509             }
26510             if (dom != this.currentEl.dom && this.currentEl.contains(dom)) {
26511                 return;
26512             }
26513
26514         }
26515         
26516         if (this.currentTip.el) {
26517             this.currentTip.el.setVisibilityMode(Roo.Element.DISPLAY).hide(); // force hiding...
26518         }    
26519         //Roo.log(ev);
26520         
26521         if(!el || el.dom == document){
26522             return;
26523         }
26524         
26525         var bindEl = el;
26526         
26527         // you can not look for children, as if el is the body.. then everythign is the child..
26528         if (!el.attr('tooltip')) { //
26529             if (!el.select("[tooltip]").elements.length) {
26530                 return;
26531             }
26532             // is the mouse over this child...?
26533             bindEl = el.select("[tooltip]").first();
26534             var xy = ev.getXY();
26535             if (!bindEl.getRegion().contains( { top : xy[1] ,right : xy[0] , bottom : xy[1], left : xy[0]})) {
26536                 //Roo.log("not in region.");
26537                 return;
26538             }
26539             //Roo.log("child element over..");
26540             
26541         }
26542         this.currentEl = bindEl;
26543         this.currentTip.bind(bindEl);
26544         this.currentRegion = Roo.lib.Region.getRegion(dom);
26545         this.currentTip.enter();
26546         
26547     },
26548     leave : function(ev)
26549     {
26550         var dom = ev.getTarget();
26551         //Roo.log(['leave',dom]);
26552         if (!this.currentEl) {
26553             return;
26554         }
26555         
26556         
26557         if (dom != this.currentEl.dom) {
26558             return;
26559         }
26560         var xy = ev.getXY();
26561         if (this.currentRegion.contains( new Roo.lib.Region( xy[1], xy[0] ,xy[1], xy[0]  ))) {
26562             return;
26563         }
26564         // only activate leave if mouse cursor is outside... bounding box..
26565         
26566         
26567         
26568         
26569         if (this.currentTip) {
26570             this.currentTip.leave();
26571         }
26572         //Roo.log('clear currentEl');
26573         this.currentEl = false;
26574         
26575         
26576     },
26577     alignment : {
26578         'left' : ['r-l', [-2,0], 'right'],
26579         'right' : ['l-r', [2,0], 'left'],
26580         'bottom' : ['t-b', [0,2], 'top'],
26581         'top' : [ 'b-t', [0,-2], 'bottom']
26582     }
26583     
26584 });
26585
26586
26587 Roo.extend(Roo.bootstrap.Tooltip, Roo.bootstrap.Component,  {
26588     
26589     
26590     bindEl : false,
26591     
26592     delay : null, // can be { show : 300 , hide: 500}
26593     
26594     timeout : null,
26595     
26596     hoverState : null, //???
26597     
26598     placement : 'bottom', 
26599     
26600     alignment : false,
26601     
26602     getAutoCreate : function(){
26603     
26604         var cfg = {
26605            cls : 'tooltip',
26606            role : 'tooltip',
26607            cn : [
26608                 {
26609                     cls : 'tooltip-arrow'
26610                 },
26611                 {
26612                     cls : 'tooltip-inner'
26613                 }
26614            ]
26615         };
26616         
26617         return cfg;
26618     },
26619     bind : function(el)
26620     {
26621         this.bindEl = el;
26622     },
26623       
26624     
26625     enter : function () {
26626        
26627         if (this.timeout != null) {
26628             clearTimeout(this.timeout);
26629         }
26630         
26631         this.hoverState = 'in';
26632          //Roo.log("enter - show");
26633         if (!this.delay || !this.delay.show) {
26634             this.show();
26635             return;
26636         }
26637         var _t = this;
26638         this.timeout = setTimeout(function () {
26639             if (_t.hoverState == 'in') {
26640                 _t.show();
26641             }
26642         }, this.delay.show);
26643     },
26644     leave : function()
26645     {
26646         clearTimeout(this.timeout);
26647     
26648         this.hoverState = 'out';
26649          if (!this.delay || !this.delay.hide) {
26650             this.hide();
26651             return;
26652         }
26653        
26654         var _t = this;
26655         this.timeout = setTimeout(function () {
26656             //Roo.log("leave - timeout");
26657             
26658             if (_t.hoverState == 'out') {
26659                 _t.hide();
26660                 Roo.bootstrap.Tooltip.currentEl = false;
26661             }
26662         }, delay);
26663     },
26664     
26665     show : function (msg)
26666     {
26667         if (!this.el) {
26668             this.render(document.body);
26669         }
26670         // set content.
26671         //Roo.log([this.bindEl, this.bindEl.attr('tooltip')]);
26672         
26673         var tip = msg || this.bindEl.attr('tooltip') || this.bindEl.select("[tooltip]").first().attr('tooltip');
26674         
26675         this.el.select('.tooltip-inner',true).first().dom.innerHTML = tip;
26676         
26677         this.el.removeClass(['fade','top','bottom', 'left', 'right','in']);
26678         
26679         var placement = typeof this.placement == 'function' ?
26680             this.placement.call(this, this.el, on_el) :
26681             this.placement;
26682             
26683         var autoToken = /\s?auto?\s?/i;
26684         var autoPlace = autoToken.test(placement);
26685         if (autoPlace) {
26686             placement = placement.replace(autoToken, '') || 'top';
26687         }
26688         
26689         //this.el.detach()
26690         //this.el.setXY([0,0]);
26691         this.el.show();
26692         //this.el.dom.style.display='block';
26693         
26694         //this.el.appendTo(on_el);
26695         
26696         var p = this.getPosition();
26697         var box = this.el.getBox();
26698         
26699         if (autoPlace) {
26700             // fixme..
26701         }
26702         
26703         var align = this.alignment[placement];
26704         
26705         var xy = this.el.getAlignToXY(this.bindEl, align[0], align[1]);
26706         
26707         if(placement == 'top' || placement == 'bottom'){
26708             if(xy[0] < 0){
26709                 placement = 'right';
26710             }
26711             
26712             if(xy[0] + this.el.getWidth() > Roo.lib.Dom.getViewWidth()){
26713                 placement = 'left';
26714             }
26715             
26716             var scroll = Roo.select('body', true).first().getScroll();
26717             
26718             if(xy[1] > Roo.lib.Dom.getViewHeight() + scroll.top - this.el.getHeight()){
26719                 placement = 'top';
26720             }
26721             
26722             align = this.alignment[placement];
26723         }
26724         
26725         this.el.alignTo(this.bindEl, align[0],align[1]);
26726         //var arrow = this.el.select('.arrow',true).first();
26727         //arrow.set(align[2], 
26728         
26729         this.el.addClass(placement);
26730         
26731         this.el.addClass('in fade');
26732         
26733         this.hoverState = null;
26734         
26735         if (this.el.hasClass('fade')) {
26736             // fade it?
26737         }
26738         
26739     },
26740     hide : function()
26741     {
26742          
26743         if (!this.el) {
26744             return;
26745         }
26746         //this.el.setXY([0,0]);
26747         this.el.removeClass('in');
26748         //this.el.hide();
26749         
26750     }
26751     
26752 });
26753  
26754
26755  /*
26756  * - LGPL
26757  *
26758  * Location Picker
26759  * 
26760  */
26761
26762 /**
26763  * @class Roo.bootstrap.LocationPicker
26764  * @extends Roo.bootstrap.Component
26765  * Bootstrap LocationPicker class
26766  * @cfg {Number} latitude Position when init default 0
26767  * @cfg {Number} longitude Position when init default 0
26768  * @cfg {Number} zoom default 15
26769  * @cfg {String} mapTypeId default google.maps.MapTypeId.ROADMAP
26770  * @cfg {Boolean} mapTypeControl default false
26771  * @cfg {Boolean} disableDoubleClickZoom default false
26772  * @cfg {Boolean} scrollwheel default true
26773  * @cfg {Boolean} streetViewControl default false
26774  * @cfg {Number} radius default 0
26775  * @cfg {String} locationName
26776  * @cfg {Boolean} draggable default true
26777  * @cfg {Boolean} enableAutocomplete default false
26778  * @cfg {Boolean} enableReverseGeocode default true
26779  * @cfg {String} markerTitle
26780  * 
26781  * @constructor
26782  * Create a new LocationPicker
26783  * @param {Object} config The config object
26784  */
26785
26786
26787 Roo.bootstrap.LocationPicker = function(config){
26788     
26789     Roo.bootstrap.LocationPicker.superclass.constructor.call(this, config);
26790     
26791     this.addEvents({
26792         /**
26793          * @event initial
26794          * Fires when the picker initialized.
26795          * @param {Roo.bootstrap.LocationPicker} this
26796          * @param {Google Location} location
26797          */
26798         initial : true,
26799         /**
26800          * @event positionchanged
26801          * Fires when the picker position changed.
26802          * @param {Roo.bootstrap.LocationPicker} this
26803          * @param {Google Location} location
26804          */
26805         positionchanged : true,
26806         /**
26807          * @event resize
26808          * Fires when the map resize.
26809          * @param {Roo.bootstrap.LocationPicker} this
26810          */
26811         resize : true,
26812         /**
26813          * @event show
26814          * Fires when the map show.
26815          * @param {Roo.bootstrap.LocationPicker} this
26816          */
26817         show : true,
26818         /**
26819          * @event hide
26820          * Fires when the map hide.
26821          * @param {Roo.bootstrap.LocationPicker} this
26822          */
26823         hide : true,
26824         /**
26825          * @event mapClick
26826          * Fires when click the map.
26827          * @param {Roo.bootstrap.LocationPicker} this
26828          * @param {Map event} e
26829          */
26830         mapClick : true,
26831         /**
26832          * @event mapRightClick
26833          * Fires when right click the map.
26834          * @param {Roo.bootstrap.LocationPicker} this
26835          * @param {Map event} e
26836          */
26837         mapRightClick : true,
26838         /**
26839          * @event markerClick
26840          * Fires when click the marker.
26841          * @param {Roo.bootstrap.LocationPicker} this
26842          * @param {Map event} e
26843          */
26844         markerClick : true,
26845         /**
26846          * @event markerRightClick
26847          * Fires when right click the marker.
26848          * @param {Roo.bootstrap.LocationPicker} this
26849          * @param {Map event} e
26850          */
26851         markerRightClick : true,
26852         /**
26853          * @event OverlayViewDraw
26854          * Fires when OverlayView Draw
26855          * @param {Roo.bootstrap.LocationPicker} this
26856          */
26857         OverlayViewDraw : true,
26858         /**
26859          * @event OverlayViewOnAdd
26860          * Fires when OverlayView Draw
26861          * @param {Roo.bootstrap.LocationPicker} this
26862          */
26863         OverlayViewOnAdd : true,
26864         /**
26865          * @event OverlayViewOnRemove
26866          * Fires when OverlayView Draw
26867          * @param {Roo.bootstrap.LocationPicker} this
26868          */
26869         OverlayViewOnRemove : true,
26870         /**
26871          * @event OverlayViewShow
26872          * Fires when OverlayView Draw
26873          * @param {Roo.bootstrap.LocationPicker} this
26874          * @param {Pixel} cpx
26875          */
26876         OverlayViewShow : true,
26877         /**
26878          * @event OverlayViewHide
26879          * Fires when OverlayView Draw
26880          * @param {Roo.bootstrap.LocationPicker} this
26881          */
26882         OverlayViewHide : true,
26883         /**
26884          * @event loadexception
26885          * Fires when load google lib failed.
26886          * @param {Roo.bootstrap.LocationPicker} this
26887          */
26888         loadexception : true
26889     });
26890         
26891 };
26892
26893 Roo.extend(Roo.bootstrap.LocationPicker, Roo.bootstrap.Component,  {
26894     
26895     gMapContext: false,
26896     
26897     latitude: 0,
26898     longitude: 0,
26899     zoom: 15,
26900     mapTypeId: false,
26901     mapTypeControl: false,
26902     disableDoubleClickZoom: false,
26903     scrollwheel: true,
26904     streetViewControl: false,
26905     radius: 0,
26906     locationName: '',
26907     draggable: true,
26908     enableAutocomplete: false,
26909     enableReverseGeocode: true,
26910     markerTitle: '',
26911     
26912     getAutoCreate: function()
26913     {
26914
26915         var cfg = {
26916             tag: 'div',
26917             cls: 'roo-location-picker'
26918         };
26919         
26920         return cfg
26921     },
26922     
26923     initEvents: function(ct, position)
26924     {       
26925         if(!this.el.getWidth() || this.isApplied()){
26926             return;
26927         }
26928         
26929         this.el.setVisibilityMode(Roo.Element.DISPLAY);
26930         
26931         this.initial();
26932     },
26933     
26934     initial: function()
26935     {
26936         if(typeof(google) == 'undefined' || typeof(google.maps) == 'undefined'){
26937             this.fireEvent('loadexception', this);
26938             return;
26939         }
26940         
26941         if(!this.mapTypeId){
26942             this.mapTypeId = google.maps.MapTypeId.ROADMAP;
26943         }
26944         
26945         this.gMapContext = this.GMapContext();
26946         
26947         this.initOverlayView();
26948         
26949         this.OverlayView = new Roo.bootstrap.LocationPicker.OverlayView(this.gMapContext.map);
26950         
26951         var _this = this;
26952                 
26953         google.maps.event.addListener(this.gMapContext.marker, "dragend", function(event) {
26954             _this.setPosition(_this.gMapContext.marker.position);
26955         });
26956         
26957         google.maps.event.addListener(this.gMapContext.map, 'click', function(event){
26958             _this.fireEvent('mapClick', this, event);
26959             
26960         });
26961
26962         google.maps.event.addListener(this.gMapContext.map, 'rightclick', function(event){
26963             _this.fireEvent('mapRightClick', this, event);
26964             
26965         });
26966         
26967         google.maps.event.addListener(this.gMapContext.marker, 'click', function(event){
26968             _this.fireEvent('markerClick', this, event);
26969             
26970         });
26971
26972         google.maps.event.addListener(this.gMapContext.marker, 'rightclick', function(event){
26973             _this.fireEvent('markerRightClick', this, event);
26974             
26975         });
26976         
26977         this.setPosition(this.gMapContext.location);
26978         
26979         this.fireEvent('initial', this, this.gMapContext.location);
26980     },
26981     
26982     initOverlayView: function()
26983     {
26984         var _this = this;
26985         
26986         Roo.bootstrap.LocationPicker.OverlayView.prototype = Roo.apply(new google.maps.OverlayView(), {
26987             
26988             draw: function()
26989             {
26990                 _this.fireEvent('OverlayViewDraw', _this);
26991             },
26992             
26993             onAdd: function()
26994             {
26995                 _this.fireEvent('OverlayViewOnAdd', _this);
26996             },
26997             
26998             onRemove: function()
26999             {
27000                 _this.fireEvent('OverlayViewOnRemove', _this);
27001             },
27002             
27003             show: function(cpx)
27004             {
27005                 _this.fireEvent('OverlayViewShow', _this, cpx);
27006             },
27007             
27008             hide: function()
27009             {
27010                 _this.fireEvent('OverlayViewHide', _this);
27011             }
27012             
27013         });
27014     },
27015     
27016     fromLatLngToContainerPixel: function(event)
27017     {
27018         return this.OverlayView.getProjection().fromLatLngToContainerPixel(event.latLng);
27019     },
27020     
27021     isApplied: function() 
27022     {
27023         return this.getGmapContext() == false ? false : true;
27024     },
27025     
27026     getGmapContext: function() 
27027     {
27028         return (typeof(this.gMapContext) == 'undefined') ? false : this.gMapContext;
27029     },
27030     
27031     GMapContext: function() 
27032     {
27033         var position = new google.maps.LatLng(this.latitude, this.longitude);
27034         
27035         var _map = new google.maps.Map(this.el.dom, {
27036             center: position,
27037             zoom: this.zoom,
27038             mapTypeId: this.mapTypeId,
27039             mapTypeControl: this.mapTypeControl,
27040             disableDoubleClickZoom: this.disableDoubleClickZoom,
27041             scrollwheel: this.scrollwheel,
27042             streetViewControl: this.streetViewControl,
27043             locationName: this.locationName,
27044             draggable: this.draggable,
27045             enableAutocomplete: this.enableAutocomplete,
27046             enableReverseGeocode: this.enableReverseGeocode
27047         });
27048         
27049         var _marker = new google.maps.Marker({
27050             position: position,
27051             map: _map,
27052             title: this.markerTitle,
27053             draggable: this.draggable
27054         });
27055         
27056         return {
27057             map: _map,
27058             marker: _marker,
27059             circle: null,
27060             location: position,
27061             radius: this.radius,
27062             locationName: this.locationName,
27063             addressComponents: {
27064                 formatted_address: null,
27065                 addressLine1: null,
27066                 addressLine2: null,
27067                 streetName: null,
27068                 streetNumber: null,
27069                 city: null,
27070                 district: null,
27071                 state: null,
27072                 stateOrProvince: null
27073             },
27074             settings: this,
27075             domContainer: this.el.dom,
27076             geodecoder: new google.maps.Geocoder()
27077         };
27078     },
27079     
27080     drawCircle: function(center, radius, options) 
27081     {
27082         if (this.gMapContext.circle != null) {
27083             this.gMapContext.circle.setMap(null);
27084         }
27085         if (radius > 0) {
27086             radius *= 1;
27087             options = Roo.apply({}, options, {
27088                 strokeColor: "#0000FF",
27089                 strokeOpacity: .35,
27090                 strokeWeight: 2,
27091                 fillColor: "#0000FF",
27092                 fillOpacity: .2
27093             });
27094             
27095             options.map = this.gMapContext.map;
27096             options.radius = radius;
27097             options.center = center;
27098             this.gMapContext.circle = new google.maps.Circle(options);
27099             return this.gMapContext.circle;
27100         }
27101         
27102         return null;
27103     },
27104     
27105     setPosition: function(location) 
27106     {
27107         this.gMapContext.location = location;
27108         this.gMapContext.marker.setPosition(location);
27109         this.gMapContext.map.panTo(location);
27110         this.drawCircle(location, this.gMapContext.radius, {});
27111         
27112         var _this = this;
27113         
27114         if (this.gMapContext.settings.enableReverseGeocode) {
27115             this.gMapContext.geodecoder.geocode({
27116                 latLng: this.gMapContext.location
27117             }, function(results, status) {
27118                 
27119                 if (status == google.maps.GeocoderStatus.OK && results.length > 0) {
27120                     _this.gMapContext.locationName = results[0].formatted_address;
27121                     _this.gMapContext.addressComponents = _this.address_component_from_google_geocode(results[0].address_components);
27122                     
27123                     _this.fireEvent('positionchanged', this, location);
27124                 }
27125             });
27126             
27127             return;
27128         }
27129         
27130         this.fireEvent('positionchanged', this, location);
27131     },
27132     
27133     resize: function()
27134     {
27135         google.maps.event.trigger(this.gMapContext.map, "resize");
27136         
27137         this.gMapContext.map.setCenter(this.gMapContext.marker.position);
27138         
27139         this.fireEvent('resize', this);
27140     },
27141     
27142     setPositionByLatLng: function(latitude, longitude)
27143     {
27144         this.setPosition(new google.maps.LatLng(latitude, longitude));
27145     },
27146     
27147     getCurrentPosition: function() 
27148     {
27149         return {
27150             latitude: this.gMapContext.location.lat(),
27151             longitude: this.gMapContext.location.lng()
27152         };
27153     },
27154     
27155     getAddressName: function() 
27156     {
27157         return this.gMapContext.locationName;
27158     },
27159     
27160     getAddressComponents: function() 
27161     {
27162         return this.gMapContext.addressComponents;
27163     },
27164     
27165     address_component_from_google_geocode: function(address_components) 
27166     {
27167         var result = {};
27168         
27169         for (var i = 0; i < address_components.length; i++) {
27170             var component = address_components[i];
27171             if (component.types.indexOf("postal_code") >= 0) {
27172                 result.postalCode = component.short_name;
27173             } else if (component.types.indexOf("street_number") >= 0) {
27174                 result.streetNumber = component.short_name;
27175             } else if (component.types.indexOf("route") >= 0) {
27176                 result.streetName = component.short_name;
27177             } else if (component.types.indexOf("neighborhood") >= 0) {
27178                 result.city = component.short_name;
27179             } else if (component.types.indexOf("locality") >= 0) {
27180                 result.city = component.short_name;
27181             } else if (component.types.indexOf("sublocality") >= 0) {
27182                 result.district = component.short_name;
27183             } else if (component.types.indexOf("administrative_area_level_1") >= 0) {
27184                 result.stateOrProvince = component.short_name;
27185             } else if (component.types.indexOf("country") >= 0) {
27186                 result.country = component.short_name;
27187             }
27188         }
27189         
27190         result.addressLine1 = [ result.streetNumber, result.streetName ].join(" ").trim();
27191         result.addressLine2 = "";
27192         return result;
27193     },
27194     
27195     setZoomLevel: function(zoom)
27196     {
27197         this.gMapContext.map.setZoom(zoom);
27198     },
27199     
27200     show: function()
27201     {
27202         if(!this.el){
27203             return;
27204         }
27205         
27206         this.el.show();
27207         
27208         this.resize();
27209         
27210         this.fireEvent('show', this);
27211     },
27212     
27213     hide: function()
27214     {
27215         if(!this.el){
27216             return;
27217         }
27218         
27219         this.el.hide();
27220         
27221         this.fireEvent('hide', this);
27222     }
27223     
27224 });
27225
27226 Roo.apply(Roo.bootstrap.LocationPicker, {
27227     
27228     OverlayView : function(map, options)
27229     {
27230         options = options || {};
27231         
27232         this.setMap(map);
27233     }
27234     
27235     
27236 });/**
27237  * @class Roo.bootstrap.Alert
27238  * @extends Roo.bootstrap.Component
27239  * Bootstrap Alert class - shows an alert area box
27240  * eg
27241  * <div class="alert alert-danger" role="alert"><span class="fa fa-exclamation-triangle"></span><span class="sr-only">Error:</span>
27242   Enter a valid email address
27243 </div>
27244  * @licence LGPL
27245  * @cfg {String} title The title of alert
27246  * @cfg {String} html The content of alert
27247  * @cfg {String} weight (  success | info | warning | danger )
27248  * @cfg {String} faicon font-awesomeicon
27249  * 
27250  * @constructor
27251  * Create a new alert
27252  * @param {Object} config The config object
27253  */
27254
27255
27256 Roo.bootstrap.Alert = function(config){
27257     Roo.bootstrap.Alert.superclass.constructor.call(this, config);
27258     
27259 };
27260
27261 Roo.extend(Roo.bootstrap.Alert, Roo.bootstrap.Component,  {
27262     
27263     title: '',
27264     html: '',
27265     weight: false,
27266     faicon: false,
27267     
27268     getAutoCreate : function()
27269     {
27270         
27271         var cfg = {
27272             tag : 'div',
27273             cls : 'alert',
27274             cn : [
27275                 {
27276                     tag : 'i',
27277                     cls : 'roo-alert-icon'
27278                     
27279                 },
27280                 {
27281                     tag : 'b',
27282                     cls : 'roo-alert-title',
27283                     html : this.title
27284                 },
27285                 {
27286                     tag : 'span',
27287                     cls : 'roo-alert-text',
27288                     html : this.html
27289                 }
27290             ]
27291         };
27292         
27293         if(this.faicon){
27294             cfg.cn[0].cls += ' fa ' + this.faicon;
27295         }
27296         
27297         if(this.weight){
27298             cfg.cls += ' alert-' + this.weight;
27299         }
27300         
27301         return cfg;
27302     },
27303     
27304     initEvents: function() 
27305     {
27306         this.el.setVisibilityMode(Roo.Element.DISPLAY);
27307     },
27308     
27309     setTitle : function(str)
27310     {
27311         this.el.select('.roo-alert-title',true).first().dom.innerHTML = str;
27312     },
27313     
27314     setText : function(str)
27315     {
27316         this.el.select('.roo-alert-text',true).first().dom.innerHTML = str;
27317     },
27318     
27319     setWeight : function(weight)
27320     {
27321         if(this.weight){
27322             this.el.select('.alert',true).first().removeClass('alert-' + this.weight);
27323         }
27324         
27325         this.weight = weight;
27326         
27327         this.el.select('.alert',true).first().addClass('alert-' + this.weight);
27328     },
27329     
27330     setIcon : function(icon)
27331     {
27332         if(this.faicon){
27333             this.el.select('.roo-alert-icon',true).first().removeClass(['fa', 'fa-' + this.faicon]);
27334         }
27335         
27336         this.faicon = icon;
27337         
27338         this.el.select('.roo-alert-icon',true).first().addClass(['fa', 'fa-' + this.faicon]);
27339     },
27340     
27341     hide: function() 
27342     {
27343         this.el.hide();   
27344     },
27345     
27346     show: function() 
27347     {  
27348         this.el.show();   
27349     }
27350     
27351 });
27352
27353  
27354 /*
27355 * Licence: LGPL
27356 */
27357
27358 /**
27359  * @class Roo.bootstrap.UploadCropbox
27360  * @extends Roo.bootstrap.Component
27361  * Bootstrap UploadCropbox class
27362  * @cfg {String} emptyText show when image has been loaded
27363  * @cfg {String} rotateNotify show when image too small to rotate
27364  * @cfg {Number} errorTimeout default 3000
27365  * @cfg {Number} minWidth default 300
27366  * @cfg {Number} minHeight default 300
27367  * @cfg {Array} buttons default ['rotateLeft', 'pictureBtn', 'rotateRight']
27368  * @cfg {Boolean} isDocument (true|false) default false
27369  * @cfg {String} url action url
27370  * @cfg {String} paramName default 'imageUpload'
27371  * @cfg {String} method default POST
27372  * @cfg {Boolean} loadMask (true|false) default true
27373  * @cfg {Boolean} loadingText default 'Loading...'
27374  * 
27375  * @constructor
27376  * Create a new UploadCropbox
27377  * @param {Object} config The config object
27378  */
27379
27380 Roo.bootstrap.UploadCropbox = function(config){
27381     Roo.bootstrap.UploadCropbox.superclass.constructor.call(this, config);
27382     
27383     this.addEvents({
27384         /**
27385          * @event beforeselectfile
27386          * Fire before select file
27387          * @param {Roo.bootstrap.UploadCropbox} this
27388          */
27389         "beforeselectfile" : true,
27390         /**
27391          * @event initial
27392          * Fire after initEvent
27393          * @param {Roo.bootstrap.UploadCropbox} this
27394          */
27395         "initial" : true,
27396         /**
27397          * @event crop
27398          * Fire after initEvent
27399          * @param {Roo.bootstrap.UploadCropbox} this
27400          * @param {String} data
27401          */
27402         "crop" : true,
27403         /**
27404          * @event prepare
27405          * Fire when preparing the file data
27406          * @param {Roo.bootstrap.UploadCropbox} this
27407          * @param {Object} file
27408          */
27409         "prepare" : true,
27410         /**
27411          * @event exception
27412          * Fire when get exception
27413          * @param {Roo.bootstrap.UploadCropbox} this
27414          * @param {XMLHttpRequest} xhr
27415          */
27416         "exception" : true,
27417         /**
27418          * @event beforeloadcanvas
27419          * Fire before load the canvas
27420          * @param {Roo.bootstrap.UploadCropbox} this
27421          * @param {String} src
27422          */
27423         "beforeloadcanvas" : true,
27424         /**
27425          * @event trash
27426          * Fire when trash image
27427          * @param {Roo.bootstrap.UploadCropbox} this
27428          */
27429         "trash" : true,
27430         /**
27431          * @event download
27432          * Fire when download the image
27433          * @param {Roo.bootstrap.UploadCropbox} this
27434          */
27435         "download" : true,
27436         /**
27437          * @event footerbuttonclick
27438          * Fire when footerbuttonclick
27439          * @param {Roo.bootstrap.UploadCropbox} this
27440          * @param {String} type
27441          */
27442         "footerbuttonclick" : true,
27443         /**
27444          * @event resize
27445          * Fire when resize
27446          * @param {Roo.bootstrap.UploadCropbox} this
27447          */
27448         "resize" : true,
27449         /**
27450          * @event rotate
27451          * Fire when rotate the image
27452          * @param {Roo.bootstrap.UploadCropbox} this
27453          * @param {String} pos
27454          */
27455         "rotate" : true,
27456         /**
27457          * @event inspect
27458          * Fire when inspect the file
27459          * @param {Roo.bootstrap.UploadCropbox} this
27460          * @param {Object} file
27461          */
27462         "inspect" : true,
27463         /**
27464          * @event upload
27465          * Fire when xhr upload the file
27466          * @param {Roo.bootstrap.UploadCropbox} this
27467          * @param {Object} data
27468          */
27469         "upload" : true,
27470         /**
27471          * @event arrange
27472          * Fire when arrange the file data
27473          * @param {Roo.bootstrap.UploadCropbox} this
27474          * @param {Object} formData
27475          */
27476         "arrange" : true
27477     });
27478     
27479     this.buttons = this.buttons || Roo.bootstrap.UploadCropbox.footer.STANDARD;
27480 };
27481
27482 Roo.extend(Roo.bootstrap.UploadCropbox, Roo.bootstrap.Component,  {
27483     
27484     emptyText : 'Click to upload image',
27485     rotateNotify : 'Image is too small to rotate',
27486     errorTimeout : 3000,
27487     scale : 0,
27488     baseScale : 1,
27489     rotate : 0,
27490     dragable : false,
27491     pinching : false,
27492     mouseX : 0,
27493     mouseY : 0,
27494     cropData : false,
27495     minWidth : 300,
27496     minHeight : 300,
27497     file : false,
27498     exif : {},
27499     baseRotate : 1,
27500     cropType : 'image/jpeg',
27501     buttons : false,
27502     canvasLoaded : false,
27503     isDocument : false,
27504     method : 'POST',
27505     paramName : 'imageUpload',
27506     loadMask : true,
27507     loadingText : 'Loading...',
27508     maskEl : false,
27509     
27510     getAutoCreate : function()
27511     {
27512         var cfg = {
27513             tag : 'div',
27514             cls : 'roo-upload-cropbox',
27515             cn : [
27516                 {
27517                     tag : 'input',
27518                     cls : 'roo-upload-cropbox-selector',
27519                     type : 'file'
27520                 },
27521                 {
27522                     tag : 'div',
27523                     cls : 'roo-upload-cropbox-body',
27524                     style : 'cursor:pointer',
27525                     cn : [
27526                         {
27527                             tag : 'div',
27528                             cls : 'roo-upload-cropbox-preview'
27529                         },
27530                         {
27531                             tag : 'div',
27532                             cls : 'roo-upload-cropbox-thumb'
27533                         },
27534                         {
27535                             tag : 'div',
27536                             cls : 'roo-upload-cropbox-empty-notify',
27537                             html : this.emptyText
27538                         },
27539                         {
27540                             tag : 'div',
27541                             cls : 'roo-upload-cropbox-error-notify alert alert-danger',
27542                             html : this.rotateNotify
27543                         }
27544                     ]
27545                 },
27546                 {
27547                     tag : 'div',
27548                     cls : 'roo-upload-cropbox-footer',
27549                     cn : {
27550                         tag : 'div',
27551                         cls : 'btn-group btn-group-justified roo-upload-cropbox-btn-group',
27552                         cn : []
27553                     }
27554                 }
27555             ]
27556         };
27557         
27558         return cfg;
27559     },
27560     
27561     onRender : function(ct, position)
27562     {
27563         Roo.bootstrap.UploadCropbox.superclass.onRender.call(this, ct, position);
27564         
27565         if (this.buttons.length) {
27566             
27567             Roo.each(this.buttons, function(bb) {
27568                 
27569                 var btn = this.el.select('.roo-upload-cropbox-footer div.roo-upload-cropbox-btn-group').first().createChild(bb);
27570                 
27571                 btn.on('click', this.onFooterButtonClick.createDelegate(this, [bb.action], true));
27572                 
27573             }, this);
27574         }
27575         
27576         if(this.loadMask){
27577             this.maskEl = this.el;
27578         }
27579     },
27580     
27581     initEvents : function()
27582     {
27583         this.urlAPI = (window.createObjectURL && window) || 
27584                                 (window.URL && URL.revokeObjectURL && URL) || 
27585                                 (window.webkitURL && webkitURL);
27586                         
27587         this.bodyEl = this.el.select('.roo-upload-cropbox-body', true).first();
27588         this.bodyEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
27589         
27590         this.selectorEl = this.el.select('.roo-upload-cropbox-selector', true).first();
27591         this.selectorEl.hide();
27592         
27593         this.previewEl = this.el.select('.roo-upload-cropbox-preview', true).first();
27594         this.previewEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
27595         
27596         this.thumbEl = this.el.select('.roo-upload-cropbox-thumb', true).first();
27597         this.thumbEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
27598         this.thumbEl.hide();
27599         
27600         this.notifyEl = this.el.select('.roo-upload-cropbox-empty-notify', true).first();
27601         this.notifyEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
27602         
27603         this.errorEl = this.el.select('.roo-upload-cropbox-error-notify', true).first();
27604         this.errorEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
27605         this.errorEl.hide();
27606         
27607         this.footerEl = this.el.select('.roo-upload-cropbox-footer', true).first();
27608         this.footerEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
27609         this.footerEl.hide();
27610         
27611         this.setThumbBoxSize();
27612         
27613         this.bind();
27614         
27615         this.resize();
27616         
27617         this.fireEvent('initial', this);
27618     },
27619
27620     bind : function()
27621     {
27622         var _this = this;
27623         
27624         window.addEventListener("resize", function() { _this.resize(); } );
27625         
27626         this.bodyEl.on('click', this.beforeSelectFile, this);
27627         
27628         if(Roo.isTouch){
27629             this.bodyEl.on('touchstart', this.onTouchStart, this);
27630             this.bodyEl.on('touchmove', this.onTouchMove, this);
27631             this.bodyEl.on('touchend', this.onTouchEnd, this);
27632         }
27633         
27634         if(!Roo.isTouch){
27635             this.bodyEl.on('mousedown', this.onMouseDown, this);
27636             this.bodyEl.on('mousemove', this.onMouseMove, this);
27637             var mousewheel = (/Firefox/i.test(navigator.userAgent))? 'DOMMouseScroll' : 'mousewheel';
27638             this.bodyEl.on(mousewheel, this.onMouseWheel, this);
27639             Roo.get(document).on('mouseup', this.onMouseUp, this);
27640         }
27641         
27642         this.selectorEl.on('change', this.onFileSelected, this);
27643     },
27644     
27645     reset : function()
27646     {    
27647         this.scale = 0;
27648         this.baseScale = 1;
27649         this.rotate = 0;
27650         this.baseRotate = 1;
27651         this.dragable = false;
27652         this.pinching = false;
27653         this.mouseX = 0;
27654         this.mouseY = 0;
27655         this.cropData = false;
27656         this.notifyEl.dom.innerHTML = this.emptyText;
27657         
27658         this.selectorEl.dom.value = '';
27659         
27660     },
27661     
27662     resize : function()
27663     {
27664         if(this.fireEvent('resize', this) != false){
27665             this.setThumbBoxPosition();
27666             this.setCanvasPosition();
27667         }
27668     },
27669     
27670     onFooterButtonClick : function(e, el, o, type)
27671     {
27672         switch (type) {
27673             case 'rotate-left' :
27674                 this.onRotateLeft(e);
27675                 break;
27676             case 'rotate-right' :
27677                 this.onRotateRight(e);
27678                 break;
27679             case 'picture' :
27680                 this.beforeSelectFile(e);
27681                 break;
27682             case 'trash' :
27683                 this.trash(e);
27684                 break;
27685             case 'crop' :
27686                 this.crop(e);
27687                 break;
27688             case 'download' :
27689                 this.download(e);
27690                 break;
27691             default :
27692                 break;
27693         }
27694         
27695         this.fireEvent('footerbuttonclick', this, type);
27696     },
27697     
27698     beforeSelectFile : function(e)
27699     {
27700         e.preventDefault();
27701         
27702         if(this.fireEvent('beforeselectfile', this) != false){
27703             this.selectorEl.dom.click();
27704         }
27705     },
27706     
27707     onFileSelected : function(e)
27708     {
27709         e.preventDefault();
27710         
27711         if(typeof(this.selectorEl.dom.files) == 'undefined' || !this.selectorEl.dom.files.length){
27712             return;
27713         }
27714         
27715         var file = this.selectorEl.dom.files[0];
27716         
27717         if(this.fireEvent('inspect', this, file) != false){
27718             this.prepare(file);
27719         }
27720         
27721     },
27722     
27723     trash : function(e)
27724     {
27725         this.fireEvent('trash', this);
27726     },
27727     
27728     download : function(e)
27729     {
27730         this.fireEvent('download', this);
27731     },
27732     
27733     loadCanvas : function(src)
27734     {   
27735         if(this.fireEvent('beforeloadcanvas', this, src) != false){
27736             
27737             this.reset();
27738             
27739             this.imageEl = document.createElement('img');
27740             
27741             var _this = this;
27742             
27743             this.imageEl.addEventListener("load", function(){ _this.onLoadCanvas(); });
27744             
27745             this.imageEl.src = src;
27746         }
27747     },
27748     
27749     onLoadCanvas : function()
27750     {   
27751         this.imageEl.OriginWidth = this.imageEl.naturalWidth || this.imageEl.width;
27752         this.imageEl.OriginHeight = this.imageEl.naturalHeight || this.imageEl.height;
27753         
27754         this.bodyEl.un('click', this.beforeSelectFile, this);
27755         
27756         this.notifyEl.hide();
27757         this.thumbEl.show();
27758         this.footerEl.show();
27759         
27760         this.baseRotateLevel();
27761         
27762         if(this.isDocument){
27763             this.setThumbBoxSize();
27764         }
27765         
27766         this.setThumbBoxPosition();
27767         
27768         this.baseScaleLevel();
27769         
27770         this.draw();
27771         
27772         this.resize();
27773         
27774         this.canvasLoaded = true;
27775         
27776         if(this.loadMask){
27777             this.maskEl.unmask();
27778         }
27779         
27780     },
27781     
27782     setCanvasPosition : function()
27783     {   
27784         if(!this.canvasEl){
27785             return;
27786         }
27787         
27788         var pw = Math.ceil((this.bodyEl.getWidth() - this.canvasEl.width) / 2);
27789         var ph = Math.ceil((this.bodyEl.getHeight() - this.canvasEl.height) / 2);
27790         
27791         this.previewEl.setLeft(pw);
27792         this.previewEl.setTop(ph);
27793         
27794     },
27795     
27796     onMouseDown : function(e)
27797     {   
27798         e.stopEvent();
27799         
27800         this.dragable = true;
27801         this.pinching = false;
27802         
27803         if(this.isDocument && (this.canvasEl.width < this.thumbEl.getWidth() || this.canvasEl.height < this.thumbEl.getHeight())){
27804             this.dragable = false;
27805             return;
27806         }
27807         
27808         this.mouseX = Roo.isTouch ? e.browserEvent.touches[0].pageX : e.getPageX();
27809         this.mouseY = Roo.isTouch ? e.browserEvent.touches[0].pageY : e.getPageY();
27810         
27811     },
27812     
27813     onMouseMove : function(e)
27814     {   
27815         e.stopEvent();
27816         
27817         if(!this.canvasLoaded){
27818             return;
27819         }
27820         
27821         if (!this.dragable){
27822             return;
27823         }
27824         
27825         var minX = Math.ceil(this.thumbEl.getLeft(true));
27826         var minY = Math.ceil(this.thumbEl.getTop(true));
27827         
27828         var maxX = Math.ceil(minX + this.thumbEl.getWidth() - this.canvasEl.width);
27829         var maxY = Math.ceil(minY + this.thumbEl.getHeight() - this.canvasEl.height);
27830         
27831         var x = Roo.isTouch ? e.browserEvent.touches[0].pageX : e.getPageX();
27832         var y = Roo.isTouch ? e.browserEvent.touches[0].pageY : e.getPageY();
27833         
27834         x = x - this.mouseX;
27835         y = y - this.mouseY;
27836         
27837         var bgX = Math.ceil(x + this.previewEl.getLeft(true));
27838         var bgY = Math.ceil(y + this.previewEl.getTop(true));
27839         
27840         bgX = (minX < bgX) ? minX : ((maxX > bgX) ? maxX : bgX);
27841         bgY = (minY < bgY) ? minY : ((maxY > bgY) ? maxY : bgY);
27842         
27843         this.previewEl.setLeft(bgX);
27844         this.previewEl.setTop(bgY);
27845         
27846         this.mouseX = Roo.isTouch ? e.browserEvent.touches[0].pageX : e.getPageX();
27847         this.mouseY = Roo.isTouch ? e.browserEvent.touches[0].pageY : e.getPageY();
27848     },
27849     
27850     onMouseUp : function(e)
27851     {   
27852         e.stopEvent();
27853         
27854         this.dragable = false;
27855     },
27856     
27857     onMouseWheel : function(e)
27858     {   
27859         e.stopEvent();
27860         
27861         this.startScale = this.scale;
27862         
27863         this.scale = (e.getWheelDelta() == 1) ? (this.scale + 1) : (this.scale - 1);
27864         
27865         if(!this.zoomable()){
27866             this.scale = this.startScale;
27867             return;
27868         }
27869         
27870         this.draw();
27871         
27872         return;
27873     },
27874     
27875     zoomable : function()
27876     {
27877         var minScale = this.thumbEl.getWidth() / this.minWidth;
27878         
27879         if(this.minWidth < this.minHeight){
27880             minScale = this.thumbEl.getHeight() / this.minHeight;
27881         }
27882         
27883         var width = Math.ceil(this.imageEl.OriginWidth * this.getScaleLevel() / minScale);
27884         var height = Math.ceil(this.imageEl.OriginHeight * this.getScaleLevel() / minScale);
27885         
27886         if(
27887                 this.isDocument &&
27888                 (this.rotate == 0 || this.rotate == 180) && 
27889                 (
27890                     width > this.imageEl.OriginWidth || 
27891                     height > this.imageEl.OriginHeight ||
27892                     (width < this.minWidth && height < this.minHeight)
27893                 )
27894         ){
27895             return false;
27896         }
27897         
27898         if(
27899                 this.isDocument &&
27900                 (this.rotate == 90 || this.rotate == 270) && 
27901                 (
27902                     width > this.imageEl.OriginWidth || 
27903                     height > this.imageEl.OriginHeight ||
27904                     (width < this.minHeight && height < this.minWidth)
27905                 )
27906         ){
27907             return false;
27908         }
27909         
27910         if(
27911                 !this.isDocument &&
27912                 (this.rotate == 0 || this.rotate == 180) && 
27913                 (
27914                     width < this.minWidth || 
27915                     width > this.imageEl.OriginWidth || 
27916                     height < this.minHeight || 
27917                     height > this.imageEl.OriginHeight
27918                 )
27919         ){
27920             return false;
27921         }
27922         
27923         if(
27924                 !this.isDocument &&
27925                 (this.rotate == 90 || this.rotate == 270) && 
27926                 (
27927                     width < this.minHeight || 
27928                     width > this.imageEl.OriginWidth || 
27929                     height < this.minWidth || 
27930                     height > this.imageEl.OriginHeight
27931                 )
27932         ){
27933             return false;
27934         }
27935         
27936         return true;
27937         
27938     },
27939     
27940     onRotateLeft : function(e)
27941     {   
27942         if(!this.isDocument && (this.canvasEl.height < this.thumbEl.getWidth() || this.canvasEl.width < this.thumbEl.getHeight())){
27943             
27944             var minScale = this.thumbEl.getWidth() / this.minWidth;
27945             
27946             var bw = Math.ceil(this.canvasEl.width / this.getScaleLevel());
27947             var bh = Math.ceil(this.canvasEl.height / this.getScaleLevel());
27948             
27949             this.startScale = this.scale;
27950             
27951             while (this.getScaleLevel() < minScale){
27952             
27953                 this.scale = this.scale + 1;
27954                 
27955                 if(!this.zoomable()){
27956                     break;
27957                 }
27958                 
27959                 if(
27960                         Math.ceil(bw * this.getScaleLevel()) < this.thumbEl.getHeight() ||
27961                         Math.ceil(bh * this.getScaleLevel()) < this.thumbEl.getWidth()
27962                 ){
27963                     continue;
27964                 }
27965                 
27966                 this.rotate = (this.rotate < 90) ? 270 : this.rotate - 90;
27967
27968                 this.draw();
27969                 
27970                 return;
27971             }
27972             
27973             this.scale = this.startScale;
27974             
27975             this.onRotateFail();
27976             
27977             return false;
27978         }
27979         
27980         this.rotate = (this.rotate < 90) ? 270 : this.rotate - 90;
27981
27982         if(this.isDocument){
27983             this.setThumbBoxSize();
27984             this.setThumbBoxPosition();
27985             this.setCanvasPosition();
27986         }
27987         
27988         this.draw();
27989         
27990         this.fireEvent('rotate', this, 'left');
27991         
27992     },
27993     
27994     onRotateRight : function(e)
27995     {
27996         if(!this.isDocument && (this.canvasEl.height < this.thumbEl.getWidth() || this.canvasEl.width < this.thumbEl.getHeight())){
27997             
27998             var minScale = this.thumbEl.getWidth() / this.minWidth;
27999         
28000             var bw = Math.ceil(this.canvasEl.width / this.getScaleLevel());
28001             var bh = Math.ceil(this.canvasEl.height / this.getScaleLevel());
28002             
28003             this.startScale = this.scale;
28004             
28005             while (this.getScaleLevel() < minScale){
28006             
28007                 this.scale = this.scale + 1;
28008                 
28009                 if(!this.zoomable()){
28010                     break;
28011                 }
28012                 
28013                 if(
28014                         Math.ceil(bw * this.getScaleLevel()) < this.thumbEl.getHeight() ||
28015                         Math.ceil(bh * this.getScaleLevel()) < this.thumbEl.getWidth()
28016                 ){
28017                     continue;
28018                 }
28019                 
28020                 this.rotate = (this.rotate > 180) ? 0 : this.rotate + 90;
28021
28022                 this.draw();
28023                 
28024                 return;
28025             }
28026             
28027             this.scale = this.startScale;
28028             
28029             this.onRotateFail();
28030             
28031             return false;
28032         }
28033         
28034         this.rotate = (this.rotate > 180) ? 0 : this.rotate + 90;
28035
28036         if(this.isDocument){
28037             this.setThumbBoxSize();
28038             this.setThumbBoxPosition();
28039             this.setCanvasPosition();
28040         }
28041         
28042         this.draw();
28043         
28044         this.fireEvent('rotate', this, 'right');
28045     },
28046     
28047     onRotateFail : function()
28048     {
28049         this.errorEl.show(true);
28050         
28051         var _this = this;
28052         
28053         (function() { _this.errorEl.hide(true); }).defer(this.errorTimeout);
28054     },
28055     
28056     draw : function()
28057     {
28058         this.previewEl.dom.innerHTML = '';
28059         
28060         var canvasEl = document.createElement("canvas");
28061         
28062         var contextEl = canvasEl.getContext("2d");
28063         
28064         canvasEl.width = this.imageEl.OriginWidth * this.getScaleLevel();
28065         canvasEl.height = this.imageEl.OriginWidth * this.getScaleLevel();
28066         var center = this.imageEl.OriginWidth / 2;
28067         
28068         if(this.imageEl.OriginWidth < this.imageEl.OriginHeight){
28069             canvasEl.width = this.imageEl.OriginHeight * this.getScaleLevel();
28070             canvasEl.height = this.imageEl.OriginHeight * this.getScaleLevel();
28071             center = this.imageEl.OriginHeight / 2;
28072         }
28073         
28074         contextEl.scale(this.getScaleLevel(), this.getScaleLevel());
28075         
28076         contextEl.translate(center, center);
28077         contextEl.rotate(this.rotate * Math.PI / 180);
28078
28079         contextEl.drawImage(this.imageEl, 0, 0, this.imageEl.OriginWidth, this.imageEl.OriginHeight, center * -1, center * -1, this.imageEl.OriginWidth, this.imageEl.OriginHeight);
28080         
28081         this.canvasEl = document.createElement("canvas");
28082         
28083         this.contextEl = this.canvasEl.getContext("2d");
28084         
28085         switch (this.rotate) {
28086             case 0 :
28087                 
28088                 this.canvasEl.width = this.imageEl.OriginWidth * this.getScaleLevel();
28089                 this.canvasEl.height = this.imageEl.OriginHeight * this.getScaleLevel();
28090                 
28091                 this.contextEl.drawImage(canvasEl, 0, 0, this.canvasEl.width, this.canvasEl.height, 0, 0, this.canvasEl.width, this.canvasEl.height);
28092                 
28093                 break;
28094             case 90 : 
28095                 
28096                 this.canvasEl.width = this.imageEl.OriginHeight * this.getScaleLevel();
28097                 this.canvasEl.height = this.imageEl.OriginWidth * this.getScaleLevel();
28098                 
28099                 if(this.imageEl.OriginWidth > this.imageEl.OriginHeight){
28100                     this.contextEl.drawImage(canvasEl, Math.abs(this.canvasEl.width - this.canvasEl.height), 0, this.canvasEl.width, this.canvasEl.height, 0, 0, this.canvasEl.width, this.canvasEl.height);
28101                     break;
28102                 }
28103                 
28104                 this.contextEl.drawImage(canvasEl, 0, 0, this.canvasEl.width, this.canvasEl.height, 0, 0, this.canvasEl.width, this.canvasEl.height);
28105                 
28106                 break;
28107             case 180 :
28108                 
28109                 this.canvasEl.width = this.imageEl.OriginWidth * this.getScaleLevel();
28110                 this.canvasEl.height = this.imageEl.OriginHeight * this.getScaleLevel();
28111                 
28112                 if(this.imageEl.OriginWidth > this.imageEl.OriginHeight){
28113                     this.contextEl.drawImage(canvasEl, 0, Math.abs(this.canvasEl.width - this.canvasEl.height), this.canvasEl.width, this.canvasEl.height, 0, 0, this.canvasEl.width, this.canvasEl.height);
28114                     break;
28115                 }
28116                 
28117                 this.contextEl.drawImage(canvasEl, Math.abs(this.canvasEl.width - this.canvasEl.height), 0, this.canvasEl.width, this.canvasEl.height, 0, 0, this.canvasEl.width, this.canvasEl.height);
28118                 
28119                 break;
28120             case 270 :
28121                 
28122                 this.canvasEl.width = this.imageEl.OriginHeight * this.getScaleLevel();
28123                 this.canvasEl.height = this.imageEl.OriginWidth * this.getScaleLevel();
28124         
28125                 if(this.imageEl.OriginWidth > this.imageEl.OriginHeight){
28126                     this.contextEl.drawImage(canvasEl, 0, 0, this.canvasEl.width, this.canvasEl.height, 0, 0, this.canvasEl.width, this.canvasEl.height);
28127                     break;
28128                 }
28129                 
28130                 this.contextEl.drawImage(canvasEl, 0, Math.abs(this.canvasEl.width - this.canvasEl.height), this.canvasEl.width, this.canvasEl.height, 0, 0, this.canvasEl.width, this.canvasEl.height);
28131                 
28132                 break;
28133             default : 
28134                 break;
28135         }
28136         
28137         this.previewEl.appendChild(this.canvasEl);
28138         
28139         this.setCanvasPosition();
28140     },
28141     
28142     crop : function()
28143     {
28144         if(!this.canvasLoaded){
28145             return;
28146         }
28147         
28148         var imageCanvas = document.createElement("canvas");
28149         
28150         var imageContext = imageCanvas.getContext("2d");
28151         
28152         imageCanvas.width = (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? this.imageEl.OriginWidth : this.imageEl.OriginHeight;
28153         imageCanvas.height = (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? this.imageEl.OriginWidth : this.imageEl.OriginHeight;
28154         
28155         var center = imageCanvas.width / 2;
28156         
28157         imageContext.translate(center, center);
28158         
28159         imageContext.rotate(this.rotate * Math.PI / 180);
28160         
28161         imageContext.drawImage(this.imageEl, 0, 0, this.imageEl.OriginWidth, this.imageEl.OriginHeight, center * -1, center * -1, this.imageEl.OriginWidth, this.imageEl.OriginHeight);
28162         
28163         var canvas = document.createElement("canvas");
28164         
28165         var context = canvas.getContext("2d");
28166                 
28167         canvas.width = this.minWidth;
28168         canvas.height = this.minHeight;
28169
28170         switch (this.rotate) {
28171             case 0 :
28172                 
28173                 var width = (this.thumbEl.getWidth() / this.getScaleLevel() > this.imageEl.OriginWidth) ? this.imageEl.OriginWidth : (this.thumbEl.getWidth() / this.getScaleLevel());
28174                 var height = (this.thumbEl.getHeight() / this.getScaleLevel() > this.imageEl.OriginHeight) ? this.imageEl.OriginHeight : (this.thumbEl.getHeight() / this.getScaleLevel());
28175                 
28176                 var x = (this.thumbEl.getLeft(true) > this.previewEl.getLeft(true)) ? 0 : ((this.previewEl.getLeft(true) - this.thumbEl.getLeft(true)) / this.getScaleLevel());
28177                 var y = (this.thumbEl.getTop(true) > this.previewEl.getTop(true)) ? 0 : ((this.previewEl.getTop(true) - this.thumbEl.getTop(true)) / this.getScaleLevel());
28178                 
28179                 var targetWidth = this.minWidth - 2 * x;
28180                 var targetHeight = this.minHeight - 2 * y;
28181                 
28182                 var scale = 1;
28183                 
28184                 if((x == 0 && y == 0) || (x == 0 && y > 0)){
28185                     scale = targetWidth / width;
28186                 }
28187                 
28188                 if(x > 0 && y == 0){
28189                     scale = targetHeight / height;
28190                 }
28191                 
28192                 if(x > 0 && y > 0){
28193                     scale = targetWidth / width;
28194                     
28195                     if(width < height){
28196                         scale = targetHeight / height;
28197                     }
28198                 }
28199                 
28200                 context.scale(scale, scale);
28201                 
28202                 var sx = Math.min(this.canvasEl.width - this.thumbEl.getWidth(), this.thumbEl.getLeft(true) - this.previewEl.getLeft(true));
28203                 var sy = Math.min(this.canvasEl.height - this.thumbEl.getHeight(), this.thumbEl.getTop(true) - this.previewEl.getTop(true));
28204
28205                 sx = sx < 0 ? 0 : (sx / this.getScaleLevel());
28206                 sy = sy < 0 ? 0 : (sy / this.getScaleLevel());
28207
28208                 context.drawImage(imageCanvas, sx, sy, width, height, x, y, width, height);
28209                 
28210                 break;
28211             case 90 : 
28212                 
28213                 var width = (this.thumbEl.getWidth() / this.getScaleLevel() > this.imageEl.OriginHeight) ? this.imageEl.OriginHeight : (this.thumbEl.getWidth() / this.getScaleLevel());
28214                 var height = (this.thumbEl.getHeight() / this.getScaleLevel() > this.imageEl.OriginWidth) ? this.imageEl.OriginWidth : (this.thumbEl.getHeight() / this.getScaleLevel());
28215                 
28216                 var x = (this.thumbEl.getLeft(true) > this.previewEl.getLeft(true)) ? 0 : ((this.previewEl.getLeft(true) - this.thumbEl.getLeft(true)) / this.getScaleLevel());
28217                 var y = (this.thumbEl.getTop(true) > this.previewEl.getTop(true)) ? 0 : ((this.previewEl.getTop(true) - this.thumbEl.getTop(true)) / this.getScaleLevel());
28218                 
28219                 var targetWidth = this.minWidth - 2 * x;
28220                 var targetHeight = this.minHeight - 2 * y;
28221                 
28222                 var scale = 1;
28223                 
28224                 if((x == 0 && y == 0) || (x == 0 && y > 0)){
28225                     scale = targetWidth / width;
28226                 }
28227                 
28228                 if(x > 0 && y == 0){
28229                     scale = targetHeight / height;
28230                 }
28231                 
28232                 if(x > 0 && y > 0){
28233                     scale = targetWidth / width;
28234                     
28235                     if(width < height){
28236                         scale = targetHeight / height;
28237                     }
28238                 }
28239                 
28240                 context.scale(scale, scale);
28241                 
28242                 var sx = Math.min(this.canvasEl.width - this.thumbEl.getWidth(), this.thumbEl.getLeft(true) - this.previewEl.getLeft(true));
28243                 var sy = Math.min(this.canvasEl.height - this.thumbEl.getHeight(), this.thumbEl.getTop(true) - this.previewEl.getTop(true));
28244
28245                 sx = sx < 0 ? 0 : (sx / this.getScaleLevel());
28246                 sy = sy < 0 ? 0 : (sy / this.getScaleLevel());
28247                 
28248                 sx += (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? Math.abs(this.imageEl.OriginWidth - this.imageEl.OriginHeight) : 0;
28249                 
28250                 context.drawImage(imageCanvas, sx, sy, width, height, x, y, width, height);
28251                 
28252                 break;
28253             case 180 :
28254                 
28255                 var width = (this.thumbEl.getWidth() / this.getScaleLevel() > this.imageEl.OriginWidth) ? this.imageEl.OriginWidth : (this.thumbEl.getWidth() / this.getScaleLevel());
28256                 var height = (this.thumbEl.getHeight() / this.getScaleLevel() > this.imageEl.OriginHeight) ? this.imageEl.OriginHeight : (this.thumbEl.getHeight() / this.getScaleLevel());
28257                 
28258                 var x = (this.thumbEl.getLeft(true) > this.previewEl.getLeft(true)) ? 0 : ((this.previewEl.getLeft(true) - this.thumbEl.getLeft(true)) / this.getScaleLevel());
28259                 var y = (this.thumbEl.getTop(true) > this.previewEl.getTop(true)) ? 0 : ((this.previewEl.getTop(true) - this.thumbEl.getTop(true)) / this.getScaleLevel());
28260                 
28261                 var targetWidth = this.minWidth - 2 * x;
28262                 var targetHeight = this.minHeight - 2 * y;
28263                 
28264                 var scale = 1;
28265                 
28266                 if((x == 0 && y == 0) || (x == 0 && y > 0)){
28267                     scale = targetWidth / width;
28268                 }
28269                 
28270                 if(x > 0 && y == 0){
28271                     scale = targetHeight / height;
28272                 }
28273                 
28274                 if(x > 0 && y > 0){
28275                     scale = targetWidth / width;
28276                     
28277                     if(width < height){
28278                         scale = targetHeight / height;
28279                     }
28280                 }
28281                 
28282                 context.scale(scale, scale);
28283                 
28284                 var sx = Math.min(this.canvasEl.width - this.thumbEl.getWidth(), this.thumbEl.getLeft(true) - this.previewEl.getLeft(true));
28285                 var sy = Math.min(this.canvasEl.height - this.thumbEl.getHeight(), this.thumbEl.getTop(true) - this.previewEl.getTop(true));
28286
28287                 sx = sx < 0 ? 0 : (sx / this.getScaleLevel());
28288                 sy = sy < 0 ? 0 : (sy / this.getScaleLevel());
28289
28290                 sx += (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? 0 : Math.abs(this.imageEl.OriginWidth - this.imageEl.OriginHeight);
28291                 sy += (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? Math.abs(this.imageEl.OriginWidth - this.imageEl.OriginHeight) : 0;
28292                 
28293                 context.drawImage(imageCanvas, sx, sy, width, height, x, y, width, height);
28294                 
28295                 break;
28296             case 270 :
28297                 
28298                 var width = (this.thumbEl.getWidth() / this.getScaleLevel() > this.imageEl.OriginHeight) ? this.imageEl.OriginHeight : (this.thumbEl.getWidth() / this.getScaleLevel());
28299                 var height = (this.thumbEl.getHeight() / this.getScaleLevel() > this.imageEl.OriginWidth) ? this.imageEl.OriginWidth : (this.thumbEl.getHeight() / this.getScaleLevel());
28300                 
28301                 var x = (this.thumbEl.getLeft(true) > this.previewEl.getLeft(true)) ? 0 : ((this.previewEl.getLeft(true) - this.thumbEl.getLeft(true)) / this.getScaleLevel());
28302                 var y = (this.thumbEl.getTop(true) > this.previewEl.getTop(true)) ? 0 : ((this.previewEl.getTop(true) - this.thumbEl.getTop(true)) / this.getScaleLevel());
28303                 
28304                 var targetWidth = this.minWidth - 2 * x;
28305                 var targetHeight = this.minHeight - 2 * y;
28306                 
28307                 var scale = 1;
28308                 
28309                 if((x == 0 && y == 0) || (x == 0 && y > 0)){
28310                     scale = targetWidth / width;
28311                 }
28312                 
28313                 if(x > 0 && y == 0){
28314                     scale = targetHeight / height;
28315                 }
28316                 
28317                 if(x > 0 && y > 0){
28318                     scale = targetWidth / width;
28319                     
28320                     if(width < height){
28321                         scale = targetHeight / height;
28322                     }
28323                 }
28324                 
28325                 context.scale(scale, scale);
28326                 
28327                 var sx = Math.min(this.canvasEl.width - this.thumbEl.getWidth(), this.thumbEl.getLeft(true) - this.previewEl.getLeft(true));
28328                 var sy = Math.min(this.canvasEl.height - this.thumbEl.getHeight(), this.thumbEl.getTop(true) - this.previewEl.getTop(true));
28329
28330                 sx = sx < 0 ? 0 : (sx / this.getScaleLevel());
28331                 sy = sy < 0 ? 0 : (sy / this.getScaleLevel());
28332                 
28333                 sy += (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? 0 : Math.abs(this.imageEl.OriginWidth - this.imageEl.OriginHeight);
28334                 
28335                 context.drawImage(imageCanvas, sx, sy, width, height, x, y, width, height);
28336                 
28337                 break;
28338             default : 
28339                 break;
28340         }
28341         
28342         this.cropData = canvas.toDataURL(this.cropType);
28343         
28344         if(this.fireEvent('crop', this, this.cropData) !== false){
28345             this.process(this.file, this.cropData);
28346         }
28347         
28348         return;
28349         
28350     },
28351     
28352     setThumbBoxSize : function()
28353     {
28354         var width, height;
28355         
28356         if(this.isDocument && typeof(this.imageEl) != 'undefined'){
28357             width = (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? Math.max(this.minWidth, this.minHeight) : Math.min(this.minWidth, this.minHeight);
28358             height = (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? Math.min(this.minWidth, this.minHeight) : Math.max(this.minWidth, this.minHeight);
28359             
28360             this.minWidth = width;
28361             this.minHeight = height;
28362             
28363             if(this.rotate == 90 || this.rotate == 270){
28364                 this.minWidth = height;
28365                 this.minHeight = width;
28366             }
28367         }
28368         
28369         height = 300;
28370         width = Math.ceil(this.minWidth * height / this.minHeight);
28371         
28372         if(this.minWidth > this.minHeight){
28373             width = 300;
28374             height = Math.ceil(this.minHeight * width / this.minWidth);
28375         }
28376         
28377         this.thumbEl.setStyle({
28378             width : width + 'px',
28379             height : height + 'px'
28380         });
28381
28382         return;
28383             
28384     },
28385     
28386     setThumbBoxPosition : function()
28387     {
28388         var x = Math.ceil((this.bodyEl.getWidth() - this.thumbEl.getWidth()) / 2 );
28389         var y = Math.ceil((this.bodyEl.getHeight() - this.thumbEl.getHeight()) / 2);
28390         
28391         this.thumbEl.setLeft(x);
28392         this.thumbEl.setTop(y);
28393         
28394     },
28395     
28396     baseRotateLevel : function()
28397     {
28398         this.baseRotate = 1;
28399         
28400         if(
28401                 typeof(this.exif) != 'undefined' &&
28402                 typeof(this.exif[Roo.bootstrap.UploadCropbox['tags']['Orientation']]) != 'undefined' &&
28403                 [1, 3, 6, 8].indexOf(this.exif[Roo.bootstrap.UploadCropbox['tags']['Orientation']]) != -1
28404         ){
28405             this.baseRotate = this.exif[Roo.bootstrap.UploadCropbox['tags']['Orientation']];
28406         }
28407         
28408         this.rotate = Roo.bootstrap.UploadCropbox['Orientation'][this.baseRotate];
28409         
28410     },
28411     
28412     baseScaleLevel : function()
28413     {
28414         var width, height;
28415         
28416         if(this.isDocument){
28417             
28418             if(this.baseRotate == 6 || this.baseRotate == 8){
28419             
28420                 height = this.thumbEl.getHeight();
28421                 this.baseScale = height / this.imageEl.OriginWidth;
28422
28423                 if(this.imageEl.OriginHeight * this.baseScale > this.thumbEl.getWidth()){
28424                     width = this.thumbEl.getWidth();
28425                     this.baseScale = width / this.imageEl.OriginHeight;
28426                 }
28427
28428                 return;
28429             }
28430
28431             height = this.thumbEl.getHeight();
28432             this.baseScale = height / this.imageEl.OriginHeight;
28433
28434             if(this.imageEl.OriginWidth * this.baseScale > this.thumbEl.getWidth()){
28435                 width = this.thumbEl.getWidth();
28436                 this.baseScale = width / this.imageEl.OriginWidth;
28437             }
28438
28439             return;
28440         }
28441         
28442         if(this.baseRotate == 6 || this.baseRotate == 8){
28443             
28444             width = this.thumbEl.getHeight();
28445             this.baseScale = width / this.imageEl.OriginHeight;
28446             
28447             if(this.imageEl.OriginHeight * this.baseScale < this.thumbEl.getWidth()){
28448                 height = this.thumbEl.getWidth();
28449                 this.baseScale = height / this.imageEl.OriginHeight;
28450             }
28451             
28452             if(this.imageEl.OriginWidth > this.imageEl.OriginHeight){
28453                 height = this.thumbEl.getWidth();
28454                 this.baseScale = height / this.imageEl.OriginHeight;
28455                 
28456                 if(this.imageEl.OriginWidth * this.baseScale < this.thumbEl.getHeight()){
28457                     width = this.thumbEl.getHeight();
28458                     this.baseScale = width / this.imageEl.OriginWidth;
28459                 }
28460             }
28461             
28462             return;
28463         }
28464         
28465         width = this.thumbEl.getWidth();
28466         this.baseScale = width / this.imageEl.OriginWidth;
28467         
28468         if(this.imageEl.OriginHeight * this.baseScale < this.thumbEl.getHeight()){
28469             height = this.thumbEl.getHeight();
28470             this.baseScale = height / this.imageEl.OriginHeight;
28471         }
28472         
28473         if(this.imageEl.OriginWidth > this.imageEl.OriginHeight){
28474             
28475             height = this.thumbEl.getHeight();
28476             this.baseScale = height / this.imageEl.OriginHeight;
28477             
28478             if(this.imageEl.OriginWidth * this.baseScale < this.thumbEl.getWidth()){
28479                 width = this.thumbEl.getWidth();
28480                 this.baseScale = width / this.imageEl.OriginWidth;
28481             }
28482             
28483         }
28484         
28485         return;
28486     },
28487     
28488     getScaleLevel : function()
28489     {
28490         return this.baseScale * Math.pow(1.1, this.scale);
28491     },
28492     
28493     onTouchStart : function(e)
28494     {
28495         if(!this.canvasLoaded){
28496             this.beforeSelectFile(e);
28497             return;
28498         }
28499         
28500         var touches = e.browserEvent.touches;
28501         
28502         if(!touches){
28503             return;
28504         }
28505         
28506         if(touches.length == 1){
28507             this.onMouseDown(e);
28508             return;
28509         }
28510         
28511         if(touches.length != 2){
28512             return;
28513         }
28514         
28515         var coords = [];
28516         
28517         for(var i = 0, finger; finger = touches[i]; i++){
28518             coords.push(finger.pageX, finger.pageY);
28519         }
28520         
28521         var x = Math.pow(coords[0] - coords[2], 2);
28522         var y = Math.pow(coords[1] - coords[3], 2);
28523         
28524         this.startDistance = Math.sqrt(x + y);
28525         
28526         this.startScale = this.scale;
28527         
28528         this.pinching = true;
28529         this.dragable = false;
28530         
28531     },
28532     
28533     onTouchMove : function(e)
28534     {
28535         if(!this.pinching && !this.dragable){
28536             return;
28537         }
28538         
28539         var touches = e.browserEvent.touches;
28540         
28541         if(!touches){
28542             return;
28543         }
28544         
28545         if(this.dragable){
28546             this.onMouseMove(e);
28547             return;
28548         }
28549         
28550         var coords = [];
28551         
28552         for(var i = 0, finger; finger = touches[i]; i++){
28553             coords.push(finger.pageX, finger.pageY);
28554         }
28555         
28556         var x = Math.pow(coords[0] - coords[2], 2);
28557         var y = Math.pow(coords[1] - coords[3], 2);
28558         
28559         this.endDistance = Math.sqrt(x + y);
28560         
28561         this.scale = this.startScale + Math.floor(Math.log(this.endDistance / this.startDistance) / Math.log(1.1));
28562         
28563         if(!this.zoomable()){
28564             this.scale = this.startScale;
28565             return;
28566         }
28567         
28568         this.draw();
28569         
28570     },
28571     
28572     onTouchEnd : function(e)
28573     {
28574         this.pinching = false;
28575         this.dragable = false;
28576         
28577     },
28578     
28579     process : function(file, crop)
28580     {
28581         if(this.loadMask){
28582             this.maskEl.mask(this.loadingText);
28583         }
28584         
28585         this.xhr = new XMLHttpRequest();
28586         
28587         file.xhr = this.xhr;
28588
28589         this.xhr.open(this.method, this.url, true);
28590         
28591         var headers = {
28592             "Accept": "application/json",
28593             "Cache-Control": "no-cache",
28594             "X-Requested-With": "XMLHttpRequest"
28595         };
28596         
28597         for (var headerName in headers) {
28598             var headerValue = headers[headerName];
28599             if (headerValue) {
28600                 this.xhr.setRequestHeader(headerName, headerValue);
28601             }
28602         }
28603         
28604         var _this = this;
28605         
28606         this.xhr.onload = function()
28607         {
28608             _this.xhrOnLoad(_this.xhr);
28609         }
28610         
28611         this.xhr.onerror = function()
28612         {
28613             _this.xhrOnError(_this.xhr);
28614         }
28615         
28616         var formData = new FormData();
28617
28618         formData.append('returnHTML', 'NO');
28619         
28620         if(crop){
28621             formData.append('crop', crop);
28622         }
28623         
28624         if(typeof(file) != 'undefined' && (typeof(file.id) == 'undefined' || file.id * 1 < 1)){
28625             formData.append(this.paramName, file, file.name);
28626         }
28627         
28628         if(typeof(file.filename) != 'undefined'){
28629             formData.append('filename', file.filename);
28630         }
28631         
28632         if(typeof(file.mimetype) != 'undefined'){
28633             formData.append('mimetype', file.mimetype);
28634         }
28635         
28636         if(this.fireEvent('arrange', this, formData) != false){
28637             this.xhr.send(formData);
28638         };
28639     },
28640     
28641     xhrOnLoad : function(xhr)
28642     {
28643         if(this.loadMask){
28644             this.maskEl.unmask();
28645         }
28646         
28647         if (xhr.readyState !== 4) {
28648             this.fireEvent('exception', this, xhr);
28649             return;
28650         }
28651
28652         var response = Roo.decode(xhr.responseText);
28653         
28654         if(!response.success){
28655             this.fireEvent('exception', this, xhr);
28656             return;
28657         }
28658         
28659         var response = Roo.decode(xhr.responseText);
28660         
28661         this.fireEvent('upload', this, response);
28662         
28663     },
28664     
28665     xhrOnError : function()
28666     {
28667         if(this.loadMask){
28668             this.maskEl.unmask();
28669         }
28670         
28671         Roo.log('xhr on error');
28672         
28673         var response = Roo.decode(xhr.responseText);
28674           
28675         Roo.log(response);
28676         
28677     },
28678     
28679     prepare : function(file)
28680     {   
28681         if(this.loadMask){
28682             this.maskEl.mask(this.loadingText);
28683         }
28684         
28685         this.file = false;
28686         this.exif = {};
28687         
28688         if(typeof(file) === 'string'){
28689             this.loadCanvas(file);
28690             return;
28691         }
28692         
28693         if(!file || !this.urlAPI){
28694             return;
28695         }
28696         
28697         this.file = file;
28698         this.cropType = file.type;
28699         
28700         var _this = this;
28701         
28702         if(this.fireEvent('prepare', this, this.file) != false){
28703             
28704             var reader = new FileReader();
28705             
28706             reader.onload = function (e) {
28707                 if (e.target.error) {
28708                     Roo.log(e.target.error);
28709                     return;
28710                 }
28711                 
28712                 var buffer = e.target.result,
28713                     dataView = new DataView(buffer),
28714                     offset = 2,
28715                     maxOffset = dataView.byteLength - 4,
28716                     markerBytes,
28717                     markerLength;
28718                 
28719                 if (dataView.getUint16(0) === 0xffd8) {
28720                     while (offset < maxOffset) {
28721                         markerBytes = dataView.getUint16(offset);
28722                         
28723                         if ((markerBytes >= 0xffe0 && markerBytes <= 0xffef) || markerBytes === 0xfffe) {
28724                             markerLength = dataView.getUint16(offset + 2) + 2;
28725                             if (offset + markerLength > dataView.byteLength) {
28726                                 Roo.log('Invalid meta data: Invalid segment size.');
28727                                 break;
28728                             }
28729                             
28730                             if(markerBytes == 0xffe1){
28731                                 _this.parseExifData(
28732                                     dataView,
28733                                     offset,
28734                                     markerLength
28735                                 );
28736                             }
28737                             
28738                             offset += markerLength;
28739                             
28740                             continue;
28741                         }
28742                         
28743                         break;
28744                     }
28745                     
28746                 }
28747                 
28748                 var url = _this.urlAPI.createObjectURL(_this.file);
28749                 
28750                 _this.loadCanvas(url);
28751                 
28752                 return;
28753             }
28754             
28755             reader.readAsArrayBuffer(this.file);
28756             
28757         }
28758         
28759     },
28760     
28761     parseExifData : function(dataView, offset, length)
28762     {
28763         var tiffOffset = offset + 10,
28764             littleEndian,
28765             dirOffset;
28766     
28767         if (dataView.getUint32(offset + 4) !== 0x45786966) {
28768             // No Exif data, might be XMP data instead
28769             return;
28770         }
28771         
28772         // Check for the ASCII code for "Exif" (0x45786966):
28773         if (dataView.getUint32(offset + 4) !== 0x45786966) {
28774             // No Exif data, might be XMP data instead
28775             return;
28776         }
28777         if (tiffOffset + 8 > dataView.byteLength) {
28778             Roo.log('Invalid Exif data: Invalid segment size.');
28779             return;
28780         }
28781         // Check for the two null bytes:
28782         if (dataView.getUint16(offset + 8) !== 0x0000) {
28783             Roo.log('Invalid Exif data: Missing byte alignment offset.');
28784             return;
28785         }
28786         // Check the byte alignment:
28787         switch (dataView.getUint16(tiffOffset)) {
28788         case 0x4949:
28789             littleEndian = true;
28790             break;
28791         case 0x4D4D:
28792             littleEndian = false;
28793             break;
28794         default:
28795             Roo.log('Invalid Exif data: Invalid byte alignment marker.');
28796             return;
28797         }
28798         // Check for the TIFF tag marker (0x002A):
28799         if (dataView.getUint16(tiffOffset + 2, littleEndian) !== 0x002A) {
28800             Roo.log('Invalid Exif data: Missing TIFF marker.');
28801             return;
28802         }
28803         // Retrieve the directory offset bytes, usually 0x00000008 or 8 decimal:
28804         dirOffset = dataView.getUint32(tiffOffset + 4, littleEndian);
28805         
28806         this.parseExifTags(
28807             dataView,
28808             tiffOffset,
28809             tiffOffset + dirOffset,
28810             littleEndian
28811         );
28812     },
28813     
28814     parseExifTags : function(dataView, tiffOffset, dirOffset, littleEndian)
28815     {
28816         var tagsNumber,
28817             dirEndOffset,
28818             i;
28819         if (dirOffset + 6 > dataView.byteLength) {
28820             Roo.log('Invalid Exif data: Invalid directory offset.');
28821             return;
28822         }
28823         tagsNumber = dataView.getUint16(dirOffset, littleEndian);
28824         dirEndOffset = dirOffset + 2 + 12 * tagsNumber;
28825         if (dirEndOffset + 4 > dataView.byteLength) {
28826             Roo.log('Invalid Exif data: Invalid directory size.');
28827             return;
28828         }
28829         for (i = 0; i < tagsNumber; i += 1) {
28830             this.parseExifTag(
28831                 dataView,
28832                 tiffOffset,
28833                 dirOffset + 2 + 12 * i, // tag offset
28834                 littleEndian
28835             );
28836         }
28837         // Return the offset to the next directory:
28838         return dataView.getUint32(dirEndOffset, littleEndian);
28839     },
28840     
28841     parseExifTag : function (dataView, tiffOffset, offset, littleEndian) 
28842     {
28843         var tag = dataView.getUint16(offset, littleEndian);
28844         
28845         this.exif[tag] = this.getExifValue(
28846             dataView,
28847             tiffOffset,
28848             offset,
28849             dataView.getUint16(offset + 2, littleEndian), // tag type
28850             dataView.getUint32(offset + 4, littleEndian), // tag length
28851             littleEndian
28852         );
28853     },
28854     
28855     getExifValue : function (dataView, tiffOffset, offset, type, length, littleEndian)
28856     {
28857         var tagType = Roo.bootstrap.UploadCropbox.exifTagTypes[type],
28858             tagSize,
28859             dataOffset,
28860             values,
28861             i,
28862             str,
28863             c;
28864     
28865         if (!tagType) {
28866             Roo.log('Invalid Exif data: Invalid tag type.');
28867             return;
28868         }
28869         
28870         tagSize = tagType.size * length;
28871         // Determine if the value is contained in the dataOffset bytes,
28872         // or if the value at the dataOffset is a pointer to the actual data:
28873         dataOffset = tagSize > 4 ?
28874                 tiffOffset + dataView.getUint32(offset + 8, littleEndian) : (offset + 8);
28875         if (dataOffset + tagSize > dataView.byteLength) {
28876             Roo.log('Invalid Exif data: Invalid data offset.');
28877             return;
28878         }
28879         if (length === 1) {
28880             return tagType.getValue(dataView, dataOffset, littleEndian);
28881         }
28882         values = [];
28883         for (i = 0; i < length; i += 1) {
28884             values[i] = tagType.getValue(dataView, dataOffset + i * tagType.size, littleEndian);
28885         }
28886         
28887         if (tagType.ascii) {
28888             str = '';
28889             // Concatenate the chars:
28890             for (i = 0; i < values.length; i += 1) {
28891                 c = values[i];
28892                 // Ignore the terminating NULL byte(s):
28893                 if (c === '\u0000') {
28894                     break;
28895                 }
28896                 str += c;
28897             }
28898             return str;
28899         }
28900         return values;
28901     }
28902     
28903 });
28904
28905 Roo.apply(Roo.bootstrap.UploadCropbox, {
28906     tags : {
28907         'Orientation': 0x0112
28908     },
28909     
28910     Orientation: {
28911             1: 0, //'top-left',
28912 //            2: 'top-right',
28913             3: 180, //'bottom-right',
28914 //            4: 'bottom-left',
28915 //            5: 'left-top',
28916             6: 90, //'right-top',
28917 //            7: 'right-bottom',
28918             8: 270 //'left-bottom'
28919     },
28920     
28921     exifTagTypes : {
28922         // byte, 8-bit unsigned int:
28923         1: {
28924             getValue: function (dataView, dataOffset) {
28925                 return dataView.getUint8(dataOffset);
28926             },
28927             size: 1
28928         },
28929         // ascii, 8-bit byte:
28930         2: {
28931             getValue: function (dataView, dataOffset) {
28932                 return String.fromCharCode(dataView.getUint8(dataOffset));
28933             },
28934             size: 1,
28935             ascii: true
28936         },
28937         // short, 16 bit int:
28938         3: {
28939             getValue: function (dataView, dataOffset, littleEndian) {
28940                 return dataView.getUint16(dataOffset, littleEndian);
28941             },
28942             size: 2
28943         },
28944         // long, 32 bit int:
28945         4: {
28946             getValue: function (dataView, dataOffset, littleEndian) {
28947                 return dataView.getUint32(dataOffset, littleEndian);
28948             },
28949             size: 4
28950         },
28951         // rational = two long values, first is numerator, second is denominator:
28952         5: {
28953             getValue: function (dataView, dataOffset, littleEndian) {
28954                 return dataView.getUint32(dataOffset, littleEndian) /
28955                     dataView.getUint32(dataOffset + 4, littleEndian);
28956             },
28957             size: 8
28958         },
28959         // slong, 32 bit signed int:
28960         9: {
28961             getValue: function (dataView, dataOffset, littleEndian) {
28962                 return dataView.getInt32(dataOffset, littleEndian);
28963             },
28964             size: 4
28965         },
28966         // srational, two slongs, first is numerator, second is denominator:
28967         10: {
28968             getValue: function (dataView, dataOffset, littleEndian) {
28969                 return dataView.getInt32(dataOffset, littleEndian) /
28970                     dataView.getInt32(dataOffset + 4, littleEndian);
28971             },
28972             size: 8
28973         }
28974     },
28975     
28976     footer : {
28977         STANDARD : [
28978             {
28979                 tag : 'div',
28980                 cls : 'btn-group roo-upload-cropbox-rotate-left',
28981                 action : 'rotate-left',
28982                 cn : [
28983                     {
28984                         tag : 'button',
28985                         cls : 'btn btn-default',
28986                         html : '<i class="fa fa-undo"></i>'
28987                     }
28988                 ]
28989             },
28990             {
28991                 tag : 'div',
28992                 cls : 'btn-group roo-upload-cropbox-picture',
28993                 action : 'picture',
28994                 cn : [
28995                     {
28996                         tag : 'button',
28997                         cls : 'btn btn-default',
28998                         html : '<i class="fa fa-picture-o"></i>'
28999                     }
29000                 ]
29001             },
29002             {
29003                 tag : 'div',
29004                 cls : 'btn-group roo-upload-cropbox-rotate-right',
29005                 action : 'rotate-right',
29006                 cn : [
29007                     {
29008                         tag : 'button',
29009                         cls : 'btn btn-default',
29010                         html : '<i class="fa fa-repeat"></i>'
29011                     }
29012                 ]
29013             }
29014         ],
29015         DOCUMENT : [
29016             {
29017                 tag : 'div',
29018                 cls : 'btn-group roo-upload-cropbox-rotate-left',
29019                 action : 'rotate-left',
29020                 cn : [
29021                     {
29022                         tag : 'button',
29023                         cls : 'btn btn-default',
29024                         html : '<i class="fa fa-undo"></i>'
29025                     }
29026                 ]
29027             },
29028             {
29029                 tag : 'div',
29030                 cls : 'btn-group roo-upload-cropbox-download',
29031                 action : 'download',
29032                 cn : [
29033                     {
29034                         tag : 'button',
29035                         cls : 'btn btn-default',
29036                         html : '<i class="fa fa-download"></i>'
29037                     }
29038                 ]
29039             },
29040             {
29041                 tag : 'div',
29042                 cls : 'btn-group roo-upload-cropbox-crop',
29043                 action : 'crop',
29044                 cn : [
29045                     {
29046                         tag : 'button',
29047                         cls : 'btn btn-default',
29048                         html : '<i class="fa fa-crop"></i>'
29049                     }
29050                 ]
29051             },
29052             {
29053                 tag : 'div',
29054                 cls : 'btn-group roo-upload-cropbox-trash',
29055                 action : 'trash',
29056                 cn : [
29057                     {
29058                         tag : 'button',
29059                         cls : 'btn btn-default',
29060                         html : '<i class="fa fa-trash"></i>'
29061                     }
29062                 ]
29063             },
29064             {
29065                 tag : 'div',
29066                 cls : 'btn-group roo-upload-cropbox-rotate-right',
29067                 action : 'rotate-right',
29068                 cn : [
29069                     {
29070                         tag : 'button',
29071                         cls : 'btn btn-default',
29072                         html : '<i class="fa fa-repeat"></i>'
29073                     }
29074                 ]
29075             }
29076         ],
29077         ROTATOR : [
29078             {
29079                 tag : 'div',
29080                 cls : 'btn-group roo-upload-cropbox-rotate-left',
29081                 action : 'rotate-left',
29082                 cn : [
29083                     {
29084                         tag : 'button',
29085                         cls : 'btn btn-default',
29086                         html : '<i class="fa fa-undo"></i>'
29087                     }
29088                 ]
29089             },
29090             {
29091                 tag : 'div',
29092                 cls : 'btn-group roo-upload-cropbox-rotate-right',
29093                 action : 'rotate-right',
29094                 cn : [
29095                     {
29096                         tag : 'button',
29097                         cls : 'btn btn-default',
29098                         html : '<i class="fa fa-repeat"></i>'
29099                     }
29100                 ]
29101             }
29102         ]
29103     }
29104 });
29105
29106 /*
29107 * Licence: LGPL
29108 */
29109
29110 /**
29111  * @class Roo.bootstrap.DocumentManager
29112  * @extends Roo.bootstrap.Component
29113  * Bootstrap DocumentManager class
29114  * @cfg {String} paramName default 'imageUpload'
29115  * @cfg {String} toolTipName default 'filename'
29116  * @cfg {String} method default POST
29117  * @cfg {String} url action url
29118  * @cfg {Number} boxes number of boxes, 0 is no limit.. default 0
29119  * @cfg {Boolean} multiple multiple upload default true
29120  * @cfg {Number} thumbSize default 300
29121  * @cfg {String} fieldLabel
29122  * @cfg {Number} labelWidth default 4
29123  * @cfg {String} labelAlign (left|top) default left
29124  * @cfg {Boolean} editable (true|false) allow edit when upload a image default true
29125 * @cfg {Number} labellg set the width of label (1-12)
29126  * @cfg {Number} labelmd set the width of label (1-12)
29127  * @cfg {Number} labelsm set the width of label (1-12)
29128  * @cfg {Number} labelxs set the width of label (1-12)
29129  * 
29130  * @constructor
29131  * Create a new DocumentManager
29132  * @param {Object} config The config object
29133  */
29134
29135 Roo.bootstrap.DocumentManager = function(config){
29136     Roo.bootstrap.DocumentManager.superclass.constructor.call(this, config);
29137     
29138     this.files = [];
29139     this.delegates = [];
29140     
29141     this.addEvents({
29142         /**
29143          * @event initial
29144          * Fire when initial the DocumentManager
29145          * @param {Roo.bootstrap.DocumentManager} this
29146          */
29147         "initial" : true,
29148         /**
29149          * @event inspect
29150          * inspect selected file
29151          * @param {Roo.bootstrap.DocumentManager} this
29152          * @param {File} file
29153          */
29154         "inspect" : true,
29155         /**
29156          * @event exception
29157          * Fire when xhr load exception
29158          * @param {Roo.bootstrap.DocumentManager} this
29159          * @param {XMLHttpRequest} xhr
29160          */
29161         "exception" : true,
29162         /**
29163          * @event afterupload
29164          * Fire when xhr load exception
29165          * @param {Roo.bootstrap.DocumentManager} this
29166          * @param {XMLHttpRequest} xhr
29167          */
29168         "afterupload" : true,
29169         /**
29170          * @event prepare
29171          * prepare the form data
29172          * @param {Roo.bootstrap.DocumentManager} this
29173          * @param {Object} formData
29174          */
29175         "prepare" : true,
29176         /**
29177          * @event remove
29178          * Fire when remove the file
29179          * @param {Roo.bootstrap.DocumentManager} this
29180          * @param {Object} file
29181          */
29182         "remove" : true,
29183         /**
29184          * @event refresh
29185          * Fire after refresh the file
29186          * @param {Roo.bootstrap.DocumentManager} this
29187          */
29188         "refresh" : true,
29189         /**
29190          * @event click
29191          * Fire after click the image
29192          * @param {Roo.bootstrap.DocumentManager} this
29193          * @param {Object} file
29194          */
29195         "click" : true,
29196         /**
29197          * @event edit
29198          * Fire when upload a image and editable set to true
29199          * @param {Roo.bootstrap.DocumentManager} this
29200          * @param {Object} file
29201          */
29202         "edit" : true,
29203         /**
29204          * @event beforeselectfile
29205          * Fire before select file
29206          * @param {Roo.bootstrap.DocumentManager} this
29207          */
29208         "beforeselectfile" : true,
29209         /**
29210          * @event process
29211          * Fire before process file
29212          * @param {Roo.bootstrap.DocumentManager} this
29213          * @param {Object} file
29214          */
29215         "process" : true,
29216         /**
29217          * @event previewrendered
29218          * Fire when preview rendered
29219          * @param {Roo.bootstrap.DocumentManager} this
29220          * @param {Object} file
29221          */
29222         "previewrendered" : true,
29223         /**
29224          */
29225         "previewResize" : true
29226         
29227     });
29228 };
29229
29230 Roo.extend(Roo.bootstrap.DocumentManager, Roo.bootstrap.Component,  {
29231     
29232     boxes : 0,
29233     inputName : '',
29234     thumbSize : 300,
29235     multiple : true,
29236     files : false,
29237     method : 'POST',
29238     url : '',
29239     paramName : 'imageUpload',
29240     toolTipName : 'filename',
29241     fieldLabel : '',
29242     labelWidth : 4,
29243     labelAlign : 'left',
29244     editable : true,
29245     delegates : false,
29246     xhr : false, 
29247     
29248     labellg : 0,
29249     labelmd : 0,
29250     labelsm : 0,
29251     labelxs : 0,
29252     
29253     getAutoCreate : function()
29254     {   
29255         var managerWidget = {
29256             tag : 'div',
29257             cls : 'roo-document-manager',
29258             cn : [
29259                 {
29260                     tag : 'input',
29261                     cls : 'roo-document-manager-selector',
29262                     type : 'file'
29263                 },
29264                 {
29265                     tag : 'div',
29266                     cls : 'roo-document-manager-uploader',
29267                     cn : [
29268                         {
29269                             tag : 'div',
29270                             cls : 'roo-document-manager-upload-btn',
29271                             html : '<i class="fa fa-plus"></i>'
29272                         }
29273                     ]
29274                     
29275                 }
29276             ]
29277         };
29278         
29279         var content = [
29280             {
29281                 tag : 'div',
29282                 cls : 'column col-md-12',
29283                 cn : managerWidget
29284             }
29285         ];
29286         
29287         if(this.fieldLabel.length){
29288             
29289             content = [
29290                 {
29291                     tag : 'div',
29292                     cls : 'column col-md-12',
29293                     html : this.fieldLabel
29294                 },
29295                 {
29296                     tag : 'div',
29297                     cls : 'column col-md-12',
29298                     cn : managerWidget
29299                 }
29300             ];
29301
29302             if(this.labelAlign == 'left'){
29303                 content = [
29304                     {
29305                         tag : 'div',
29306                         cls : 'column',
29307                         html : this.fieldLabel
29308                     },
29309                     {
29310                         tag : 'div',
29311                         cls : 'column',
29312                         cn : managerWidget
29313                     }
29314                 ];
29315                 
29316                 if(this.labelWidth > 12){
29317                     content[0].style = "width: " + this.labelWidth + 'px';
29318                 }
29319
29320                 if(this.labelWidth < 13 && this.labelmd == 0){
29321                     this.labelmd = this.labelWidth;
29322                 }
29323
29324                 if(this.labellg > 0){
29325                     content[0].cls += ' col-lg-' + this.labellg;
29326                     content[1].cls += ' col-lg-' + (12 - this.labellg);
29327                 }
29328
29329                 if(this.labelmd > 0){
29330                     content[0].cls += ' col-md-' + this.labelmd;
29331                     content[1].cls += ' col-md-' + (12 - this.labelmd);
29332                 }
29333
29334                 if(this.labelsm > 0){
29335                     content[0].cls += ' col-sm-' + this.labelsm;
29336                     content[1].cls += ' col-sm-' + (12 - this.labelsm);
29337                 }
29338
29339                 if(this.labelxs > 0){
29340                     content[0].cls += ' col-xs-' + this.labelxs;
29341                     content[1].cls += ' col-xs-' + (12 - this.labelxs);
29342                 }
29343                 
29344             }
29345         }
29346         
29347         var cfg = {
29348             tag : 'div',
29349             cls : 'row clearfix',
29350             cn : content
29351         };
29352         
29353         return cfg;
29354         
29355     },
29356     
29357     initEvents : function()
29358     {
29359         this.managerEl = this.el.select('.roo-document-manager', true).first();
29360         this.managerEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
29361         
29362         this.selectorEl = this.el.select('.roo-document-manager-selector', true).first();
29363         this.selectorEl.hide();
29364         
29365         if(this.multiple){
29366             this.selectorEl.attr('multiple', 'multiple');
29367         }
29368         
29369         this.selectorEl.on('change', this.onFileSelected, this);
29370         
29371         this.uploader = this.el.select('.roo-document-manager-uploader', true).first();
29372         this.uploader.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
29373         
29374         this.uploader.on('click', this.onUploaderClick, this);
29375         
29376         this.renderProgressDialog();
29377         
29378         var _this = this;
29379         
29380         window.addEventListener("resize", function() { _this.refresh(); } );
29381         
29382         this.fireEvent('initial', this);
29383     },
29384     
29385     renderProgressDialog : function()
29386     {
29387         var _this = this;
29388         
29389         this.progressDialog = new Roo.bootstrap.Modal({
29390             cls : 'roo-document-manager-progress-dialog',
29391             allow_close : false,
29392             animate : false,
29393             title : '',
29394             buttons : [
29395                 {
29396                     name  :'cancel',
29397                     weight : 'danger',
29398                     html : 'Cancel'
29399                 }
29400             ], 
29401             listeners : { 
29402                 btnclick : function() {
29403                     _this.uploadCancel();
29404                     this.hide();
29405                 }
29406             }
29407         });
29408          
29409         this.progressDialog.render(Roo.get(document.body));
29410          
29411         this.progress = new Roo.bootstrap.Progress({
29412             cls : 'roo-document-manager-progress',
29413             active : true,
29414             striped : true
29415         });
29416         
29417         this.progress.render(this.progressDialog.getChildContainer());
29418         
29419         this.progressBar = new Roo.bootstrap.ProgressBar({
29420             cls : 'roo-document-manager-progress-bar',
29421             aria_valuenow : 0,
29422             aria_valuemin : 0,
29423             aria_valuemax : 12,
29424             panel : 'success'
29425         });
29426         
29427         this.progressBar.render(this.progress.getChildContainer());
29428     },
29429     
29430     onUploaderClick : function(e)
29431     {
29432         e.preventDefault();
29433      
29434         if(this.fireEvent('beforeselectfile', this) != false){
29435             this.selectorEl.dom.click();
29436         }
29437         
29438     },
29439     
29440     onFileSelected : function(e)
29441     {
29442         e.preventDefault();
29443         
29444         if(typeof(this.selectorEl.dom.files) == 'undefined' || !this.selectorEl.dom.files.length){
29445             return;
29446         }
29447         
29448         Roo.each(this.selectorEl.dom.files, function(file){
29449             if(this.fireEvent('inspect', this, file) != false){
29450                 this.files.push(file);
29451             }
29452         }, this);
29453         
29454         this.queue();
29455         
29456     },
29457     
29458     queue : function()
29459     {
29460         this.selectorEl.dom.value = '';
29461         
29462         if(!this.files || !this.files.length){
29463             return;
29464         }
29465         
29466         if(this.boxes > 0 && this.files.length > this.boxes){
29467             this.files = this.files.slice(0, this.boxes);
29468         }
29469         
29470         this.uploader.show();
29471         
29472         if(this.boxes > 0 && this.files.length > this.boxes - 1){
29473             this.uploader.hide();
29474         }
29475         
29476         var _this = this;
29477         
29478         var files = [];
29479         
29480         var docs = [];
29481         
29482         Roo.each(this.files, function(file){
29483             
29484             if(typeof(file.id) != 'undefined' && file.id * 1 > 0){
29485                 var f = this.renderPreview(file);
29486                 files.push(f);
29487                 return;
29488             }
29489             
29490             if(file.type.indexOf('image') != -1){
29491                 this.delegates.push(
29492                     (function(){
29493                         _this.process(file);
29494                     }).createDelegate(this)
29495                 );
29496         
29497                 return;
29498             }
29499             
29500             docs.push(
29501                 (function(){
29502                     _this.process(file);
29503                 }).createDelegate(this)
29504             );
29505             
29506         }, this);
29507         
29508         this.files = files;
29509         
29510         this.delegates = this.delegates.concat(docs);
29511         
29512         if(!this.delegates.length){
29513             this.refresh();
29514             return;
29515         }
29516         
29517         this.progressBar.aria_valuemax = this.delegates.length;
29518         
29519         this.arrange();
29520         
29521         return;
29522     },
29523     
29524     arrange : function()
29525     {
29526         if(!this.delegates.length){
29527             this.progressDialog.hide();
29528             this.refresh();
29529             return;
29530         }
29531         
29532         var delegate = this.delegates.shift();
29533         
29534         this.progressDialog.show();
29535         
29536         this.progressDialog.setTitle((this.progressBar.aria_valuemax - this.delegates.length) + ' / ' + this.progressBar.aria_valuemax);
29537         
29538         this.progressBar.update(this.progressBar.aria_valuemax - this.delegates.length);
29539         
29540         delegate();
29541     },
29542     
29543     refresh : function()
29544     {
29545         this.uploader.show();
29546         
29547         if(this.boxes > 0 && this.files.length > this.boxes - 1){
29548             this.uploader.hide();
29549         }
29550         
29551         Roo.isTouch ? this.closable(false) : this.closable(true);
29552         
29553         this.fireEvent('refresh', this);
29554     },
29555     
29556     onRemove : function(e, el, o)
29557     {
29558         e.preventDefault();
29559         
29560         this.fireEvent('remove', this, o);
29561         
29562     },
29563     
29564     remove : function(o)
29565     {
29566         var files = [];
29567         
29568         Roo.each(this.files, function(file){
29569             if(typeof(file.id) == 'undefined' || file.id * 1 < 1 || file.id != o.id){
29570                 files.push(file);
29571                 return;
29572             }
29573
29574             o.target.remove();
29575
29576         }, this);
29577         
29578         this.files = files;
29579         
29580         this.refresh();
29581     },
29582     
29583     clear : function()
29584     {
29585         Roo.each(this.files, function(file){
29586             if(!file.target){
29587                 return;
29588             }
29589             
29590             file.target.remove();
29591
29592         }, this);
29593         
29594         this.files = [];
29595         
29596         this.refresh();
29597     },
29598     
29599     onClick : function(e, el, o)
29600     {
29601         e.preventDefault();
29602         
29603         this.fireEvent('click', this, o);
29604         
29605     },
29606     
29607     closable : function(closable)
29608     {
29609         Roo.each(this.managerEl.select('.roo-document-manager-preview > button.close', true).elements, function(el){
29610             
29611             el.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
29612             
29613             if(closable){
29614                 el.show();
29615                 return;
29616             }
29617             
29618             el.hide();
29619             
29620         }, this);
29621     },
29622     
29623     xhrOnLoad : function(xhr)
29624     {
29625         Roo.each(this.managerEl.select('.roo-document-manager-loading', true).elements, function(el){
29626             el.remove();
29627         }, this);
29628         
29629         if (xhr.readyState !== 4) {
29630             this.arrange();
29631             this.fireEvent('exception', this, xhr);
29632             return;
29633         }
29634
29635         var response = Roo.decode(xhr.responseText);
29636         
29637         if(!response.success){
29638             this.arrange();
29639             this.fireEvent('exception', this, xhr);
29640             return;
29641         }
29642         
29643         var file = this.renderPreview(response.data);
29644         
29645         this.files.push(file);
29646         
29647         this.arrange();
29648         
29649         this.fireEvent('afterupload', this, xhr);
29650         
29651     },
29652     
29653     xhrOnError : function(xhr)
29654     {
29655         Roo.log('xhr on error');
29656         
29657         var response = Roo.decode(xhr.responseText);
29658           
29659         Roo.log(response);
29660         
29661         this.arrange();
29662     },
29663     
29664     process : function(file)
29665     {
29666         if(this.fireEvent('process', this, file) !== false){
29667             if(this.editable && file.type.indexOf('image') != -1){
29668                 this.fireEvent('edit', this, file);
29669                 return;
29670             }
29671
29672             this.uploadStart(file, false);
29673
29674             return;
29675         }
29676         
29677     },
29678     
29679     uploadStart : function(file, crop)
29680     {
29681         this.xhr = new XMLHttpRequest();
29682         
29683         if(typeof(file.id) != 'undefined' && file.id * 1 > 0){
29684             this.arrange();
29685             return;
29686         }
29687         
29688         file.xhr = this.xhr;
29689             
29690         this.managerEl.createChild({
29691             tag : 'div',
29692             cls : 'roo-document-manager-loading',
29693             cn : [
29694                 {
29695                     tag : 'div',
29696                     tooltip : file.name,
29697                     cls : 'roo-document-manager-thumb',
29698                     html : '<i class="fa fa-circle-o-notch fa-spin"></i>'
29699                 }
29700             ]
29701
29702         });
29703
29704         this.xhr.open(this.method, this.url, true);
29705         
29706         var headers = {
29707             "Accept": "application/json",
29708             "Cache-Control": "no-cache",
29709             "X-Requested-With": "XMLHttpRequest"
29710         };
29711         
29712         for (var headerName in headers) {
29713             var headerValue = headers[headerName];
29714             if (headerValue) {
29715                 this.xhr.setRequestHeader(headerName, headerValue);
29716             }
29717         }
29718         
29719         var _this = this;
29720         
29721         this.xhr.onload = function()
29722         {
29723             _this.xhrOnLoad(_this.xhr);
29724         }
29725         
29726         this.xhr.onerror = function()
29727         {
29728             _this.xhrOnError(_this.xhr);
29729         }
29730         
29731         var formData = new FormData();
29732
29733         formData.append('returnHTML', 'NO');
29734         
29735         if(crop){
29736             formData.append('crop', crop);
29737         }
29738         
29739         formData.append(this.paramName, file, file.name);
29740         
29741         var options = {
29742             file : file, 
29743             manually : false
29744         };
29745         
29746         if(this.fireEvent('prepare', this, formData, options) != false){
29747             
29748             if(options.manually){
29749                 return;
29750             }
29751             
29752             this.xhr.send(formData);
29753             return;
29754         };
29755         
29756         this.uploadCancel();
29757     },
29758     
29759     uploadCancel : function()
29760     {
29761         if (this.xhr) {
29762             this.xhr.abort();
29763         }
29764         
29765         this.delegates = [];
29766         
29767         Roo.each(this.managerEl.select('.roo-document-manager-loading', true).elements, function(el){
29768             el.remove();
29769         }, this);
29770         
29771         this.arrange();
29772     },
29773     
29774     renderPreview : function(file)
29775     {
29776         if(typeof(file.target) != 'undefined' && file.target){
29777             return file;
29778         }
29779         
29780         var img_src = encodeURI(baseURL +'/Images/Thumb/' + this.thumbSize + '/' + file.id + '/' + file.filename);
29781         
29782         var previewEl = this.managerEl.createChild({
29783             tag : 'div',
29784             cls : 'roo-document-manager-preview',
29785             cn : [
29786                 {
29787                     tag : 'div',
29788                     tooltip : file[this.toolTipName],
29789                     cls : 'roo-document-manager-thumb',
29790                     html : '<img tooltip="' + file[this.toolTipName] + '" src="' + img_src + '">'
29791                 },
29792                 {
29793                     tag : 'button',
29794                     cls : 'close',
29795                     html : '<i class="fa fa-times-circle"></i>'
29796                 }
29797             ]
29798         });
29799
29800         var close = previewEl.select('button.close', true).first();
29801
29802         close.on('click', this.onRemove, this, file);
29803
29804         file.target = previewEl;
29805
29806         var image = previewEl.select('img', true).first();
29807         
29808         var _this = this;
29809         
29810         image.dom.addEventListener("load", function(){ _this.onPreviewLoad(file, image); });
29811         
29812         image.on('click', this.onClick, this, file);
29813         
29814         this.fireEvent('previewrendered', this, file);
29815         
29816         return file;
29817         
29818     },
29819     
29820     onPreviewLoad : function(file, image)
29821     {
29822         if(typeof(file.target) == 'undefined' || !file.target){
29823             return;
29824         }
29825         
29826         var width = image.dom.naturalWidth || image.dom.width;
29827         var height = image.dom.naturalHeight || image.dom.height;
29828         
29829         if(!this.previewResize) {
29830             return;
29831         }
29832         
29833         if(width > height){
29834             file.target.addClass('wide');
29835             return;
29836         }
29837         
29838         file.target.addClass('tall');
29839         return;
29840         
29841     },
29842     
29843     uploadFromSource : function(file, crop)
29844     {
29845         this.xhr = new XMLHttpRequest();
29846         
29847         this.managerEl.createChild({
29848             tag : 'div',
29849             cls : 'roo-document-manager-loading',
29850             cn : [
29851                 {
29852                     tag : 'div',
29853                     tooltip : file.name,
29854                     cls : 'roo-document-manager-thumb',
29855                     html : '<i class="fa fa-circle-o-notch fa-spin"></i>'
29856                 }
29857             ]
29858
29859         });
29860
29861         this.xhr.open(this.method, this.url, true);
29862         
29863         var headers = {
29864             "Accept": "application/json",
29865             "Cache-Control": "no-cache",
29866             "X-Requested-With": "XMLHttpRequest"
29867         };
29868         
29869         for (var headerName in headers) {
29870             var headerValue = headers[headerName];
29871             if (headerValue) {
29872                 this.xhr.setRequestHeader(headerName, headerValue);
29873             }
29874         }
29875         
29876         var _this = this;
29877         
29878         this.xhr.onload = function()
29879         {
29880             _this.xhrOnLoad(_this.xhr);
29881         }
29882         
29883         this.xhr.onerror = function()
29884         {
29885             _this.xhrOnError(_this.xhr);
29886         }
29887         
29888         var formData = new FormData();
29889
29890         formData.append('returnHTML', 'NO');
29891         
29892         formData.append('crop', crop);
29893         
29894         if(typeof(file.filename) != 'undefined'){
29895             formData.append('filename', file.filename);
29896         }
29897         
29898         if(typeof(file.mimetype) != 'undefined'){
29899             formData.append('mimetype', file.mimetype);
29900         }
29901         
29902         Roo.log(formData);
29903         
29904         if(this.fireEvent('prepare', this, formData) != false){
29905             this.xhr.send(formData);
29906         };
29907     }
29908 });
29909
29910 /*
29911 * Licence: LGPL
29912 */
29913
29914 /**
29915  * @class Roo.bootstrap.DocumentViewer
29916  * @extends Roo.bootstrap.Component
29917  * Bootstrap DocumentViewer class
29918  * @cfg {Boolean} showDownload (true|false) show download button (default true)
29919  * @cfg {Boolean} showTrash (true|false) show trash button (default true)
29920  * 
29921  * @constructor
29922  * Create a new DocumentViewer
29923  * @param {Object} config The config object
29924  */
29925
29926 Roo.bootstrap.DocumentViewer = function(config){
29927     Roo.bootstrap.DocumentViewer.superclass.constructor.call(this, config);
29928     
29929     this.addEvents({
29930         /**
29931          * @event initial
29932          * Fire after initEvent
29933          * @param {Roo.bootstrap.DocumentViewer} this
29934          */
29935         "initial" : true,
29936         /**
29937          * @event click
29938          * Fire after click
29939          * @param {Roo.bootstrap.DocumentViewer} this
29940          */
29941         "click" : true,
29942         /**
29943          * @event download
29944          * Fire after download button
29945          * @param {Roo.bootstrap.DocumentViewer} this
29946          */
29947         "download" : true,
29948         /**
29949          * @event trash
29950          * Fire after trash button
29951          * @param {Roo.bootstrap.DocumentViewer} this
29952          */
29953         "trash" : true
29954         
29955     });
29956 };
29957
29958 Roo.extend(Roo.bootstrap.DocumentViewer, Roo.bootstrap.Component,  {
29959     
29960     showDownload : true,
29961     
29962     showTrash : true,
29963     
29964     getAutoCreate : function()
29965     {
29966         var cfg = {
29967             tag : 'div',
29968             cls : 'roo-document-viewer',
29969             cn : [
29970                 {
29971                     tag : 'div',
29972                     cls : 'roo-document-viewer-body',
29973                     cn : [
29974                         {
29975                             tag : 'div',
29976                             cls : 'roo-document-viewer-thumb',
29977                             cn : [
29978                                 {
29979                                     tag : 'img',
29980                                     cls : 'roo-document-viewer-image'
29981                                 }
29982                             ]
29983                         }
29984                     ]
29985                 },
29986                 {
29987                     tag : 'div',
29988                     cls : 'roo-document-viewer-footer',
29989                     cn : {
29990                         tag : 'div',
29991                         cls : 'btn-group btn-group-justified roo-document-viewer-btn-group',
29992                         cn : [
29993                             {
29994                                 tag : 'div',
29995                                 cls : 'btn-group roo-document-viewer-download',
29996                                 cn : [
29997                                     {
29998                                         tag : 'button',
29999                                         cls : 'btn btn-default',
30000                                         html : '<i class="fa fa-download"></i>'
30001                                     }
30002                                 ]
30003                             },
30004                             {
30005                                 tag : 'div',
30006                                 cls : 'btn-group roo-document-viewer-trash',
30007                                 cn : [
30008                                     {
30009                                         tag : 'button',
30010                                         cls : 'btn btn-default',
30011                                         html : '<i class="fa fa-trash"></i>'
30012                                     }
30013                                 ]
30014                             }
30015                         ]
30016                     }
30017                 }
30018             ]
30019         };
30020         
30021         return cfg;
30022     },
30023     
30024     initEvents : function()
30025     {
30026         this.bodyEl = this.el.select('.roo-document-viewer-body', true).first();
30027         this.bodyEl.setVisibilityMode(Roo.Element.DISPLAY);
30028         
30029         this.thumbEl = this.el.select('.roo-document-viewer-thumb', true).first();
30030         this.thumbEl.setVisibilityMode(Roo.Element.DISPLAY);
30031         
30032         this.imageEl = this.el.select('.roo-document-viewer-image', true).first();
30033         this.imageEl.setVisibilityMode(Roo.Element.DISPLAY);
30034         
30035         this.footerEl = this.el.select('.roo-document-viewer-footer', true).first();
30036         this.footerEl.setVisibilityMode(Roo.Element.DISPLAY);
30037         
30038         this.downloadBtn = this.el.select('.roo-document-viewer-download', true).first();
30039         this.downloadBtn.setVisibilityMode(Roo.Element.DISPLAY);
30040         
30041         this.trashBtn = this.el.select('.roo-document-viewer-trash', true).first();
30042         this.trashBtn.setVisibilityMode(Roo.Element.DISPLAY);
30043         
30044         this.bodyEl.on('click', this.onClick, this);
30045         this.downloadBtn.on('click', this.onDownload, this);
30046         this.trashBtn.on('click', this.onTrash, this);
30047         
30048         this.downloadBtn.hide();
30049         this.trashBtn.hide();
30050         
30051         if(this.showDownload){
30052             this.downloadBtn.show();
30053         }
30054         
30055         if(this.showTrash){
30056             this.trashBtn.show();
30057         }
30058         
30059         if(!this.showDownload && !this.showTrash) {
30060             this.footerEl.hide();
30061         }
30062         
30063     },
30064     
30065     initial : function()
30066     {
30067         this.fireEvent('initial', this);
30068         
30069     },
30070     
30071     onClick : function(e)
30072     {
30073         e.preventDefault();
30074         
30075         this.fireEvent('click', this);
30076     },
30077     
30078     onDownload : function(e)
30079     {
30080         e.preventDefault();
30081         
30082         this.fireEvent('download', this);
30083     },
30084     
30085     onTrash : function(e)
30086     {
30087         e.preventDefault();
30088         
30089         this.fireEvent('trash', this);
30090     }
30091     
30092 });
30093 /*
30094  * - LGPL
30095  *
30096  * nav progress bar
30097  * 
30098  */
30099
30100 /**
30101  * @class Roo.bootstrap.NavProgressBar
30102  * @extends Roo.bootstrap.Component
30103  * Bootstrap NavProgressBar class
30104  * 
30105  * @constructor
30106  * Create a new nav progress bar
30107  * @param {Object} config The config object
30108  */
30109
30110 Roo.bootstrap.NavProgressBar = function(config){
30111     Roo.bootstrap.NavProgressBar.superclass.constructor.call(this, config);
30112
30113     this.bullets = this.bullets || [];
30114    
30115 //    Roo.bootstrap.NavProgressBar.register(this);
30116      this.addEvents({
30117         /**
30118              * @event changed
30119              * Fires when the active item changes
30120              * @param {Roo.bootstrap.NavProgressBar} this
30121              * @param {Roo.bootstrap.NavProgressItem} selected The item selected
30122              * @param {Roo.bootstrap.NavProgressItem} prev The previously selected item 
30123          */
30124         'changed': true
30125      });
30126     
30127 };
30128
30129 Roo.extend(Roo.bootstrap.NavProgressBar, Roo.bootstrap.Component,  {
30130     
30131     bullets : [],
30132     barItems : [],
30133     
30134     getAutoCreate : function()
30135     {
30136         var cfg = Roo.apply({}, Roo.bootstrap.NavProgressBar.superclass.getAutoCreate.call(this));
30137         
30138         cfg = {
30139             tag : 'div',
30140             cls : 'roo-navigation-bar-group',
30141             cn : [
30142                 {
30143                     tag : 'div',
30144                     cls : 'roo-navigation-top-bar'
30145                 },
30146                 {
30147                     tag : 'div',
30148                     cls : 'roo-navigation-bullets-bar',
30149                     cn : [
30150                         {
30151                             tag : 'ul',
30152                             cls : 'roo-navigation-bar'
30153                         }
30154                     ]
30155                 },
30156                 
30157                 {
30158                     tag : 'div',
30159                     cls : 'roo-navigation-bottom-bar'
30160                 }
30161             ]
30162             
30163         };
30164         
30165         return cfg;
30166         
30167     },
30168     
30169     initEvents: function() 
30170     {
30171         
30172     },
30173     
30174     onRender : function(ct, position) 
30175     {
30176         Roo.bootstrap.NavProgressBar.superclass.onRender.call(this, ct, position);
30177         
30178         if(this.bullets.length){
30179             Roo.each(this.bullets, function(b){
30180                this.addItem(b);
30181             }, this);
30182         }
30183         
30184         this.format();
30185         
30186     },
30187     
30188     addItem : function(cfg)
30189     {
30190         var item = new Roo.bootstrap.NavProgressItem(cfg);
30191         
30192         item.parentId = this.id;
30193         item.render(this.el.select('.roo-navigation-bar', true).first(), null);
30194         
30195         if(cfg.html){
30196             var top = new Roo.bootstrap.Element({
30197                 tag : 'div',
30198                 cls : 'roo-navigation-bar-text'
30199             });
30200             
30201             var bottom = new Roo.bootstrap.Element({
30202                 tag : 'div',
30203                 cls : 'roo-navigation-bar-text'
30204             });
30205             
30206             top.onRender(this.el.select('.roo-navigation-top-bar', true).first(), null);
30207             bottom.onRender(this.el.select('.roo-navigation-bottom-bar', true).first(), null);
30208             
30209             var topText = new Roo.bootstrap.Element({
30210                 tag : 'span',
30211                 html : (typeof(cfg.position) != 'undefined' && cfg.position == 'top') ? cfg.html : ''
30212             });
30213             
30214             var bottomText = new Roo.bootstrap.Element({
30215                 tag : 'span',
30216                 html : (typeof(cfg.position) != 'undefined' && cfg.position == 'top') ? '' : cfg.html
30217             });
30218             
30219             topText.onRender(top.el, null);
30220             bottomText.onRender(bottom.el, null);
30221             
30222             item.topEl = top;
30223             item.bottomEl = bottom;
30224         }
30225         
30226         this.barItems.push(item);
30227         
30228         return item;
30229     },
30230     
30231     getActive : function()
30232     {
30233         var active = false;
30234         
30235         Roo.each(this.barItems, function(v){
30236             
30237             if (!v.isActive()) {
30238                 return;
30239             }
30240             
30241             active = v;
30242             return false;
30243             
30244         });
30245         
30246         return active;
30247     },
30248     
30249     setActiveItem : function(item)
30250     {
30251         var prev = false;
30252         
30253         Roo.each(this.barItems, function(v){
30254             if (v.rid == item.rid) {
30255                 return ;
30256             }
30257             
30258             if (v.isActive()) {
30259                 v.setActive(false);
30260                 prev = v;
30261             }
30262         });
30263
30264         item.setActive(true);
30265         
30266         this.fireEvent('changed', this, item, prev);
30267     },
30268     
30269     getBarItem: function(rid)
30270     {
30271         var ret = false;
30272         
30273         Roo.each(this.barItems, function(e) {
30274             if (e.rid != rid) {
30275                 return;
30276             }
30277             
30278             ret =  e;
30279             return false;
30280         });
30281         
30282         return ret;
30283     },
30284     
30285     indexOfItem : function(item)
30286     {
30287         var index = false;
30288         
30289         Roo.each(this.barItems, function(v, i){
30290             
30291             if (v.rid != item.rid) {
30292                 return;
30293             }
30294             
30295             index = i;
30296             return false
30297         });
30298         
30299         return index;
30300     },
30301     
30302     setActiveNext : function()
30303     {
30304         var i = this.indexOfItem(this.getActive());
30305         
30306         if (i > this.barItems.length) {
30307             return;
30308         }
30309         
30310         this.setActiveItem(this.barItems[i+1]);
30311     },
30312     
30313     setActivePrev : function()
30314     {
30315         var i = this.indexOfItem(this.getActive());
30316         
30317         if (i  < 1) {
30318             return;
30319         }
30320         
30321         this.setActiveItem(this.barItems[i-1]);
30322     },
30323     
30324     format : function()
30325     {
30326         if(!this.barItems.length){
30327             return;
30328         }
30329      
30330         var width = 100 / this.barItems.length;
30331         
30332         Roo.each(this.barItems, function(i){
30333             i.el.setStyle('width', width + '%');
30334             i.topEl.el.setStyle('width', width + '%');
30335             i.bottomEl.el.setStyle('width', width + '%');
30336         }, this);
30337         
30338     }
30339     
30340 });
30341 /*
30342  * - LGPL
30343  *
30344  * Nav Progress Item
30345  * 
30346  */
30347
30348 /**
30349  * @class Roo.bootstrap.NavProgressItem
30350  * @extends Roo.bootstrap.Component
30351  * Bootstrap NavProgressItem class
30352  * @cfg {String} rid the reference id
30353  * @cfg {Boolean} active (true|false) Is item active default false
30354  * @cfg {Boolean} disabled (true|false) Is item active default false
30355  * @cfg {String} html
30356  * @cfg {String} position (top|bottom) text position default bottom
30357  * @cfg {String} icon show icon instead of number
30358  * 
30359  * @constructor
30360  * Create a new NavProgressItem
30361  * @param {Object} config The config object
30362  */
30363 Roo.bootstrap.NavProgressItem = function(config){
30364     Roo.bootstrap.NavProgressItem.superclass.constructor.call(this, config);
30365     this.addEvents({
30366         // raw events
30367         /**
30368          * @event click
30369          * The raw click event for the entire grid.
30370          * @param {Roo.bootstrap.NavProgressItem} this
30371          * @param {Roo.EventObject} e
30372          */
30373         "click" : true
30374     });
30375    
30376 };
30377
30378 Roo.extend(Roo.bootstrap.NavProgressItem, Roo.bootstrap.Component,  {
30379     
30380     rid : '',
30381     active : false,
30382     disabled : false,
30383     html : '',
30384     position : 'bottom',
30385     icon : false,
30386     
30387     getAutoCreate : function()
30388     {
30389         var iconCls = 'roo-navigation-bar-item-icon';
30390         
30391         iconCls += ((this.icon) ? (' ' + this.icon) : (' step-number')) ;
30392         
30393         var cfg = {
30394             tag: 'li',
30395             cls: 'roo-navigation-bar-item',
30396             cn : [
30397                 {
30398                     tag : 'i',
30399                     cls : iconCls
30400                 }
30401             ]
30402         };
30403         
30404         if(this.active){
30405             cfg.cls += ' active';
30406         }
30407         if(this.disabled){
30408             cfg.cls += ' disabled';
30409         }
30410         
30411         return cfg;
30412     },
30413     
30414     disable : function()
30415     {
30416         this.setDisabled(true);
30417     },
30418     
30419     enable : function()
30420     {
30421         this.setDisabled(false);
30422     },
30423     
30424     initEvents: function() 
30425     {
30426         this.iconEl = this.el.select('.roo-navigation-bar-item-icon', true).first();
30427         
30428         this.iconEl.on('click', this.onClick, this);
30429     },
30430     
30431     onClick : function(e)
30432     {
30433         e.preventDefault();
30434         
30435         if(this.disabled){
30436             return;
30437         }
30438         
30439         if(this.fireEvent('click', this, e) === false){
30440             return;
30441         };
30442         
30443         this.parent().setActiveItem(this);
30444     },
30445     
30446     isActive: function () 
30447     {
30448         return this.active;
30449     },
30450     
30451     setActive : function(state)
30452     {
30453         if(this.active == state){
30454             return;
30455         }
30456         
30457         this.active = state;
30458         
30459         if (state) {
30460             this.el.addClass('active');
30461             return;
30462         }
30463         
30464         this.el.removeClass('active');
30465         
30466         return;
30467     },
30468     
30469     setDisabled : function(state)
30470     {
30471         if(this.disabled == state){
30472             return;
30473         }
30474         
30475         this.disabled = state;
30476         
30477         if (state) {
30478             this.el.addClass('disabled');
30479             return;
30480         }
30481         
30482         this.el.removeClass('disabled');
30483     },
30484     
30485     tooltipEl : function()
30486     {
30487         return this.el.select('.roo-navigation-bar-item-icon', true).first();;
30488     }
30489 });
30490  
30491
30492  /*
30493  * - LGPL
30494  *
30495  * FieldLabel
30496  * 
30497  */
30498
30499 /**
30500  * @class Roo.bootstrap.FieldLabel
30501  * @extends Roo.bootstrap.Component
30502  * Bootstrap FieldLabel class
30503  * @cfg {String} html contents of the element
30504  * @cfg {String} tag tag of the element default label
30505  * @cfg {String} cls class of the element
30506  * @cfg {String} target label target 
30507  * @cfg {Boolean} allowBlank (true|false) target allowBlank default true
30508  * @cfg {String} invalidClass DEPRICATED - BS4 uses is-invalid
30509  * @cfg {String} validClass DEPRICATED - BS4 uses is-valid
30510  * @cfg {String} iconTooltip default "This field is required"
30511  * @cfg {String} indicatorpos (left|right) default left
30512  * 
30513  * @constructor
30514  * Create a new FieldLabel
30515  * @param {Object} config The config object
30516  */
30517
30518 Roo.bootstrap.FieldLabel = function(config){
30519     Roo.bootstrap.Element.superclass.constructor.call(this, config);
30520     
30521     this.addEvents({
30522             /**
30523              * @event invalid
30524              * Fires after the field has been marked as invalid.
30525              * @param {Roo.form.FieldLabel} this
30526              * @param {String} msg The validation message
30527              */
30528             invalid : true,
30529             /**
30530              * @event valid
30531              * Fires after the field has been validated with no errors.
30532              * @param {Roo.form.FieldLabel} this
30533              */
30534             valid : true
30535         });
30536 };
30537
30538 Roo.extend(Roo.bootstrap.FieldLabel, Roo.bootstrap.Component,  {
30539     
30540     tag: 'label',
30541     cls: '',
30542     html: '',
30543     target: '',
30544     allowBlank : true,
30545     invalidClass : 'has-warning',
30546     validClass : 'has-success',
30547     iconTooltip : 'This field is required',
30548     indicatorpos : 'left',
30549     
30550     getAutoCreate : function(){
30551         
30552         var cls = "";
30553         if (!this.allowBlank) {
30554             cls  = "visible";
30555         }
30556         
30557         var cfg = {
30558             tag : this.tag,
30559             cls : 'roo-bootstrap-field-label ' + this.cls,
30560             for : this.target,
30561             cn : [
30562                 {
30563                     tag : 'i',
30564                     cls : 'roo-required-indicator left-indicator text-danger fa fa-lg fa-star ' + cls,
30565                     tooltip : this.iconTooltip
30566                 },
30567                 {
30568                     tag : 'span',
30569                     html : this.html
30570                 }
30571             ] 
30572         };
30573         
30574         if(this.indicatorpos == 'right'){
30575             var cfg = {
30576                 tag : this.tag,
30577                 cls : 'roo-bootstrap-field-label ' + this.cls,
30578                 for : this.target,
30579                 cn : [
30580                     {
30581                         tag : 'span',
30582                         html : this.html
30583                     },
30584                     {
30585                         tag : 'i',
30586                         cls : 'roo-required-indicator right-indicator text-danger fa fa-lg fa-star '+ cls,
30587                         tooltip : this.iconTooltip
30588                     }
30589                 ] 
30590             };
30591         }
30592         
30593         return cfg;
30594     },
30595     
30596     initEvents: function() 
30597     {
30598         Roo.bootstrap.Element.superclass.initEvents.call(this);
30599         
30600         this.indicator = this.indicatorEl();
30601         
30602         if(this.indicator){
30603             this.indicator.removeClass('visible');
30604             this.indicator.addClass('invisible');
30605         }
30606         
30607         Roo.bootstrap.FieldLabel.register(this);
30608     },
30609     
30610     indicatorEl : function()
30611     {
30612         var indicator = this.el.select('i.roo-required-indicator',true).first();
30613         
30614         if(!indicator){
30615             return false;
30616         }
30617         
30618         return indicator;
30619         
30620     },
30621     
30622     /**
30623      * Mark this field as valid
30624      */
30625     markValid : function()
30626     {
30627         if(this.indicator){
30628             this.indicator.removeClass('visible');
30629             this.indicator.addClass('invisible');
30630         }
30631         if (Roo.bootstrap.version == 3) {
30632             this.el.removeClass(this.invalidClass);
30633             this.el.addClass(this.validClass);
30634         } else {
30635             this.el.removeClass('is-invalid');
30636             this.el.addClass('is-valid');
30637         }
30638         
30639         
30640         this.fireEvent('valid', this);
30641     },
30642     
30643     /**
30644      * Mark this field as invalid
30645      * @param {String} msg The validation message
30646      */
30647     markInvalid : function(msg)
30648     {
30649         if(this.indicator){
30650             this.indicator.removeClass('invisible');
30651             this.indicator.addClass('visible');
30652         }
30653           if (Roo.bootstrap.version == 3) {
30654             this.el.removeClass(this.validClass);
30655             this.el.addClass(this.invalidClass);
30656         } else {
30657             this.el.removeClass('is-valid');
30658             this.el.addClass('is-invalid');
30659         }
30660         
30661         
30662         this.fireEvent('invalid', this, msg);
30663     }
30664     
30665    
30666 });
30667
30668 Roo.apply(Roo.bootstrap.FieldLabel, {
30669     
30670     groups: {},
30671     
30672      /**
30673     * register a FieldLabel Group
30674     * @param {Roo.bootstrap.FieldLabel} the FieldLabel to add
30675     */
30676     register : function(label)
30677     {
30678         if(this.groups.hasOwnProperty(label.target)){
30679             return;
30680         }
30681      
30682         this.groups[label.target] = label;
30683         
30684     },
30685     /**
30686     * fetch a FieldLabel Group based on the target
30687     * @param {string} target
30688     * @returns {Roo.bootstrap.FieldLabel} the CheckBox group
30689     */
30690     get: function(target) {
30691         if (typeof(this.groups[target]) == 'undefined') {
30692             return false;
30693         }
30694         
30695         return this.groups[target] ;
30696     }
30697 });
30698
30699  
30700
30701  /*
30702  * - LGPL
30703  *
30704  * page DateSplitField.
30705  * 
30706  */
30707
30708
30709 /**
30710  * @class Roo.bootstrap.DateSplitField
30711  * @extends Roo.bootstrap.Component
30712  * Bootstrap DateSplitField class
30713  * @cfg {string} fieldLabel - the label associated
30714  * @cfg {Number} labelWidth set the width of label (0-12)
30715  * @cfg {String} labelAlign (top|left)
30716  * @cfg {Boolean} dayAllowBlank (true|false) default false
30717  * @cfg {Boolean} monthAllowBlank (true|false) default false
30718  * @cfg {Boolean} yearAllowBlank (true|false) default false
30719  * @cfg {string} dayPlaceholder 
30720  * @cfg {string} monthPlaceholder
30721  * @cfg {string} yearPlaceholder
30722  * @cfg {string} dayFormat default 'd'
30723  * @cfg {string} monthFormat default 'm'
30724  * @cfg {string} yearFormat default 'Y'
30725  * @cfg {Number} labellg set the width of label (1-12)
30726  * @cfg {Number} labelmd set the width of label (1-12)
30727  * @cfg {Number} labelsm set the width of label (1-12)
30728  * @cfg {Number} labelxs set the width of label (1-12)
30729
30730  *     
30731  * @constructor
30732  * Create a new DateSplitField
30733  * @param {Object} config The config object
30734  */
30735
30736 Roo.bootstrap.DateSplitField = function(config){
30737     Roo.bootstrap.DateSplitField.superclass.constructor.call(this, config);
30738     
30739     this.addEvents({
30740         // raw events
30741          /**
30742          * @event years
30743          * getting the data of years
30744          * @param {Roo.bootstrap.DateSplitField} this
30745          * @param {Object} years
30746          */
30747         "years" : true,
30748         /**
30749          * @event days
30750          * getting the data of days
30751          * @param {Roo.bootstrap.DateSplitField} this
30752          * @param {Object} days
30753          */
30754         "days" : true,
30755         /**
30756          * @event invalid
30757          * Fires after the field has been marked as invalid.
30758          * @param {Roo.form.Field} this
30759          * @param {String} msg The validation message
30760          */
30761         invalid : true,
30762        /**
30763          * @event valid
30764          * Fires after the field has been validated with no errors.
30765          * @param {Roo.form.Field} this
30766          */
30767         valid : true
30768     });
30769 };
30770
30771 Roo.extend(Roo.bootstrap.DateSplitField, Roo.bootstrap.Component,  {
30772     
30773     fieldLabel : '',
30774     labelAlign : 'top',
30775     labelWidth : 3,
30776     dayAllowBlank : false,
30777     monthAllowBlank : false,
30778     yearAllowBlank : false,
30779     dayPlaceholder : '',
30780     monthPlaceholder : '',
30781     yearPlaceholder : '',
30782     dayFormat : 'd',
30783     monthFormat : 'm',
30784     yearFormat : 'Y',
30785     isFormField : true,
30786     labellg : 0,
30787     labelmd : 0,
30788     labelsm : 0,
30789     labelxs : 0,
30790     
30791     getAutoCreate : function()
30792     {
30793         var cfg = {
30794             tag : 'div',
30795             cls : 'row roo-date-split-field-group',
30796             cn : [
30797                 {
30798                     tag : 'input',
30799                     type : 'hidden',
30800                     cls : 'form-hidden-field roo-date-split-field-group-value',
30801                     name : this.name
30802                 }
30803             ]
30804         };
30805         
30806         var labelCls = 'col-md-12';
30807         var contentCls = 'col-md-4';
30808         
30809         if(this.fieldLabel){
30810             
30811             var label = {
30812                 tag : 'div',
30813                 cls : 'column roo-date-split-field-label col-md-' + ((this.labelAlign == 'top') ? '12' : this.labelWidth),
30814                 cn : [
30815                     {
30816                         tag : 'label',
30817                         html : this.fieldLabel
30818                     }
30819                 ]
30820             };
30821             
30822             if(this.labelAlign == 'left'){
30823             
30824                 if(this.labelWidth > 12){
30825                     label.style = "width: " + this.labelWidth + 'px';
30826                 }
30827
30828                 if(this.labelWidth < 13 && this.labelmd == 0){
30829                     this.labelmd = this.labelWidth;
30830                 }
30831
30832                 if(this.labellg > 0){
30833                     labelCls = ' col-lg-' + this.labellg;
30834                     contentCls = ' col-lg-' + ((12 - this.labellg) / 3);
30835                 }
30836
30837                 if(this.labelmd > 0){
30838                     labelCls = ' col-md-' + this.labelmd;
30839                     contentCls = ' col-md-' + ((12 - this.labelmd) / 3);
30840                 }
30841
30842                 if(this.labelsm > 0){
30843                     labelCls = ' col-sm-' + this.labelsm;
30844                     contentCls = ' col-sm-' + ((12 - this.labelsm) / 3);
30845                 }
30846
30847                 if(this.labelxs > 0){
30848                     labelCls = ' col-xs-' + this.labelxs;
30849                     contentCls = ' col-xs-' + ((12 - this.labelxs) / 3);
30850                 }
30851             }
30852             
30853             label.cls += ' ' + labelCls;
30854             
30855             cfg.cn.push(label);
30856         }
30857         
30858         Roo.each(['day', 'month', 'year'], function(t){
30859             cfg.cn.push({
30860                 tag : 'div',
30861                 cls : 'column roo-date-split-field-' + t + ' ' + contentCls
30862             });
30863         }, this);
30864         
30865         return cfg;
30866     },
30867     
30868     inputEl: function ()
30869     {
30870         return this.el.select('.roo-date-split-field-group-value', true).first();
30871     },
30872     
30873     onRender : function(ct, position) 
30874     {
30875         var _this = this;
30876         
30877         Roo.bootstrap.NavProgressBar.superclass.onRender.call(this, ct, position);
30878         
30879         this.inputEl = this.el.select('.roo-date-split-field-group-value', true).first();
30880         
30881         this.dayField = new Roo.bootstrap.ComboBox({
30882             allowBlank : this.dayAllowBlank,
30883             alwaysQuery : true,
30884             displayField : 'value',
30885             editable : false,
30886             fieldLabel : '',
30887             forceSelection : true,
30888             mode : 'local',
30889             placeholder : this.dayPlaceholder,
30890             selectOnFocus : true,
30891             tpl : '<div class="roo-select2-result"><b>{value}</b></div>',
30892             triggerAction : 'all',
30893             typeAhead : true,
30894             valueField : 'value',
30895             store : new Roo.data.SimpleStore({
30896                 data : (function() {    
30897                     var days = [];
30898                     _this.fireEvent('days', _this, days);
30899                     return days;
30900                 })(),
30901                 fields : [ 'value' ]
30902             }),
30903             listeners : {
30904                 select : function (_self, record, index)
30905                 {
30906                     _this.setValue(_this.getValue());
30907                 }
30908             }
30909         });
30910
30911         this.dayField.render(this.el.select('.roo-date-split-field-day', true).first(), null);
30912         
30913         this.monthField = new Roo.bootstrap.MonthField({
30914             after : '<i class=\"fa fa-calendar\"></i>',
30915             allowBlank : this.monthAllowBlank,
30916             placeholder : this.monthPlaceholder,
30917             readOnly : true,
30918             listeners : {
30919                 render : function (_self)
30920                 {
30921                     this.el.select('span.input-group-addon', true).first().on('click', function(e){
30922                         e.preventDefault();
30923                         _self.focus();
30924                     });
30925                 },
30926                 select : function (_self, oldvalue, newvalue)
30927                 {
30928                     _this.setValue(_this.getValue());
30929                 }
30930             }
30931         });
30932         
30933         this.monthField.render(this.el.select('.roo-date-split-field-month', true).first(), null);
30934         
30935         this.yearField = new Roo.bootstrap.ComboBox({
30936             allowBlank : this.yearAllowBlank,
30937             alwaysQuery : true,
30938             displayField : 'value',
30939             editable : false,
30940             fieldLabel : '',
30941             forceSelection : true,
30942             mode : 'local',
30943             placeholder : this.yearPlaceholder,
30944             selectOnFocus : true,
30945             tpl : '<div class="roo-select2-result"><b>{value}</b></div>',
30946             triggerAction : 'all',
30947             typeAhead : true,
30948             valueField : 'value',
30949             store : new Roo.data.SimpleStore({
30950                 data : (function() {
30951                     var years = [];
30952                     _this.fireEvent('years', _this, years);
30953                     return years;
30954                 })(),
30955                 fields : [ 'value' ]
30956             }),
30957             listeners : {
30958                 select : function (_self, record, index)
30959                 {
30960                     _this.setValue(_this.getValue());
30961                 }
30962             }
30963         });
30964
30965         this.yearField.render(this.el.select('.roo-date-split-field-year', true).first(), null);
30966     },
30967     
30968     setValue : function(v, format)
30969     {
30970         this.inputEl.dom.value = v;
30971         
30972         var f = format || (this.yearFormat + '-' + this.monthFormat + '-' + this.dayFormat);
30973         
30974         var d = Date.parseDate(v, f);
30975         
30976         if(!d){
30977             this.validate();
30978             return;
30979         }
30980         
30981         this.setDay(d.format(this.dayFormat));
30982         this.setMonth(d.format(this.monthFormat));
30983         this.setYear(d.format(this.yearFormat));
30984         
30985         this.validate();
30986         
30987         return;
30988     },
30989     
30990     setDay : function(v)
30991     {
30992         this.dayField.setValue(v);
30993         this.inputEl.dom.value = this.getValue();
30994         this.validate();
30995         return;
30996     },
30997     
30998     setMonth : function(v)
30999     {
31000         this.monthField.setValue(v, true);
31001         this.inputEl.dom.value = this.getValue();
31002         this.validate();
31003         return;
31004     },
31005     
31006     setYear : function(v)
31007     {
31008         this.yearField.setValue(v);
31009         this.inputEl.dom.value = this.getValue();
31010         this.validate();
31011         return;
31012     },
31013     
31014     getDay : function()
31015     {
31016         return this.dayField.getValue();
31017     },
31018     
31019     getMonth : function()
31020     {
31021         return this.monthField.getValue();
31022     },
31023     
31024     getYear : function()
31025     {
31026         return this.yearField.getValue();
31027     },
31028     
31029     getValue : function()
31030     {
31031         var f = this.yearFormat + '-' + this.monthFormat + '-' + this.dayFormat;
31032         
31033         var date = this.yearField.getValue() + '-' + this.monthField.getValue() + '-' + this.dayField.getValue();
31034         
31035         return date;
31036     },
31037     
31038     reset : function()
31039     {
31040         this.setDay('');
31041         this.setMonth('');
31042         this.setYear('');
31043         this.inputEl.dom.value = '';
31044         this.validate();
31045         return;
31046     },
31047     
31048     validate : function()
31049     {
31050         var d = this.dayField.validate();
31051         var m = this.monthField.validate();
31052         var y = this.yearField.validate();
31053         
31054         var valid = true;
31055         
31056         if(
31057                 (!this.dayAllowBlank && !d) ||
31058                 (!this.monthAllowBlank && !m) ||
31059                 (!this.yearAllowBlank && !y)
31060         ){
31061             valid = false;
31062         }
31063         
31064         if(this.dayAllowBlank && this.monthAllowBlank && this.yearAllowBlank){
31065             return valid;
31066         }
31067         
31068         if(valid){
31069             this.markValid();
31070             return valid;
31071         }
31072         
31073         this.markInvalid();
31074         
31075         return valid;
31076     },
31077     
31078     markValid : function()
31079     {
31080         
31081         var label = this.el.select('label', true).first();
31082         var icon = this.el.select('i.fa-star', true).first();
31083
31084         if(label && icon){
31085             icon.remove();
31086         }
31087         
31088         this.fireEvent('valid', this);
31089     },
31090     
31091      /**
31092      * Mark this field as invalid
31093      * @param {String} msg The validation message
31094      */
31095     markInvalid : function(msg)
31096     {
31097         
31098         var label = this.el.select('label', true).first();
31099         var icon = this.el.select('i.fa-star', true).first();
31100
31101         if(label && !icon){
31102             this.el.select('.roo-date-split-field-label', true).createChild({
31103                 tag : 'i',
31104                 cls : 'text-danger fa fa-lg fa-star',
31105                 tooltip : 'This field is required',
31106                 style : 'margin-right:5px;'
31107             }, label, true);
31108         }
31109         
31110         this.fireEvent('invalid', this, msg);
31111     },
31112     
31113     clearInvalid : function()
31114     {
31115         var label = this.el.select('label', true).first();
31116         var icon = this.el.select('i.fa-star', true).first();
31117
31118         if(label && icon){
31119             icon.remove();
31120         }
31121         
31122         this.fireEvent('valid', this);
31123     },
31124     
31125     getName: function()
31126     {
31127         return this.name;
31128     }
31129     
31130 });
31131
31132  /**
31133  *
31134  * This is based on 
31135  * http://masonry.desandro.com
31136  *
31137  * The idea is to render all the bricks based on vertical width...
31138  *
31139  * The original code extends 'outlayer' - we might need to use that....
31140  * 
31141  */
31142
31143
31144 /**
31145  * @class Roo.bootstrap.LayoutMasonry
31146  * @extends Roo.bootstrap.Component
31147  * Bootstrap Layout Masonry class
31148  * 
31149  * @constructor
31150  * Create a new Element
31151  * @param {Object} config The config object
31152  */
31153
31154 Roo.bootstrap.LayoutMasonry = function(config){
31155     
31156     Roo.bootstrap.LayoutMasonry.superclass.constructor.call(this, config);
31157     
31158     this.bricks = [];
31159     
31160     Roo.bootstrap.LayoutMasonry.register(this);
31161     
31162     this.addEvents({
31163         // raw events
31164         /**
31165          * @event layout
31166          * Fire after layout the items
31167          * @param {Roo.bootstrap.LayoutMasonry} this
31168          * @param {Roo.EventObject} e
31169          */
31170         "layout" : true
31171     });
31172     
31173 };
31174
31175 Roo.extend(Roo.bootstrap.LayoutMasonry, Roo.bootstrap.Component,  {
31176     
31177     /**
31178      * @cfg {Boolean} isLayoutInstant = no animation?
31179      */   
31180     isLayoutInstant : false, // needed?
31181    
31182     /**
31183      * @cfg {Number} boxWidth  width of the columns
31184      */   
31185     boxWidth : 450,
31186     
31187       /**
31188      * @cfg {Number} boxHeight  - 0 for square, or fix it at a certian height
31189      */   
31190     boxHeight : 0,
31191     
31192     /**
31193      * @cfg {Number} padWidth padding below box..
31194      */   
31195     padWidth : 10, 
31196     
31197     /**
31198      * @cfg {Number} gutter gutter width..
31199      */   
31200     gutter : 10,
31201     
31202      /**
31203      * @cfg {Number} maxCols maximum number of columns
31204      */   
31205     
31206     maxCols: 0,
31207     
31208     /**
31209      * @cfg {Boolean} isAutoInitial defalut true
31210      */   
31211     isAutoInitial : true, 
31212     
31213     containerWidth: 0,
31214     
31215     /**
31216      * @cfg {Boolean} isHorizontal defalut false
31217      */   
31218     isHorizontal : false, 
31219
31220     currentSize : null,
31221     
31222     tag: 'div',
31223     
31224     cls: '',
31225     
31226     bricks: null, //CompositeElement
31227     
31228     cols : 1,
31229     
31230     _isLayoutInited : false,
31231     
31232 //    isAlternative : false, // only use for vertical layout...
31233     
31234     /**
31235      * @cfg {Number} alternativePadWidth padding below box..
31236      */   
31237     alternativePadWidth : 50,
31238     
31239     selectedBrick : [],
31240     
31241     getAutoCreate : function(){
31242         
31243         var cfg = Roo.apply({}, Roo.bootstrap.LayoutMasonry.superclass.getAutoCreate.call(this));
31244         
31245         var cfg = {
31246             tag: this.tag,
31247             cls: 'blog-masonary-wrapper ' + this.cls,
31248             cn : {
31249                 cls : 'mas-boxes masonary'
31250             }
31251         };
31252         
31253         return cfg;
31254     },
31255     
31256     getChildContainer: function( )
31257     {
31258         if (this.boxesEl) {
31259             return this.boxesEl;
31260         }
31261         
31262         this.boxesEl = this.el.select('.mas-boxes').first();
31263         
31264         return this.boxesEl;
31265     },
31266     
31267     
31268     initEvents : function()
31269     {
31270         var _this = this;
31271         
31272         if(this.isAutoInitial){
31273             Roo.log('hook children rendered');
31274             this.on('childrenrendered', function() {
31275                 Roo.log('children rendered');
31276                 _this.initial();
31277             } ,this);
31278         }
31279     },
31280     
31281     initial : function()
31282     {
31283         this.selectedBrick = [];
31284         
31285         this.currentSize = this.el.getBox(true);
31286         
31287         Roo.EventManager.onWindowResize(this.resize, this); 
31288
31289         if(!this.isAutoInitial){
31290             this.layout();
31291             return;
31292         }
31293         
31294         this.layout();
31295         
31296         return;
31297         //this.layout.defer(500,this);
31298         
31299     },
31300     
31301     resize : function()
31302     {
31303         var cs = this.el.getBox(true);
31304         
31305         if (
31306                 this.currentSize.width == cs.width && 
31307                 this.currentSize.x == cs.x && 
31308                 this.currentSize.height == cs.height && 
31309                 this.currentSize.y == cs.y 
31310         ) {
31311             Roo.log("no change in with or X or Y");
31312             return;
31313         }
31314         
31315         this.currentSize = cs;
31316         
31317         this.layout();
31318         
31319     },
31320     
31321     layout : function()
31322     {   
31323         this._resetLayout();
31324         
31325         var isInstant = this.isLayoutInstant !== undefined ? this.isLayoutInstant : !this._isLayoutInited;
31326         
31327         this.layoutItems( isInstant );
31328       
31329         this._isLayoutInited = true;
31330         
31331         this.fireEvent('layout', this);
31332         
31333     },
31334     
31335     _resetLayout : function()
31336     {
31337         if(this.isHorizontal){
31338             this.horizontalMeasureColumns();
31339             return;
31340         }
31341         
31342         this.verticalMeasureColumns();
31343         
31344     },
31345     
31346     verticalMeasureColumns : function()
31347     {
31348         this.getContainerWidth();
31349         
31350 //        if(Roo.lib.Dom.getViewWidth() < 768 && this.isAlternative){
31351 //            this.colWidth = Math.floor(this.containerWidth * 0.8);
31352 //            return;
31353 //        }
31354         
31355         var boxWidth = this.boxWidth + this.padWidth;
31356         
31357         if(this.containerWidth < this.boxWidth){
31358             boxWidth = this.containerWidth
31359         }
31360         
31361         var containerWidth = this.containerWidth;
31362         
31363         var cols = Math.floor(containerWidth / boxWidth);
31364         
31365         this.cols = Math.max( cols, 1 );
31366         
31367         this.cols = this.maxCols > 0 ? Math.min( this.cols, this.maxCols ) : this.cols;
31368         
31369         var totalBoxWidth = this.cols * boxWidth - this.padWidth;
31370         
31371         var avail = Math.floor((containerWidth - totalBoxWidth) / this.cols);
31372         
31373         this.colWidth = boxWidth + avail - this.padWidth;
31374         
31375         this.unitWidth = Math.round((this.colWidth - (this.gutter * 2)) / 3);
31376         this.unitHeight = this.boxHeight > 0 ? this.boxHeight  : this.unitWidth;
31377     },
31378     
31379     horizontalMeasureColumns : function()
31380     {
31381         this.getContainerWidth();
31382         
31383         var boxWidth = this.boxWidth;
31384         
31385         if(this.containerWidth < boxWidth){
31386             boxWidth = this.containerWidth;
31387         }
31388         
31389         this.unitWidth = Math.floor((boxWidth - (this.gutter * 2)) / 3);
31390         
31391         this.el.setHeight(boxWidth);
31392         
31393     },
31394     
31395     getContainerWidth : function()
31396     {
31397         this.containerWidth = this.el.getBox(true).width;  //maybe use getComputedWidth
31398     },
31399     
31400     layoutItems : function( isInstant )
31401     {
31402         Roo.log(this.bricks);
31403         
31404         var items = Roo.apply([], this.bricks);
31405         
31406         if(this.isHorizontal){
31407             this._horizontalLayoutItems( items , isInstant );
31408             return;
31409         }
31410         
31411 //        if(Roo.lib.Dom.getViewWidth() < 768 && this.isAlternative){
31412 //            this._verticalAlternativeLayoutItems( items , isInstant );
31413 //            return;
31414 //        }
31415         
31416         this._verticalLayoutItems( items , isInstant );
31417         
31418     },
31419     
31420     _verticalLayoutItems : function ( items , isInstant)
31421     {
31422         if ( !items || !items.length ) {
31423             return;
31424         }
31425         
31426         var standard = [
31427             ['xs', 'xs', 'xs', 'tall'],
31428             ['xs', 'xs', 'tall'],
31429             ['xs', 'xs', 'sm'],
31430             ['xs', 'xs', 'xs'],
31431             ['xs', 'tall'],
31432             ['xs', 'sm'],
31433             ['xs', 'xs'],
31434             ['xs'],
31435             
31436             ['sm', 'xs', 'xs'],
31437             ['sm', 'xs'],
31438             ['sm'],
31439             
31440             ['tall', 'xs', 'xs', 'xs'],
31441             ['tall', 'xs', 'xs'],
31442             ['tall', 'xs'],
31443             ['tall']
31444             
31445         ];
31446         
31447         var queue = [];
31448         
31449         var boxes = [];
31450         
31451         var box = [];
31452         
31453         Roo.each(items, function(item, k){
31454             
31455             switch (item.size) {
31456                 // these layouts take up a full box,
31457                 case 'md' :
31458                 case 'md-left' :
31459                 case 'md-right' :
31460                 case 'wide' :
31461                     
31462                     if(box.length){
31463                         boxes.push(box);
31464                         box = [];
31465                     }
31466                     
31467                     boxes.push([item]);
31468                     
31469                     break;
31470                     
31471                 case 'xs' :
31472                 case 'sm' :
31473                 case 'tall' :
31474                     
31475                     box.push(item);
31476                     
31477                     break;
31478                 default :
31479                     break;
31480                     
31481             }
31482             
31483         }, this);
31484         
31485         if(box.length){
31486             boxes.push(box);
31487             box = [];
31488         }
31489         
31490         var filterPattern = function(box, length)
31491         {
31492             if(!box.length){
31493                 return;
31494             }
31495             
31496             var match = false;
31497             
31498             var pattern = box.slice(0, length);
31499             
31500             var format = [];
31501             
31502             Roo.each(pattern, function(i){
31503                 format.push(i.size);
31504             }, this);
31505             
31506             Roo.each(standard, function(s){
31507                 
31508                 if(String(s) != String(format)){
31509                     return;
31510                 }
31511                 
31512                 match = true;
31513                 return false;
31514                 
31515             }, this);
31516             
31517             if(!match && length == 1){
31518                 return;
31519             }
31520             
31521             if(!match){
31522                 filterPattern(box, length - 1);
31523                 return;
31524             }
31525                 
31526             queue.push(pattern);
31527
31528             box = box.slice(length, box.length);
31529
31530             filterPattern(box, 4);
31531
31532             return;
31533             
31534         }
31535         
31536         Roo.each(boxes, function(box, k){
31537             
31538             if(!box.length){
31539                 return;
31540             }
31541             
31542             if(box.length == 1){
31543                 queue.push(box);
31544                 return;
31545             }
31546             
31547             filterPattern(box, 4);
31548             
31549         }, this);
31550         
31551         this._processVerticalLayoutQueue( queue, isInstant );
31552         
31553     },
31554     
31555 //    _verticalAlternativeLayoutItems : function( items , isInstant )
31556 //    {
31557 //        if ( !items || !items.length ) {
31558 //            return;
31559 //        }
31560 //
31561 //        this._processVerticalAlternativeLayoutQueue( items, isInstant );
31562 //        
31563 //    },
31564     
31565     _horizontalLayoutItems : function ( items , isInstant)
31566     {
31567         if ( !items || !items.length || items.length < 3) {
31568             return;
31569         }
31570         
31571         items.reverse();
31572         
31573         var eItems = items.slice(0, 3);
31574         
31575         items = items.slice(3, items.length);
31576         
31577         var standard = [
31578             ['xs', 'xs', 'xs', 'wide'],
31579             ['xs', 'xs', 'wide'],
31580             ['xs', 'xs', 'sm'],
31581             ['xs', 'xs', 'xs'],
31582             ['xs', 'wide'],
31583             ['xs', 'sm'],
31584             ['xs', 'xs'],
31585             ['xs'],
31586             
31587             ['sm', 'xs', 'xs'],
31588             ['sm', 'xs'],
31589             ['sm'],
31590             
31591             ['wide', 'xs', 'xs', 'xs'],
31592             ['wide', 'xs', 'xs'],
31593             ['wide', 'xs'],
31594             ['wide'],
31595             
31596             ['wide-thin']
31597         ];
31598         
31599         var queue = [];
31600         
31601         var boxes = [];
31602         
31603         var box = [];
31604         
31605         Roo.each(items, function(item, k){
31606             
31607             switch (item.size) {
31608                 case 'md' :
31609                 case 'md-left' :
31610                 case 'md-right' :
31611                 case 'tall' :
31612                     
31613                     if(box.length){
31614                         boxes.push(box);
31615                         box = [];
31616                     }
31617                     
31618                     boxes.push([item]);
31619                     
31620                     break;
31621                     
31622                 case 'xs' :
31623                 case 'sm' :
31624                 case 'wide' :
31625                 case 'wide-thin' :
31626                     
31627                     box.push(item);
31628                     
31629                     break;
31630                 default :
31631                     break;
31632                     
31633             }
31634             
31635         }, this);
31636         
31637         if(box.length){
31638             boxes.push(box);
31639             box = [];
31640         }
31641         
31642         var filterPattern = function(box, length)
31643         {
31644             if(!box.length){
31645                 return;
31646             }
31647             
31648             var match = false;
31649             
31650             var pattern = box.slice(0, length);
31651             
31652             var format = [];
31653             
31654             Roo.each(pattern, function(i){
31655                 format.push(i.size);
31656             }, this);
31657             
31658             Roo.each(standard, function(s){
31659                 
31660                 if(String(s) != String(format)){
31661                     return;
31662                 }
31663                 
31664                 match = true;
31665                 return false;
31666                 
31667             }, this);
31668             
31669             if(!match && length == 1){
31670                 return;
31671             }
31672             
31673             if(!match){
31674                 filterPattern(box, length - 1);
31675                 return;
31676             }
31677                 
31678             queue.push(pattern);
31679
31680             box = box.slice(length, box.length);
31681
31682             filterPattern(box, 4);
31683
31684             return;
31685             
31686         }
31687         
31688         Roo.each(boxes, function(box, k){
31689             
31690             if(!box.length){
31691                 return;
31692             }
31693             
31694             if(box.length == 1){
31695                 queue.push(box);
31696                 return;
31697             }
31698             
31699             filterPattern(box, 4);
31700             
31701         }, this);
31702         
31703         
31704         var prune = [];
31705         
31706         var pos = this.el.getBox(true);
31707         
31708         var minX = pos.x;
31709         
31710         var maxX = pos.right - this.unitWidth * 3 - this.gutter * 2 - this.padWidth;
31711         
31712         var hit_end = false;
31713         
31714         Roo.each(queue, function(box){
31715             
31716             if(hit_end){
31717                 
31718                 Roo.each(box, function(b){
31719                 
31720                     b.el.setVisibilityMode(Roo.Element.DISPLAY);
31721                     b.el.hide();
31722
31723                 }, this);
31724
31725                 return;
31726             }
31727             
31728             var mx = 0;
31729             
31730             Roo.each(box, function(b){
31731                 
31732                 b.el.setVisibilityMode(Roo.Element.DISPLAY);
31733                 b.el.show();
31734
31735                 mx = Math.max(mx, b.x);
31736                 
31737             }, this);
31738             
31739             maxX = maxX - this.unitWidth * mx - this.gutter * (mx - 1) - this.padWidth;
31740             
31741             if(maxX < minX){
31742                 
31743                 Roo.each(box, function(b){
31744                 
31745                     b.el.setVisibilityMode(Roo.Element.DISPLAY);
31746                     b.el.hide();
31747                     
31748                 }, this);
31749                 
31750                 hit_end = true;
31751                 
31752                 return;
31753             }
31754             
31755             prune.push(box);
31756             
31757         }, this);
31758         
31759         this._processHorizontalLayoutQueue( prune, eItems, isInstant );
31760     },
31761     
31762     /** Sets position of item in DOM
31763     * @param {Element} item
31764     * @param {Number} x - horizontal position
31765     * @param {Number} y - vertical position
31766     * @param {Boolean} isInstant - disables transitions
31767     */
31768     _processVerticalLayoutQueue : function( queue, isInstant )
31769     {
31770         var pos = this.el.getBox(true);
31771         var x = pos.x;
31772         var y = pos.y;
31773         var maxY = [];
31774         
31775         for (var i = 0; i < this.cols; i++){
31776             maxY[i] = pos.y;
31777         }
31778         
31779         Roo.each(queue, function(box, k){
31780             
31781             var col = k % this.cols;
31782             
31783             Roo.each(box, function(b,kk){
31784                 
31785                 b.el.position('absolute');
31786                 
31787                 var width = Math.floor(this.unitWidth * b.x + (this.gutter * (b.x - 1)) + b.el.getPadding('lr'));
31788                 var height = Math.floor(this.unitHeight * b.y + (this.gutter * (b.y - 1)) + b.el.getPadding('tb'));
31789                 
31790                 if(b.size == 'md-left' || b.size == 'md-right'){
31791                     width = Math.floor(this.unitWidth * (b.x - 1) + (this.gutter * (b.x - 2)) + b.el.getPadding('lr'));
31792                     height = Math.floor(this.unitHeight * (b.y - 1) + (this.gutter * (b.y - 2)) + b.el.getPadding('tb'));
31793                 }
31794                 
31795                 b.el.setWidth(width);
31796                 b.el.setHeight(height);
31797                 // iframe?
31798                 b.el.select('iframe',true).setSize(width,height);
31799                 
31800             }, this);
31801             
31802             for (var i = 0; i < this.cols; i++){
31803                 
31804                 if(maxY[i] < maxY[col]){
31805                     col = i;
31806                     continue;
31807                 }
31808                 
31809                 col = Math.min(col, i);
31810                 
31811             }
31812             
31813             x = pos.x + col * (this.colWidth + this.padWidth);
31814             
31815             y = maxY[col];
31816             
31817             var positions = [];
31818             
31819             switch (box.length){
31820                 case 1 :
31821                     positions = this.getVerticalOneBoxColPositions(x, y, box);
31822                     break;
31823                 case 2 :
31824                     positions = this.getVerticalTwoBoxColPositions(x, y, box);
31825                     break;
31826                 case 3 :
31827                     positions = this.getVerticalThreeBoxColPositions(x, y, box);
31828                     break;
31829                 case 4 :
31830                     positions = this.getVerticalFourBoxColPositions(x, y, box);
31831                     break;
31832                 default :
31833                     break;
31834             }
31835             
31836             Roo.each(box, function(b,kk){
31837                 
31838                 b.el.setXY([positions[kk].x, positions[kk].y], isInstant ? false : true);
31839                 
31840                 var sz = b.el.getSize();
31841                 
31842                 maxY[col] = Math.max(maxY[col], positions[kk].y + sz.height + this.padWidth);
31843                 
31844             }, this);
31845             
31846         }, this);
31847         
31848         var mY = 0;
31849         
31850         for (var i = 0; i < this.cols; i++){
31851             mY = Math.max(mY, maxY[i]);
31852         }
31853         
31854         this.el.setHeight(mY - pos.y);
31855         
31856     },
31857     
31858 //    _processVerticalAlternativeLayoutQueue : function( items, isInstant )
31859 //    {
31860 //        var pos = this.el.getBox(true);
31861 //        var x = pos.x;
31862 //        var y = pos.y;
31863 //        var maxX = pos.right;
31864 //        
31865 //        var maxHeight = 0;
31866 //        
31867 //        Roo.each(items, function(item, k){
31868 //            
31869 //            var c = k % 2;
31870 //            
31871 //            item.el.position('absolute');
31872 //                
31873 //            var width = Math.floor(this.colWidth + item.el.getPadding('lr'));
31874 //
31875 //            item.el.setWidth(width);
31876 //
31877 //            var height = Math.floor(this.colWidth * item.y / item.x + item.el.getPadding('tb'));
31878 //
31879 //            item.el.setHeight(height);
31880 //            
31881 //            if(c == 0){
31882 //                item.el.setXY([x, y], isInstant ? false : true);
31883 //            } else {
31884 //                item.el.setXY([maxX - width, y], isInstant ? false : true);
31885 //            }
31886 //            
31887 //            y = y + height + this.alternativePadWidth;
31888 //            
31889 //            maxHeight = maxHeight + height + this.alternativePadWidth;
31890 //            
31891 //        }, this);
31892 //        
31893 //        this.el.setHeight(maxHeight);
31894 //        
31895 //    },
31896     
31897     _processHorizontalLayoutQueue : function( queue, eItems, isInstant )
31898     {
31899         var pos = this.el.getBox(true);
31900         
31901         var minX = pos.x;
31902         var minY = pos.y;
31903         
31904         var maxX = pos.right;
31905         
31906         this._processHorizontalEndItem(eItems, maxX, minX, minY, isInstant);
31907         
31908         var maxX = maxX - this.unitWidth * 3 - this.gutter * 2 - this.padWidth;
31909         
31910         Roo.each(queue, function(box, k){
31911             
31912             Roo.each(box, function(b, kk){
31913                 
31914                 b.el.position('absolute');
31915                 
31916                 var width = Math.floor(this.unitWidth * b.x + (this.gutter * (b.x - 1)) + b.el.getPadding('lr'));
31917                 var height = Math.floor(this.unitWidth * b.y + (this.gutter * (b.y - 1)) + b.el.getPadding('tb'));
31918                 
31919                 if(b.size == 'md-left' || b.size == 'md-right'){
31920                     width = Math.floor(this.unitWidth * (b.x - 1) + (this.gutter * (b.x - 2)) + b.el.getPadding('lr'));
31921                     height = Math.floor(this.unitWidth * (b.y - 1) + (this.gutter * (b.y - 2)) + b.el.getPadding('tb'));
31922                 }
31923                 
31924                 b.el.setWidth(width);
31925                 b.el.setHeight(height);
31926                 
31927             }, this);
31928             
31929             if(!box.length){
31930                 return;
31931             }
31932             
31933             var positions = [];
31934             
31935             switch (box.length){
31936                 case 1 :
31937                     positions = this.getHorizontalOneBoxColPositions(maxX, minY, box);
31938                     break;
31939                 case 2 :
31940                     positions = this.getHorizontalTwoBoxColPositions(maxX, minY, box);
31941                     break;
31942                 case 3 :
31943                     positions = this.getHorizontalThreeBoxColPositions(maxX, minY, box);
31944                     break;
31945                 case 4 :
31946                     positions = this.getHorizontalFourBoxColPositions(maxX, minY, box);
31947                     break;
31948                 default :
31949                     break;
31950             }
31951             
31952             Roo.each(box, function(b,kk){
31953                 
31954                 b.el.setXY([positions[kk].x, positions[kk].y], isInstant ? false : true);
31955                 
31956                 maxX = Math.min(maxX, positions[kk].x - this.padWidth);
31957                 
31958             }, this);
31959             
31960         }, this);
31961         
31962     },
31963     
31964     _processHorizontalEndItem : function(eItems, maxX, minX, minY, isInstant)
31965     {
31966         Roo.each(eItems, function(b,k){
31967             
31968             b.size = (k == 0) ? 'sm' : 'xs';
31969             b.x = (k == 0) ? 2 : 1;
31970             b.y = (k == 0) ? 2 : 1;
31971             
31972             b.el.position('absolute');
31973             
31974             var width = Math.floor(this.unitWidth * b.x + (this.gutter * (b.x - 1)) + b.el.getPadding('lr'));
31975                 
31976             b.el.setWidth(width);
31977             
31978             var height = Math.floor(this.unitWidth * b.y + (this.gutter * (b.y - 1)) + b.el.getPadding('tb'));
31979             
31980             b.el.setHeight(height);
31981             
31982         }, this);
31983
31984         var positions = [];
31985         
31986         positions.push({
31987             x : maxX - this.unitWidth * 2 - this.gutter,
31988             y : minY
31989         });
31990         
31991         positions.push({
31992             x : maxX - this.unitWidth,
31993             y : minY + (this.unitWidth + this.gutter) * 2
31994         });
31995         
31996         positions.push({
31997             x : maxX - this.unitWidth * 3 - this.gutter * 2,
31998             y : minY
31999         });
32000         
32001         Roo.each(eItems, function(b,k){
32002             
32003             b.el.setXY([positions[k].x, positions[k].y], isInstant ? false : true);
32004
32005         }, this);
32006         
32007     },
32008     
32009     getVerticalOneBoxColPositions : function(x, y, box)
32010     {
32011         var pos = [];
32012         
32013         var rand = Math.floor(Math.random() * ((4 - box[0].x)));
32014         
32015         if(box[0].size == 'md-left'){
32016             rand = 0;
32017         }
32018         
32019         if(box[0].size == 'md-right'){
32020             rand = 1;
32021         }
32022         
32023         pos.push({
32024             x : x + (this.unitWidth + this.gutter) * rand,
32025             y : y
32026         });
32027         
32028         return pos;
32029     },
32030     
32031     getVerticalTwoBoxColPositions : function(x, y, box)
32032     {
32033         var pos = [];
32034         
32035         if(box[0].size == 'xs'){
32036             
32037             pos.push({
32038                 x : x,
32039                 y : y + ((this.unitHeight + this.gutter) * Math.floor(Math.random() * box[1].y))
32040             });
32041
32042             pos.push({
32043                 x : x + (this.unitWidth + this.gutter) * (3 - box[1].x),
32044                 y : y
32045             });
32046             
32047             return pos;
32048             
32049         }
32050         
32051         pos.push({
32052             x : x,
32053             y : y
32054         });
32055
32056         pos.push({
32057             x : x + (this.unitWidth + this.gutter) * 2,
32058             y : y + ((this.unitHeight + this.gutter) * Math.floor(Math.random() * box[0].y))
32059         });
32060         
32061         return pos;
32062         
32063     },
32064     
32065     getVerticalThreeBoxColPositions : function(x, y, box)
32066     {
32067         var pos = [];
32068         
32069         if(box[0].size == 'xs' && box[1].size == 'xs' && box[2].size == 'xs'){
32070             
32071             pos.push({
32072                 x : x,
32073                 y : y
32074             });
32075
32076             pos.push({
32077                 x : x + (this.unitWidth + this.gutter) * 1,
32078                 y : y
32079             });
32080             
32081             pos.push({
32082                 x : x + (this.unitWidth + this.gutter) * 2,
32083                 y : y
32084             });
32085             
32086             return pos;
32087             
32088         }
32089         
32090         if(box[0].size == 'xs' && box[1].size == 'xs'){
32091             
32092             pos.push({
32093                 x : x,
32094                 y : y
32095             });
32096
32097             pos.push({
32098                 x : x,
32099                 y : y + ((this.unitHeight + this.gutter) * (box[2].y - 1))
32100             });
32101             
32102             pos.push({
32103                 x : x + (this.unitWidth + this.gutter) * 1,
32104                 y : y
32105             });
32106             
32107             return pos;
32108             
32109         }
32110         
32111         pos.push({
32112             x : x,
32113             y : y
32114         });
32115
32116         pos.push({
32117             x : x + (this.unitWidth + this.gutter) * 2,
32118             y : y
32119         });
32120
32121         pos.push({
32122             x : x + (this.unitWidth + this.gutter) * 2,
32123             y : y + (this.unitHeight + this.gutter) * (box[0].y - 1)
32124         });
32125             
32126         return pos;
32127         
32128     },
32129     
32130     getVerticalFourBoxColPositions : function(x, y, box)
32131     {
32132         var pos = [];
32133         
32134         if(box[0].size == 'xs'){
32135             
32136             pos.push({
32137                 x : x,
32138                 y : y
32139             });
32140
32141             pos.push({
32142                 x : x,
32143                 y : y + (this.unitHeight + this.gutter) * 1
32144             });
32145             
32146             pos.push({
32147                 x : x,
32148                 y : y + (this.unitHeight + this.gutter) * 2
32149             });
32150             
32151             pos.push({
32152                 x : x + (this.unitWidth + this.gutter) * 1,
32153                 y : y
32154             });
32155             
32156             return pos;
32157             
32158         }
32159         
32160         pos.push({
32161             x : x,
32162             y : y
32163         });
32164
32165         pos.push({
32166             x : x + (this.unitWidth + this.gutter) * 2,
32167             y : y
32168         });
32169
32170         pos.push({
32171             x : x + (this.unitHeightunitWidth + this.gutter) * 2,
32172             y : y + (this.unitHeight + this.gutter) * 1
32173         });
32174
32175         pos.push({
32176             x : x + (this.unitWidth + this.gutter) * 2,
32177             y : y + (this.unitWidth + this.gutter) * 2
32178         });
32179
32180         return pos;
32181         
32182     },
32183     
32184     getHorizontalOneBoxColPositions : function(maxX, minY, box)
32185     {
32186         var pos = [];
32187         
32188         if(box[0].size == 'md-left'){
32189             pos.push({
32190                 x : maxX - this.unitWidth * (box[0].x - 1) - this.gutter * (box[0].x - 2),
32191                 y : minY
32192             });
32193             
32194             return pos;
32195         }
32196         
32197         if(box[0].size == 'md-right'){
32198             pos.push({
32199                 x : maxX - this.unitWidth * (box[0].x - 1) - this.gutter * (box[0].x - 2),
32200                 y : minY + (this.unitWidth + this.gutter) * 1
32201             });
32202             
32203             return pos;
32204         }
32205         
32206         var rand = Math.floor(Math.random() * (4 - box[0].y));
32207         
32208         pos.push({
32209             x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
32210             y : minY + (this.unitWidth + this.gutter) * rand
32211         });
32212         
32213         return pos;
32214         
32215     },
32216     
32217     getHorizontalTwoBoxColPositions : function(maxX, minY, box)
32218     {
32219         var pos = [];
32220         
32221         if(box[0].size == 'xs'){
32222             
32223             pos.push({
32224                 x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
32225                 y : minY
32226             });
32227
32228             pos.push({
32229                 x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
32230                 y : minY + (this.unitWidth + this.gutter) * (3 - box[1].y)
32231             });
32232             
32233             return pos;
32234             
32235         }
32236         
32237         pos.push({
32238             x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
32239             y : minY
32240         });
32241
32242         pos.push({
32243             x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
32244             y : minY + (this.unitWidth + this.gutter) * 2
32245         });
32246         
32247         return pos;
32248         
32249     },
32250     
32251     getHorizontalThreeBoxColPositions : function(maxX, minY, box)
32252     {
32253         var pos = [];
32254         
32255         if(box[0].size == 'xs' && box[1].size == 'xs' && box[2].size == 'xs'){
32256             
32257             pos.push({
32258                 x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
32259                 y : minY
32260             });
32261
32262             pos.push({
32263                 x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
32264                 y : minY + (this.unitWidth + this.gutter) * 1
32265             });
32266             
32267             pos.push({
32268                 x : maxX - this.unitWidth * box[2].x - this.gutter * (box[2].x - 1),
32269                 y : minY + (this.unitWidth + this.gutter) * 2
32270             });
32271             
32272             return pos;
32273             
32274         }
32275         
32276         if(box[0].size == 'xs' && box[1].size == 'xs'){
32277             
32278             pos.push({
32279                 x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
32280                 y : minY
32281             });
32282
32283             pos.push({
32284                 x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1) - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
32285                 y : minY
32286             });
32287             
32288             pos.push({
32289                 x : maxX - this.unitWidth * box[2].x - this.gutter * (box[2].x - 1),
32290                 y : minY + (this.unitWidth + this.gutter) * 1
32291             });
32292             
32293             return pos;
32294             
32295         }
32296         
32297         pos.push({
32298             x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
32299             y : minY
32300         });
32301
32302         pos.push({
32303             x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
32304             y : minY + (this.unitWidth + this.gutter) * 2
32305         });
32306
32307         pos.push({
32308             x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1) - this.unitWidth * box[2].x - this.gutter * (box[2].x - 1),
32309             y : minY + (this.unitWidth + this.gutter) * 2
32310         });
32311             
32312         return pos;
32313         
32314     },
32315     
32316     getHorizontalFourBoxColPositions : function(maxX, minY, box)
32317     {
32318         var pos = [];
32319         
32320         if(box[0].size == 'xs'){
32321             
32322             pos.push({
32323                 x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
32324                 y : minY
32325             });
32326
32327             pos.push({
32328                 x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1) - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
32329                 y : minY
32330             });
32331             
32332             pos.push({
32333                 x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1) - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1) - this.unitWidth * box[2].x - this.gutter * (box[2].x - 1),
32334                 y : minY
32335             });
32336             
32337             pos.push({
32338                 x : maxX - this.unitWidth * box[3].x - this.gutter * (box[3].x - 1),
32339                 y : minY + (this.unitWidth + this.gutter) * 1
32340             });
32341             
32342             return pos;
32343             
32344         }
32345         
32346         pos.push({
32347             x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
32348             y : minY
32349         });
32350         
32351         pos.push({
32352             x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
32353             y : minY + (this.unitWidth + this.gutter) * 2
32354         });
32355         
32356         pos.push({
32357             x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1) - this.unitWidth * box[2].x - this.gutter * (box[2].x - 1),
32358             y : minY + (this.unitWidth + this.gutter) * 2
32359         });
32360         
32361         pos.push({
32362             x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1) - this.unitWidth * box[2].x - this.gutter * (box[2].x - 1) - this.unitWidth * box[3].x - this.gutter * (box[3].x - 1),
32363             y : minY + (this.unitWidth + this.gutter) * 2
32364         });
32365
32366         return pos;
32367         
32368     },
32369     
32370     /**
32371     * remove a Masonry Brick
32372     * @param {Roo.bootstrap.MasonryBrick} the masonry brick to remove
32373     */
32374     removeBrick : function(brick_id)
32375     {
32376         if (!brick_id) {
32377             return;
32378         }
32379         
32380         for (var i = 0; i<this.bricks.length; i++) {
32381             if (this.bricks[i].id == brick_id) {
32382                 this.bricks.splice(i,1);
32383                 this.el.dom.removeChild(Roo.get(brick_id).dom);
32384                 this.initial();
32385             }
32386         }
32387     },
32388     
32389     /**
32390     * adds a Masonry Brick
32391     * @param {Roo.bootstrap.MasonryBrick} the masonry brick to add
32392     */
32393     addBrick : function(cfg)
32394     {
32395         var cn = new Roo.bootstrap.MasonryBrick(cfg);
32396         //this.register(cn);
32397         cn.parentId = this.id;
32398         cn.render(this.el);
32399         return cn;
32400     },
32401     
32402     /**
32403     * register a Masonry Brick
32404     * @param {Roo.bootstrap.MasonryBrick} the masonry brick to add
32405     */
32406     
32407     register : function(brick)
32408     {
32409         this.bricks.push(brick);
32410         brick.masonryId = this.id;
32411     },
32412     
32413     /**
32414     * clear all the Masonry Brick
32415     */
32416     clearAll : function()
32417     {
32418         this.bricks = [];
32419         //this.getChildContainer().dom.innerHTML = "";
32420         this.el.dom.innerHTML = '';
32421     },
32422     
32423     getSelected : function()
32424     {
32425         if (!this.selectedBrick) {
32426             return false;
32427         }
32428         
32429         return this.selectedBrick;
32430     }
32431 });
32432
32433 Roo.apply(Roo.bootstrap.LayoutMasonry, {
32434     
32435     groups: {},
32436      /**
32437     * register a Masonry Layout
32438     * @param {Roo.bootstrap.LayoutMasonry} the masonry layout to add
32439     */
32440     
32441     register : function(layout)
32442     {
32443         this.groups[layout.id] = layout;
32444     },
32445     /**
32446     * fetch a  Masonry Layout based on the masonry layout ID
32447     * @param {string} the masonry layout to add
32448     * @returns {Roo.bootstrap.LayoutMasonry} the masonry layout
32449     */
32450     
32451     get: function(layout_id) {
32452         if (typeof(this.groups[layout_id]) == 'undefined') {
32453             return false;
32454         }
32455         return this.groups[layout_id] ;
32456     }
32457     
32458     
32459     
32460 });
32461
32462  
32463
32464  /**
32465  *
32466  * This is based on 
32467  * http://masonry.desandro.com
32468  *
32469  * The idea is to render all the bricks based on vertical width...
32470  *
32471  * The original code extends 'outlayer' - we might need to use that....
32472  * 
32473  */
32474
32475
32476 /**
32477  * @class Roo.bootstrap.LayoutMasonryAuto
32478  * @extends Roo.bootstrap.Component
32479  * Bootstrap Layout Masonry class
32480  * 
32481  * @constructor
32482  * Create a new Element
32483  * @param {Object} config The config object
32484  */
32485
32486 Roo.bootstrap.LayoutMasonryAuto = function(config){
32487     Roo.bootstrap.LayoutMasonryAuto.superclass.constructor.call(this, config);
32488 };
32489
32490 Roo.extend(Roo.bootstrap.LayoutMasonryAuto, Roo.bootstrap.Component,  {
32491     
32492       /**
32493      * @cfg {Boolean} isFitWidth  - resize the width..
32494      */   
32495     isFitWidth : false,  // options..
32496     /**
32497      * @cfg {Boolean} isOriginLeft = left align?
32498      */   
32499     isOriginLeft : true,
32500     /**
32501      * @cfg {Boolean} isOriginTop = top align?
32502      */   
32503     isOriginTop : false,
32504     /**
32505      * @cfg {Boolean} isLayoutInstant = no animation?
32506      */   
32507     isLayoutInstant : false, // needed?
32508     /**
32509      * @cfg {Boolean} isResizingContainer = not sure if this is used..
32510      */   
32511     isResizingContainer : true,
32512     /**
32513      * @cfg {Number} columnWidth  width of the columns 
32514      */   
32515     
32516     columnWidth : 0,
32517     
32518     /**
32519      * @cfg {Number} maxCols maximum number of columns
32520      */   
32521     
32522     maxCols: 0,
32523     /**
32524      * @cfg {Number} padHeight padding below box..
32525      */   
32526     
32527     padHeight : 10, 
32528     
32529     /**
32530      * @cfg {Boolean} isAutoInitial defalut true
32531      */   
32532     
32533     isAutoInitial : true, 
32534     
32535     // private?
32536     gutter : 0,
32537     
32538     containerWidth: 0,
32539     initialColumnWidth : 0,
32540     currentSize : null,
32541     
32542     colYs : null, // array.
32543     maxY : 0,
32544     padWidth: 10,
32545     
32546     
32547     tag: 'div',
32548     cls: '',
32549     bricks: null, //CompositeElement
32550     cols : 0, // array?
32551     // element : null, // wrapped now this.el
32552     _isLayoutInited : null, 
32553     
32554     
32555     getAutoCreate : function(){
32556         
32557         var cfg = {
32558             tag: this.tag,
32559             cls: 'blog-masonary-wrapper ' + this.cls,
32560             cn : {
32561                 cls : 'mas-boxes masonary'
32562             }
32563         };
32564         
32565         return cfg;
32566     },
32567     
32568     getChildContainer: function( )
32569     {
32570         if (this.boxesEl) {
32571             return this.boxesEl;
32572         }
32573         
32574         this.boxesEl = this.el.select('.mas-boxes').first();
32575         
32576         return this.boxesEl;
32577     },
32578     
32579     
32580     initEvents : function()
32581     {
32582         var _this = this;
32583         
32584         if(this.isAutoInitial){
32585             Roo.log('hook children rendered');
32586             this.on('childrenrendered', function() {
32587                 Roo.log('children rendered');
32588                 _this.initial();
32589             } ,this);
32590         }
32591         
32592     },
32593     
32594     initial : function()
32595     {
32596         this.reloadItems();
32597
32598         this.currentSize = this.el.getBox(true);
32599
32600         /// was window resize... - let's see if this works..
32601         Roo.EventManager.onWindowResize(this.resize, this); 
32602
32603         if(!this.isAutoInitial){
32604             this.layout();
32605             return;
32606         }
32607         
32608         this.layout.defer(500,this);
32609     },
32610     
32611     reloadItems: function()
32612     {
32613         this.bricks = this.el.select('.masonry-brick', true);
32614         
32615         this.bricks.each(function(b) {
32616             //Roo.log(b.getSize());
32617             if (!b.attr('originalwidth')) {
32618                 b.attr('originalwidth',  b.getSize().width);
32619             }
32620             
32621         });
32622         
32623         Roo.log(this.bricks.elements.length);
32624     },
32625     
32626     resize : function()
32627     {
32628         Roo.log('resize');
32629         var cs = this.el.getBox(true);
32630         
32631         if (this.currentSize.width == cs.width && this.currentSize.x == cs.x ) {
32632             Roo.log("no change in with or X");
32633             return;
32634         }
32635         this.currentSize = cs;
32636         this.layout();
32637     },
32638     
32639     layout : function()
32640     {
32641          Roo.log('layout');
32642         this._resetLayout();
32643         //this._manageStamps();
32644       
32645         // don't animate first layout
32646         var isInstant = this.isLayoutInstant !== undefined ? this.isLayoutInstant : !this._isLayoutInited;
32647         this.layoutItems( isInstant );
32648       
32649         // flag for initalized
32650         this._isLayoutInited = true;
32651     },
32652     
32653     layoutItems : function( isInstant )
32654     {
32655         //var items = this._getItemsForLayout( this.items );
32656         // original code supports filtering layout items.. we just ignore it..
32657         
32658         this._layoutItems( this.bricks , isInstant );
32659       
32660         this._postLayout();
32661     },
32662     _layoutItems : function ( items , isInstant)
32663     {
32664        //this.fireEvent( 'layout', this, items );
32665     
32666
32667         if ( !items || !items.elements.length ) {
32668           // no items, emit event with empty array
32669             return;
32670         }
32671
32672         var queue = [];
32673         items.each(function(item) {
32674             Roo.log("layout item");
32675             Roo.log(item);
32676             // get x/y object from method
32677             var position = this._getItemLayoutPosition( item );
32678             // enqueue
32679             position.item = item;
32680             position.isInstant = isInstant; // || item.isLayoutInstant; << not set yet...
32681             queue.push( position );
32682         }, this);
32683       
32684         this._processLayoutQueue( queue );
32685     },
32686     /** Sets position of item in DOM
32687     * @param {Element} item
32688     * @param {Number} x - horizontal position
32689     * @param {Number} y - vertical position
32690     * @param {Boolean} isInstant - disables transitions
32691     */
32692     _processLayoutQueue : function( queue )
32693     {
32694         for ( var i=0, len = queue.length; i < len; i++ ) {
32695             var obj = queue[i];
32696             obj.item.position('absolute');
32697             obj.item.setXY([obj.x,obj.y], obj.isInstant ? false : true);
32698         }
32699     },
32700       
32701     
32702     /**
32703     * Any logic you want to do after each layout,
32704     * i.e. size the container
32705     */
32706     _postLayout : function()
32707     {
32708         this.resizeContainer();
32709     },
32710     
32711     resizeContainer : function()
32712     {
32713         if ( !this.isResizingContainer ) {
32714             return;
32715         }
32716         var size = this._getContainerSize();
32717         if ( size ) {
32718             this.el.setSize(size.width,size.height);
32719             this.boxesEl.setSize(size.width,size.height);
32720         }
32721     },
32722     
32723     
32724     
32725     _resetLayout : function()
32726     {
32727         //this.getSize();  // -- does not really do anything.. it probably applies left/right etc. to obuject but not used
32728         this.colWidth = this.el.getWidth();
32729         //this.gutter = this.el.getWidth(); 
32730         
32731         this.measureColumns();
32732
32733         // reset column Y
32734         var i = this.cols;
32735         this.colYs = [];
32736         while (i--) {
32737             this.colYs.push( 0 );
32738         }
32739     
32740         this.maxY = 0;
32741     },
32742
32743     measureColumns : function()
32744     {
32745         this.getContainerWidth();
32746       // if columnWidth is 0, default to outerWidth of first item
32747         if ( !this.columnWidth ) {
32748             var firstItem = this.bricks.first();
32749             Roo.log(firstItem);
32750             this.columnWidth  = this.containerWidth;
32751             if (firstItem && firstItem.attr('originalwidth') ) {
32752                 this.columnWidth = 1* (firstItem.attr('originalwidth') || firstItem.getWidth());
32753             }
32754             // columnWidth fall back to item of first element
32755             Roo.log("set column width?");
32756                         this.initialColumnWidth = this.columnWidth  ;
32757
32758             // if first elem has no width, default to size of container
32759             
32760         }
32761         
32762         
32763         if (this.initialColumnWidth) {
32764             this.columnWidth = this.initialColumnWidth;
32765         }
32766         
32767         
32768             
32769         // column width is fixed at the top - however if container width get's smaller we should
32770         // reduce it...
32771         
32772         // this bit calcs how man columns..
32773             
32774         var columnWidth = this.columnWidth += this.gutter;
32775       
32776         // calculate columns
32777         var containerWidth = this.containerWidth + this.gutter;
32778         
32779         var cols = (containerWidth - this.padWidth) / (columnWidth - this.padWidth);
32780         // fix rounding errors, typically with gutters
32781         var excess = columnWidth - containerWidth % columnWidth;
32782         
32783         
32784         // if overshoot is less than a pixel, round up, otherwise floor it
32785         var mathMethod = excess && excess < 1 ? 'round' : 'floor';
32786         cols = Math[ mathMethod ]( cols );
32787         this.cols = Math.max( cols, 1 );
32788         this.cols = this.maxCols > 0 ? Math.min( this.cols, this.maxCols ) : this.cols;
32789         
32790          // padding positioning..
32791         var totalColWidth = this.cols * this.columnWidth;
32792         var padavail = this.containerWidth - totalColWidth;
32793         // so for 2 columns - we need 3 'pads'
32794         
32795         var padNeeded = (1+this.cols) * this.padWidth;
32796         
32797         var padExtra = Math.floor((padavail - padNeeded) / this.cols);
32798         
32799         this.columnWidth += padExtra
32800         //this.padWidth = Math.floor(padavail /  ( this.cols));
32801         
32802         // adjust colum width so that padding is fixed??
32803         
32804         // we have 3 columns ... total = width * 3
32805         // we have X left over... that should be used by 
32806         
32807         //if (this.expandC) {
32808             
32809         //}
32810         
32811         
32812         
32813     },
32814     
32815     getContainerWidth : function()
32816     {
32817        /* // container is parent if fit width
32818         var container = this.isFitWidth ? this.element.parentNode : this.element;
32819         // check that this.size and size are there
32820         // IE8 triggers resize on body size change, so they might not be
32821         
32822         var size = getSize( container );  //FIXME
32823         this.containerWidth = size && size.innerWidth; //FIXME
32824         */
32825          
32826         this.containerWidth = this.el.getBox(true).width;  //maybe use getComputedWidth
32827         
32828     },
32829     
32830     _getItemLayoutPosition : function( item )  // what is item?
32831     {
32832         // we resize the item to our columnWidth..
32833       
32834         item.setWidth(this.columnWidth);
32835         item.autoBoxAdjust  = false;
32836         
32837         var sz = item.getSize();
32838  
32839         // how many columns does this brick span
32840         var remainder = this.containerWidth % this.columnWidth;
32841         
32842         var mathMethod = remainder && remainder < 1 ? 'round' : 'ceil';
32843         // round if off by 1 pixel, otherwise use ceil
32844         var colSpan = Math[ mathMethod ]( sz.width  / this.columnWidth );
32845         colSpan = Math.min( colSpan, this.cols );
32846         
32847         // normally this should be '1' as we dont' currently allow multi width columns..
32848         
32849         var colGroup = this._getColGroup( colSpan );
32850         // get the minimum Y value from the columns
32851         var minimumY = Math.min.apply( Math, colGroup );
32852         Roo.log([ 'setHeight',  minimumY, sz.height, setHeight ]);
32853         
32854         var shortColIndex = colGroup.indexOf(  minimumY ); // broken on ie8..?? probably...
32855          
32856         // position the brick
32857         var position = {
32858             x: this.currentSize.x + (this.padWidth /2) + ((this.columnWidth + this.padWidth )* shortColIndex),
32859             y: this.currentSize.y + minimumY + this.padHeight
32860         };
32861         
32862         Roo.log(position);
32863         // apply setHeight to necessary columns
32864         var setHeight = minimumY + sz.height + this.padHeight;
32865         //Roo.log([ 'setHeight',  minimumY, sz.height, setHeight ]);
32866         
32867         var setSpan = this.cols + 1 - colGroup.length;
32868         for ( var i = 0; i < setSpan; i++ ) {
32869           this.colYs[ shortColIndex + i ] = setHeight ;
32870         }
32871       
32872         return position;
32873     },
32874     
32875     /**
32876      * @param {Number} colSpan - number of columns the element spans
32877      * @returns {Array} colGroup
32878      */
32879     _getColGroup : function( colSpan )
32880     {
32881         if ( colSpan < 2 ) {
32882           // if brick spans only one column, use all the column Ys
32883           return this.colYs;
32884         }
32885       
32886         var colGroup = [];
32887         // how many different places could this brick fit horizontally
32888         var groupCount = this.cols + 1 - colSpan;
32889         // for each group potential horizontal position
32890         for ( var i = 0; i < groupCount; i++ ) {
32891           // make an array of colY values for that one group
32892           var groupColYs = this.colYs.slice( i, i + colSpan );
32893           // and get the max value of the array
32894           colGroup[i] = Math.max.apply( Math, groupColYs );
32895         }
32896         return colGroup;
32897     },
32898     /*
32899     _manageStamp : function( stamp )
32900     {
32901         var stampSize =  stamp.getSize();
32902         var offset = stamp.getBox();
32903         // get the columns that this stamp affects
32904         var firstX = this.isOriginLeft ? offset.x : offset.right;
32905         var lastX = firstX + stampSize.width;
32906         var firstCol = Math.floor( firstX / this.columnWidth );
32907         firstCol = Math.max( 0, firstCol );
32908         
32909         var lastCol = Math.floor( lastX / this.columnWidth );
32910         // lastCol should not go over if multiple of columnWidth #425
32911         lastCol -= lastX % this.columnWidth ? 0 : 1;
32912         lastCol = Math.min( this.cols - 1, lastCol );
32913         
32914         // set colYs to bottom of the stamp
32915         var stampMaxY = ( this.isOriginTop ? offset.y : offset.bottom ) +
32916             stampSize.height;
32917             
32918         for ( var i = firstCol; i <= lastCol; i++ ) {
32919           this.colYs[i] = Math.max( stampMaxY, this.colYs[i] );
32920         }
32921     },
32922     */
32923     
32924     _getContainerSize : function()
32925     {
32926         this.maxY = Math.max.apply( Math, this.colYs );
32927         var size = {
32928             height: this.maxY
32929         };
32930       
32931         if ( this.isFitWidth ) {
32932             size.width = this._getContainerFitWidth();
32933         }
32934       
32935         return size;
32936     },
32937     
32938     _getContainerFitWidth : function()
32939     {
32940         var unusedCols = 0;
32941         // count unused columns
32942         var i = this.cols;
32943         while ( --i ) {
32944           if ( this.colYs[i] !== 0 ) {
32945             break;
32946           }
32947           unusedCols++;
32948         }
32949         // fit container to columns that have been used
32950         return ( this.cols - unusedCols ) * this.columnWidth - this.gutter;
32951     },
32952     
32953     needsResizeLayout : function()
32954     {
32955         var previousWidth = this.containerWidth;
32956         this.getContainerWidth();
32957         return previousWidth !== this.containerWidth;
32958     }
32959  
32960 });
32961
32962  
32963
32964  /*
32965  * - LGPL
32966  *
32967  * element
32968  * 
32969  */
32970
32971 /**
32972  * @class Roo.bootstrap.MasonryBrick
32973  * @extends Roo.bootstrap.Component
32974  * Bootstrap MasonryBrick class
32975  * 
32976  * @constructor
32977  * Create a new MasonryBrick
32978  * @param {Object} config The config object
32979  */
32980
32981 Roo.bootstrap.MasonryBrick = function(config){
32982     
32983     Roo.bootstrap.MasonryBrick.superclass.constructor.call(this, config);
32984     
32985     Roo.bootstrap.MasonryBrick.register(this);
32986     
32987     this.addEvents({
32988         // raw events
32989         /**
32990          * @event click
32991          * When a MasonryBrick is clcik
32992          * @param {Roo.bootstrap.MasonryBrick} this
32993          * @param {Roo.EventObject} e
32994          */
32995         "click" : true
32996     });
32997 };
32998
32999 Roo.extend(Roo.bootstrap.MasonryBrick, Roo.bootstrap.Component,  {
33000     
33001     /**
33002      * @cfg {String} title
33003      */   
33004     title : '',
33005     /**
33006      * @cfg {String} html
33007      */   
33008     html : '',
33009     /**
33010      * @cfg {String} bgimage
33011      */   
33012     bgimage : '',
33013     /**
33014      * @cfg {String} videourl
33015      */   
33016     videourl : '',
33017     /**
33018      * @cfg {String} cls
33019      */   
33020     cls : '',
33021     /**
33022      * @cfg {String} href
33023      */   
33024     href : '',
33025     /**
33026      * @cfg {String} size (xs|sm|md|md-left|md-right|tall|wide)
33027      */   
33028     size : 'xs',
33029     
33030     /**
33031      * @cfg {String} placetitle (center|bottom)
33032      */   
33033     placetitle : '',
33034     
33035     /**
33036      * @cfg {Boolean} isFitContainer defalut true
33037      */   
33038     isFitContainer : true, 
33039     
33040     /**
33041      * @cfg {Boolean} preventDefault defalut false
33042      */   
33043     preventDefault : false, 
33044     
33045     /**
33046      * @cfg {Boolean} inverse defalut false
33047      */   
33048     maskInverse : false, 
33049     
33050     getAutoCreate : function()
33051     {
33052         if(!this.isFitContainer){
33053             return this.getSplitAutoCreate();
33054         }
33055         
33056         var cls = 'masonry-brick masonry-brick-full';
33057         
33058         if(this.href.length){
33059             cls += ' masonry-brick-link';
33060         }
33061         
33062         if(this.bgimage.length){
33063             cls += ' masonry-brick-image';
33064         }
33065         
33066         if(this.maskInverse){
33067             cls += ' mask-inverse';
33068         }
33069         
33070         if(!this.html.length && !this.maskInverse && !this.videourl.length){
33071             cls += ' enable-mask';
33072         }
33073         
33074         if(this.size){
33075             cls += ' masonry-' + this.size + '-brick';
33076         }
33077         
33078         if(this.placetitle.length){
33079             
33080             switch (this.placetitle) {
33081                 case 'center' :
33082                     cls += ' masonry-center-title';
33083                     break;
33084                 case 'bottom' :
33085                     cls += ' masonry-bottom-title';
33086                     break;
33087                 default:
33088                     break;
33089             }
33090             
33091         } else {
33092             if(!this.html.length && !this.bgimage.length){
33093                 cls += ' masonry-center-title';
33094             }
33095
33096             if(!this.html.length && this.bgimage.length){
33097                 cls += ' masonry-bottom-title';
33098             }
33099         }
33100         
33101         if(this.cls){
33102             cls += ' ' + this.cls;
33103         }
33104         
33105         var cfg = {
33106             tag: (this.href.length) ? 'a' : 'div',
33107             cls: cls,
33108             cn: [
33109                 {
33110                     tag: 'div',
33111                     cls: 'masonry-brick-mask'
33112                 },
33113                 {
33114                     tag: 'div',
33115                     cls: 'masonry-brick-paragraph',
33116                     cn: []
33117                 }
33118             ]
33119         };
33120         
33121         if(this.href.length){
33122             cfg.href = this.href;
33123         }
33124         
33125         var cn = cfg.cn[1].cn;
33126         
33127         if(this.title.length){
33128             cn.push({
33129                 tag: 'h4',
33130                 cls: 'masonry-brick-title',
33131                 html: this.title
33132             });
33133         }
33134         
33135         if(this.html.length){
33136             cn.push({
33137                 tag: 'p',
33138                 cls: 'masonry-brick-text',
33139                 html: this.html
33140             });
33141         }
33142         
33143         if (!this.title.length && !this.html.length) {
33144             cfg.cn[1].cls += ' hide';
33145         }
33146         
33147         if(this.bgimage.length){
33148             cfg.cn.push({
33149                 tag: 'img',
33150                 cls: 'masonry-brick-image-view',
33151                 src: this.bgimage
33152             });
33153         }
33154         
33155         if(this.videourl.length){
33156             var vurl = this.videourl.replace(/https:\/\/youtu\.be/, 'https://www.youtube.com/embed/');
33157             // youtube support only?
33158             cfg.cn.push({
33159                 tag: 'iframe',
33160                 cls: 'masonry-brick-image-view',
33161                 src: vurl,
33162                 frameborder : 0,
33163                 allowfullscreen : true
33164             });
33165         }
33166         
33167         return cfg;
33168         
33169     },
33170     
33171     getSplitAutoCreate : function()
33172     {
33173         var cls = 'masonry-brick masonry-brick-split';
33174         
33175         if(this.href.length){
33176             cls += ' masonry-brick-link';
33177         }
33178         
33179         if(this.bgimage.length){
33180             cls += ' masonry-brick-image';
33181         }
33182         
33183         if(this.size){
33184             cls += ' masonry-' + this.size + '-brick';
33185         }
33186         
33187         switch (this.placetitle) {
33188             case 'center' :
33189                 cls += ' masonry-center-title';
33190                 break;
33191             case 'bottom' :
33192                 cls += ' masonry-bottom-title';
33193                 break;
33194             default:
33195                 if(!this.bgimage.length){
33196                     cls += ' masonry-center-title';
33197                 }
33198
33199                 if(this.bgimage.length){
33200                     cls += ' masonry-bottom-title';
33201                 }
33202                 break;
33203         }
33204         
33205         if(this.cls){
33206             cls += ' ' + this.cls;
33207         }
33208         
33209         var cfg = {
33210             tag: (this.href.length) ? 'a' : 'div',
33211             cls: cls,
33212             cn: [
33213                 {
33214                     tag: 'div',
33215                     cls: 'masonry-brick-split-head',
33216                     cn: [
33217                         {
33218                             tag: 'div',
33219                             cls: 'masonry-brick-paragraph',
33220                             cn: []
33221                         }
33222                     ]
33223                 },
33224                 {
33225                     tag: 'div',
33226                     cls: 'masonry-brick-split-body',
33227                     cn: []
33228                 }
33229             ]
33230         };
33231         
33232         if(this.href.length){
33233             cfg.href = this.href;
33234         }
33235         
33236         if(this.title.length){
33237             cfg.cn[0].cn[0].cn.push({
33238                 tag: 'h4',
33239                 cls: 'masonry-brick-title',
33240                 html: this.title
33241             });
33242         }
33243         
33244         if(this.html.length){
33245             cfg.cn[1].cn.push({
33246                 tag: 'p',
33247                 cls: 'masonry-brick-text',
33248                 html: this.html
33249             });
33250         }
33251
33252         if(this.bgimage.length){
33253             cfg.cn[0].cn.push({
33254                 tag: 'img',
33255                 cls: 'masonry-brick-image-view',
33256                 src: this.bgimage
33257             });
33258         }
33259         
33260         if(this.videourl.length){
33261             var vurl = this.videourl.replace(/https:\/\/youtu\.be/, 'https://www.youtube.com/embed/');
33262             // youtube support only?
33263             cfg.cn[0].cn.cn.push({
33264                 tag: 'iframe',
33265                 cls: 'masonry-brick-image-view',
33266                 src: vurl,
33267                 frameborder : 0,
33268                 allowfullscreen : true
33269             });
33270         }
33271         
33272         return cfg;
33273     },
33274     
33275     initEvents: function() 
33276     {
33277         switch (this.size) {
33278             case 'xs' :
33279                 this.x = 1;
33280                 this.y = 1;
33281                 break;
33282             case 'sm' :
33283                 this.x = 2;
33284                 this.y = 2;
33285                 break;
33286             case 'md' :
33287             case 'md-left' :
33288             case 'md-right' :
33289                 this.x = 3;
33290                 this.y = 3;
33291                 break;
33292             case 'tall' :
33293                 this.x = 2;
33294                 this.y = 3;
33295                 break;
33296             case 'wide' :
33297                 this.x = 3;
33298                 this.y = 2;
33299                 break;
33300             case 'wide-thin' :
33301                 this.x = 3;
33302                 this.y = 1;
33303                 break;
33304                         
33305             default :
33306                 break;
33307         }
33308         
33309         if(Roo.isTouch){
33310             this.el.on('touchstart', this.onTouchStart, this);
33311             this.el.on('touchmove', this.onTouchMove, this);
33312             this.el.on('touchend', this.onTouchEnd, this);
33313             this.el.on('contextmenu', this.onContextMenu, this);
33314         } else {
33315             this.el.on('mouseenter'  ,this.enter, this);
33316             this.el.on('mouseleave', this.leave, this);
33317             this.el.on('click', this.onClick, this);
33318         }
33319         
33320         if (typeof(this.parent().bricks) == 'object' && this.parent().bricks != null) {
33321             this.parent().bricks.push(this);   
33322         }
33323         
33324     },
33325     
33326     onClick: function(e, el)
33327     {
33328         var time = this.endTimer - this.startTimer;
33329         // Roo.log(e.preventDefault());
33330         if(Roo.isTouch){
33331             if(time > 1000){
33332                 e.preventDefault();
33333                 return;
33334             }
33335         }
33336         
33337         if(!this.preventDefault){
33338             return;
33339         }
33340         
33341         e.preventDefault();
33342         
33343         if (this.activeClass != '') {
33344             this.selectBrick();
33345         }
33346         
33347         this.fireEvent('click', this, e);
33348     },
33349     
33350     enter: function(e, el)
33351     {
33352         e.preventDefault();
33353         
33354         if(!this.isFitContainer || this.maskInverse || this.videourl.length){
33355             return;
33356         }
33357         
33358         if(this.bgimage.length && this.html.length){
33359             this.el.select('.masonry-brick-paragraph', true).first().setOpacity(0.9, true);
33360         }
33361     },
33362     
33363     leave: function(e, el)
33364     {
33365         e.preventDefault();
33366         
33367         if(!this.isFitContainer || this.maskInverse  || this.videourl.length){
33368             return;
33369         }
33370         
33371         if(this.bgimage.length && this.html.length){
33372             this.el.select('.masonry-brick-paragraph', true).first().setOpacity(0, true);
33373         }
33374     },
33375     
33376     onTouchStart: function(e, el)
33377     {
33378 //        e.preventDefault();
33379         
33380         this.touchmoved = false;
33381         
33382         if(!this.isFitContainer){
33383             return;
33384         }
33385         
33386         if(!this.bgimage.length || !this.html.length){
33387             return;
33388         }
33389         
33390         this.el.select('.masonry-brick-paragraph', true).first().setOpacity(0.9, true);
33391         
33392         this.timer = new Date().getTime();
33393         
33394     },
33395     
33396     onTouchMove: function(e, el)
33397     {
33398         this.touchmoved = true;
33399     },
33400     
33401     onContextMenu : function(e,el)
33402     {
33403         e.preventDefault();
33404         e.stopPropagation();
33405         return false;
33406     },
33407     
33408     onTouchEnd: function(e, el)
33409     {
33410 //        e.preventDefault();
33411         
33412         if((new Date().getTime() - this.timer > 1000) || !this.href.length || this.touchmoved){
33413         
33414             this.leave(e,el);
33415             
33416             return;
33417         }
33418         
33419         if(!this.bgimage.length || !this.html.length){
33420             
33421             if(this.href.length){
33422                 window.location.href = this.href;
33423             }
33424             
33425             return;
33426         }
33427         
33428         if(!this.isFitContainer){
33429             return;
33430         }
33431         
33432         this.el.select('.masonry-brick-paragraph', true).first().setOpacity(0, true);
33433         
33434         window.location.href = this.href;
33435     },
33436     
33437     //selection on single brick only
33438     selectBrick : function() {
33439         
33440         if (!this.parentId) {
33441             return;
33442         }
33443         
33444         var m = Roo.bootstrap.LayoutMasonry.get(this.parentId);
33445         var index = m.selectedBrick.indexOf(this.id);
33446         
33447         if ( index > -1) {
33448             m.selectedBrick.splice(index,1);
33449             this.el.removeClass(this.activeClass);
33450             return;
33451         }
33452         
33453         for(var i = 0; i < m.selectedBrick.length; i++) {
33454             var b = Roo.bootstrap.MasonryBrick.get(m.selectedBrick[i]);
33455             b.el.removeClass(b.activeClass);
33456         }
33457         
33458         m.selectedBrick = [];
33459         
33460         m.selectedBrick.push(this.id);
33461         this.el.addClass(this.activeClass);
33462         return;
33463     },
33464     
33465     isSelected : function(){
33466         return this.el.hasClass(this.activeClass);
33467         
33468     }
33469 });
33470
33471 Roo.apply(Roo.bootstrap.MasonryBrick, {
33472     
33473     //groups: {},
33474     groups : new Roo.util.MixedCollection(false, function(o) { return o.el.id; }),
33475      /**
33476     * register a Masonry Brick
33477     * @param {Roo.bootstrap.MasonryBrick} the masonry brick to add
33478     */
33479     
33480     register : function(brick)
33481     {
33482         //this.groups[brick.id] = brick;
33483         this.groups.add(brick.id, brick);
33484     },
33485     /**
33486     * fetch a  masonry brick based on the masonry brick ID
33487     * @param {string} the masonry brick to add
33488     * @returns {Roo.bootstrap.MasonryBrick} the masonry brick
33489     */
33490     
33491     get: function(brick_id) 
33492     {
33493         // if (typeof(this.groups[brick_id]) == 'undefined') {
33494         //     return false;
33495         // }
33496         // return this.groups[brick_id] ;
33497         
33498         if(this.groups.key(brick_id)) {
33499             return this.groups.key(brick_id);
33500         }
33501         
33502         return false;
33503     }
33504     
33505     
33506     
33507 });
33508
33509  /*
33510  * - LGPL
33511  *
33512  * element
33513  * 
33514  */
33515
33516 /**
33517  * @class Roo.bootstrap.Brick
33518  * @extends Roo.bootstrap.Component
33519  * Bootstrap Brick class
33520  * 
33521  * @constructor
33522  * Create a new Brick
33523  * @param {Object} config The config object
33524  */
33525
33526 Roo.bootstrap.Brick = function(config){
33527     Roo.bootstrap.Brick.superclass.constructor.call(this, config);
33528     
33529     this.addEvents({
33530         // raw events
33531         /**
33532          * @event click
33533          * When a Brick is click
33534          * @param {Roo.bootstrap.Brick} this
33535          * @param {Roo.EventObject} e
33536          */
33537         "click" : true
33538     });
33539 };
33540
33541 Roo.extend(Roo.bootstrap.Brick, Roo.bootstrap.Component,  {
33542     
33543     /**
33544      * @cfg {String} title
33545      */   
33546     title : '',
33547     /**
33548      * @cfg {String} html
33549      */   
33550     html : '',
33551     /**
33552      * @cfg {String} bgimage
33553      */   
33554     bgimage : '',
33555     /**
33556      * @cfg {String} cls
33557      */   
33558     cls : '',
33559     /**
33560      * @cfg {String} href
33561      */   
33562     href : '',
33563     /**
33564      * @cfg {String} video
33565      */   
33566     video : '',
33567     /**
33568      * @cfg {Boolean} square
33569      */   
33570     square : true,
33571     
33572     getAutoCreate : function()
33573     {
33574         var cls = 'roo-brick';
33575         
33576         if(this.href.length){
33577             cls += ' roo-brick-link';
33578         }
33579         
33580         if(this.bgimage.length){
33581             cls += ' roo-brick-image';
33582         }
33583         
33584         if(!this.html.length && !this.bgimage.length){
33585             cls += ' roo-brick-center-title';
33586         }
33587         
33588         if(!this.html.length && this.bgimage.length){
33589             cls += ' roo-brick-bottom-title';
33590         }
33591         
33592         if(this.cls){
33593             cls += ' ' + this.cls;
33594         }
33595         
33596         var cfg = {
33597             tag: (this.href.length) ? 'a' : 'div',
33598             cls: cls,
33599             cn: [
33600                 {
33601                     tag: 'div',
33602                     cls: 'roo-brick-paragraph',
33603                     cn: []
33604                 }
33605             ]
33606         };
33607         
33608         if(this.href.length){
33609             cfg.href = this.href;
33610         }
33611         
33612         var cn = cfg.cn[0].cn;
33613         
33614         if(this.title.length){
33615             cn.push({
33616                 tag: 'h4',
33617                 cls: 'roo-brick-title',
33618                 html: this.title
33619             });
33620         }
33621         
33622         if(this.html.length){
33623             cn.push({
33624                 tag: 'p',
33625                 cls: 'roo-brick-text',
33626                 html: this.html
33627             });
33628         } else {
33629             cn.cls += ' hide';
33630         }
33631         
33632         if(this.bgimage.length){
33633             cfg.cn.push({
33634                 tag: 'img',
33635                 cls: 'roo-brick-image-view',
33636                 src: this.bgimage
33637             });
33638         }
33639         
33640         return cfg;
33641     },
33642     
33643     initEvents: function() 
33644     {
33645         if(this.title.length || this.html.length){
33646             this.el.on('mouseenter'  ,this.enter, this);
33647             this.el.on('mouseleave', this.leave, this);
33648         }
33649         
33650         Roo.EventManager.onWindowResize(this.resize, this); 
33651         
33652         if(this.bgimage.length){
33653             this.imageEl = this.el.select('.roo-brick-image-view', true).first();
33654             this.imageEl.on('load', this.onImageLoad, this);
33655             return;
33656         }
33657         
33658         this.resize();
33659     },
33660     
33661     onImageLoad : function()
33662     {
33663         this.resize();
33664     },
33665     
33666     resize : function()
33667     {
33668         var paragraph = this.el.select('.roo-brick-paragraph', true).first();
33669         
33670         paragraph.setHeight(paragraph.getWidth() + paragraph.getPadding('tb'));
33671         
33672         if(this.bgimage.length){
33673             var image = this.el.select('.roo-brick-image-view', true).first();
33674             
33675             image.setWidth(paragraph.getWidth());
33676             
33677             if(this.square){
33678                 image.setHeight(paragraph.getWidth());
33679             }
33680             
33681             this.el.setHeight(image.getHeight());
33682             paragraph.setHeight(image.getHeight());
33683             
33684         }
33685         
33686     },
33687     
33688     enter: function(e, el)
33689     {
33690         e.preventDefault();
33691         
33692         if(this.bgimage.length){
33693             this.el.select('.roo-brick-paragraph', true).first().setOpacity(0.9, true);
33694             this.el.select('.roo-brick-image-view', true).first().setOpacity(0.1, true);
33695         }
33696     },
33697     
33698     leave: function(e, el)
33699     {
33700         e.preventDefault();
33701         
33702         if(this.bgimage.length){
33703             this.el.select('.roo-brick-paragraph', true).first().setOpacity(0, true);
33704             this.el.select('.roo-brick-image-view', true).first().setOpacity(1, true);
33705         }
33706     }
33707     
33708 });
33709
33710  
33711
33712  /*
33713  * - LGPL
33714  *
33715  * Number field 
33716  */
33717
33718 /**
33719  * @class Roo.bootstrap.NumberField
33720  * @extends Roo.bootstrap.Input
33721  * Bootstrap NumberField class
33722  * 
33723  * 
33724  * 
33725  * 
33726  * @constructor
33727  * Create a new NumberField
33728  * @param {Object} config The config object
33729  */
33730
33731 Roo.bootstrap.NumberField = function(config){
33732     Roo.bootstrap.NumberField.superclass.constructor.call(this, config);
33733 };
33734
33735 Roo.extend(Roo.bootstrap.NumberField, Roo.bootstrap.Input, {
33736     
33737     /**
33738      * @cfg {Boolean} allowDecimals False to disallow decimal values (defaults to true)
33739      */
33740     allowDecimals : true,
33741     /**
33742      * @cfg {String} decimalSeparator Character(s) to allow as the decimal separator (defaults to '.')
33743      */
33744     decimalSeparator : ".",
33745     /**
33746      * @cfg {Number} decimalPrecision The maximum precision to display after the decimal separator (defaults to 2)
33747      */
33748     decimalPrecision : 2,
33749     /**
33750      * @cfg {Boolean} allowNegative False to prevent entering a negative sign (defaults to true)
33751      */
33752     allowNegative : true,
33753     
33754     /**
33755      * @cfg {Boolean} allowZero False to blank out if the user enters '0' (defaults to true)
33756      */
33757     allowZero: true,
33758     /**
33759      * @cfg {Number} minValue The minimum allowed value (defaults to Number.NEGATIVE_INFINITY)
33760      */
33761     minValue : Number.NEGATIVE_INFINITY,
33762     /**
33763      * @cfg {Number} maxValue The maximum allowed value (defaults to Number.MAX_VALUE)
33764      */
33765     maxValue : Number.MAX_VALUE,
33766     /**
33767      * @cfg {String} minText Error text to display if the minimum value validation fails (defaults to "The minimum value for this field is {minValue}")
33768      */
33769     minText : "The minimum value for this field is {0}",
33770     /**
33771      * @cfg {String} maxText Error text to display if the maximum value validation fails (defaults to "The maximum value for this field is {maxValue}")
33772      */
33773     maxText : "The maximum value for this field is {0}",
33774     /**
33775      * @cfg {String} nanText Error text to display if the value is not a valid number.  For example, this can happen
33776      * if a valid character like '.' or '-' is left in the field with no number (defaults to "{value} is not a valid number")
33777      */
33778     nanText : "{0} is not a valid number",
33779     /**
33780      * @cfg {String} thousandsDelimiter Symbol of thousandsDelimiter
33781      */
33782     thousandsDelimiter : false,
33783     /**
33784      * @cfg {String} valueAlign alignment of value
33785      */
33786     valueAlign : "left",
33787
33788     getAutoCreate : function()
33789     {
33790         var hiddenInput = {
33791             tag: 'input',
33792             type: 'hidden',
33793             id: Roo.id(),
33794             cls: 'hidden-number-input'
33795         };
33796         
33797         if (this.name) {
33798             hiddenInput.name = this.name;
33799         }
33800         
33801         this.name = '';
33802         
33803         var cfg = Roo.bootstrap.NumberField.superclass.getAutoCreate.call(this);
33804         
33805         this.name = hiddenInput.name;
33806         
33807         if(cfg.cn.length > 0) {
33808             cfg.cn.push(hiddenInput);
33809         }
33810         
33811         return cfg;
33812     },
33813
33814     // private
33815     initEvents : function()
33816     {   
33817         Roo.bootstrap.NumberField.superclass.initEvents.call(this);
33818         
33819         var allowed = "0123456789";
33820         
33821         if(this.allowDecimals){
33822             allowed += this.decimalSeparator;
33823         }
33824         
33825         if(this.allowNegative){
33826             allowed += "-";
33827         }
33828         
33829         if(this.thousandsDelimiter) {
33830             allowed += ",";
33831         }
33832         
33833         this.stripCharsRe = new RegExp('[^'+allowed+']', 'gi');
33834         
33835         var keyPress = function(e){
33836             
33837             var k = e.getKey();
33838             
33839             var c = e.getCharCode();
33840             
33841             if(
33842                     (String.fromCharCode(c) == '.' || String.fromCharCode(c) == '-') &&
33843                     allowed.indexOf(String.fromCharCode(c)) === -1
33844             ){
33845                 e.stopEvent();
33846                 return;
33847             }
33848             
33849             if(!Roo.isIE && (e.isSpecialKey() || k == e.BACKSPACE || k == e.DELETE)){
33850                 return;
33851             }
33852             
33853             if(allowed.indexOf(String.fromCharCode(c)) === -1){
33854                 e.stopEvent();
33855             }
33856         };
33857         
33858         this.el.on("keypress", keyPress, this);
33859     },
33860     
33861     validateValue : function(value)
33862     {
33863         
33864         if(!Roo.bootstrap.NumberField.superclass.validateValue.call(this, value)){
33865             return false;
33866         }
33867         
33868         var num = this.parseValue(value);
33869         
33870         if(isNaN(num)){
33871             this.markInvalid(String.format(this.nanText, value));
33872             return false;
33873         }
33874         
33875         if(num < this.minValue){
33876             this.markInvalid(String.format(this.minText, this.minValue));
33877             return false;
33878         }
33879         
33880         if(num > this.maxValue){
33881             this.markInvalid(String.format(this.maxText, this.maxValue));
33882             return false;
33883         }
33884         
33885         return true;
33886     },
33887
33888     getValue : function()
33889     {
33890         var v = this.hiddenEl().getValue();
33891         
33892         return this.fixPrecision(this.parseValue(v));
33893     },
33894
33895     parseValue : function(value)
33896     {
33897         if(this.thousandsDelimiter) {
33898             value += "";
33899             r = new RegExp(",", "g");
33900             value = value.replace(r, "");
33901         }
33902         
33903         value = parseFloat(String(value).replace(this.decimalSeparator, "."));
33904         return isNaN(value) ? '' : value;
33905     },
33906
33907     fixPrecision : function(value)
33908     {
33909         if(this.thousandsDelimiter) {
33910             value += "";
33911             r = new RegExp(",", "g");
33912             value = value.replace(r, "");
33913         }
33914         
33915         var nan = isNaN(value);
33916         
33917         if(!this.allowDecimals || this.decimalPrecision == -1 || nan || !value){
33918             return nan ? '' : value;
33919         }
33920         return parseFloat(value).toFixed(this.decimalPrecision);
33921     },
33922
33923     setValue : function(v)
33924     {
33925         v = String(this.fixPrecision(v)).replace(".", this.decimalSeparator);
33926         
33927         this.value = v;
33928         
33929         if(this.rendered){
33930             
33931             this.hiddenEl().dom.value = (v === null || v === undefined ? '' : v);
33932             
33933             this.inputEl().dom.value = (v == '') ? '' :
33934                 Roo.util.Format.number(v, this.decimalPrecision, this.thousandsDelimiter || '');
33935             
33936             if(!this.allowZero && v === '0') {
33937                 this.hiddenEl().dom.value = '';
33938                 this.inputEl().dom.value = '';
33939             }
33940             
33941             this.validate();
33942         }
33943     },
33944
33945     decimalPrecisionFcn : function(v)
33946     {
33947         return Math.floor(v);
33948     },
33949
33950     beforeBlur : function()
33951     {
33952         var v = this.parseValue(this.getRawValue());
33953         
33954         if(v || v === 0 || v === ''){
33955             this.setValue(v);
33956         }
33957     },
33958     
33959     hiddenEl : function()
33960     {
33961         return this.el.select('input.hidden-number-input',true).first();
33962     }
33963     
33964 });
33965
33966  
33967
33968 /*
33969 * Licence: LGPL
33970 */
33971
33972 /**
33973  * @class Roo.bootstrap.DocumentSlider
33974  * @extends Roo.bootstrap.Component
33975  * Bootstrap DocumentSlider class
33976  * 
33977  * @constructor
33978  * Create a new DocumentViewer
33979  * @param {Object} config The config object
33980  */
33981
33982 Roo.bootstrap.DocumentSlider = function(config){
33983     Roo.bootstrap.DocumentSlider.superclass.constructor.call(this, config);
33984     
33985     this.files = [];
33986     
33987     this.addEvents({
33988         /**
33989          * @event initial
33990          * Fire after initEvent
33991          * @param {Roo.bootstrap.DocumentSlider} this
33992          */
33993         "initial" : true,
33994         /**
33995          * @event update
33996          * Fire after update
33997          * @param {Roo.bootstrap.DocumentSlider} this
33998          */
33999         "update" : true,
34000         /**
34001          * @event click
34002          * Fire after click
34003          * @param {Roo.bootstrap.DocumentSlider} this
34004          */
34005         "click" : true
34006     });
34007 };
34008
34009 Roo.extend(Roo.bootstrap.DocumentSlider, Roo.bootstrap.Component,  {
34010     
34011     files : false,
34012     
34013     indicator : 0,
34014     
34015     getAutoCreate : function()
34016     {
34017         var cfg = {
34018             tag : 'div',
34019             cls : 'roo-document-slider',
34020             cn : [
34021                 {
34022                     tag : 'div',
34023                     cls : 'roo-document-slider-header',
34024                     cn : [
34025                         {
34026                             tag : 'div',
34027                             cls : 'roo-document-slider-header-title'
34028                         }
34029                     ]
34030                 },
34031                 {
34032                     tag : 'div',
34033                     cls : 'roo-document-slider-body',
34034                     cn : [
34035                         {
34036                             tag : 'div',
34037                             cls : 'roo-document-slider-prev',
34038                             cn : [
34039                                 {
34040                                     tag : 'i',
34041                                     cls : 'fa fa-chevron-left'
34042                                 }
34043                             ]
34044                         },
34045                         {
34046                             tag : 'div',
34047                             cls : 'roo-document-slider-thumb',
34048                             cn : [
34049                                 {
34050                                     tag : 'img',
34051                                     cls : 'roo-document-slider-image'
34052                                 }
34053                             ]
34054                         },
34055                         {
34056                             tag : 'div',
34057                             cls : 'roo-document-slider-next',
34058                             cn : [
34059                                 {
34060                                     tag : 'i',
34061                                     cls : 'fa fa-chevron-right'
34062                                 }
34063                             ]
34064                         }
34065                     ]
34066                 }
34067             ]
34068         };
34069         
34070         return cfg;
34071     },
34072     
34073     initEvents : function()
34074     {
34075         this.headerEl = this.el.select('.roo-document-slider-header', true).first();
34076         this.headerEl.setVisibilityMode(Roo.Element.DISPLAY);
34077         
34078         this.titleEl = this.el.select('.roo-document-slider-header .roo-document-slider-header-title', true).first();
34079         this.titleEl.setVisibilityMode(Roo.Element.DISPLAY);
34080         
34081         this.bodyEl = this.el.select('.roo-document-slider-body', true).first();
34082         this.bodyEl.setVisibilityMode(Roo.Element.DISPLAY);
34083         
34084         this.thumbEl = this.el.select('.roo-document-slider-thumb', true).first();
34085         this.thumbEl.setVisibilityMode(Roo.Element.DISPLAY);
34086         
34087         this.imageEl = this.el.select('.roo-document-slider-image', true).first();
34088         this.imageEl.setVisibilityMode(Roo.Element.DISPLAY);
34089         
34090         this.prevIndicator = this.el.select('.roo-document-slider-prev i', true).first();
34091         this.prevIndicator.setVisibilityMode(Roo.Element.DISPLAY);
34092         
34093         this.nextIndicator = this.el.select('.roo-document-slider-next i', true).first();
34094         this.nextIndicator.setVisibilityMode(Roo.Element.DISPLAY);
34095         
34096         this.thumbEl.on('click', this.onClick, this);
34097         
34098         this.prevIndicator.on('click', this.prev, this);
34099         
34100         this.nextIndicator.on('click', this.next, this);
34101         
34102     },
34103     
34104     initial : function()
34105     {
34106         if(this.files.length){
34107             this.indicator = 1;
34108             this.update()
34109         }
34110         
34111         this.fireEvent('initial', this);
34112     },
34113     
34114     update : function()
34115     {
34116         this.imageEl.attr('src', this.files[this.indicator - 1]);
34117         
34118         this.titleEl.dom.innerHTML = String.format('{0} / {1}', this.indicator, this.files.length);
34119         
34120         this.prevIndicator.show();
34121         
34122         if(this.indicator == 1){
34123             this.prevIndicator.hide();
34124         }
34125         
34126         this.nextIndicator.show();
34127         
34128         if(this.indicator == this.files.length){
34129             this.nextIndicator.hide();
34130         }
34131         
34132         this.thumbEl.scrollTo('top');
34133         
34134         this.fireEvent('update', this);
34135     },
34136     
34137     onClick : function(e)
34138     {
34139         e.preventDefault();
34140         
34141         this.fireEvent('click', this);
34142     },
34143     
34144     prev : function(e)
34145     {
34146         e.preventDefault();
34147         
34148         this.indicator = Math.max(1, this.indicator - 1);
34149         
34150         this.update();
34151     },
34152     
34153     next : function(e)
34154     {
34155         e.preventDefault();
34156         
34157         this.indicator = Math.min(this.files.length, this.indicator + 1);
34158         
34159         this.update();
34160     }
34161 });
34162 /*
34163  * - LGPL
34164  *
34165  * RadioSet
34166  *
34167  *
34168  */
34169
34170 /**
34171  * @class Roo.bootstrap.RadioSet
34172  * @extends Roo.bootstrap.Input
34173  * Bootstrap RadioSet class
34174  * @cfg {String} indicatorpos (left|right) default left
34175  * @cfg {Boolean} inline (true|false) inline the element (default true)
34176  * @cfg {String} weight (primary|warning|info|danger|success) The text that appears beside the radio
34177  * @constructor
34178  * Create a new RadioSet
34179  * @param {Object} config The config object
34180  */
34181
34182 Roo.bootstrap.RadioSet = function(config){
34183     
34184     Roo.bootstrap.RadioSet.superclass.constructor.call(this, config);
34185     
34186     this.radioes = [];
34187     
34188     Roo.bootstrap.RadioSet.register(this);
34189     
34190     this.addEvents({
34191         /**
34192         * @event check
34193         * Fires when the element is checked or unchecked.
34194         * @param {Roo.bootstrap.RadioSet} this This radio
34195         * @param {Roo.bootstrap.Radio} item The checked item
34196         */
34197        check : true,
34198        /**
34199         * @event click
34200         * Fires when the element is click.
34201         * @param {Roo.bootstrap.RadioSet} this This radio set
34202         * @param {Roo.bootstrap.Radio} item The checked item
34203         * @param {Roo.EventObject} e The event object
34204         */
34205        click : true
34206     });
34207     
34208 };
34209
34210 Roo.extend(Roo.bootstrap.RadioSet, Roo.bootstrap.Input,  {
34211
34212     radioes : false,
34213     
34214     inline : true,
34215     
34216     weight : '',
34217     
34218     indicatorpos : 'left',
34219     
34220     getAutoCreate : function()
34221     {
34222         var label = {
34223             tag : 'label',
34224             cls : 'roo-radio-set-label',
34225             cn : [
34226                 {
34227                     tag : 'span',
34228                     html : this.fieldLabel
34229                 }
34230             ]
34231         };
34232         if (Roo.bootstrap.version == 3) {
34233             
34234             
34235             if(this.indicatorpos == 'left'){
34236                 label.cn.unshift({
34237                     tag : 'i',
34238                     cls : 'roo-required-indicator left-indicator text-danger fa fa-lg fa-star',
34239                     tooltip : 'This field is required'
34240                 });
34241             } else {
34242                 label.cn.push({
34243                     tag : 'i',
34244                     cls : 'roo-required-indicator right-indicator text-danger fa fa-lg fa-star',
34245                     tooltip : 'This field is required'
34246                 });
34247             }
34248         }
34249         var items = {
34250             tag : 'div',
34251             cls : 'roo-radio-set-items'
34252         };
34253         
34254         var align = (!this.labelAlign) ? this.parentLabelAlign() : this.labelAlign;
34255         
34256         if (align === 'left' && this.fieldLabel.length) {
34257             
34258             items = {
34259                 cls : "roo-radio-set-right", 
34260                 cn: [
34261                     items
34262                 ]
34263             };
34264             
34265             if(this.labelWidth > 12){
34266                 label.style = "width: " + this.labelWidth + 'px';
34267             }
34268             
34269             if(this.labelWidth < 13 && this.labelmd == 0){
34270                 this.labelmd = this.labelWidth;
34271             }
34272             
34273             if(this.labellg > 0){
34274                 label.cls += ' col-lg-' + this.labellg;
34275                 items.cls += ' col-lg-' + (12 - this.labellg);
34276             }
34277             
34278             if(this.labelmd > 0){
34279                 label.cls += ' col-md-' + this.labelmd;
34280                 items.cls += ' col-md-' + (12 - this.labelmd);
34281             }
34282             
34283             if(this.labelsm > 0){
34284                 label.cls += ' col-sm-' + this.labelsm;
34285                 items.cls += ' col-sm-' + (12 - this.labelsm);
34286             }
34287             
34288             if(this.labelxs > 0){
34289                 label.cls += ' col-xs-' + this.labelxs;
34290                 items.cls += ' col-xs-' + (12 - this.labelxs);
34291             }
34292         }
34293         
34294         var cfg = {
34295             tag : 'div',
34296             cls : 'roo-radio-set',
34297             cn : [
34298                 {
34299                     tag : 'input',
34300                     cls : 'roo-radio-set-input',
34301                     type : 'hidden',
34302                     name : this.name,
34303                     value : this.value ? this.value :  ''
34304                 },
34305                 label,
34306                 items
34307             ]
34308         };
34309         
34310         if(this.weight.length){
34311             cfg.cls += ' roo-radio-' + this.weight;
34312         }
34313         
34314         if(this.inline) {
34315             cfg.cls += ' roo-radio-set-inline';
34316         }
34317         
34318         var settings=this;
34319         ['xs','sm','md','lg'].map(function(size){
34320             if (settings[size]) {
34321                 cfg.cls += ' col-' + size + '-' + settings[size];
34322             }
34323         });
34324         
34325         return cfg;
34326         
34327     },
34328
34329     initEvents : function()
34330     {
34331         this.labelEl = this.el.select('.roo-radio-set-label', true).first();
34332         this.labelEl.setVisibilityMode(Roo.Element.DISPLAY);
34333         
34334         if(!this.fieldLabel.length){
34335             this.labelEl.hide();
34336         }
34337         
34338         this.itemsEl = this.el.select('.roo-radio-set-items', true).first();
34339         this.itemsEl.setVisibilityMode(Roo.Element.DISPLAY);
34340         
34341         this.indicator = this.indicatorEl();
34342         
34343         if(this.indicator){
34344             this.indicator.addClass('invisible');
34345         }
34346         
34347         this.originalValue = this.getValue();
34348         
34349     },
34350     
34351     inputEl: function ()
34352     {
34353         return this.el.select('.roo-radio-set-input', true).first();
34354     },
34355     
34356     getChildContainer : function()
34357     {
34358         return this.itemsEl;
34359     },
34360     
34361     register : function(item)
34362     {
34363         this.radioes.push(item);
34364         
34365     },
34366     
34367     validate : function()
34368     {   
34369         if(this.getVisibilityEl().hasClass('hidden')){
34370             return true;
34371         }
34372         
34373         var valid = false;
34374         
34375         Roo.each(this.radioes, function(i){
34376             if(!i.checked){
34377                 return;
34378             }
34379             
34380             valid = true;
34381             return false;
34382         });
34383         
34384         if(this.allowBlank) {
34385             return true;
34386         }
34387         
34388         if(this.disabled || valid){
34389             this.markValid();
34390             return true;
34391         }
34392         
34393         this.markInvalid();
34394         return false;
34395         
34396     },
34397     
34398     markValid : function()
34399     {
34400         if(this.labelEl.isVisible(true) && this.indicatorEl()){
34401             this.indicatorEl().removeClass('visible');
34402             this.indicatorEl().addClass('invisible');
34403         }
34404         
34405         
34406         if (Roo.bootstrap.version == 3) {
34407             this.el.removeClass([this.invalidClass, this.validClass]);
34408             this.el.addClass(this.validClass);
34409         } else {
34410             this.el.removeClass(['is-invalid','is-valid']);
34411             this.el.addClass(['is-valid']);
34412         }
34413         this.fireEvent('valid', this);
34414     },
34415     
34416     markInvalid : function(msg)
34417     {
34418         if(this.allowBlank || this.disabled){
34419             return;
34420         }
34421         
34422         if(this.labelEl.isVisible(true) && this.indicatorEl()){
34423             this.indicatorEl().removeClass('invisible');
34424             this.indicatorEl().addClass('visible');
34425         }
34426         if (Roo.bootstrap.version == 3) {
34427             this.el.removeClass([this.invalidClass, this.validClass]);
34428             this.el.addClass(this.invalidClass);
34429         } else {
34430             this.el.removeClass(['is-invalid','is-valid']);
34431             this.el.addClass(['is-invalid']);
34432         }
34433         
34434         this.fireEvent('invalid', this, msg);
34435         
34436     },
34437     
34438     setValue : function(v, suppressEvent)
34439     {   
34440         if(this.value === v){
34441             return;
34442         }
34443         
34444         this.value = v;
34445         
34446         if(this.rendered){
34447             this.inputEl().dom.value = (v === null || v === undefined ? '' : v);
34448         }
34449         
34450         Roo.each(this.radioes, function(i){
34451             i.checked = false;
34452             i.el.removeClass('checked');
34453         });
34454         
34455         Roo.each(this.radioes, function(i){
34456             
34457             if(i.value === v || i.value.toString() === v.toString()){
34458                 i.checked = true;
34459                 i.el.addClass('checked');
34460                 
34461                 if(suppressEvent !== true){
34462                     this.fireEvent('check', this, i);
34463                 }
34464                 
34465                 return false;
34466             }
34467             
34468         }, this);
34469         
34470         this.validate();
34471     },
34472     
34473     clearInvalid : function(){
34474         
34475         if(!this.el || this.preventMark){
34476             return;
34477         }
34478         
34479         this.el.removeClass([this.invalidClass]);
34480         
34481         this.fireEvent('valid', this);
34482     }
34483     
34484 });
34485
34486 Roo.apply(Roo.bootstrap.RadioSet, {
34487     
34488     groups: {},
34489     
34490     register : function(set)
34491     {
34492         this.groups[set.name] = set;
34493     },
34494     
34495     get: function(name) 
34496     {
34497         if (typeof(this.groups[name]) == 'undefined') {
34498             return false;
34499         }
34500         
34501         return this.groups[name] ;
34502     }
34503     
34504 });
34505 /*
34506  * Based on:
34507  * Ext JS Library 1.1.1
34508  * Copyright(c) 2006-2007, Ext JS, LLC.
34509  *
34510  * Originally Released Under LGPL - original licence link has changed is not relivant.
34511  *
34512  * Fork - LGPL
34513  * <script type="text/javascript">
34514  */
34515
34516
34517 /**
34518  * @class Roo.bootstrap.SplitBar
34519  * @extends Roo.util.Observable
34520  * Creates draggable splitter bar functionality from two elements (element to be dragged and element to be resized).
34521  * <br><br>
34522  * Usage:
34523  * <pre><code>
34524 var split = new Roo.bootstrap.SplitBar("elementToDrag", "elementToSize",
34525                    Roo.bootstrap.SplitBar.HORIZONTAL, Roo.bootstrap.SplitBar.LEFT);
34526 split.setAdapter(new Roo.bootstrap.SplitBar.AbsoluteLayoutAdapter("container"));
34527 split.minSize = 100;
34528 split.maxSize = 600;
34529 split.animate = true;
34530 split.on('moved', splitterMoved);
34531 </code></pre>
34532  * @constructor
34533  * Create a new SplitBar
34534  * @config {String/HTMLElement/Roo.Element} dragElement The element to be dragged and act as the SplitBar. 
34535  * @config {String/HTMLElement/Roo.Element} resizingElement The element to be resized based on where the SplitBar element is dragged 
34536  * @config {Number} orientation (optional) Either Roo.bootstrap.SplitBar.HORIZONTAL or Roo.bootstrap.SplitBar.VERTICAL. (Defaults to HORIZONTAL)
34537  * @config {Number} placement (optional) Either Roo.bootstrap.SplitBar.LEFT or Roo.bootstrap.SplitBar.RIGHT for horizontal or  
34538                         Roo.bootstrap.SplitBar.TOP or Roo.bootstrap.SplitBar.BOTTOM for vertical. (By default, this is determined automatically by the initial
34539                         position of the SplitBar).
34540  */
34541 Roo.bootstrap.SplitBar = function(cfg){
34542     
34543     /** @private */
34544     
34545     //{
34546     //  dragElement : elm
34547     //  resizingElement: el,
34548         // optional..
34549     //    orientation : Either Roo.bootstrap.SplitBar.HORIZONTAL
34550     //    placement : Roo.bootstrap.SplitBar.LEFT  ,
34551         // existingProxy ???
34552     //}
34553     
34554     this.el = Roo.get(cfg.dragElement, true);
34555     this.el.dom.unselectable = "on";
34556     /** @private */
34557     this.resizingEl = Roo.get(cfg.resizingElement, true);
34558
34559     /**
34560      * @private
34561      * The orientation of the split. Either Roo.bootstrap.SplitBar.HORIZONTAL or Roo.bootstrap.SplitBar.VERTICAL. (Defaults to HORIZONTAL)
34562      * Note: If this is changed after creating the SplitBar, the placement property must be manually updated
34563      * @type Number
34564      */
34565     this.orientation = cfg.orientation || Roo.bootstrap.SplitBar.HORIZONTAL;
34566     
34567     /**
34568      * The minimum size of the resizing element. (Defaults to 0)
34569      * @type Number
34570      */
34571     this.minSize = 0;
34572     
34573     /**
34574      * The maximum size of the resizing element. (Defaults to 2000)
34575      * @type Number
34576      */
34577     this.maxSize = 2000;
34578     
34579     /**
34580      * Whether to animate the transition to the new size
34581      * @type Boolean
34582      */
34583     this.animate = false;
34584     
34585     /**
34586      * Whether to create a transparent shim that overlays the page when dragging, enables dragging across iframes.
34587      * @type Boolean
34588      */
34589     this.useShim = false;
34590     
34591     /** @private */
34592     this.shim = null;
34593     
34594     if(!cfg.existingProxy){
34595         /** @private */
34596         this.proxy = Roo.bootstrap.SplitBar.createProxy(this.orientation);
34597     }else{
34598         this.proxy = Roo.get(cfg.existingProxy).dom;
34599     }
34600     /** @private */
34601     this.dd = new Roo.dd.DDProxy(this.el.dom.id, "XSplitBars", {dragElId : this.proxy.id});
34602     
34603     /** @private */
34604     this.dd.b4StartDrag = this.onStartProxyDrag.createDelegate(this);
34605     
34606     /** @private */
34607     this.dd.endDrag = this.onEndProxyDrag.createDelegate(this);
34608     
34609     /** @private */
34610     this.dragSpecs = {};
34611     
34612     /**
34613      * @private The adapter to use to positon and resize elements
34614      */
34615     this.adapter = new Roo.bootstrap.SplitBar.BasicLayoutAdapter();
34616     this.adapter.init(this);
34617     
34618     if(this.orientation == Roo.bootstrap.SplitBar.HORIZONTAL){
34619         /** @private */
34620         this.placement = cfg.placement || (this.el.getX() > this.resizingEl.getX() ? Roo.bootstrap.SplitBar.LEFT : Roo.bootstrap.SplitBar.RIGHT);
34621         this.el.addClass("roo-splitbar-h");
34622     }else{
34623         /** @private */
34624         this.placement = cfg.placement || (this.el.getY() > this.resizingEl.getY() ? Roo.bootstrap.SplitBar.TOP : Roo.bootstrap.SplitBar.BOTTOM);
34625         this.el.addClass("roo-splitbar-v");
34626     }
34627     
34628     this.addEvents({
34629         /**
34630          * @event resize
34631          * Fires when the splitter is moved (alias for {@link #event-moved})
34632          * @param {Roo.bootstrap.SplitBar} this
34633          * @param {Number} newSize the new width or height
34634          */
34635         "resize" : true,
34636         /**
34637          * @event moved
34638          * Fires when the splitter is moved
34639          * @param {Roo.bootstrap.SplitBar} this
34640          * @param {Number} newSize the new width or height
34641          */
34642         "moved" : true,
34643         /**
34644          * @event beforeresize
34645          * Fires before the splitter is dragged
34646          * @param {Roo.bootstrap.SplitBar} this
34647          */
34648         "beforeresize" : true,
34649
34650         "beforeapply" : true
34651     });
34652
34653     Roo.util.Observable.call(this);
34654 };
34655
34656 Roo.extend(Roo.bootstrap.SplitBar, Roo.util.Observable, {
34657     onStartProxyDrag : function(x, y){
34658         this.fireEvent("beforeresize", this);
34659         if(!this.overlay){
34660             var o = Roo.DomHelper.insertFirst(document.body,  {cls: "roo-drag-overlay", html: "&#160;"}, true);
34661             o.unselectable();
34662             o.enableDisplayMode("block");
34663             // all splitbars share the same overlay
34664             Roo.bootstrap.SplitBar.prototype.overlay = o;
34665         }
34666         this.overlay.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
34667         this.overlay.show();
34668         Roo.get(this.proxy).setDisplayed("block");
34669         var size = this.adapter.getElementSize(this);
34670         this.activeMinSize = this.getMinimumSize();;
34671         this.activeMaxSize = this.getMaximumSize();;
34672         var c1 = size - this.activeMinSize;
34673         var c2 = Math.max(this.activeMaxSize - size, 0);
34674         if(this.orientation == Roo.bootstrap.SplitBar.HORIZONTAL){
34675             this.dd.resetConstraints();
34676             this.dd.setXConstraint(
34677                 this.placement == Roo.bootstrap.SplitBar.LEFT ? c1 : c2, 
34678                 this.placement == Roo.bootstrap.SplitBar.LEFT ? c2 : c1
34679             );
34680             this.dd.setYConstraint(0, 0);
34681         }else{
34682             this.dd.resetConstraints();
34683             this.dd.setXConstraint(0, 0);
34684             this.dd.setYConstraint(
34685                 this.placement == Roo.bootstrap.SplitBar.TOP ? c1 : c2, 
34686                 this.placement == Roo.bootstrap.SplitBar.TOP ? c2 : c1
34687             );
34688          }
34689         this.dragSpecs.startSize = size;
34690         this.dragSpecs.startPoint = [x, y];
34691         Roo.dd.DDProxy.prototype.b4StartDrag.call(this.dd, x, y);
34692     },
34693     
34694     /** 
34695      * @private Called after the drag operation by the DDProxy
34696      */
34697     onEndProxyDrag : function(e){
34698         Roo.get(this.proxy).setDisplayed(false);
34699         var endPoint = Roo.lib.Event.getXY(e);
34700         if(this.overlay){
34701             this.overlay.hide();
34702         }
34703         var newSize;
34704         if(this.orientation == Roo.bootstrap.SplitBar.HORIZONTAL){
34705             newSize = this.dragSpecs.startSize + 
34706                 (this.placement == Roo.bootstrap.SplitBar.LEFT ?
34707                     endPoint[0] - this.dragSpecs.startPoint[0] :
34708                     this.dragSpecs.startPoint[0] - endPoint[0]
34709                 );
34710         }else{
34711             newSize = this.dragSpecs.startSize + 
34712                 (this.placement == Roo.bootstrap.SplitBar.TOP ?
34713                     endPoint[1] - this.dragSpecs.startPoint[1] :
34714                     this.dragSpecs.startPoint[1] - endPoint[1]
34715                 );
34716         }
34717         newSize = Math.min(Math.max(newSize, this.activeMinSize), this.activeMaxSize);
34718         if(newSize != this.dragSpecs.startSize){
34719             if(this.fireEvent('beforeapply', this, newSize) !== false){
34720                 this.adapter.setElementSize(this, newSize);
34721                 this.fireEvent("moved", this, newSize);
34722                 this.fireEvent("resize", this, newSize);
34723             }
34724         }
34725     },
34726     
34727     /**
34728      * Get the adapter this SplitBar uses
34729      * @return The adapter object
34730      */
34731     getAdapter : function(){
34732         return this.adapter;
34733     },
34734     
34735     /**
34736      * Set the adapter this SplitBar uses
34737      * @param {Object} adapter A SplitBar adapter object
34738      */
34739     setAdapter : function(adapter){
34740         this.adapter = adapter;
34741         this.adapter.init(this);
34742     },
34743     
34744     /**
34745      * Gets the minimum size for the resizing element
34746      * @return {Number} The minimum size
34747      */
34748     getMinimumSize : function(){
34749         return this.minSize;
34750     },
34751     
34752     /**
34753      * Sets the minimum size for the resizing element
34754      * @param {Number} minSize The minimum size
34755      */
34756     setMinimumSize : function(minSize){
34757         this.minSize = minSize;
34758     },
34759     
34760     /**
34761      * Gets the maximum size for the resizing element
34762      * @return {Number} The maximum size
34763      */
34764     getMaximumSize : function(){
34765         return this.maxSize;
34766     },
34767     
34768     /**
34769      * Sets the maximum size for the resizing element
34770      * @param {Number} maxSize The maximum size
34771      */
34772     setMaximumSize : function(maxSize){
34773         this.maxSize = maxSize;
34774     },
34775     
34776     /**
34777      * Sets the initialize size for the resizing element
34778      * @param {Number} size The initial size
34779      */
34780     setCurrentSize : function(size){
34781         var oldAnimate = this.animate;
34782         this.animate = false;
34783         this.adapter.setElementSize(this, size);
34784         this.animate = oldAnimate;
34785     },
34786     
34787     /**
34788      * Destroy this splitbar. 
34789      * @param {Boolean} removeEl True to remove the element
34790      */
34791     destroy : function(removeEl){
34792         if(this.shim){
34793             this.shim.remove();
34794         }
34795         this.dd.unreg();
34796         this.proxy.parentNode.removeChild(this.proxy);
34797         if(removeEl){
34798             this.el.remove();
34799         }
34800     }
34801 });
34802
34803 /**
34804  * @private static Create our own proxy element element. So it will be the same same size on all browsers, we won't use borders. Instead we use a background color.
34805  */
34806 Roo.bootstrap.SplitBar.createProxy = function(dir){
34807     var proxy = new Roo.Element(document.createElement("div"));
34808     proxy.unselectable();
34809     var cls = 'roo-splitbar-proxy';
34810     proxy.addClass(cls + ' ' + (dir == Roo.bootstrap.SplitBar.HORIZONTAL ? cls +'-h' : cls + '-v'));
34811     document.body.appendChild(proxy.dom);
34812     return proxy.dom;
34813 };
34814
34815 /** 
34816  * @class Roo.bootstrap.SplitBar.BasicLayoutAdapter
34817  * Default Adapter. It assumes the splitter and resizing element are not positioned
34818  * elements and only gets/sets the width of the element. Generally used for table based layouts.
34819  */
34820 Roo.bootstrap.SplitBar.BasicLayoutAdapter = function(){
34821 };
34822
34823 Roo.bootstrap.SplitBar.BasicLayoutAdapter.prototype = {
34824     // do nothing for now
34825     init : function(s){
34826     
34827     },
34828     /**
34829      * Called before drag operations to get the current size of the resizing element. 
34830      * @param {Roo.bootstrap.SplitBar} s The SplitBar using this adapter
34831      */
34832      getElementSize : function(s){
34833         if(s.orientation == Roo.bootstrap.SplitBar.HORIZONTAL){
34834             return s.resizingEl.getWidth();
34835         }else{
34836             return s.resizingEl.getHeight();
34837         }
34838     },
34839     
34840     /**
34841      * Called after drag operations to set the size of the resizing element.
34842      * @param {Roo.bootstrap.SplitBar} s The SplitBar using this adapter
34843      * @param {Number} newSize The new size to set
34844      * @param {Function} onComplete A function to be invoked when resizing is complete
34845      */
34846     setElementSize : function(s, newSize, onComplete){
34847         if(s.orientation == Roo.bootstrap.SplitBar.HORIZONTAL){
34848             if(!s.animate){
34849                 s.resizingEl.setWidth(newSize);
34850                 if(onComplete){
34851                     onComplete(s, newSize);
34852                 }
34853             }else{
34854                 s.resizingEl.setWidth(newSize, true, .1, onComplete, 'easeOut');
34855             }
34856         }else{
34857             
34858             if(!s.animate){
34859                 s.resizingEl.setHeight(newSize);
34860                 if(onComplete){
34861                     onComplete(s, newSize);
34862                 }
34863             }else{
34864                 s.resizingEl.setHeight(newSize, true, .1, onComplete, 'easeOut');
34865             }
34866         }
34867     }
34868 };
34869
34870 /** 
34871  *@class Roo.bootstrap.SplitBar.AbsoluteLayoutAdapter
34872  * @extends Roo.bootstrap.SplitBar.BasicLayoutAdapter
34873  * Adapter that  moves the splitter element to align with the resized sizing element. 
34874  * Used with an absolute positioned SplitBar.
34875  * @param {String/HTMLElement/Roo.Element} container The container that wraps around the absolute positioned content. If it's
34876  * document.body, make sure you assign an id to the body element.
34877  */
34878 Roo.bootstrap.SplitBar.AbsoluteLayoutAdapter = function(container){
34879     this.basic = new Roo.bootstrap.SplitBar.BasicLayoutAdapter();
34880     this.container = Roo.get(container);
34881 };
34882
34883 Roo.bootstrap.SplitBar.AbsoluteLayoutAdapter.prototype = {
34884     init : function(s){
34885         this.basic.init(s);
34886     },
34887     
34888     getElementSize : function(s){
34889         return this.basic.getElementSize(s);
34890     },
34891     
34892     setElementSize : function(s, newSize, onComplete){
34893         this.basic.setElementSize(s, newSize, this.moveSplitter.createDelegate(this, [s]));
34894     },
34895     
34896     moveSplitter : function(s){
34897         var yes = Roo.bootstrap.SplitBar;
34898         switch(s.placement){
34899             case yes.LEFT:
34900                 s.el.setX(s.resizingEl.getRight());
34901                 break;
34902             case yes.RIGHT:
34903                 s.el.setStyle("right", (this.container.getWidth() - s.resizingEl.getLeft()) + "px");
34904                 break;
34905             case yes.TOP:
34906                 s.el.setY(s.resizingEl.getBottom());
34907                 break;
34908             case yes.BOTTOM:
34909                 s.el.setY(s.resizingEl.getTop() - s.el.getHeight());
34910                 break;
34911         }
34912     }
34913 };
34914
34915 /**
34916  * Orientation constant - Create a vertical SplitBar
34917  * @static
34918  * @type Number
34919  */
34920 Roo.bootstrap.SplitBar.VERTICAL = 1;
34921
34922 /**
34923  * Orientation constant - Create a horizontal SplitBar
34924  * @static
34925  * @type Number
34926  */
34927 Roo.bootstrap.SplitBar.HORIZONTAL = 2;
34928
34929 /**
34930  * Placement constant - The resizing element is to the left of the splitter element
34931  * @static
34932  * @type Number
34933  */
34934 Roo.bootstrap.SplitBar.LEFT = 1;
34935
34936 /**
34937  * Placement constant - The resizing element is to the right of the splitter element
34938  * @static
34939  * @type Number
34940  */
34941 Roo.bootstrap.SplitBar.RIGHT = 2;
34942
34943 /**
34944  * Placement constant - The resizing element is positioned above the splitter element
34945  * @static
34946  * @type Number
34947  */
34948 Roo.bootstrap.SplitBar.TOP = 3;
34949
34950 /**
34951  * Placement constant - The resizing element is positioned under splitter element
34952  * @static
34953  * @type Number
34954  */
34955 Roo.bootstrap.SplitBar.BOTTOM = 4;
34956 Roo.namespace("Roo.bootstrap.layout");/*
34957  * Based on:
34958  * Ext JS Library 1.1.1
34959  * Copyright(c) 2006-2007, Ext JS, LLC.
34960  *
34961  * Originally Released Under LGPL - original licence link has changed is not relivant.
34962  *
34963  * Fork - LGPL
34964  * <script type="text/javascript">
34965  */
34966
34967 /**
34968  * @class Roo.bootstrap.layout.Manager
34969  * @extends Roo.bootstrap.Component
34970  * Base class for layout managers.
34971  */
34972 Roo.bootstrap.layout.Manager = function(config)
34973 {
34974     Roo.bootstrap.layout.Manager.superclass.constructor.call(this,config);
34975
34976
34977
34978
34979
34980     /** false to disable window resize monitoring @type Boolean */
34981     this.monitorWindowResize = true;
34982     this.regions = {};
34983     this.addEvents({
34984         /**
34985          * @event layout
34986          * Fires when a layout is performed.
34987          * @param {Roo.LayoutManager} this
34988          */
34989         "layout" : true,
34990         /**
34991          * @event regionresized
34992          * Fires when the user resizes a region.
34993          * @param {Roo.LayoutRegion} region The resized region
34994          * @param {Number} newSize The new size (width for east/west, height for north/south)
34995          */
34996         "regionresized" : true,
34997         /**
34998          * @event regioncollapsed
34999          * Fires when a region is collapsed.
35000          * @param {Roo.LayoutRegion} region The collapsed region
35001          */
35002         "regioncollapsed" : true,
35003         /**
35004          * @event regionexpanded
35005          * Fires when a region is expanded.
35006          * @param {Roo.LayoutRegion} region The expanded region
35007          */
35008         "regionexpanded" : true
35009     });
35010     this.updating = false;
35011
35012     if (config.el) {
35013         this.el = Roo.get(config.el);
35014         this.initEvents();
35015     }
35016
35017 };
35018
35019 Roo.extend(Roo.bootstrap.layout.Manager, Roo.bootstrap.Component, {
35020
35021
35022     regions : null,
35023
35024     monitorWindowResize : true,
35025
35026
35027     updating : false,
35028
35029
35030     onRender : function(ct, position)
35031     {
35032         if(!this.el){
35033             this.el = Roo.get(ct);
35034             this.initEvents();
35035         }
35036         //this.fireEvent('render',this);
35037     },
35038
35039
35040     initEvents: function()
35041     {
35042
35043
35044         // ie scrollbar fix
35045         if(this.el.dom == document.body && Roo.isIE && !config.allowScroll){
35046             document.body.scroll = "no";
35047         }else if(this.el.dom != document.body && this.el.getStyle('position') == 'static'){
35048             this.el.position('relative');
35049         }
35050         this.id = this.el.id;
35051         this.el.addClass("roo-layout-container");
35052         Roo.EventManager.onWindowResize(this.onWindowResize, this, true);
35053         if(this.el.dom != document.body ) {
35054             this.el.on('resize', this.layout,this);
35055             this.el.on('show', this.layout,this);
35056         }
35057
35058     },
35059
35060     /**
35061      * Returns true if this layout is currently being updated
35062      * @return {Boolean}
35063      */
35064     isUpdating : function(){
35065         return this.updating;
35066     },
35067
35068     /**
35069      * Suspend the LayoutManager from doing auto-layouts while
35070      * making multiple add or remove calls
35071      */
35072     beginUpdate : function(){
35073         this.updating = true;
35074     },
35075
35076     /**
35077      * Restore auto-layouts and optionally disable the manager from performing a layout
35078      * @param {Boolean} noLayout true to disable a layout update
35079      */
35080     endUpdate : function(noLayout){
35081         this.updating = false;
35082         if(!noLayout){
35083             this.layout();
35084         }
35085     },
35086
35087     layout: function(){
35088         // abstract...
35089     },
35090
35091     onRegionResized : function(region, newSize){
35092         this.fireEvent("regionresized", region, newSize);
35093         this.layout();
35094     },
35095
35096     onRegionCollapsed : function(region){
35097         this.fireEvent("regioncollapsed", region);
35098     },
35099
35100     onRegionExpanded : function(region){
35101         this.fireEvent("regionexpanded", region);
35102     },
35103
35104     /**
35105      * Returns the size of the current view. This method normalizes document.body and element embedded layouts and
35106      * performs box-model adjustments.
35107      * @return {Object} The size as an object {width: (the width), height: (the height)}
35108      */
35109     getViewSize : function()
35110     {
35111         var size;
35112         if(this.el.dom != document.body){
35113             size = this.el.getSize();
35114         }else{
35115             size = {width: Roo.lib.Dom.getViewWidth(), height: Roo.lib.Dom.getViewHeight()};
35116         }
35117         size.width -= this.el.getBorderWidth("lr")-this.el.getPadding("lr");
35118         size.height -= this.el.getBorderWidth("tb")-this.el.getPadding("tb");
35119         return size;
35120     },
35121
35122     /**
35123      * Returns the Element this layout is bound to.
35124      * @return {Roo.Element}
35125      */
35126     getEl : function(){
35127         return this.el;
35128     },
35129
35130     /**
35131      * Returns the specified region.
35132      * @param {String} target The region key ('center', 'north', 'south', 'east' or 'west')
35133      * @return {Roo.LayoutRegion}
35134      */
35135     getRegion : function(target){
35136         return this.regions[target.toLowerCase()];
35137     },
35138
35139     onWindowResize : function(){
35140         if(this.monitorWindowResize){
35141             this.layout();
35142         }
35143     }
35144 });
35145 /*
35146  * Based on:
35147  * Ext JS Library 1.1.1
35148  * Copyright(c) 2006-2007, Ext JS, LLC.
35149  *
35150  * Originally Released Under LGPL - original licence link has changed is not relivant.
35151  *
35152  * Fork - LGPL
35153  * <script type="text/javascript">
35154  */
35155 /**
35156  * @class Roo.bootstrap.layout.Border
35157  * @extends Roo.bootstrap.layout.Manager
35158  * This class represents a common layout manager used in desktop applications. For screenshots and more details,
35159  * please see: examples/bootstrap/nested.html<br><br>
35160  
35161 <b>The container the layout is rendered into can be either the body element or any other element.
35162 If it is not the body element, the container needs to either be an absolute positioned element,
35163 or you will need to add "position:relative" to the css of the container.  You will also need to specify
35164 the container size if it is not the body element.</b>
35165
35166 * @constructor
35167 * Create a new Border
35168 * @param {Object} config Configuration options
35169  */
35170 Roo.bootstrap.layout.Border = function(config){
35171     config = config || {};
35172     Roo.bootstrap.layout.Border.superclass.constructor.call(this, config);
35173     
35174     
35175     
35176     Roo.each(Roo.bootstrap.layout.Border.regions, function(region) {
35177         if(config[region]){
35178             config[region].region = region;
35179             this.addRegion(config[region]);
35180         }
35181     },this);
35182     
35183 };
35184
35185 Roo.bootstrap.layout.Border.regions =  ["north","south","east","west","center"];
35186
35187 Roo.extend(Roo.bootstrap.layout.Border, Roo.bootstrap.layout.Manager, {
35188     
35189     parent : false, // this might point to a 'nest' or a ???
35190     
35191     /**
35192      * Creates and adds a new region if it doesn't already exist.
35193      * @param {String} target The target region key (north, south, east, west or center).
35194      * @param {Object} config The regions config object
35195      * @return {BorderLayoutRegion} The new region
35196      */
35197     addRegion : function(config)
35198     {
35199         if(!this.regions[config.region]){
35200             var r = this.factory(config);
35201             this.bindRegion(r);
35202         }
35203         return this.regions[config.region];
35204     },
35205
35206     // private (kinda)
35207     bindRegion : function(r){
35208         this.regions[r.config.region] = r;
35209         
35210         r.on("visibilitychange",    this.layout, this);
35211         r.on("paneladded",          this.layout, this);
35212         r.on("panelremoved",        this.layout, this);
35213         r.on("invalidated",         this.layout, this);
35214         r.on("resized",             this.onRegionResized, this);
35215         r.on("collapsed",           this.onRegionCollapsed, this);
35216         r.on("expanded",            this.onRegionExpanded, this);
35217     },
35218
35219     /**
35220      * Performs a layout update.
35221      */
35222     layout : function()
35223     {
35224         if(this.updating) {
35225             return;
35226         }
35227         
35228         // render all the rebions if they have not been done alreayd?
35229         Roo.each(Roo.bootstrap.layout.Border.regions, function(region) {
35230             if(this.regions[region] && !this.regions[region].bodyEl){
35231                 this.regions[region].onRender(this.el)
35232             }
35233         },this);
35234         
35235         var size = this.getViewSize();
35236         var w = size.width;
35237         var h = size.height;
35238         var centerW = w;
35239         var centerH = h;
35240         var centerY = 0;
35241         var centerX = 0;
35242         //var x = 0, y = 0;
35243
35244         var rs = this.regions;
35245         var north = rs["north"];
35246         var south = rs["south"]; 
35247         var west = rs["west"];
35248         var east = rs["east"];
35249         var center = rs["center"];
35250         //if(this.hideOnLayout){ // not supported anymore
35251             //c.el.setStyle("display", "none");
35252         //}
35253         if(north && north.isVisible()){
35254             var b = north.getBox();
35255             var m = north.getMargins();
35256             b.width = w - (m.left+m.right);
35257             b.x = m.left;
35258             b.y = m.top;
35259             centerY = b.height + b.y + m.bottom;
35260             centerH -= centerY;
35261             north.updateBox(this.safeBox(b));
35262         }
35263         if(south && south.isVisible()){
35264             var b = south.getBox();
35265             var m = south.getMargins();
35266             b.width = w - (m.left+m.right);
35267             b.x = m.left;
35268             var totalHeight = (b.height + m.top + m.bottom);
35269             b.y = h - totalHeight + m.top;
35270             centerH -= totalHeight;
35271             south.updateBox(this.safeBox(b));
35272         }
35273         if(west && west.isVisible()){
35274             var b = west.getBox();
35275             var m = west.getMargins();
35276             b.height = centerH - (m.top+m.bottom);
35277             b.x = m.left;
35278             b.y = centerY + m.top;
35279             var totalWidth = (b.width + m.left + m.right);
35280             centerX += totalWidth;
35281             centerW -= totalWidth;
35282             west.updateBox(this.safeBox(b));
35283         }
35284         if(east && east.isVisible()){
35285             var b = east.getBox();
35286             var m = east.getMargins();
35287             b.height = centerH - (m.top+m.bottom);
35288             var totalWidth = (b.width + m.left + m.right);
35289             b.x = w - totalWidth + m.left;
35290             b.y = centerY + m.top;
35291             centerW -= totalWidth;
35292             east.updateBox(this.safeBox(b));
35293         }
35294         if(center){
35295             var m = center.getMargins();
35296             var centerBox = {
35297                 x: centerX + m.left,
35298                 y: centerY + m.top,
35299                 width: centerW - (m.left+m.right),
35300                 height: centerH - (m.top+m.bottom)
35301             };
35302             //if(this.hideOnLayout){
35303                 //center.el.setStyle("display", "block");
35304             //}
35305             center.updateBox(this.safeBox(centerBox));
35306         }
35307         this.el.repaint();
35308         this.fireEvent("layout", this);
35309     },
35310
35311     // private
35312     safeBox : function(box){
35313         box.width = Math.max(0, box.width);
35314         box.height = Math.max(0, box.height);
35315         return box;
35316     },
35317
35318     /**
35319      * Adds a ContentPanel (or subclass) to this layout.
35320      * @param {String} target The target region key (north, south, east, west or center).
35321      * @param {Roo.ContentPanel} panel The panel to add
35322      * @return {Roo.ContentPanel} The added panel
35323      */
35324     add : function(target, panel){
35325          
35326         target = target.toLowerCase();
35327         return this.regions[target].add(panel);
35328     },
35329
35330     /**
35331      * Remove a ContentPanel (or subclass) to this layout.
35332      * @param {String} target The target region key (north, south, east, west or center).
35333      * @param {Number/String/Roo.ContentPanel} panel The index, id or panel to remove
35334      * @return {Roo.ContentPanel} The removed panel
35335      */
35336     remove : function(target, panel){
35337         target = target.toLowerCase();
35338         return this.regions[target].remove(panel);
35339     },
35340
35341     /**
35342      * Searches all regions for a panel with the specified id
35343      * @param {String} panelId
35344      * @return {Roo.ContentPanel} The panel or null if it wasn't found
35345      */
35346     findPanel : function(panelId){
35347         var rs = this.regions;
35348         for(var target in rs){
35349             if(typeof rs[target] != "function"){
35350                 var p = rs[target].getPanel(panelId);
35351                 if(p){
35352                     return p;
35353                 }
35354             }
35355         }
35356         return null;
35357     },
35358
35359     /**
35360      * Searches all regions for a panel with the specified id and activates (shows) it.
35361      * @param {String/ContentPanel} panelId The panels id or the panel itself
35362      * @return {Roo.ContentPanel} The shown panel or null
35363      */
35364     showPanel : function(panelId) {
35365       var rs = this.regions;
35366       for(var target in rs){
35367          var r = rs[target];
35368          if(typeof r != "function"){
35369             if(r.hasPanel(panelId)){
35370                return r.showPanel(panelId);
35371             }
35372          }
35373       }
35374       return null;
35375    },
35376
35377    /**
35378      * Restores this layout's state using Roo.state.Manager or the state provided by the passed provider.
35379      * @param {Roo.state.Provider} provider (optional) An alternate state provider
35380      */
35381    /*
35382     restoreState : function(provider){
35383         if(!provider){
35384             provider = Roo.state.Manager;
35385         }
35386         var sm = new Roo.LayoutStateManager();
35387         sm.init(this, provider);
35388     },
35389 */
35390  
35391  
35392     /**
35393      * Adds a xtype elements to the layout.
35394      * <pre><code>
35395
35396 layout.addxtype({
35397        xtype : 'ContentPanel',
35398        region: 'west',
35399        items: [ .... ]
35400    }
35401 );
35402
35403 layout.addxtype({
35404         xtype : 'NestedLayoutPanel',
35405         region: 'west',
35406         layout: {
35407            center: { },
35408            west: { }   
35409         },
35410         items : [ ... list of content panels or nested layout panels.. ]
35411    }
35412 );
35413 </code></pre>
35414      * @param {Object} cfg Xtype definition of item to add.
35415      */
35416     addxtype : function(cfg)
35417     {
35418         // basically accepts a pannel...
35419         // can accept a layout region..!?!?
35420         //Roo.log('Roo.BorderLayout add ' + cfg.xtype)
35421         
35422         
35423         // theory?  children can only be panels??
35424         
35425         //if (!cfg.xtype.match(/Panel$/)) {
35426         //    return false;
35427         //}
35428         var ret = false;
35429         
35430         if (typeof(cfg.region) == 'undefined') {
35431             Roo.log("Failed to add Panel, region was not set");
35432             Roo.log(cfg);
35433             return false;
35434         }
35435         var region = cfg.region;
35436         delete cfg.region;
35437         
35438           
35439         var xitems = [];
35440         if (cfg.items) {
35441             xitems = cfg.items;
35442             delete cfg.items;
35443         }
35444         var nb = false;
35445         
35446         if ( region == 'center') {
35447             Roo.log("Center: " + cfg.title);
35448         }
35449         
35450         
35451         switch(cfg.xtype) 
35452         {
35453             case 'Content':  // ContentPanel (el, cfg)
35454             case 'Scroll':  // ContentPanel (el, cfg)
35455             case 'View': 
35456                 cfg.autoCreate = cfg.autoCreate || true;
35457                 ret = new cfg.xns[cfg.xtype](cfg); // new panel!!!!!
35458                 //} else {
35459                 //    var el = this.el.createChild();
35460                 //    ret = new Roo[cfg.xtype](el, cfg); // new panel!!!!!
35461                 //}
35462                 
35463                 this.add(region, ret);
35464                 break;
35465             
35466             /*
35467             case 'TreePanel': // our new panel!
35468                 cfg.el = this.el.createChild();
35469                 ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
35470                 this.add(region, ret);
35471                 break;
35472             */
35473             
35474             case 'Nest': 
35475                 // create a new Layout (which is  a Border Layout...
35476                 
35477                 var clayout = cfg.layout;
35478                 clayout.el  = this.el.createChild();
35479                 clayout.items   = clayout.items  || [];
35480                 
35481                 delete cfg.layout;
35482                 
35483                 // replace this exitems with the clayout ones..
35484                 xitems = clayout.items;
35485                  
35486                 // force background off if it's in center...
35487                 if (region == 'center' && this.active && this.getRegion('center').panels.length < 1) {
35488                     cfg.background = false;
35489                 }
35490                 cfg.layout  = new Roo.bootstrap.layout.Border(clayout);
35491                 
35492                 
35493                 ret = new cfg.xns[cfg.xtype](cfg); // new panel!!!!!
35494                 //console.log('adding nested layout panel '  + cfg.toSource());
35495                 this.add(region, ret);
35496                 nb = {}; /// find first...
35497                 break;
35498             
35499             case 'Grid':
35500                 
35501                 // needs grid and region
35502                 
35503                 //var el = this.getRegion(region).el.createChild();
35504                 /*
35505                  *var el = this.el.createChild();
35506                 // create the grid first...
35507                 cfg.grid.container = el;
35508                 cfg.grid = new cfg.grid.xns[cfg.grid.xtype](cfg.grid);
35509                 */
35510                 
35511                 if (region == 'center' && this.active ) {
35512                     cfg.background = false;
35513                 }
35514                 
35515                 ret = new cfg.xns[cfg.xtype](cfg); // new panel!!!!!
35516                 
35517                 this.add(region, ret);
35518                 /*
35519                 if (cfg.background) {
35520                     // render grid on panel activation (if panel background)
35521                     ret.on('activate', function(gp) {
35522                         if (!gp.grid.rendered) {
35523                     //        gp.grid.render(el);
35524                         }
35525                     });
35526                 } else {
35527                   //  cfg.grid.render(el);
35528                 }
35529                 */
35530                 break;
35531            
35532            
35533             case 'Border': // it can get called on it'self... - might need to check if this is fixed?
35534                 // it was the old xcomponent building that caused this before.
35535                 // espeically if border is the top element in the tree.
35536                 ret = this;
35537                 break; 
35538                 
35539                     
35540                 
35541                 
35542                 
35543             default:
35544                 /*
35545                 if (typeof(Roo[cfg.xtype]) != 'undefined') {
35546                     
35547                     ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
35548                     this.add(region, ret);
35549                 } else {
35550                 */
35551                     Roo.log(cfg);
35552                     throw "Can not add '" + cfg.xtype + "' to Border";
35553                     return null;
35554              
35555                                 
35556              
35557         }
35558         this.beginUpdate();
35559         // add children..
35560         var region = '';
35561         var abn = {};
35562         Roo.each(xitems, function(i)  {
35563             region = nb && i.region ? i.region : false;
35564             
35565             var add = ret.addxtype(i);
35566            
35567             if (region) {
35568                 nb[region] = nb[region] == undefined ? 0 : nb[region]+1;
35569                 if (!i.background) {
35570                     abn[region] = nb[region] ;
35571                 }
35572             }
35573             
35574         });
35575         this.endUpdate();
35576
35577         // make the last non-background panel active..
35578         //if (nb) { Roo.log(abn); }
35579         if (nb) {
35580             
35581             for(var r in abn) {
35582                 region = this.getRegion(r);
35583                 if (region) {
35584                     // tried using nb[r], but it does not work..
35585                      
35586                     region.showPanel(abn[r]);
35587                    
35588                 }
35589             }
35590         }
35591         return ret;
35592         
35593     },
35594     
35595     
35596 // private
35597     factory : function(cfg)
35598     {
35599         
35600         var validRegions = Roo.bootstrap.layout.Border.regions;
35601
35602         var target = cfg.region;
35603         cfg.mgr = this;
35604         
35605         var r = Roo.bootstrap.layout;
35606         Roo.log(target);
35607         switch(target){
35608             case "north":
35609                 return new r.North(cfg);
35610             case "south":
35611                 return new r.South(cfg);
35612             case "east":
35613                 return new r.East(cfg);
35614             case "west":
35615                 return new r.West(cfg);
35616             case "center":
35617                 return new r.Center(cfg);
35618         }
35619         throw 'Layout region "'+target+'" not supported.';
35620     }
35621     
35622     
35623 });
35624  /*
35625  * Based on:
35626  * Ext JS Library 1.1.1
35627  * Copyright(c) 2006-2007, Ext JS, LLC.
35628  *
35629  * Originally Released Under LGPL - original licence link has changed is not relivant.
35630  *
35631  * Fork - LGPL
35632  * <script type="text/javascript">
35633  */
35634  
35635 /**
35636  * @class Roo.bootstrap.layout.Basic
35637  * @extends Roo.util.Observable
35638  * This class represents a lightweight region in a layout manager. This region does not move dom nodes
35639  * and does not have a titlebar, tabs or any other features. All it does is size and position 
35640  * panels. To create a BasicLayoutRegion, add lightweight:true or basic:true to your regions config.
35641  * @cfg {Roo.bootstrap.layout.Manager}   mgr The manager
35642  * @cfg {string}   region  the region that it inhabits..
35643  * @cfg {bool}   skipConfig skip config?
35644  * 
35645
35646  */
35647 Roo.bootstrap.layout.Basic = function(config){
35648     
35649     this.mgr = config.mgr;
35650     
35651     this.position = config.region;
35652     
35653     var skipConfig = config.skipConfig;
35654     
35655     this.events = {
35656         /**
35657          * @scope Roo.BasicLayoutRegion
35658          */
35659         
35660         /**
35661          * @event beforeremove
35662          * Fires before a panel is removed (or closed). To cancel the removal set "e.cancel = true" on the event argument.
35663          * @param {Roo.LayoutRegion} this
35664          * @param {Roo.ContentPanel} panel The panel
35665          * @param {Object} e The cancel event object
35666          */
35667         "beforeremove" : true,
35668         /**
35669          * @event invalidated
35670          * Fires when the layout for this region is changed.
35671          * @param {Roo.LayoutRegion} this
35672          */
35673         "invalidated" : true,
35674         /**
35675          * @event visibilitychange
35676          * Fires when this region is shown or hidden 
35677          * @param {Roo.LayoutRegion} this
35678          * @param {Boolean} visibility true or false
35679          */
35680         "visibilitychange" : true,
35681         /**
35682          * @event paneladded
35683          * Fires when a panel is added. 
35684          * @param {Roo.LayoutRegion} this
35685          * @param {Roo.ContentPanel} panel The panel
35686          */
35687         "paneladded" : true,
35688         /**
35689          * @event panelremoved
35690          * Fires when a panel is removed. 
35691          * @param {Roo.LayoutRegion} this
35692          * @param {Roo.ContentPanel} panel The panel
35693          */
35694         "panelremoved" : true,
35695         /**
35696          * @event beforecollapse
35697          * Fires when this region before collapse.
35698          * @param {Roo.LayoutRegion} this
35699          */
35700         "beforecollapse" : true,
35701         /**
35702          * @event collapsed
35703          * Fires when this region is collapsed.
35704          * @param {Roo.LayoutRegion} this
35705          */
35706         "collapsed" : true,
35707         /**
35708          * @event expanded
35709          * Fires when this region is expanded.
35710          * @param {Roo.LayoutRegion} this
35711          */
35712         "expanded" : true,
35713         /**
35714          * @event slideshow
35715          * Fires when this region is slid into view.
35716          * @param {Roo.LayoutRegion} this
35717          */
35718         "slideshow" : true,
35719         /**
35720          * @event slidehide
35721          * Fires when this region slides out of view. 
35722          * @param {Roo.LayoutRegion} this
35723          */
35724         "slidehide" : true,
35725         /**
35726          * @event panelactivated
35727          * Fires when a panel is activated. 
35728          * @param {Roo.LayoutRegion} this
35729          * @param {Roo.ContentPanel} panel The activated panel
35730          */
35731         "panelactivated" : true,
35732         /**
35733          * @event resized
35734          * Fires when the user resizes this region. 
35735          * @param {Roo.LayoutRegion} this
35736          * @param {Number} newSize The new size (width for east/west, height for north/south)
35737          */
35738         "resized" : true
35739     };
35740     /** A collection of panels in this region. @type Roo.util.MixedCollection */
35741     this.panels = new Roo.util.MixedCollection();
35742     this.panels.getKey = this.getPanelId.createDelegate(this);
35743     this.box = null;
35744     this.activePanel = null;
35745     // ensure listeners are added...
35746     
35747     if (config.listeners || config.events) {
35748         Roo.bootstrap.layout.Basic.superclass.constructor.call(this, {
35749             listeners : config.listeners || {},
35750             events : config.events || {}
35751         });
35752     }
35753     
35754     if(skipConfig !== true){
35755         this.applyConfig(config);
35756     }
35757 };
35758
35759 Roo.extend(Roo.bootstrap.layout.Basic, Roo.util.Observable,
35760 {
35761     getPanelId : function(p){
35762         return p.getId();
35763     },
35764     
35765     applyConfig : function(config){
35766         this.margins = config.margins || this.margins || {top: 0, left: 0, right:0, bottom: 0};
35767         this.config = config;
35768         
35769     },
35770     
35771     /**
35772      * Resizes the region to the specified size. For vertical regions (west, east) this adjusts 
35773      * the width, for horizontal (north, south) the height.
35774      * @param {Number} newSize The new width or height
35775      */
35776     resizeTo : function(newSize){
35777         var el = this.el ? this.el :
35778                  (this.activePanel ? this.activePanel.getEl() : null);
35779         if(el){
35780             switch(this.position){
35781                 case "east":
35782                 case "west":
35783                     el.setWidth(newSize);
35784                     this.fireEvent("resized", this, newSize);
35785                 break;
35786                 case "north":
35787                 case "south":
35788                     el.setHeight(newSize);
35789                     this.fireEvent("resized", this, newSize);
35790                 break;                
35791             }
35792         }
35793     },
35794     
35795     getBox : function(){
35796         return this.activePanel ? this.activePanel.getEl().getBox(false, true) : null;
35797     },
35798     
35799     getMargins : function(){
35800         return this.margins;
35801     },
35802     
35803     updateBox : function(box){
35804         this.box = box;
35805         var el = this.activePanel.getEl();
35806         el.dom.style.left = box.x + "px";
35807         el.dom.style.top = box.y + "px";
35808         this.activePanel.setSize(box.width, box.height);
35809     },
35810     
35811     /**
35812      * Returns the container element for this region.
35813      * @return {Roo.Element}
35814      */
35815     getEl : function(){
35816         return this.activePanel;
35817     },
35818     
35819     /**
35820      * Returns true if this region is currently visible.
35821      * @return {Boolean}
35822      */
35823     isVisible : function(){
35824         return this.activePanel ? true : false;
35825     },
35826     
35827     setActivePanel : function(panel){
35828         panel = this.getPanel(panel);
35829         if(this.activePanel && this.activePanel != panel){
35830             this.activePanel.setActiveState(false);
35831             this.activePanel.getEl().setLeftTop(-10000,-10000);
35832         }
35833         this.activePanel = panel;
35834         panel.setActiveState(true);
35835         if(this.box){
35836             panel.setSize(this.box.width, this.box.height);
35837         }
35838         this.fireEvent("panelactivated", this, panel);
35839         this.fireEvent("invalidated");
35840     },
35841     
35842     /**
35843      * Show the specified panel.
35844      * @param {Number/String/ContentPanel} panelId The panels index, id or the panel itself
35845      * @return {Roo.ContentPanel} The shown panel or null
35846      */
35847     showPanel : function(panel){
35848         panel = this.getPanel(panel);
35849         if(panel){
35850             this.setActivePanel(panel);
35851         }
35852         return panel;
35853     },
35854     
35855     /**
35856      * Get the active panel for this region.
35857      * @return {Roo.ContentPanel} The active panel or null
35858      */
35859     getActivePanel : function(){
35860         return this.activePanel;
35861     },
35862     
35863     /**
35864      * Add the passed ContentPanel(s)
35865      * @param {ContentPanel...} panel The ContentPanel(s) to add (you can pass more than one)
35866      * @return {Roo.ContentPanel} The panel added (if only one was added)
35867      */
35868     add : function(panel){
35869         if(arguments.length > 1){
35870             for(var i = 0, len = arguments.length; i < len; i++) {
35871                 this.add(arguments[i]);
35872             }
35873             return null;
35874         }
35875         if(this.hasPanel(panel)){
35876             this.showPanel(panel);
35877             return panel;
35878         }
35879         var el = panel.getEl();
35880         if(el.dom.parentNode != this.mgr.el.dom){
35881             this.mgr.el.dom.appendChild(el.dom);
35882         }
35883         if(panel.setRegion){
35884             panel.setRegion(this);
35885         }
35886         this.panels.add(panel);
35887         el.setStyle("position", "absolute");
35888         if(!panel.background){
35889             this.setActivePanel(panel);
35890             if(this.config.initialSize && this.panels.getCount()==1){
35891                 this.resizeTo(this.config.initialSize);
35892             }
35893         }
35894         this.fireEvent("paneladded", this, panel);
35895         return panel;
35896     },
35897     
35898     /**
35899      * Returns true if the panel is in this region.
35900      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
35901      * @return {Boolean}
35902      */
35903     hasPanel : function(panel){
35904         if(typeof panel == "object"){ // must be panel obj
35905             panel = panel.getId();
35906         }
35907         return this.getPanel(panel) ? true : false;
35908     },
35909     
35910     /**
35911      * Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed.
35912      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
35913      * @param {Boolean} preservePanel Overrides the config preservePanel option
35914      * @return {Roo.ContentPanel} The panel that was removed
35915      */
35916     remove : function(panel, preservePanel){
35917         panel = this.getPanel(panel);
35918         if(!panel){
35919             return null;
35920         }
35921         var e = {};
35922         this.fireEvent("beforeremove", this, panel, e);
35923         if(e.cancel === true){
35924             return null;
35925         }
35926         var panelId = panel.getId();
35927         this.panels.removeKey(panelId);
35928         return panel;
35929     },
35930     
35931     /**
35932      * Returns the panel specified or null if it's not in this region.
35933      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
35934      * @return {Roo.ContentPanel}
35935      */
35936     getPanel : function(id){
35937         if(typeof id == "object"){ // must be panel obj
35938             return id;
35939         }
35940         return this.panels.get(id);
35941     },
35942     
35943     /**
35944      * Returns this regions position (north/south/east/west/center).
35945      * @return {String} 
35946      */
35947     getPosition: function(){
35948         return this.position;    
35949     }
35950 });/*
35951  * Based on:
35952  * Ext JS Library 1.1.1
35953  * Copyright(c) 2006-2007, Ext JS, LLC.
35954  *
35955  * Originally Released Under LGPL - original licence link has changed is not relivant.
35956  *
35957  * Fork - LGPL
35958  * <script type="text/javascript">
35959  */
35960  
35961 /**
35962  * @class Roo.bootstrap.layout.Region
35963  * @extends Roo.bootstrap.layout.Basic
35964  * This class represents a region in a layout manager.
35965  
35966  * @cfg {Object}    margins         Margins for the element (defaults to {top: 0, left: 0, right:0, bottom: 0})
35967  * @cfg {Object}    cmargins        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})
35968  * @cfg {String}    tabPosition     (top|bottom) "top" or "bottom" (defaults to "bottom")
35969  * @cfg {Boolean}   alwaysShowTabs  True to always display tabs even when there is only 1 panel (defaults to false)
35970  * @cfg {Boolean}   autoScroll      True to enable overflow scrolling (defaults to false)
35971  * @cfg {Boolean}   titlebar        True to display a title bar (defaults to true)
35972  * @cfg {String}    title           The title for the region (overrides panel titles)
35973  * @cfg {Boolean}   animate         True to animate expand/collapse (defaults to false)
35974  * @cfg {Boolean}   autoHide        False to disable auto hiding when the mouse leaves the "floated" region (defaults to true)
35975  * @cfg {Boolean}   preservePanels  True to preserve removed panels so they can be readded later (defaults to false)
35976  * @cfg {Boolean}   closeOnTab      True to place the close icon on the tabs instead of the region titlebar (defaults to false)
35977  * @cfg {Boolean}   hideTabs        True to hide the tab strip (defaults to false)
35978  * @cfg {Boolean}   resizeTabs      True to enable automatic tab resizing. This will resize the tabs so they are all the same size and fit within
35979  *                      the space available, similar to FireFox 1.5 tabs (defaults to false)
35980  * @cfg {Number}    minTabWidth     The minimum tab width (defaults to 40)
35981  * @cfg {Number}    preferredTabWidth The preferred tab width (defaults to 150)
35982  * @cfg {String}    overflow       (hidden|visible) if you have menus in the region, then you need to set this to visible.
35983
35984  * @cfg {Boolean}   hidden          True to start the region hidden (defaults to false)
35985  * @cfg {Boolean}   hideWhenEmpty   True to hide the region when it has no panels
35986  * @cfg {Boolean}   disableTabTips  True to disable tab tooltips
35987  * @cfg {Number}    width           For East/West panels
35988  * @cfg {Number}    height          For North/South panels
35989  * @cfg {Boolean}   split           To show the splitter
35990  * @cfg {Boolean}   toolbar         xtype configuration for a toolbar - shows on right of tabbar
35991  * 
35992  * @cfg {string}   cls             Extra CSS classes to add to region
35993  * 
35994  * @cfg {Roo.bootstrap.layout.Manager}   mgr The manager
35995  * @cfg {string}   region  the region that it inhabits..
35996  *
35997
35998  * @xxxcfg {Boolean}   collapsible     DISABLED False to disable collapsing (defaults to true)
35999  * @xxxcfg {Boolean}   collapsed       DISABLED True to set the initial display to collapsed (defaults to false)
36000
36001  * @xxxcfg {String}    collapsedTitle  DISABLED Optional string message to display in the collapsed block of a north or south region
36002  * @xxxxcfg {Boolean}   floatable       DISABLED False to disable floating (defaults to true)
36003  * @xxxxcfg {Boolean}   showPin         True to show a pin button NOT SUPPORTED YET
36004  */
36005 Roo.bootstrap.layout.Region = function(config)
36006 {
36007     this.applyConfig(config);
36008
36009     var mgr = config.mgr;
36010     var pos = config.region;
36011     config.skipConfig = true;
36012     Roo.bootstrap.layout.Region.superclass.constructor.call(this, config);
36013     
36014     if (mgr.el) {
36015         this.onRender(mgr.el);   
36016     }
36017      
36018     this.visible = true;
36019     this.collapsed = false;
36020     this.unrendered_panels = [];
36021 };
36022
36023 Roo.extend(Roo.bootstrap.layout.Region, Roo.bootstrap.layout.Basic, {
36024
36025     position: '', // set by wrapper (eg. north/south etc..)
36026     unrendered_panels : null,  // unrendered panels.
36027     
36028     tabPosition : false,
36029     
36030     mgr: false, // points to 'Border'
36031     
36032     
36033     createBody : function(){
36034         /** This region's body element 
36035         * @type Roo.Element */
36036         this.bodyEl = this.el.createChild({
36037                 tag: "div",
36038                 cls: "roo-layout-panel-body tab-content" // bootstrap added...
36039         });
36040     },
36041
36042     onRender: function(ctr, pos)
36043     {
36044         var dh = Roo.DomHelper;
36045         /** This region's container element 
36046         * @type Roo.Element */
36047         this.el = dh.append(ctr.dom, {
36048                 tag: "div",
36049                 cls: (this.config.cls || '') + " roo-layout-region roo-layout-panel roo-layout-panel-" + this.position
36050             }, true);
36051         /** This region's title element 
36052         * @type Roo.Element */
36053     
36054         this.titleEl = dh.append(this.el.dom,  {
36055                 tag: "div",
36056                 unselectable: "on",
36057                 cls: "roo-unselectable roo-layout-panel-hd breadcrumb roo-layout-title-" + this.position,
36058                 children:[
36059                     {tag: "span", cls: "roo-unselectable roo-layout-panel-hd-text", unselectable: "on", html: "&#160;"},
36060                     {tag: "div", cls: "roo-unselectable roo-layout-panel-hd-tools", unselectable: "on"}
36061                 ]
36062             }, true);
36063         
36064         this.titleEl.enableDisplayMode();
36065         /** This region's title text element 
36066         * @type HTMLElement */
36067         this.titleTextEl = this.titleEl.dom.firstChild;
36068         this.tools = Roo.get(this.titleEl.dom.childNodes[1], true);
36069         /*
36070         this.closeBtn = this.createTool(this.tools.dom, "roo-layout-close");
36071         this.closeBtn.enableDisplayMode();
36072         this.closeBtn.on("click", this.closeClicked, this);
36073         this.closeBtn.hide();
36074     */
36075         this.createBody(this.config);
36076         if(this.config.hideWhenEmpty){
36077             this.hide();
36078             this.on("paneladded", this.validateVisibility, this);
36079             this.on("panelremoved", this.validateVisibility, this);
36080         }
36081         if(this.autoScroll){
36082             this.bodyEl.setStyle("overflow", "auto");
36083         }else{
36084             this.bodyEl.setStyle("overflow", this.config.overflow || 'hidden');
36085         }
36086         //if(c.titlebar !== false){
36087             if((!this.config.titlebar && !this.config.title) || this.config.titlebar === false){
36088                 this.titleEl.hide();
36089             }else{
36090                 this.titleEl.show();
36091                 if(this.config.title){
36092                     this.titleTextEl.innerHTML = this.config.title;
36093                 }
36094             }
36095         //}
36096         if(this.config.collapsed){
36097             this.collapse(true);
36098         }
36099         if(this.config.hidden){
36100             this.hide();
36101         }
36102         
36103         if (this.unrendered_panels && this.unrendered_panels.length) {
36104             for (var i =0;i< this.unrendered_panels.length; i++) {
36105                 this.add(this.unrendered_panels[i]);
36106             }
36107             this.unrendered_panels = null;
36108             
36109         }
36110         
36111     },
36112     
36113     applyConfig : function(c)
36114     {
36115         /*
36116          *if(c.collapsible && this.position != "center" && !this.collapsedEl){
36117             var dh = Roo.DomHelper;
36118             if(c.titlebar !== false){
36119                 this.collapseBtn = this.createTool(this.tools.dom, "roo-layout-collapse-"+this.position);
36120                 this.collapseBtn.on("click", this.collapse, this);
36121                 this.collapseBtn.enableDisplayMode();
36122                 /*
36123                 if(c.showPin === true || this.showPin){
36124                     this.stickBtn = this.createTool(this.tools.dom, "roo-layout-stick");
36125                     this.stickBtn.enableDisplayMode();
36126                     this.stickBtn.on("click", this.expand, this);
36127                     this.stickBtn.hide();
36128                 }
36129                 
36130             }
36131             */
36132             /** This region's collapsed element
36133             * @type Roo.Element */
36134             /*
36135              *
36136             this.collapsedEl = dh.append(this.mgr.el.dom, {cls: "x-layout-collapsed x-layout-collapsed-"+this.position, children:[
36137                 {cls: "x-layout-collapsed-tools", children:[{cls: "x-layout-ctools-inner"}]}
36138             ]}, true);
36139             
36140             if(c.floatable !== false){
36141                this.collapsedEl.addClassOnOver("x-layout-collapsed-over");
36142                this.collapsedEl.on("click", this.collapseClick, this);
36143             }
36144
36145             if(c.collapsedTitle && (this.position == "north" || this.position== "south")) {
36146                 this.collapsedTitleTextEl = dh.append(this.collapsedEl.dom, {tag: "div", cls: "x-unselectable x-layout-panel-hd-text",
36147                    id: "message", unselectable: "on", style:{"float":"left"}});
36148                this.collapsedTitleTextEl.innerHTML = c.collapsedTitle;
36149              }
36150             this.expandBtn = this.createTool(this.collapsedEl.dom.firstChild.firstChild, "x-layout-expand-"+this.position);
36151             this.expandBtn.on("click", this.expand, this);
36152             
36153         }
36154         
36155         if(this.collapseBtn){
36156             this.collapseBtn.setVisible(c.collapsible == true);
36157         }
36158         
36159         this.cmargins = c.cmargins || this.cmargins ||
36160                          (this.position == "west" || this.position == "east" ?
36161                              {top: 0, left: 2, right:2, bottom: 0} :
36162                              {top: 2, left: 0, right:0, bottom: 2});
36163         */
36164         this.margins = c.margins || this.margins || {top: 0, left: 0, right:0, bottom: 0};
36165         
36166         
36167         this.tabPosition = [ 'top','bottom', 'west'].indexOf(c.tabPosition) > -1 ? c.tabPosition : "top";
36168         
36169         this.autoScroll = c.autoScroll || false;
36170         
36171         
36172        
36173         
36174         this.duration = c.duration || .30;
36175         this.slideDuration = c.slideDuration || .45;
36176         this.config = c;
36177        
36178     },
36179     /**
36180      * Returns true if this region is currently visible.
36181      * @return {Boolean}
36182      */
36183     isVisible : function(){
36184         return this.visible;
36185     },
36186
36187     /**
36188      * Updates the title for collapsed north/south regions (used with {@link #collapsedTitle} config option)
36189      * @param {String} title (optional) The title text (accepts HTML markup, defaults to the numeric character reference for a non-breaking space, "&amp;#160;")
36190      */
36191     //setCollapsedTitle : function(title){
36192     //    title = title || "&#160;";
36193      //   if(this.collapsedTitleTextEl){
36194       //      this.collapsedTitleTextEl.innerHTML = title;
36195        // }
36196     //},
36197
36198     getBox : function(){
36199         var b;
36200       //  if(!this.collapsed){
36201             b = this.el.getBox(false, true);
36202        // }else{
36203           //  b = this.collapsedEl.getBox(false, true);
36204         //}
36205         return b;
36206     },
36207
36208     getMargins : function(){
36209         return this.margins;
36210         //return this.collapsed ? this.cmargins : this.margins;
36211     },
36212 /*
36213     highlight : function(){
36214         this.el.addClass("x-layout-panel-dragover");
36215     },
36216
36217     unhighlight : function(){
36218         this.el.removeClass("x-layout-panel-dragover");
36219     },
36220 */
36221     updateBox : function(box)
36222     {
36223         if (!this.bodyEl) {
36224             return; // not rendered yet..
36225         }
36226         
36227         this.box = box;
36228         if(!this.collapsed){
36229             this.el.dom.style.left = box.x + "px";
36230             this.el.dom.style.top = box.y + "px";
36231             this.updateBody(box.width, box.height);
36232         }else{
36233             this.collapsedEl.dom.style.left = box.x + "px";
36234             this.collapsedEl.dom.style.top = box.y + "px";
36235             this.collapsedEl.setSize(box.width, box.height);
36236         }
36237         if(this.tabs){
36238             this.tabs.autoSizeTabs();
36239         }
36240     },
36241
36242     updateBody : function(w, h)
36243     {
36244         if(w !== null){
36245             this.el.setWidth(w);
36246             w -= this.el.getBorderWidth("rl");
36247             if(this.config.adjustments){
36248                 w += this.config.adjustments[0];
36249             }
36250         }
36251         if(h !== null && h > 0){
36252             this.el.setHeight(h);
36253             h = this.titleEl && this.titleEl.isDisplayed() ? h - (this.titleEl.getHeight()||0) : h;
36254             h -= this.el.getBorderWidth("tb");
36255             if(this.config.adjustments){
36256                 h += this.config.adjustments[1];
36257             }
36258             this.bodyEl.setHeight(h);
36259             if(this.tabs){
36260                 h = this.tabs.syncHeight(h);
36261             }
36262         }
36263         if(this.panelSize){
36264             w = w !== null ? w : this.panelSize.width;
36265             h = h !== null ? h : this.panelSize.height;
36266         }
36267         if(this.activePanel){
36268             var el = this.activePanel.getEl();
36269             w = w !== null ? w : el.getWidth();
36270             h = h !== null ? h : el.getHeight();
36271             this.panelSize = {width: w, height: h};
36272             this.activePanel.setSize(w, h);
36273         }
36274         if(Roo.isIE && this.tabs){
36275             this.tabs.el.repaint();
36276         }
36277     },
36278
36279     /**
36280      * Returns the container element for this region.
36281      * @return {Roo.Element}
36282      */
36283     getEl : function(){
36284         return this.el;
36285     },
36286
36287     /**
36288      * Hides this region.
36289      */
36290     hide : function(){
36291         //if(!this.collapsed){
36292             this.el.dom.style.left = "-2000px";
36293             this.el.hide();
36294         //}else{
36295          //   this.collapsedEl.dom.style.left = "-2000px";
36296          //   this.collapsedEl.hide();
36297        // }
36298         this.visible = false;
36299         this.fireEvent("visibilitychange", this, false);
36300     },
36301
36302     /**
36303      * Shows this region if it was previously hidden.
36304      */
36305     show : function(){
36306         //if(!this.collapsed){
36307             this.el.show();
36308         //}else{
36309         //    this.collapsedEl.show();
36310        // }
36311         this.visible = true;
36312         this.fireEvent("visibilitychange", this, true);
36313     },
36314 /*
36315     closeClicked : function(){
36316         if(this.activePanel){
36317             this.remove(this.activePanel);
36318         }
36319     },
36320
36321     collapseClick : function(e){
36322         if(this.isSlid){
36323            e.stopPropagation();
36324            this.slideIn();
36325         }else{
36326            e.stopPropagation();
36327            this.slideOut();
36328         }
36329     },
36330 */
36331     /**
36332      * Collapses this region.
36333      * @param {Boolean} skipAnim (optional) true to collapse the element without animation (if animate is true)
36334      */
36335     /*
36336     collapse : function(skipAnim, skipCheck = false){
36337         if(this.collapsed) {
36338             return;
36339         }
36340         
36341         if(skipCheck || this.fireEvent("beforecollapse", this) != false){
36342             
36343             this.collapsed = true;
36344             if(this.split){
36345                 this.split.el.hide();
36346             }
36347             if(this.config.animate && skipAnim !== true){
36348                 this.fireEvent("invalidated", this);
36349                 this.animateCollapse();
36350             }else{
36351                 this.el.setLocation(-20000,-20000);
36352                 this.el.hide();
36353                 this.collapsedEl.show();
36354                 this.fireEvent("collapsed", this);
36355                 this.fireEvent("invalidated", this);
36356             }
36357         }
36358         
36359     },
36360 */
36361     animateCollapse : function(){
36362         // overridden
36363     },
36364
36365     /**
36366      * Expands this region if it was previously collapsed.
36367      * @param {Roo.EventObject} e The event that triggered the expand (or null if calling manually)
36368      * @param {Boolean} skipAnim (optional) true to expand the element without animation (if animate is true)
36369      */
36370     /*
36371     expand : function(e, skipAnim){
36372         if(e) {
36373             e.stopPropagation();
36374         }
36375         if(!this.collapsed || this.el.hasActiveFx()) {
36376             return;
36377         }
36378         if(this.isSlid){
36379             this.afterSlideIn();
36380             skipAnim = true;
36381         }
36382         this.collapsed = false;
36383         if(this.config.animate && skipAnim !== true){
36384             this.animateExpand();
36385         }else{
36386             this.el.show();
36387             if(this.split){
36388                 this.split.el.show();
36389             }
36390             this.collapsedEl.setLocation(-2000,-2000);
36391             this.collapsedEl.hide();
36392             this.fireEvent("invalidated", this);
36393             this.fireEvent("expanded", this);
36394         }
36395     },
36396 */
36397     animateExpand : function(){
36398         // overridden
36399     },
36400
36401     initTabs : function()
36402     {
36403         //this.bodyEl.setStyle("overflow", "hidden"); -- this is set in render?
36404         
36405         var ts = new Roo.bootstrap.panel.Tabs({
36406             el: this.bodyEl.dom,
36407             region : this,
36408             tabPosition: this.tabPosition ? this.tabPosition  : 'top',
36409             disableTooltips: this.config.disableTabTips,
36410             toolbar : this.config.toolbar
36411         });
36412         
36413         if(this.config.hideTabs){
36414             ts.stripWrap.setDisplayed(false);
36415         }
36416         this.tabs = ts;
36417         ts.resizeTabs = this.config.resizeTabs === true;
36418         ts.minTabWidth = this.config.minTabWidth || 40;
36419         ts.maxTabWidth = this.config.maxTabWidth || 250;
36420         ts.preferredTabWidth = this.config.preferredTabWidth || 150;
36421         ts.monitorResize = false;
36422         //ts.bodyEl.setStyle("overflow", this.config.autoScroll ? "auto" : "hidden"); // this is set in render?
36423         ts.bodyEl.addClass('roo-layout-tabs-body');
36424         this.panels.each(this.initPanelAsTab, this);
36425     },
36426
36427     initPanelAsTab : function(panel){
36428         var ti = this.tabs.addTab(
36429             panel.getEl().id,
36430             panel.getTitle(),
36431             null,
36432             this.config.closeOnTab && panel.isClosable(),
36433             panel.tpl
36434         );
36435         if(panel.tabTip !== undefined){
36436             ti.setTooltip(panel.tabTip);
36437         }
36438         ti.on("activate", function(){
36439               this.setActivePanel(panel);
36440         }, this);
36441         
36442         if(this.config.closeOnTab){
36443             ti.on("beforeclose", function(t, e){
36444                 e.cancel = true;
36445                 this.remove(panel);
36446             }, this);
36447         }
36448         
36449         panel.tabItem = ti;
36450         
36451         return ti;
36452     },
36453
36454     updatePanelTitle : function(panel, title)
36455     {
36456         if(this.activePanel == panel){
36457             this.updateTitle(title);
36458         }
36459         if(this.tabs){
36460             var ti = this.tabs.getTab(panel.getEl().id);
36461             ti.setText(title);
36462             if(panel.tabTip !== undefined){
36463                 ti.setTooltip(panel.tabTip);
36464             }
36465         }
36466     },
36467
36468     updateTitle : function(title){
36469         if(this.titleTextEl && !this.config.title){
36470             this.titleTextEl.innerHTML = (typeof title != "undefined" && title.length > 0 ? title : "&#160;");
36471         }
36472     },
36473
36474     setActivePanel : function(panel)
36475     {
36476         panel = this.getPanel(panel);
36477         if(this.activePanel && this.activePanel != panel){
36478             if(this.activePanel.setActiveState(false) === false){
36479                 return;
36480             }
36481         }
36482         this.activePanel = panel;
36483         panel.setActiveState(true);
36484         if(this.panelSize){
36485             panel.setSize(this.panelSize.width, this.panelSize.height);
36486         }
36487         if(this.closeBtn){
36488             this.closeBtn.setVisible(!this.config.closeOnTab && !this.isSlid && panel.isClosable());
36489         }
36490         this.updateTitle(panel.getTitle());
36491         if(this.tabs){
36492             this.fireEvent("invalidated", this);
36493         }
36494         this.fireEvent("panelactivated", this, panel);
36495     },
36496
36497     /**
36498      * Shows the specified panel.
36499      * @param {Number/String/ContentPanel} panelId The panel's index, id or the panel itself
36500      * @return {Roo.ContentPanel} The shown panel, or null if a panel could not be found from panelId
36501      */
36502     showPanel : function(panel)
36503     {
36504         panel = this.getPanel(panel);
36505         if(panel){
36506             if(this.tabs){
36507                 var tab = this.tabs.getTab(panel.getEl().id);
36508                 if(tab.isHidden()){
36509                     this.tabs.unhideTab(tab.id);
36510                 }
36511                 tab.activate();
36512             }else{
36513                 this.setActivePanel(panel);
36514             }
36515         }
36516         return panel;
36517     },
36518
36519     /**
36520      * Get the active panel for this region.
36521      * @return {Roo.ContentPanel} The active panel or null
36522      */
36523     getActivePanel : function(){
36524         return this.activePanel;
36525     },
36526
36527     validateVisibility : function(){
36528         if(this.panels.getCount() < 1){
36529             this.updateTitle("&#160;");
36530             this.closeBtn.hide();
36531             this.hide();
36532         }else{
36533             if(!this.isVisible()){
36534                 this.show();
36535             }
36536         }
36537     },
36538
36539     /**
36540      * Adds the passed ContentPanel(s) to this region.
36541      * @param {ContentPanel...} panel The ContentPanel(s) to add (you can pass more than one)
36542      * @return {Roo.ContentPanel} The panel added (if only one was added; null otherwise)
36543      */
36544     add : function(panel)
36545     {
36546         if(arguments.length > 1){
36547             for(var i = 0, len = arguments.length; i < len; i++) {
36548                 this.add(arguments[i]);
36549             }
36550             return null;
36551         }
36552         
36553         // if we have not been rendered yet, then we can not really do much of this..
36554         if (!this.bodyEl) {
36555             this.unrendered_panels.push(panel);
36556             return panel;
36557         }
36558         
36559         
36560         
36561         
36562         if(this.hasPanel(panel)){
36563             this.showPanel(panel);
36564             return panel;
36565         }
36566         panel.setRegion(this);
36567         this.panels.add(panel);
36568        /* if(this.panels.getCount() == 1 && !this.config.alwaysShowTabs){
36569             // sinle panel - no tab...?? would it not be better to render it with the tabs,
36570             // and hide them... ???
36571             this.bodyEl.dom.appendChild(panel.getEl().dom);
36572             if(panel.background !== true){
36573                 this.setActivePanel(panel);
36574             }
36575             this.fireEvent("paneladded", this, panel);
36576             return panel;
36577         }
36578         */
36579         if(!this.tabs){
36580             this.initTabs();
36581         }else{
36582             this.initPanelAsTab(panel);
36583         }
36584         
36585         
36586         if(panel.background !== true){
36587             this.tabs.activate(panel.getEl().id);
36588         }
36589         this.fireEvent("paneladded", this, panel);
36590         return panel;
36591     },
36592
36593     /**
36594      * Hides the tab for the specified panel.
36595      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
36596      */
36597     hidePanel : function(panel){
36598         if(this.tabs && (panel = this.getPanel(panel))){
36599             this.tabs.hideTab(panel.getEl().id);
36600         }
36601     },
36602
36603     /**
36604      * Unhides the tab for a previously hidden panel.
36605      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
36606      */
36607     unhidePanel : function(panel){
36608         if(this.tabs && (panel = this.getPanel(panel))){
36609             this.tabs.unhideTab(panel.getEl().id);
36610         }
36611     },
36612
36613     clearPanels : function(){
36614         while(this.panels.getCount() > 0){
36615              this.remove(this.panels.first());
36616         }
36617     },
36618
36619     /**
36620      * Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed.
36621      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
36622      * @param {Boolean} preservePanel Overrides the config preservePanel option
36623      * @return {Roo.ContentPanel} The panel that was removed
36624      */
36625     remove : function(panel, preservePanel)
36626     {
36627         panel = this.getPanel(panel);
36628         if(!panel){
36629             return null;
36630         }
36631         var e = {};
36632         this.fireEvent("beforeremove", this, panel, e);
36633         if(e.cancel === true){
36634             return null;
36635         }
36636         preservePanel = (typeof preservePanel != "undefined" ? preservePanel : (this.config.preservePanels === true || panel.preserve === true));
36637         var panelId = panel.getId();
36638         this.panels.removeKey(panelId);
36639         if(preservePanel){
36640             document.body.appendChild(panel.getEl().dom);
36641         }
36642         if(this.tabs){
36643             this.tabs.removeTab(panel.getEl().id);
36644         }else if (!preservePanel){
36645             this.bodyEl.dom.removeChild(panel.getEl().dom);
36646         }
36647         if(this.panels.getCount() == 1 && this.tabs && !this.config.alwaysShowTabs){
36648             var p = this.panels.first();
36649             var tempEl = document.createElement("div"); // temp holder to keep IE from deleting the node
36650             tempEl.appendChild(p.getEl().dom);
36651             this.bodyEl.update("");
36652             this.bodyEl.dom.appendChild(p.getEl().dom);
36653             tempEl = null;
36654             this.updateTitle(p.getTitle());
36655             this.tabs = null;
36656             this.bodyEl.setStyle("overflow", this.config.autoScroll ? "auto" : "hidden");
36657             this.setActivePanel(p);
36658         }
36659         panel.setRegion(null);
36660         if(this.activePanel == panel){
36661             this.activePanel = null;
36662         }
36663         if(this.config.autoDestroy !== false && preservePanel !== true){
36664             try{panel.destroy();}catch(e){}
36665         }
36666         this.fireEvent("panelremoved", this, panel);
36667         return panel;
36668     },
36669
36670     /**
36671      * Returns the TabPanel component used by this region
36672      * @return {Roo.TabPanel}
36673      */
36674     getTabs : function(){
36675         return this.tabs;
36676     },
36677
36678     createTool : function(parentEl, className){
36679         var btn = Roo.DomHelper.append(parentEl, {
36680             tag: "div",
36681             cls: "x-layout-tools-button",
36682             children: [ {
36683                 tag: "div",
36684                 cls: "roo-layout-tools-button-inner " + className,
36685                 html: "&#160;"
36686             }]
36687         }, true);
36688         btn.addClassOnOver("roo-layout-tools-button-over");
36689         return btn;
36690     }
36691 });/*
36692  * Based on:
36693  * Ext JS Library 1.1.1
36694  * Copyright(c) 2006-2007, Ext JS, LLC.
36695  *
36696  * Originally Released Under LGPL - original licence link has changed is not relivant.
36697  *
36698  * Fork - LGPL
36699  * <script type="text/javascript">
36700  */
36701  
36702
36703
36704 /**
36705  * @class Roo.SplitLayoutRegion
36706  * @extends Roo.LayoutRegion
36707  * Adds a splitbar and other (private) useful functionality to a {@link Roo.LayoutRegion}.
36708  */
36709 Roo.bootstrap.layout.Split = function(config){
36710     this.cursor = config.cursor;
36711     Roo.bootstrap.layout.Split.superclass.constructor.call(this, config);
36712 };
36713
36714 Roo.extend(Roo.bootstrap.layout.Split, Roo.bootstrap.layout.Region,
36715 {
36716     splitTip : "Drag to resize.",
36717     collapsibleSplitTip : "Drag to resize. Double click to hide.",
36718     useSplitTips : false,
36719
36720     applyConfig : function(config){
36721         Roo.bootstrap.layout.Split.superclass.applyConfig.call(this, config);
36722     },
36723     
36724     onRender : function(ctr,pos) {
36725         
36726         Roo.bootstrap.layout.Split.superclass.onRender.call(this, ctr,pos);
36727         if(!this.config.split){
36728             return;
36729         }
36730         if(!this.split){
36731             
36732             var splitEl = Roo.DomHelper.append(ctr.dom,  {
36733                             tag: "div",
36734                             id: this.el.id + "-split",
36735                             cls: "roo-layout-split roo-layout-split-"+this.position,
36736                             html: "&#160;"
36737             });
36738             /** The SplitBar for this region 
36739             * @type Roo.SplitBar */
36740             // does not exist yet...
36741             Roo.log([this.position, this.orientation]);
36742             
36743             this.split = new Roo.bootstrap.SplitBar({
36744                 dragElement : splitEl,
36745                 resizingElement: this.el,
36746                 orientation : this.orientation
36747             });
36748             
36749             this.split.on("moved", this.onSplitMove, this);
36750             this.split.useShim = this.config.useShim === true;
36751             this.split.getMaximumSize = this[this.position == 'north' || this.position == 'south' ? 'getVMaxSize' : 'getHMaxSize'].createDelegate(this);
36752             if(this.useSplitTips){
36753                 this.split.el.dom.title = this.config.collapsible ? this.collapsibleSplitTip : this.splitTip;
36754             }
36755             //if(config.collapsible){
36756             //    this.split.el.on("dblclick", this.collapse,  this);
36757             //}
36758         }
36759         if(typeof this.config.minSize != "undefined"){
36760             this.split.minSize = this.config.minSize;
36761         }
36762         if(typeof this.config.maxSize != "undefined"){
36763             this.split.maxSize = this.config.maxSize;
36764         }
36765         if(this.config.hideWhenEmpty || this.config.hidden || this.config.collapsed){
36766             this.hideSplitter();
36767         }
36768         
36769     },
36770
36771     getHMaxSize : function(){
36772          var cmax = this.config.maxSize || 10000;
36773          var center = this.mgr.getRegion("center");
36774          return Math.min(cmax, (this.el.getWidth()+center.getEl().getWidth())-center.getMinWidth());
36775     },
36776
36777     getVMaxSize : function(){
36778          var cmax = this.config.maxSize || 10000;
36779          var center = this.mgr.getRegion("center");
36780          return Math.min(cmax, (this.el.getHeight()+center.getEl().getHeight())-center.getMinHeight());
36781     },
36782
36783     onSplitMove : function(split, newSize){
36784         this.fireEvent("resized", this, newSize);
36785     },
36786     
36787     /** 
36788      * Returns the {@link Roo.SplitBar} for this region.
36789      * @return {Roo.SplitBar}
36790      */
36791     getSplitBar : function(){
36792         return this.split;
36793     },
36794     
36795     hide : function(){
36796         this.hideSplitter();
36797         Roo.bootstrap.layout.Split.superclass.hide.call(this);
36798     },
36799
36800     hideSplitter : function(){
36801         if(this.split){
36802             this.split.el.setLocation(-2000,-2000);
36803             this.split.el.hide();
36804         }
36805     },
36806
36807     show : function(){
36808         if(this.split){
36809             this.split.el.show();
36810         }
36811         Roo.bootstrap.layout.Split.superclass.show.call(this);
36812     },
36813     
36814     beforeSlide: function(){
36815         if(Roo.isGecko){// firefox overflow auto bug workaround
36816             this.bodyEl.clip();
36817             if(this.tabs) {
36818                 this.tabs.bodyEl.clip();
36819             }
36820             if(this.activePanel){
36821                 this.activePanel.getEl().clip();
36822                 
36823                 if(this.activePanel.beforeSlide){
36824                     this.activePanel.beforeSlide();
36825                 }
36826             }
36827         }
36828     },
36829     
36830     afterSlide : function(){
36831         if(Roo.isGecko){// firefox overflow auto bug workaround
36832             this.bodyEl.unclip();
36833             if(this.tabs) {
36834                 this.tabs.bodyEl.unclip();
36835             }
36836             if(this.activePanel){
36837                 this.activePanel.getEl().unclip();
36838                 if(this.activePanel.afterSlide){
36839                     this.activePanel.afterSlide();
36840                 }
36841             }
36842         }
36843     },
36844
36845     initAutoHide : function(){
36846         if(this.autoHide !== false){
36847             if(!this.autoHideHd){
36848                 var st = new Roo.util.DelayedTask(this.slideIn, this);
36849                 this.autoHideHd = {
36850                     "mouseout": function(e){
36851                         if(!e.within(this.el, true)){
36852                             st.delay(500);
36853                         }
36854                     },
36855                     "mouseover" : function(e){
36856                         st.cancel();
36857                     },
36858                     scope : this
36859                 };
36860             }
36861             this.el.on(this.autoHideHd);
36862         }
36863     },
36864
36865     clearAutoHide : function(){
36866         if(this.autoHide !== false){
36867             this.el.un("mouseout", this.autoHideHd.mouseout);
36868             this.el.un("mouseover", this.autoHideHd.mouseover);
36869         }
36870     },
36871
36872     clearMonitor : function(){
36873         Roo.get(document).un("click", this.slideInIf, this);
36874     },
36875
36876     // these names are backwards but not changed for compat
36877     slideOut : function(){
36878         if(this.isSlid || this.el.hasActiveFx()){
36879             return;
36880         }
36881         this.isSlid = true;
36882         if(this.collapseBtn){
36883             this.collapseBtn.hide();
36884         }
36885         this.closeBtnState = this.closeBtn.getStyle('display');
36886         this.closeBtn.hide();
36887         if(this.stickBtn){
36888             this.stickBtn.show();
36889         }
36890         this.el.show();
36891         this.el.alignTo(this.collapsedEl, this.getCollapseAnchor());
36892         this.beforeSlide();
36893         this.el.setStyle("z-index", 10001);
36894         this.el.slideIn(this.getSlideAnchor(), {
36895             callback: function(){
36896                 this.afterSlide();
36897                 this.initAutoHide();
36898                 Roo.get(document).on("click", this.slideInIf, this);
36899                 this.fireEvent("slideshow", this);
36900             },
36901             scope: this,
36902             block: true
36903         });
36904     },
36905
36906     afterSlideIn : function(){
36907         this.clearAutoHide();
36908         this.isSlid = false;
36909         this.clearMonitor();
36910         this.el.setStyle("z-index", "");
36911         if(this.collapseBtn){
36912             this.collapseBtn.show();
36913         }
36914         this.closeBtn.setStyle('display', this.closeBtnState);
36915         if(this.stickBtn){
36916             this.stickBtn.hide();
36917         }
36918         this.fireEvent("slidehide", this);
36919     },
36920
36921     slideIn : function(cb){
36922         if(!this.isSlid || this.el.hasActiveFx()){
36923             Roo.callback(cb);
36924             return;
36925         }
36926         this.isSlid = false;
36927         this.beforeSlide();
36928         this.el.slideOut(this.getSlideAnchor(), {
36929             callback: function(){
36930                 this.el.setLeftTop(-10000, -10000);
36931                 this.afterSlide();
36932                 this.afterSlideIn();
36933                 Roo.callback(cb);
36934             },
36935             scope: this,
36936             block: true
36937         });
36938     },
36939     
36940     slideInIf : function(e){
36941         if(!e.within(this.el)){
36942             this.slideIn();
36943         }
36944     },
36945
36946     animateCollapse : function(){
36947         this.beforeSlide();
36948         this.el.setStyle("z-index", 20000);
36949         var anchor = this.getSlideAnchor();
36950         this.el.slideOut(anchor, {
36951             callback : function(){
36952                 this.el.setStyle("z-index", "");
36953                 this.collapsedEl.slideIn(anchor, {duration:.3});
36954                 this.afterSlide();
36955                 this.el.setLocation(-10000,-10000);
36956                 this.el.hide();
36957                 this.fireEvent("collapsed", this);
36958             },
36959             scope: this,
36960             block: true
36961         });
36962     },
36963
36964     animateExpand : function(){
36965         this.beforeSlide();
36966         this.el.alignTo(this.collapsedEl, this.getCollapseAnchor(), this.getExpandAdj());
36967         this.el.setStyle("z-index", 20000);
36968         this.collapsedEl.hide({
36969             duration:.1
36970         });
36971         this.el.slideIn(this.getSlideAnchor(), {
36972             callback : function(){
36973                 this.el.setStyle("z-index", "");
36974                 this.afterSlide();
36975                 if(this.split){
36976                     this.split.el.show();
36977                 }
36978                 this.fireEvent("invalidated", this);
36979                 this.fireEvent("expanded", this);
36980             },
36981             scope: this,
36982             block: true
36983         });
36984     },
36985
36986     anchors : {
36987         "west" : "left",
36988         "east" : "right",
36989         "north" : "top",
36990         "south" : "bottom"
36991     },
36992
36993     sanchors : {
36994         "west" : "l",
36995         "east" : "r",
36996         "north" : "t",
36997         "south" : "b"
36998     },
36999
37000     canchors : {
37001         "west" : "tl-tr",
37002         "east" : "tr-tl",
37003         "north" : "tl-bl",
37004         "south" : "bl-tl"
37005     },
37006
37007     getAnchor : function(){
37008         return this.anchors[this.position];
37009     },
37010
37011     getCollapseAnchor : function(){
37012         return this.canchors[this.position];
37013     },
37014
37015     getSlideAnchor : function(){
37016         return this.sanchors[this.position];
37017     },
37018
37019     getAlignAdj : function(){
37020         var cm = this.cmargins;
37021         switch(this.position){
37022             case "west":
37023                 return [0, 0];
37024             break;
37025             case "east":
37026                 return [0, 0];
37027             break;
37028             case "north":
37029                 return [0, 0];
37030             break;
37031             case "south":
37032                 return [0, 0];
37033             break;
37034         }
37035     },
37036
37037     getExpandAdj : function(){
37038         var c = this.collapsedEl, cm = this.cmargins;
37039         switch(this.position){
37040             case "west":
37041                 return [-(cm.right+c.getWidth()+cm.left), 0];
37042             break;
37043             case "east":
37044                 return [cm.right+c.getWidth()+cm.left, 0];
37045             break;
37046             case "north":
37047                 return [0, -(cm.top+cm.bottom+c.getHeight())];
37048             break;
37049             case "south":
37050                 return [0, cm.top+cm.bottom+c.getHeight()];
37051             break;
37052         }
37053     }
37054 });/*
37055  * Based on:
37056  * Ext JS Library 1.1.1
37057  * Copyright(c) 2006-2007, Ext JS, LLC.
37058  *
37059  * Originally Released Under LGPL - original licence link has changed is not relivant.
37060  *
37061  * Fork - LGPL
37062  * <script type="text/javascript">
37063  */
37064 /*
37065  * These classes are private internal classes
37066  */
37067 Roo.bootstrap.layout.Center = function(config){
37068     config.region = "center";
37069     Roo.bootstrap.layout.Region.call(this, config);
37070     this.visible = true;
37071     this.minWidth = config.minWidth || 20;
37072     this.minHeight = config.minHeight || 20;
37073 };
37074
37075 Roo.extend(Roo.bootstrap.layout.Center, Roo.bootstrap.layout.Region, {
37076     hide : function(){
37077         // center panel can't be hidden
37078     },
37079     
37080     show : function(){
37081         // center panel can't be hidden
37082     },
37083     
37084     getMinWidth: function(){
37085         return this.minWidth;
37086     },
37087     
37088     getMinHeight: function(){
37089         return this.minHeight;
37090     }
37091 });
37092
37093
37094
37095
37096  
37097
37098
37099
37100
37101
37102
37103 Roo.bootstrap.layout.North = function(config)
37104 {
37105     config.region = 'north';
37106     config.cursor = 'n-resize';
37107     
37108     Roo.bootstrap.layout.Split.call(this, config);
37109     
37110     
37111     if(this.split){
37112         this.split.placement = Roo.bootstrap.SplitBar.TOP;
37113         this.split.orientation = Roo.bootstrap.SplitBar.VERTICAL;
37114         this.split.el.addClass("roo-layout-split-v");
37115     }
37116     var size = config.initialSize || config.height;
37117     if(typeof size != "undefined"){
37118         this.el.setHeight(size);
37119     }
37120 };
37121 Roo.extend(Roo.bootstrap.layout.North, Roo.bootstrap.layout.Split,
37122 {
37123     orientation: Roo.bootstrap.SplitBar.VERTICAL,
37124     
37125     
37126     
37127     getBox : function(){
37128         if(this.collapsed){
37129             return this.collapsedEl.getBox();
37130         }
37131         var box = this.el.getBox();
37132         if(this.split){
37133             box.height += this.split.el.getHeight();
37134         }
37135         return box;
37136     },
37137     
37138     updateBox : function(box){
37139         if(this.split && !this.collapsed){
37140             box.height -= this.split.el.getHeight();
37141             this.split.el.setLeft(box.x);
37142             this.split.el.setTop(box.y+box.height);
37143             this.split.el.setWidth(box.width);
37144         }
37145         if(this.collapsed){
37146             this.updateBody(box.width, null);
37147         }
37148         Roo.bootstrap.layout.Region.prototype.updateBox.call(this, box);
37149     }
37150 });
37151
37152
37153
37154
37155
37156 Roo.bootstrap.layout.South = function(config){
37157     config.region = 'south';
37158     config.cursor = 's-resize';
37159     Roo.bootstrap.layout.Split.call(this, config);
37160     if(this.split){
37161         this.split.placement = Roo.bootstrap.SplitBar.BOTTOM;
37162         this.split.orientation = Roo.bootstrap.SplitBar.VERTICAL;
37163         this.split.el.addClass("roo-layout-split-v");
37164     }
37165     var size = config.initialSize || config.height;
37166     if(typeof size != "undefined"){
37167         this.el.setHeight(size);
37168     }
37169 };
37170
37171 Roo.extend(Roo.bootstrap.layout.South, Roo.bootstrap.layout.Split, {
37172     orientation: Roo.bootstrap.SplitBar.VERTICAL,
37173     getBox : function(){
37174         if(this.collapsed){
37175             return this.collapsedEl.getBox();
37176         }
37177         var box = this.el.getBox();
37178         if(this.split){
37179             var sh = this.split.el.getHeight();
37180             box.height += sh;
37181             box.y -= sh;
37182         }
37183         return box;
37184     },
37185     
37186     updateBox : function(box){
37187         if(this.split && !this.collapsed){
37188             var sh = this.split.el.getHeight();
37189             box.height -= sh;
37190             box.y += sh;
37191             this.split.el.setLeft(box.x);
37192             this.split.el.setTop(box.y-sh);
37193             this.split.el.setWidth(box.width);
37194         }
37195         if(this.collapsed){
37196             this.updateBody(box.width, null);
37197         }
37198         Roo.bootstrap.layout.Region.prototype.updateBox.call(this, box);
37199     }
37200 });
37201
37202 Roo.bootstrap.layout.East = function(config){
37203     config.region = "east";
37204     config.cursor = "e-resize";
37205     Roo.bootstrap.layout.Split.call(this, config);
37206     if(this.split){
37207         this.split.placement = Roo.bootstrap.SplitBar.RIGHT;
37208         this.split.orientation = Roo.bootstrap.SplitBar.HORIZONTAL;
37209         this.split.el.addClass("roo-layout-split-h");
37210     }
37211     var size = config.initialSize || config.width;
37212     if(typeof size != "undefined"){
37213         this.el.setWidth(size);
37214     }
37215 };
37216 Roo.extend(Roo.bootstrap.layout.East, Roo.bootstrap.layout.Split, {
37217     orientation: Roo.bootstrap.SplitBar.HORIZONTAL,
37218     getBox : function(){
37219         if(this.collapsed){
37220             return this.collapsedEl.getBox();
37221         }
37222         var box = this.el.getBox();
37223         if(this.split){
37224             var sw = this.split.el.getWidth();
37225             box.width += sw;
37226             box.x -= sw;
37227         }
37228         return box;
37229     },
37230
37231     updateBox : function(box){
37232         if(this.split && !this.collapsed){
37233             var sw = this.split.el.getWidth();
37234             box.width -= sw;
37235             this.split.el.setLeft(box.x);
37236             this.split.el.setTop(box.y);
37237             this.split.el.setHeight(box.height);
37238             box.x += sw;
37239         }
37240         if(this.collapsed){
37241             this.updateBody(null, box.height);
37242         }
37243         Roo.bootstrap.layout.Region.prototype.updateBox.call(this, box);
37244     }
37245 });
37246
37247 Roo.bootstrap.layout.West = function(config){
37248     config.region = "west";
37249     config.cursor = "w-resize";
37250     
37251     Roo.bootstrap.layout.Split.call(this, config);
37252     if(this.split){
37253         this.split.placement = Roo.bootstrap.SplitBar.LEFT;
37254         this.split.orientation = Roo.bootstrap.SplitBar.HORIZONTAL;
37255         this.split.el.addClass("roo-layout-split-h");
37256     }
37257     
37258 };
37259 Roo.extend(Roo.bootstrap.layout.West, Roo.bootstrap.layout.Split, {
37260     orientation: Roo.bootstrap.SplitBar.HORIZONTAL,
37261     
37262     onRender: function(ctr, pos)
37263     {
37264         Roo.bootstrap.layout.West.superclass.onRender.call(this, ctr,pos);
37265         var size = this.config.initialSize || this.config.width;
37266         if(typeof size != "undefined"){
37267             this.el.setWidth(size);
37268         }
37269     },
37270     
37271     getBox : function(){
37272         if(this.collapsed){
37273             return this.collapsedEl.getBox();
37274         }
37275         var box = this.el.getBox();
37276         if(this.split){
37277             box.width += this.split.el.getWidth();
37278         }
37279         return box;
37280     },
37281     
37282     updateBox : function(box){
37283         if(this.split && !this.collapsed){
37284             var sw = this.split.el.getWidth();
37285             box.width -= sw;
37286             this.split.el.setLeft(box.x+box.width);
37287             this.split.el.setTop(box.y);
37288             this.split.el.setHeight(box.height);
37289         }
37290         if(this.collapsed){
37291             this.updateBody(null, box.height);
37292         }
37293         Roo.bootstrap.layout.Region.prototype.updateBox.call(this, box);
37294     }
37295 });Roo.namespace("Roo.bootstrap.panel");/*
37296  * Based on:
37297  * Ext JS Library 1.1.1
37298  * Copyright(c) 2006-2007, Ext JS, LLC.
37299  *
37300  * Originally Released Under LGPL - original licence link has changed is not relivant.
37301  *
37302  * Fork - LGPL
37303  * <script type="text/javascript">
37304  */
37305 /**
37306  * @class Roo.ContentPanel
37307  * @extends Roo.util.Observable
37308  * A basic ContentPanel element.
37309  * @cfg {Boolean}   fitToFrame    True for this panel to adjust its size to fit when the region resizes  (defaults to false)
37310  * @cfg {Boolean}   fitContainer   When using {@link #fitToFrame} and {@link #resizeEl}, you can also fit the parent container  (defaults to false)
37311  * @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
37312  * @cfg {Boolean}   closable      True if the panel can be closed/removed
37313  * @cfg {Boolean}   background    True if the panel should not be activated when it is added (defaults to false)
37314  * @cfg {String/HTMLElement/Element} resizeEl An element to resize if {@link #fitToFrame} is true (instead of this panel's element)
37315  * @cfg {Toolbar}   toolbar       A toolbar for this panel
37316  * @cfg {Boolean} autoScroll    True to scroll overflow in this panel (use with {@link #fitToFrame})
37317  * @cfg {String} title          The title for this panel
37318  * @cfg {Array} adjustments     Values to <b>add</b> to the width/height when doing a {@link #fitToFrame} (default is [0, 0])
37319  * @cfg {String} url            Calls {@link #setUrl} with this value
37320  * @cfg {String} region         (center|north|south|east|west) which region to put this panel on (when used with xtype constructors)
37321  * @cfg {String/Object} params  When used with {@link #url}, calls {@link #setUrl} with this value
37322  * @cfg {Boolean} loadOnce      When used with {@link #url}, calls {@link #setUrl} with this value
37323  * @cfg {String}    content        Raw content to fill content panel with (uses setContent on construction.)
37324  * @cfg {Boolean} badges render the badges
37325
37326  * @constructor
37327  * Create a new ContentPanel.
37328  * @param {String/HTMLElement/Roo.Element} el The container element for this panel
37329  * @param {String/Object} config A string to set only the title or a config object
37330  * @param {String} content (optional) Set the HTML content for this panel
37331  * @param {String} region (optional) Used by xtype constructors to add to regions. (values center,east,west,south,north)
37332  */
37333 Roo.bootstrap.panel.Content = function( config){
37334     
37335     this.tpl = config.tpl || false;
37336     
37337     var el = config.el;
37338     var content = config.content;
37339
37340     if(config.autoCreate){ // xtype is available if this is called from factory
37341         el = Roo.id();
37342     }
37343     this.el = Roo.get(el);
37344     if(!this.el && config && config.autoCreate){
37345         if(typeof config.autoCreate == "object"){
37346             if(!config.autoCreate.id){
37347                 config.autoCreate.id = config.id||el;
37348             }
37349             this.el = Roo.DomHelper.append(document.body,
37350                         config.autoCreate, true);
37351         }else{
37352             var elcfg =  {   tag: "div",
37353                             cls: "roo-layout-inactive-content",
37354                             id: config.id||el
37355                             };
37356             if (config.html) {
37357                 elcfg.html = config.html;
37358                 
37359             }
37360                         
37361             this.el = Roo.DomHelper.append(document.body, elcfg , true);
37362         }
37363     } 
37364     this.closable = false;
37365     this.loaded = false;
37366     this.active = false;
37367    
37368       
37369     if (config.toolbar && !config.toolbar.el && config.toolbar.xtype) {
37370         
37371         this.toolbar = new config.toolbar.xns[config.toolbar.xtype](config.toolbar);
37372         
37373         this.wrapEl = this.el; //this.el.wrap();
37374         var ti = [];
37375         if (config.toolbar.items) {
37376             ti = config.toolbar.items ;
37377             delete config.toolbar.items ;
37378         }
37379         
37380         var nitems = [];
37381         this.toolbar.render(this.wrapEl, 'before');
37382         for(var i =0;i < ti.length;i++) {
37383           //  Roo.log(['add child', items[i]]);
37384             nitems.push(this.toolbar.addxtype(Roo.apply({}, ti[i])));
37385         }
37386         this.toolbar.items = nitems;
37387         this.toolbar.el.insertBefore(this.wrapEl.dom.firstChild);
37388         delete config.toolbar;
37389         
37390     }
37391     /*
37392     // xtype created footer. - not sure if will work as we normally have to render first..
37393     if (this.footer && !this.footer.el && this.footer.xtype) {
37394         if (!this.wrapEl) {
37395             this.wrapEl = this.el.wrap();
37396         }
37397     
37398         this.footer.container = this.wrapEl.createChild();
37399          
37400         this.footer = Roo.factory(this.footer, Roo);
37401         
37402     }
37403     */
37404     
37405      if(typeof config == "string"){
37406         this.title = config;
37407     }else{
37408         Roo.apply(this, config);
37409     }
37410     
37411     if(this.resizeEl){
37412         this.resizeEl = Roo.get(this.resizeEl, true);
37413     }else{
37414         this.resizeEl = this.el;
37415     }
37416     // handle view.xtype
37417     
37418  
37419     
37420     
37421     this.addEvents({
37422         /**
37423          * @event activate
37424          * Fires when this panel is activated. 
37425          * @param {Roo.ContentPanel} this
37426          */
37427         "activate" : true,
37428         /**
37429          * @event deactivate
37430          * Fires when this panel is activated. 
37431          * @param {Roo.ContentPanel} this
37432          */
37433         "deactivate" : true,
37434
37435         /**
37436          * @event resize
37437          * Fires when this panel is resized if fitToFrame is true.
37438          * @param {Roo.ContentPanel} this
37439          * @param {Number} width The width after any component adjustments
37440          * @param {Number} height The height after any component adjustments
37441          */
37442         "resize" : true,
37443         
37444          /**
37445          * @event render
37446          * Fires when this tab is created
37447          * @param {Roo.ContentPanel} this
37448          */
37449         "render" : true
37450         
37451         
37452         
37453     });
37454     
37455
37456     
37457     
37458     if(this.autoScroll){
37459         this.resizeEl.setStyle("overflow", "auto");
37460     } else {
37461         // fix randome scrolling
37462         //this.el.on('scroll', function() {
37463         //    Roo.log('fix random scolling');
37464         //    this.scrollTo('top',0); 
37465         //});
37466     }
37467     content = content || this.content;
37468     if(content){
37469         this.setContent(content);
37470     }
37471     if(config && config.url){
37472         this.setUrl(this.url, this.params, this.loadOnce);
37473     }
37474     
37475     
37476     
37477     Roo.bootstrap.panel.Content.superclass.constructor.call(this);
37478     
37479     if (this.view && typeof(this.view.xtype) != 'undefined') {
37480         this.view.el = this.el.appendChild(document.createElement("div"));
37481         this.view = Roo.factory(this.view); 
37482         this.view.render  &&  this.view.render(false, '');  
37483     }
37484     
37485     
37486     this.fireEvent('render', this);
37487 };
37488
37489 Roo.extend(Roo.bootstrap.panel.Content, Roo.bootstrap.Component, {
37490     
37491     tabTip : '',
37492     
37493     setRegion : function(region){
37494         this.region = region;
37495         this.setActiveClass(region && !this.background);
37496     },
37497     
37498     
37499     setActiveClass: function(state)
37500     {
37501         if(state){
37502            this.el.replaceClass("roo-layout-inactive-content", "roo-layout-active-content");
37503            this.el.setStyle('position','relative');
37504         }else{
37505            this.el.replaceClass("roo-layout-active-content", "roo-layout-inactive-content");
37506            this.el.setStyle('position', 'absolute');
37507         } 
37508     },
37509     
37510     /**
37511      * Returns the toolbar for this Panel if one was configured. 
37512      * @return {Roo.Toolbar} 
37513      */
37514     getToolbar : function(){
37515         return this.toolbar;
37516     },
37517     
37518     setActiveState : function(active)
37519     {
37520         this.active = active;
37521         this.setActiveClass(active);
37522         if(!active){
37523             if(this.fireEvent("deactivate", this) === false){
37524                 return false;
37525             }
37526             return true;
37527         }
37528         this.fireEvent("activate", this);
37529         return true;
37530     },
37531     /**
37532      * Updates this panel's element
37533      * @param {String} content The new content
37534      * @param {Boolean} loadScripts (optional) true to look for and process scripts
37535     */
37536     setContent : function(content, loadScripts){
37537         this.el.update(content, loadScripts);
37538     },
37539
37540     ignoreResize : function(w, h){
37541         if(this.lastSize && this.lastSize.width == w && this.lastSize.height == h){
37542             return true;
37543         }else{
37544             this.lastSize = {width: w, height: h};
37545             return false;
37546         }
37547     },
37548     /**
37549      * Get the {@link Roo.UpdateManager} for this panel. Enables you to perform Ajax updates.
37550      * @return {Roo.UpdateManager} The UpdateManager
37551      */
37552     getUpdateManager : function(){
37553         return this.el.getUpdateManager();
37554     },
37555      /**
37556      * Loads this content panel immediately with content from XHR. Note: to delay loading until the panel is activated, use {@link #setUrl}.
37557      * @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:
37558 <pre><code>
37559 panel.load({
37560     url: "your-url.php",
37561     params: {param1: "foo", param2: "bar"}, // or a URL encoded string
37562     callback: yourFunction,
37563     scope: yourObject, //(optional scope)
37564     discardUrl: false,
37565     nocache: false,
37566     text: "Loading...",
37567     timeout: 30,
37568     scripts: false
37569 });
37570 </code></pre>
37571      * The only required property is <i>url</i>. The optional properties <i>nocache</i>, <i>text</i> and <i>scripts</i>
37572      * 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.
37573      * @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}
37574      * @param {Function} callback (optional) Callback when transaction is complete -- called with signature (oElement, bSuccess, oResponse)
37575      * @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.
37576      * @return {Roo.ContentPanel} this
37577      */
37578     load : function(){
37579         var um = this.el.getUpdateManager();
37580         um.update.apply(um, arguments);
37581         return this;
37582     },
37583
37584
37585     /**
37586      * 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.
37587      * @param {String/Function} url The URL to load the content from or a function to call to get the URL
37588      * @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)
37589      * @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)
37590      * @return {Roo.UpdateManager} The UpdateManager
37591      */
37592     setUrl : function(url, params, loadOnce){
37593         if(this.refreshDelegate){
37594             this.removeListener("activate", this.refreshDelegate);
37595         }
37596         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
37597         this.on("activate", this.refreshDelegate);
37598         return this.el.getUpdateManager();
37599     },
37600     
37601     _handleRefresh : function(url, params, loadOnce){
37602         if(!loadOnce || !this.loaded){
37603             var updater = this.el.getUpdateManager();
37604             updater.update(url, params, this._setLoaded.createDelegate(this));
37605         }
37606     },
37607     
37608     _setLoaded : function(){
37609         this.loaded = true;
37610     }, 
37611     
37612     /**
37613      * Returns this panel's id
37614      * @return {String} 
37615      */
37616     getId : function(){
37617         return this.el.id;
37618     },
37619     
37620     /** 
37621      * Returns this panel's element - used by regiosn to add.
37622      * @return {Roo.Element} 
37623      */
37624     getEl : function(){
37625         return this.wrapEl || this.el;
37626     },
37627     
37628    
37629     
37630     adjustForComponents : function(width, height)
37631     {
37632         //Roo.log('adjustForComponents ');
37633         if(this.resizeEl != this.el){
37634             width -= this.el.getFrameWidth('lr');
37635             height -= this.el.getFrameWidth('tb');
37636         }
37637         if(this.toolbar){
37638             var te = this.toolbar.getEl();
37639             te.setWidth(width);
37640             height -= te.getHeight();
37641         }
37642         if(this.footer){
37643             var te = this.footer.getEl();
37644             te.setWidth(width);
37645             height -= te.getHeight();
37646         }
37647         
37648         
37649         if(this.adjustments){
37650             width += this.adjustments[0];
37651             height += this.adjustments[1];
37652         }
37653         return {"width": width, "height": height};
37654     },
37655     
37656     setSize : function(width, height){
37657         if(this.fitToFrame && !this.ignoreResize(width, height)){
37658             if(this.fitContainer && this.resizeEl != this.el){
37659                 this.el.setSize(width, height);
37660             }
37661             var size = this.adjustForComponents(width, height);
37662             this.resizeEl.setSize(this.autoWidth ? "auto" : size.width, this.autoHeight ? "auto" : size.height);
37663             this.fireEvent('resize', this, size.width, size.height);
37664         }
37665     },
37666     
37667     /**
37668      * Returns this panel's title
37669      * @return {String} 
37670      */
37671     getTitle : function(){
37672         
37673         if (typeof(this.title) != 'object') {
37674             return this.title;
37675         }
37676         
37677         var t = '';
37678         for (var k in this.title) {
37679             if (!this.title.hasOwnProperty(k)) {
37680                 continue;
37681             }
37682             
37683             if (k.indexOf('-') >= 0) {
37684                 var s = k.split('-');
37685                 for (var i = 0; i<s.length; i++) {
37686                     t += "<span class='visible-"+s[i]+"'>"+this.title[k]+"</span>";
37687                 }
37688             } else {
37689                 t += "<span class='visible-"+k+"'>"+this.title[k]+"</span>";
37690             }
37691         }
37692         return t;
37693     },
37694     
37695     /**
37696      * Set this panel's title
37697      * @param {String} title
37698      */
37699     setTitle : function(title){
37700         this.title = title;
37701         if(this.region){
37702             this.region.updatePanelTitle(this, title);
37703         }
37704     },
37705     
37706     /**
37707      * Returns true is this panel was configured to be closable
37708      * @return {Boolean} 
37709      */
37710     isClosable : function(){
37711         return this.closable;
37712     },
37713     
37714     beforeSlide : function(){
37715         this.el.clip();
37716         this.resizeEl.clip();
37717     },
37718     
37719     afterSlide : function(){
37720         this.el.unclip();
37721         this.resizeEl.unclip();
37722     },
37723     
37724     /**
37725      *   Force a content refresh from the URL specified in the {@link #setUrl} method.
37726      *   Will fail silently if the {@link #setUrl} method has not been called.
37727      *   This does not activate the panel, just updates its content.
37728      */
37729     refresh : function(){
37730         if(this.refreshDelegate){
37731            this.loaded = false;
37732            this.refreshDelegate();
37733         }
37734     },
37735     
37736     /**
37737      * Destroys this panel
37738      */
37739     destroy : function(){
37740         this.el.removeAllListeners();
37741         var tempEl = document.createElement("span");
37742         tempEl.appendChild(this.el.dom);
37743         tempEl.innerHTML = "";
37744         this.el.remove();
37745         this.el = null;
37746     },
37747     
37748     /**
37749      * form - if the content panel contains a form - this is a reference to it.
37750      * @type {Roo.form.Form}
37751      */
37752     form : false,
37753     /**
37754      * view - if the content panel contains a view (Roo.DatePicker / Roo.View / Roo.JsonView)
37755      *    This contains a reference to it.
37756      * @type {Roo.View}
37757      */
37758     view : false,
37759     
37760       /**
37761      * Adds a xtype elements to the panel - currently only supports Forms, View, JsonView.
37762      * <pre><code>
37763
37764 layout.addxtype({
37765        xtype : 'Form',
37766        items: [ .... ]
37767    }
37768 );
37769
37770 </code></pre>
37771      * @param {Object} cfg Xtype definition of item to add.
37772      */
37773     
37774     
37775     getChildContainer: function () {
37776         return this.getEl();
37777     }
37778     
37779     
37780     /*
37781         var  ret = new Roo.factory(cfg);
37782         return ret;
37783         
37784         
37785         // add form..
37786         if (cfg.xtype.match(/^Form$/)) {
37787             
37788             var el;
37789             //if (this.footer) {
37790             //    el = this.footer.container.insertSibling(false, 'before');
37791             //} else {
37792                 el = this.el.createChild();
37793             //}
37794
37795             this.form = new  Roo.form.Form(cfg);
37796             
37797             
37798             if ( this.form.allItems.length) {
37799                 this.form.render(el.dom);
37800             }
37801             return this.form;
37802         }
37803         // should only have one of theses..
37804         if ([ 'View', 'JsonView', 'DatePicker'].indexOf(cfg.xtype) > -1) {
37805             // views.. should not be just added - used named prop 'view''
37806             
37807             cfg.el = this.el.appendChild(document.createElement("div"));
37808             // factory?
37809             
37810             var ret = new Roo.factory(cfg);
37811              
37812              ret.render && ret.render(false, ''); // render blank..
37813             this.view = ret;
37814             return ret;
37815         }
37816         return false;
37817     }
37818     \*/
37819 });
37820  
37821 /**
37822  * @class Roo.bootstrap.panel.Grid
37823  * @extends Roo.bootstrap.panel.Content
37824  * @constructor
37825  * Create a new GridPanel.
37826  * @cfg {Roo.bootstrap.Table} grid The grid for this panel
37827  * @param {Object} config A the config object
37828   
37829  */
37830
37831
37832
37833 Roo.bootstrap.panel.Grid = function(config)
37834 {
37835     
37836       
37837     this.wrapper = Roo.DomHelper.append(document.body, // wrapper for IE7 strict & safari scroll issue
37838         {tag: "div", cls: "roo-layout-grid-wrapper roo-layout-inactive-content"}, true);
37839
37840     config.el = this.wrapper;
37841     //this.el = this.wrapper;
37842     
37843       if (config.container) {
37844         // ctor'ed from a Border/panel.grid
37845         
37846         
37847         this.wrapper.setStyle("overflow", "hidden");
37848         this.wrapper.addClass('roo-grid-container');
37849
37850     }
37851     
37852     
37853     if(config.toolbar){
37854         var tool_el = this.wrapper.createChild();    
37855         this.toolbar = Roo.factory(config.toolbar);
37856         var ti = [];
37857         if (config.toolbar.items) {
37858             ti = config.toolbar.items ;
37859             delete config.toolbar.items ;
37860         }
37861         
37862         var nitems = [];
37863         this.toolbar.render(tool_el);
37864         for(var i =0;i < ti.length;i++) {
37865           //  Roo.log(['add child', items[i]]);
37866             nitems.push(this.toolbar.addxtype(Roo.apply({}, ti[i])));
37867         }
37868         this.toolbar.items = nitems;
37869         
37870         delete config.toolbar;
37871     }
37872     
37873     Roo.bootstrap.panel.Grid.superclass.constructor.call(this, config);
37874     config.grid.scrollBody = true;;
37875     config.grid.monitorWindowResize = false; // turn off autosizing
37876     config.grid.autoHeight = false;
37877     config.grid.autoWidth = false;
37878     
37879     this.grid = new config.grid.xns[config.grid.xtype](config.grid);
37880     
37881     if (config.background) {
37882         // render grid on panel activation (if panel background)
37883         this.on('activate', function(gp) {
37884             if (!gp.grid.rendered) {
37885                 gp.grid.render(this.wrapper);
37886                 gp.grid.getGridEl().replaceClass("roo-layout-inactive-content", "roo-layout-component-panel");   
37887             }
37888         });
37889             
37890     } else {
37891         this.grid.render(this.wrapper);
37892         this.grid.getGridEl().replaceClass("roo-layout-inactive-content", "roo-layout-component-panel");               
37893
37894     }
37895     //this.wrapper.dom.appendChild(config.grid.getGridEl().dom);
37896     // ??? needed ??? config.el = this.wrapper;
37897     
37898     
37899     
37900   
37901     // xtype created footer. - not sure if will work as we normally have to render first..
37902     if (this.footer && !this.footer.el && this.footer.xtype) {
37903         
37904         var ctr = this.grid.getView().getFooterPanel(true);
37905         this.footer.dataSource = this.grid.dataSource;
37906         this.footer = Roo.factory(this.footer, Roo);
37907         this.footer.render(ctr);
37908         
37909     }
37910     
37911     
37912     
37913     
37914      
37915 };
37916
37917 Roo.extend(Roo.bootstrap.panel.Grid, Roo.bootstrap.panel.Content, {
37918     getId : function(){
37919         return this.grid.id;
37920     },
37921     
37922     /**
37923      * Returns the grid for this panel
37924      * @return {Roo.bootstrap.Table} 
37925      */
37926     getGrid : function(){
37927         return this.grid;    
37928     },
37929     
37930     setSize : function(width, height){
37931         if(!this.ignoreResize(width, height)){
37932             var grid = this.grid;
37933             var size = this.adjustForComponents(width, height);
37934             var gridel = grid.getGridEl();
37935             gridel.setSize(size.width, size.height);
37936             /*
37937             var thd = grid.getGridEl().select('thead',true).first();
37938             var tbd = grid.getGridEl().select('tbody', true).first();
37939             if (tbd) {
37940                 tbd.setSize(width, height - thd.getHeight());
37941             }
37942             */
37943             grid.autoSize();
37944         }
37945     },
37946      
37947     
37948     
37949     beforeSlide : function(){
37950         this.grid.getView().scroller.clip();
37951     },
37952     
37953     afterSlide : function(){
37954         this.grid.getView().scroller.unclip();
37955     },
37956     
37957     destroy : function(){
37958         this.grid.destroy();
37959         delete this.grid;
37960         Roo.bootstrap.panel.Grid.superclass.destroy.call(this); 
37961     }
37962 });
37963
37964 /**
37965  * @class Roo.bootstrap.panel.Nest
37966  * @extends Roo.bootstrap.panel.Content
37967  * @constructor
37968  * Create a new Panel, that can contain a layout.Border.
37969  * 
37970  * 
37971  * @param {Roo.BorderLayout} layout The layout for this panel
37972  * @param {String/Object} config A string to set only the title or a config object
37973  */
37974 Roo.bootstrap.panel.Nest = function(config)
37975 {
37976     // construct with only one argument..
37977     /* FIXME - implement nicer consturctors
37978     if (layout.layout) {
37979         config = layout;
37980         layout = config.layout;
37981         delete config.layout;
37982     }
37983     if (layout.xtype && !layout.getEl) {
37984         // then layout needs constructing..
37985         layout = Roo.factory(layout, Roo);
37986     }
37987     */
37988     
37989     config.el =  config.layout.getEl();
37990     
37991     Roo.bootstrap.panel.Nest.superclass.constructor.call(this, config);
37992     
37993     config.layout.monitorWindowResize = false; // turn off autosizing
37994     this.layout = config.layout;
37995     this.layout.getEl().addClass("roo-layout-nested-layout");
37996     this.layout.parent = this;
37997     
37998     
37999     
38000     
38001 };
38002
38003 Roo.extend(Roo.bootstrap.panel.Nest, Roo.bootstrap.panel.Content, {
38004
38005     setSize : function(width, height){
38006         if(!this.ignoreResize(width, height)){
38007             var size = this.adjustForComponents(width, height);
38008             var el = this.layout.getEl();
38009             if (size.height < 1) {
38010                 el.setWidth(size.width);   
38011             } else {
38012                 el.setSize(size.width, size.height);
38013             }
38014             var touch = el.dom.offsetWidth;
38015             this.layout.layout();
38016             // ie requires a double layout on the first pass
38017             if(Roo.isIE && !this.initialized){
38018                 this.initialized = true;
38019                 this.layout.layout();
38020             }
38021         }
38022     },
38023     
38024     // activate all subpanels if not currently active..
38025     
38026     setActiveState : function(active){
38027         this.active = active;
38028         this.setActiveClass(active);
38029         
38030         if(!active){
38031             this.fireEvent("deactivate", this);
38032             return;
38033         }
38034         
38035         this.fireEvent("activate", this);
38036         // not sure if this should happen before or after..
38037         if (!this.layout) {
38038             return; // should not happen..
38039         }
38040         var reg = false;
38041         for (var r in this.layout.regions) {
38042             reg = this.layout.getRegion(r);
38043             if (reg.getActivePanel()) {
38044                 //reg.showPanel(reg.getActivePanel()); // force it to activate.. 
38045                 reg.setActivePanel(reg.getActivePanel());
38046                 continue;
38047             }
38048             if (!reg.panels.length) {
38049                 continue;
38050             }
38051             reg.showPanel(reg.getPanel(0));
38052         }
38053         
38054         
38055         
38056         
38057     },
38058     
38059     /**
38060      * Returns the nested BorderLayout for this panel
38061      * @return {Roo.BorderLayout} 
38062      */
38063     getLayout : function(){
38064         return this.layout;
38065     },
38066     
38067      /**
38068      * Adds a xtype elements to the layout of the nested panel
38069      * <pre><code>
38070
38071 panel.addxtype({
38072        xtype : 'ContentPanel',
38073        region: 'west',
38074        items: [ .... ]
38075    }
38076 );
38077
38078 panel.addxtype({
38079         xtype : 'NestedLayoutPanel',
38080         region: 'west',
38081         layout: {
38082            center: { },
38083            west: { }   
38084         },
38085         items : [ ... list of content panels or nested layout panels.. ]
38086    }
38087 );
38088 </code></pre>
38089      * @param {Object} cfg Xtype definition of item to add.
38090      */
38091     addxtype : function(cfg) {
38092         return this.layout.addxtype(cfg);
38093     
38094     }
38095 });/*
38096  * Based on:
38097  * Ext JS Library 1.1.1
38098  * Copyright(c) 2006-2007, Ext JS, LLC.
38099  *
38100  * Originally Released Under LGPL - original licence link has changed is not relivant.
38101  *
38102  * Fork - LGPL
38103  * <script type="text/javascript">
38104  */
38105 /**
38106  * @class Roo.TabPanel
38107  * @extends Roo.util.Observable
38108  * A lightweight tab container.
38109  * <br><br>
38110  * Usage:
38111  * <pre><code>
38112 // basic tabs 1, built from existing content
38113 var tabs = new Roo.TabPanel("tabs1");
38114 tabs.addTab("script", "View Script");
38115 tabs.addTab("markup", "View Markup");
38116 tabs.activate("script");
38117
38118 // more advanced tabs, built from javascript
38119 var jtabs = new Roo.TabPanel("jtabs");
38120 jtabs.addTab("jtabs-1", "Normal Tab", "My content was added during construction.");
38121
38122 // set up the UpdateManager
38123 var tab2 = jtabs.addTab("jtabs-2", "Ajax Tab 1");
38124 var updater = tab2.getUpdateManager();
38125 updater.setDefaultUrl("ajax1.htm");
38126 tab2.on('activate', updater.refresh, updater, true);
38127
38128 // Use setUrl for Ajax loading
38129 var tab3 = jtabs.addTab("jtabs-3", "Ajax Tab 2");
38130 tab3.setUrl("ajax2.htm", null, true);
38131
38132 // Disabled tab
38133 var tab4 = jtabs.addTab("tabs1-5", "Disabled Tab", "Can't see me cause I'm disabled");
38134 tab4.disable();
38135
38136 jtabs.activate("jtabs-1");
38137  * </code></pre>
38138  * @constructor
38139  * Create a new TabPanel.
38140  * @param {String/HTMLElement/Roo.Element} container The id, DOM element or Roo.Element container where this TabPanel is to be rendered.
38141  * @param {Object/Boolean} config Config object to set any properties for this TabPanel, or true to render the tabs on the bottom.
38142  */
38143 Roo.bootstrap.panel.Tabs = function(config){
38144     /**
38145     * The container element for this TabPanel.
38146     * @type Roo.Element
38147     */
38148     this.el = Roo.get(config.el);
38149     delete config.el;
38150     if(config){
38151         if(typeof config == "boolean"){
38152             this.tabPosition = config ? "bottom" : "top";
38153         }else{
38154             Roo.apply(this, config);
38155         }
38156     }
38157     
38158     if(this.tabPosition == "bottom"){
38159         // if tabs are at the bottom = create the body first.
38160         this.bodyEl = Roo.get(this.createBody(this.el.dom));
38161         this.el.addClass("roo-tabs-bottom");
38162     }
38163     // next create the tabs holders
38164     
38165     if (this.tabPosition == "west"){
38166         
38167         var reg = this.region; // fake it..
38168         while (reg) {
38169             if (!reg.mgr.parent) {
38170                 break;
38171             }
38172             reg = reg.mgr.parent.region;
38173         }
38174         Roo.log("got nest?");
38175         Roo.log(reg);
38176         if (reg.mgr.getRegion('west')) {
38177             var ctrdom = reg.mgr.getRegion('west').bodyEl.dom;
38178             this.stripWrap = Roo.get(this.createStrip(ctrdom ), true);
38179             this.stripEl = Roo.get(this.createStripList(this.stripWrap.dom), true);
38180             this.stripEl.setVisibilityMode(Roo.Element.DISPLAY);
38181             this.stripBody = Roo.get(this.stripWrap.dom.firstChild.firstChild, true);
38182         
38183             
38184         }
38185         
38186         
38187     } else {
38188      
38189         this.stripWrap = Roo.get(this.createStrip(this.el.dom), true);
38190         this.stripEl = Roo.get(this.createStripList(this.stripWrap.dom), true);
38191         this.stripEl.setVisibilityMode(Roo.Element.DISPLAY);
38192         this.stripBody = Roo.get(this.stripWrap.dom.firstChild.firstChild, true);
38193     }
38194     
38195     
38196     if(Roo.isIE){
38197         Roo.fly(this.stripWrap.dom.firstChild).setStyle("overflow-x", "hidden");
38198     }
38199     
38200     // finally - if tabs are at the top, then create the body last..
38201     if(this.tabPosition != "bottom"){
38202         /** The body element that contains {@link Roo.TabPanelItem} bodies. +
38203          * @type Roo.Element
38204          */
38205         this.bodyEl = Roo.get(this.createBody(this.el.dom));
38206         this.el.addClass("roo-tabs-top");
38207     }
38208     this.items = [];
38209
38210     this.bodyEl.setStyle("position", "relative");
38211
38212     this.active = null;
38213     this.activateDelegate = this.activate.createDelegate(this);
38214
38215     this.addEvents({
38216         /**
38217          * @event tabchange
38218          * Fires when the active tab changes
38219          * @param {Roo.TabPanel} this
38220          * @param {Roo.TabPanelItem} activePanel The new active tab
38221          */
38222         "tabchange": true,
38223         /**
38224          * @event beforetabchange
38225          * Fires before the active tab changes, set cancel to true on the "e" parameter to cancel the change
38226          * @param {Roo.TabPanel} this
38227          * @param {Object} e Set cancel to true on this object to cancel the tab change
38228          * @param {Roo.TabPanelItem} tab The tab being changed to
38229          */
38230         "beforetabchange" : true
38231     });
38232
38233     Roo.EventManager.onWindowResize(this.onResize, this);
38234     this.cpad = this.el.getPadding("lr");
38235     this.hiddenCount = 0;
38236
38237
38238     // toolbar on the tabbar support...
38239     if (this.toolbar) {
38240         alert("no toolbar support yet");
38241         this.toolbar  = false;
38242         /*
38243         var tcfg = this.toolbar;
38244         tcfg.container = this.stripEl.child('td.x-tab-strip-toolbar');  
38245         this.toolbar = new Roo.Toolbar(tcfg);
38246         if (Roo.isSafari) {
38247             var tbl = tcfg.container.child('table', true);
38248             tbl.setAttribute('width', '100%');
38249         }
38250         */
38251         
38252     }
38253    
38254
38255
38256     Roo.bootstrap.panel.Tabs.superclass.constructor.call(this);
38257 };
38258
38259 Roo.extend(Roo.bootstrap.panel.Tabs, Roo.util.Observable, {
38260     /*
38261      *@cfg {String} tabPosition "top" or "bottom" (defaults to "top")
38262      */
38263     tabPosition : "top",
38264     /*
38265      *@cfg {Number} currentTabWidth The width of the current tab (defaults to 0)
38266      */
38267     currentTabWidth : 0,
38268     /*
38269      *@cfg {Number} minTabWidth The minimum width of a tab (defaults to 40) (ignored if {@link #resizeTabs} is not true)
38270      */
38271     minTabWidth : 40,
38272     /*
38273      *@cfg {Number} maxTabWidth The maximum width of a tab (defaults to 250) (ignored if {@link #resizeTabs} is not true)
38274      */
38275     maxTabWidth : 250,
38276     /*
38277      *@cfg {Number} preferredTabWidth The preferred (default) width of a tab (defaults to 175) (ignored if {@link #resizeTabs} is not true)
38278      */
38279     preferredTabWidth : 175,
38280     /*
38281      *@cfg {Boolean} resizeTabs True to enable dynamic tab resizing (defaults to false)
38282      */
38283     resizeTabs : false,
38284     /*
38285      *@cfg {Boolean} monitorResize Set this to true to turn on window resize monitoring (ignored if {@link #resizeTabs} is not true) (defaults to true)
38286      */
38287     monitorResize : true,
38288     /*
38289      *@cfg {Object} toolbar xtype description of toolbar to show at the right of the tab bar. 
38290      */
38291     toolbar : false,  // set by caller..
38292     
38293     region : false, /// set by caller
38294     
38295     disableTooltips : true, // not used yet...
38296
38297     /**
38298      * Creates a new {@link Roo.TabPanelItem} by looking for an existing element with the provided id -- if it's not found it creates one.
38299      * @param {String} id The id of the div to use <b>or create</b>
38300      * @param {String} text The text for the tab
38301      * @param {String} content (optional) Content to put in the TabPanelItem body
38302      * @param {Boolean} closable (optional) True to create a close icon on the tab
38303      * @return {Roo.TabPanelItem} The created TabPanelItem
38304      */
38305     addTab : function(id, text, content, closable, tpl)
38306     {
38307         var item = new Roo.bootstrap.panel.TabItem({
38308             panel: this,
38309             id : id,
38310             text : text,
38311             closable : closable,
38312             tpl : tpl
38313         });
38314         this.addTabItem(item);
38315         if(content){
38316             item.setContent(content);
38317         }
38318         return item;
38319     },
38320
38321     /**
38322      * Returns the {@link Roo.TabPanelItem} with the specified id/index
38323      * @param {String/Number} id The id or index of the TabPanelItem to fetch.
38324      * @return {Roo.TabPanelItem}
38325      */
38326     getTab : function(id){
38327         return this.items[id];
38328     },
38329
38330     /**
38331      * Hides the {@link Roo.TabPanelItem} with the specified id/index
38332      * @param {String/Number} id The id or index of the TabPanelItem to hide.
38333      */
38334     hideTab : function(id){
38335         var t = this.items[id];
38336         if(!t.isHidden()){
38337            t.setHidden(true);
38338            this.hiddenCount++;
38339            this.autoSizeTabs();
38340         }
38341     },
38342
38343     /**
38344      * "Unhides" the {@link Roo.TabPanelItem} with the specified id/index.
38345      * @param {String/Number} id The id or index of the TabPanelItem to unhide.
38346      */
38347     unhideTab : function(id){
38348         var t = this.items[id];
38349         if(t.isHidden()){
38350            t.setHidden(false);
38351            this.hiddenCount--;
38352            this.autoSizeTabs();
38353         }
38354     },
38355
38356     /**
38357      * Adds an existing {@link Roo.TabPanelItem}.
38358      * @param {Roo.TabPanelItem} item The TabPanelItem to add
38359      */
38360     addTabItem : function(item)
38361     {
38362         this.items[item.id] = item;
38363         this.items.push(item);
38364         this.autoSizeTabs();
38365       //  if(this.resizeTabs){
38366     //       item.setWidth(this.currentTabWidth || this.preferredTabWidth);
38367   //         this.autoSizeTabs();
38368 //        }else{
38369 //            item.autoSize();
38370        // }
38371     },
38372
38373     /**
38374      * Removes a {@link Roo.TabPanelItem}.
38375      * @param {String/Number} id The id or index of the TabPanelItem to remove.
38376      */
38377     removeTab : function(id){
38378         var items = this.items;
38379         var tab = items[id];
38380         if(!tab) { return; }
38381         var index = items.indexOf(tab);
38382         if(this.active == tab && items.length > 1){
38383             var newTab = this.getNextAvailable(index);
38384             if(newTab) {
38385                 newTab.activate();
38386             }
38387         }
38388         this.stripEl.dom.removeChild(tab.pnode.dom);
38389         if(tab.bodyEl.dom.parentNode == this.bodyEl.dom){ // if it was moved already prevent error
38390             this.bodyEl.dom.removeChild(tab.bodyEl.dom);
38391         }
38392         items.splice(index, 1);
38393         delete this.items[tab.id];
38394         tab.fireEvent("close", tab);
38395         tab.purgeListeners();
38396         this.autoSizeTabs();
38397     },
38398
38399     getNextAvailable : function(start){
38400         var items = this.items;
38401         var index = start;
38402         // look for a next tab that will slide over to
38403         // replace the one being removed
38404         while(index < items.length){
38405             var item = items[++index];
38406             if(item && !item.isHidden()){
38407                 return item;
38408             }
38409         }
38410         // if one isn't found select the previous tab (on the left)
38411         index = start;
38412         while(index >= 0){
38413             var item = items[--index];
38414             if(item && !item.isHidden()){
38415                 return item;
38416             }
38417         }
38418         return null;
38419     },
38420
38421     /**
38422      * Disables a {@link Roo.TabPanelItem}. It cannot be the active tab, if it is this call is ignored.
38423      * @param {String/Number} id The id or index of the TabPanelItem to disable.
38424      */
38425     disableTab : function(id){
38426         var tab = this.items[id];
38427         if(tab && this.active != tab){
38428             tab.disable();
38429         }
38430     },
38431
38432     /**
38433      * Enables a {@link Roo.TabPanelItem} that is disabled.
38434      * @param {String/Number} id The id or index of the TabPanelItem to enable.
38435      */
38436     enableTab : function(id){
38437         var tab = this.items[id];
38438         tab.enable();
38439     },
38440
38441     /**
38442      * Activates a {@link Roo.TabPanelItem}. The currently active one will be deactivated.
38443      * @param {String/Number} id The id or index of the TabPanelItem to activate.
38444      * @return {Roo.TabPanelItem} The TabPanelItem.
38445      */
38446     activate : function(id)
38447     {
38448         //Roo.log('activite:'  + id);
38449         
38450         var tab = this.items[id];
38451         if(!tab){
38452             return null;
38453         }
38454         if(tab == this.active || tab.disabled){
38455             return tab;
38456         }
38457         var e = {};
38458         this.fireEvent("beforetabchange", this, e, tab);
38459         if(e.cancel !== true && !tab.disabled){
38460             if(this.active){
38461                 this.active.hide();
38462             }
38463             this.active = this.items[id];
38464             this.active.show();
38465             this.fireEvent("tabchange", this, this.active);
38466         }
38467         return tab;
38468     },
38469
38470     /**
38471      * Gets the active {@link Roo.TabPanelItem}.
38472      * @return {Roo.TabPanelItem} The active TabPanelItem or null if none are active.
38473      */
38474     getActiveTab : function(){
38475         return this.active;
38476     },
38477
38478     /**
38479      * Updates the tab body element to fit the height of the container element
38480      * for overflow scrolling
38481      * @param {Number} targetHeight (optional) Override the starting height from the elements height
38482      */
38483     syncHeight : function(targetHeight){
38484         var height = (targetHeight || this.el.getHeight())-this.el.getBorderWidth("tb")-this.el.getPadding("tb");
38485         var bm = this.bodyEl.getMargins();
38486         var newHeight = height-(this.stripWrap.getHeight()||0)-(bm.top+bm.bottom);
38487         this.bodyEl.setHeight(newHeight);
38488         return newHeight;
38489     },
38490
38491     onResize : function(){
38492         if(this.monitorResize){
38493             this.autoSizeTabs();
38494         }
38495     },
38496
38497     /**
38498      * Disables tab resizing while tabs are being added (if {@link #resizeTabs} is false this does nothing)
38499      */
38500     beginUpdate : function(){
38501         this.updating = true;
38502     },
38503
38504     /**
38505      * Stops an update and resizes the tabs (if {@link #resizeTabs} is false this does nothing)
38506      */
38507     endUpdate : function(){
38508         this.updating = false;
38509         this.autoSizeTabs();
38510     },
38511
38512     /**
38513      * Manual call to resize the tabs (if {@link #resizeTabs} is false this does nothing)
38514      */
38515     autoSizeTabs : function()
38516     {
38517         var count = this.items.length;
38518         var vcount = count - this.hiddenCount;
38519         
38520         if (vcount < 2) {
38521             this.stripEl.hide();
38522         } else {
38523             this.stripEl.show();
38524         }
38525         
38526         if(!this.resizeTabs || count < 1 || vcount < 1 || this.updating) {
38527             return;
38528         }
38529         
38530         
38531         var w = Math.max(this.el.getWidth() - this.cpad, 10);
38532         var availWidth = Math.floor(w / vcount);
38533         var b = this.stripBody;
38534         if(b.getWidth() > w){
38535             var tabs = this.items;
38536             this.setTabWidth(Math.max(availWidth, this.minTabWidth)-2);
38537             if(availWidth < this.minTabWidth){
38538                 /*if(!this.sleft){    // incomplete scrolling code
38539                     this.createScrollButtons();
38540                 }
38541                 this.showScroll();
38542                 this.stripClip.setWidth(w - (this.sleft.getWidth()+this.sright.getWidth()));*/
38543             }
38544         }else{
38545             if(this.currentTabWidth < this.preferredTabWidth){
38546                 this.setTabWidth(Math.min(availWidth, this.preferredTabWidth)-2);
38547             }
38548         }
38549     },
38550
38551     /**
38552      * Returns the number of tabs in this TabPanel.
38553      * @return {Number}
38554      */
38555      getCount : function(){
38556          return this.items.length;
38557      },
38558
38559     /**
38560      * Resizes all the tabs to the passed width
38561      * @param {Number} The new width
38562      */
38563     setTabWidth : function(width){
38564         this.currentTabWidth = width;
38565         for(var i = 0, len = this.items.length; i < len; i++) {
38566                 if(!this.items[i].isHidden()) {
38567                 this.items[i].setWidth(width);
38568             }
38569         }
38570     },
38571
38572     /**
38573      * Destroys this TabPanel
38574      * @param {Boolean} removeEl (optional) True to remove the element from the DOM as well (defaults to undefined)
38575      */
38576     destroy : function(removeEl){
38577         Roo.EventManager.removeResizeListener(this.onResize, this);
38578         for(var i = 0, len = this.items.length; i < len; i++){
38579             this.items[i].purgeListeners();
38580         }
38581         if(removeEl === true){
38582             this.el.update("");
38583             this.el.remove();
38584         }
38585     },
38586     
38587     createStrip : function(container)
38588     {
38589         var strip = document.createElement("nav");
38590         strip.className = Roo.bootstrap.version == 4 ?
38591             "navbar-light bg-light" : 
38592             "navbar navbar-default"; //"x-tabs-wrap";
38593         container.appendChild(strip);
38594         return strip;
38595     },
38596     
38597     createStripList : function(strip)
38598     {
38599         // div wrapper for retard IE
38600         // returns the "tr" element.
38601         strip.innerHTML = '<ul class="nav nav-tabs" role="tablist"></ul>';
38602         //'<div class="x-tabs-strip-wrap">'+
38603           //  '<table class="x-tabs-strip" cellspacing="0" cellpadding="0" border="0"><tbody><tr>'+
38604           //  '<td class="x-tab-strip-toolbar"></td></tr></tbody></table></div>';
38605         return strip.firstChild; //.firstChild.firstChild.firstChild;
38606     },
38607     createBody : function(container)
38608     {
38609         var body = document.createElement("div");
38610         Roo.id(body, "tab-body");
38611         //Roo.fly(body).addClass("x-tabs-body");
38612         Roo.fly(body).addClass("tab-content");
38613         container.appendChild(body);
38614         return body;
38615     },
38616     createItemBody :function(bodyEl, id){
38617         var body = Roo.getDom(id);
38618         if(!body){
38619             body = document.createElement("div");
38620             body.id = id;
38621         }
38622         //Roo.fly(body).addClass("x-tabs-item-body");
38623         Roo.fly(body).addClass("tab-pane");
38624          bodyEl.insertBefore(body, bodyEl.firstChild);
38625         return body;
38626     },
38627     /** @private */
38628     createStripElements :  function(stripEl, text, closable, tpl)
38629     {
38630         var td = document.createElement("li"); // was td..
38631         td.className = 'nav-item';
38632         
38633         //stripEl.insertBefore(td, stripEl.childNodes[stripEl.childNodes.length-1]);
38634         
38635         
38636         stripEl.appendChild(td);
38637         /*if(closable){
38638             td.className = "x-tabs-closable";
38639             if(!this.closeTpl){
38640                 this.closeTpl = new Roo.Template(
38641                    '<a href="#" class="x-tabs-right"><span class="x-tabs-left"><em class="x-tabs-inner">' +
38642                    '<span unselectable="on"' + (this.disableTooltips ? '' : ' title="{text}"') +' class="x-tabs-text">{text}</span>' +
38643                    '<div unselectable="on" class="close-icon">&#160;</div></em></span></a>'
38644                 );
38645             }
38646             var el = this.closeTpl.overwrite(td, {"text": text});
38647             var close = el.getElementsByTagName("div")[0];
38648             var inner = el.getElementsByTagName("em")[0];
38649             return {"el": el, "close": close, "inner": inner};
38650         } else {
38651         */
38652         // not sure what this is..
38653 //            if(!this.tabTpl){
38654                 //this.tabTpl = new Roo.Template(
38655                 //   '<a href="#" class="x-tabs-right"><span class="x-tabs-left"><em class="x-tabs-inner">' +
38656                 //   '<span unselectable="on"' + (this.disableTooltips ? '' : ' title="{text}"') +' class="x-tabs-text">{text}</span></em></span></a>'
38657                 //);
38658 //                this.tabTpl = new Roo.Template(
38659 //                   '<a href="#">' +
38660 //                   '<span unselectable="on"' +
38661 //                            (this.disableTooltips ? '' : ' title="{text}"') +
38662 //                            ' >{text}</span></a>'
38663 //                );
38664 //                
38665 //            }
38666
38667
38668             var template = tpl || this.tabTpl || false;
38669             
38670             if(!template){
38671                 template =  new Roo.Template(
38672                         Roo.bootstrap.version == 4 ? 
38673                             (
38674                                 '<a class="nav-link" href="#" unselectable="on"' +
38675                                      (this.disableTooltips ? '' : ' title="{text}"') +
38676                                      ' >{text}</a>'
38677                             ) : (
38678                                 '<a class="nav-link" href="#">' +
38679                                 '<span unselectable="on"' +
38680                                          (this.disableTooltips ? '' : ' title="{text}"') +
38681                                     ' >{text}</span></a>'
38682                             )
38683                 );
38684             }
38685             
38686             switch (typeof(template)) {
38687                 case 'object' :
38688                     break;
38689                 case 'string' :
38690                     template = new Roo.Template(template);
38691                     break;
38692                 default :
38693                     break;
38694             }
38695             
38696             var el = template.overwrite(td, {"text": text});
38697             
38698             var inner = el.getElementsByTagName("span")[0];
38699             
38700             return {"el": el, "inner": inner};
38701             
38702     }
38703         
38704     
38705 });
38706
38707 /**
38708  * @class Roo.TabPanelItem
38709  * @extends Roo.util.Observable
38710  * Represents an individual item (tab plus body) in a TabPanel.
38711  * @param {Roo.TabPanel} tabPanel The {@link Roo.TabPanel} this TabPanelItem belongs to
38712  * @param {String} id The id of this TabPanelItem
38713  * @param {String} text The text for the tab of this TabPanelItem
38714  * @param {Boolean} closable True to allow this TabPanelItem to be closable (defaults to false)
38715  */
38716 Roo.bootstrap.panel.TabItem = function(config){
38717     /**
38718      * The {@link Roo.TabPanel} this TabPanelItem belongs to
38719      * @type Roo.TabPanel
38720      */
38721     this.tabPanel = config.panel;
38722     /**
38723      * The id for this TabPanelItem
38724      * @type String
38725      */
38726     this.id = config.id;
38727     /** @private */
38728     this.disabled = false;
38729     /** @private */
38730     this.text = config.text;
38731     /** @private */
38732     this.loaded = false;
38733     this.closable = config.closable;
38734
38735     /**
38736      * The body element for this TabPanelItem.
38737      * @type Roo.Element
38738      */
38739     this.bodyEl = Roo.get(this.tabPanel.createItemBody(this.tabPanel.bodyEl.dom, config.id));
38740     this.bodyEl.setVisibilityMode(Roo.Element.VISIBILITY);
38741     this.bodyEl.setStyle("display", "block");
38742     this.bodyEl.setStyle("zoom", "1");
38743     //this.hideAction();
38744
38745     var els = this.tabPanel.createStripElements(this.tabPanel.stripEl.dom, config.text, config.closable, config.tpl);
38746     /** @private */
38747     this.el = Roo.get(els.el);
38748     this.inner = Roo.get(els.inner, true);
38749      this.textEl = Roo.bootstrap.version == 4 ?
38750         this.el : Roo.get(this.el.dom.firstChild, true);
38751
38752     this.pnode = this.linode = Roo.get(els.el.parentNode, true);
38753     this.status_node = Roo.bootstrap.version == 4 ? this.el : this.linode;
38754
38755     
38756 //    this.el.on("mousedown", this.onTabMouseDown, this);
38757     this.el.on("click", this.onTabClick, this);
38758     /** @private */
38759     if(config.closable){
38760         var c = Roo.get(els.close, true);
38761         c.dom.title = this.closeText;
38762         c.addClassOnOver("close-over");
38763         c.on("click", this.closeClick, this);
38764      }
38765
38766     this.addEvents({
38767          /**
38768          * @event activate
38769          * Fires when this tab becomes the active tab.
38770          * @param {Roo.TabPanel} tabPanel The parent TabPanel
38771          * @param {Roo.TabPanelItem} this
38772          */
38773         "activate": true,
38774         /**
38775          * @event beforeclose
38776          * Fires before this tab is closed. To cancel the close, set cancel to true on e (e.cancel = true).
38777          * @param {Roo.TabPanelItem} this
38778          * @param {Object} e Set cancel to true on this object to cancel the close.
38779          */
38780         "beforeclose": true,
38781         /**
38782          * @event close
38783          * Fires when this tab is closed.
38784          * @param {Roo.TabPanelItem} this
38785          */
38786          "close": true,
38787         /**
38788          * @event deactivate
38789          * Fires when this tab is no longer the active tab.
38790          * @param {Roo.TabPanel} tabPanel The parent TabPanel
38791          * @param {Roo.TabPanelItem} this
38792          */
38793          "deactivate" : true
38794     });
38795     this.hidden = false;
38796
38797     Roo.bootstrap.panel.TabItem.superclass.constructor.call(this);
38798 };
38799
38800 Roo.extend(Roo.bootstrap.panel.TabItem, Roo.util.Observable,
38801            {
38802     purgeListeners : function(){
38803        Roo.util.Observable.prototype.purgeListeners.call(this);
38804        this.el.removeAllListeners();
38805     },
38806     /**
38807      * Shows this TabPanelItem -- this <b>does not</b> deactivate the currently active TabPanelItem.
38808      */
38809     show : function(){
38810         this.status_node.addClass("active");
38811         this.showAction();
38812         if(Roo.isOpera){
38813             this.tabPanel.stripWrap.repaint();
38814         }
38815         this.fireEvent("activate", this.tabPanel, this);
38816     },
38817
38818     /**
38819      * Returns true if this tab is the active tab.
38820      * @return {Boolean}
38821      */
38822     isActive : function(){
38823         return this.tabPanel.getActiveTab() == this;
38824     },
38825
38826     /**
38827      * Hides this TabPanelItem -- if you don't activate another TabPanelItem this could look odd.
38828      */
38829     hide : function(){
38830         this.status_node.removeClass("active");
38831         this.hideAction();
38832         this.fireEvent("deactivate", this.tabPanel, this);
38833     },
38834
38835     hideAction : function(){
38836         this.bodyEl.hide();
38837         this.bodyEl.setStyle("position", "absolute");
38838         this.bodyEl.setLeft("-20000px");
38839         this.bodyEl.setTop("-20000px");
38840     },
38841
38842     showAction : function(){
38843         this.bodyEl.setStyle("position", "relative");
38844         this.bodyEl.setTop("");
38845         this.bodyEl.setLeft("");
38846         this.bodyEl.show();
38847     },
38848
38849     /**
38850      * Set the tooltip for the tab.
38851      * @param {String} tooltip The tab's tooltip
38852      */
38853     setTooltip : function(text){
38854         if(Roo.QuickTips && Roo.QuickTips.isEnabled()){
38855             this.textEl.dom.qtip = text;
38856             this.textEl.dom.removeAttribute('title');
38857         }else{
38858             this.textEl.dom.title = text;
38859         }
38860     },
38861
38862     onTabClick : function(e){
38863         e.preventDefault();
38864         this.tabPanel.activate(this.id);
38865     },
38866
38867     onTabMouseDown : function(e){
38868         e.preventDefault();
38869         this.tabPanel.activate(this.id);
38870     },
38871 /*
38872     getWidth : function(){
38873         return this.inner.getWidth();
38874     },
38875
38876     setWidth : function(width){
38877         var iwidth = width - this.linode.getPadding("lr");
38878         this.inner.setWidth(iwidth);
38879         this.textEl.setWidth(iwidth-this.inner.getPadding("lr"));
38880         this.linode.setWidth(width);
38881     },
38882 */
38883     /**
38884      * Show or hide the tab
38885      * @param {Boolean} hidden True to hide or false to show.
38886      */
38887     setHidden : function(hidden){
38888         this.hidden = hidden;
38889         this.linode.setStyle("display", hidden ? "none" : "");
38890     },
38891
38892     /**
38893      * Returns true if this tab is "hidden"
38894      * @return {Boolean}
38895      */
38896     isHidden : function(){
38897         return this.hidden;
38898     },
38899
38900     /**
38901      * Returns the text for this tab
38902      * @return {String}
38903      */
38904     getText : function(){
38905         return this.text;
38906     },
38907     /*
38908     autoSize : function(){
38909         //this.el.beginMeasure();
38910         this.textEl.setWidth(1);
38911         /*
38912          *  #2804 [new] Tabs in Roojs
38913          *  increase the width by 2-4 pixels to prevent the ellipssis showing in chrome
38914          */
38915         //this.setWidth(this.textEl.dom.scrollWidth+this.linode.getPadding("lr")+this.inner.getPadding("lr") + 2);
38916         //this.el.endMeasure();
38917     //},
38918
38919     /**
38920      * Sets the text for the tab (Note: this also sets the tooltip text)
38921      * @param {String} text The tab's text and tooltip
38922      */
38923     setText : function(text){
38924         this.text = text;
38925         this.textEl.update(text);
38926         this.setTooltip(text);
38927         //if(!this.tabPanel.resizeTabs){
38928         //    this.autoSize();
38929         //}
38930     },
38931     /**
38932      * Activates this TabPanelItem -- this <b>does</b> deactivate the currently active TabPanelItem.
38933      */
38934     activate : function(){
38935         this.tabPanel.activate(this.id);
38936     },
38937
38938     /**
38939      * Disables this TabPanelItem -- this does nothing if this is the active TabPanelItem.
38940      */
38941     disable : function(){
38942         if(this.tabPanel.active != this){
38943             this.disabled = true;
38944             this.status_node.addClass("disabled");
38945         }
38946     },
38947
38948     /**
38949      * Enables this TabPanelItem if it was previously disabled.
38950      */
38951     enable : function(){
38952         this.disabled = false;
38953         this.status_node.removeClass("disabled");
38954     },
38955
38956     /**
38957      * Sets the content for this TabPanelItem.
38958      * @param {String} content The content
38959      * @param {Boolean} loadScripts true to look for and load scripts
38960      */
38961     setContent : function(content, loadScripts){
38962         this.bodyEl.update(content, loadScripts);
38963     },
38964
38965     /**
38966      * Gets the {@link Roo.UpdateManager} for the body of this TabPanelItem. Enables you to perform Ajax updates.
38967      * @return {Roo.UpdateManager} The UpdateManager
38968      */
38969     getUpdateManager : function(){
38970         return this.bodyEl.getUpdateManager();
38971     },
38972
38973     /**
38974      * Set a URL to be used to load the content for this TabPanelItem.
38975      * @param {String/Function} url The URL to load the content from, or a function to call to get the URL
38976      * @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)
38977      * @param {Boolean} loadOnce (optional) Whether to only load the content once. If this is false it makes the Ajax call every time this TabPanelItem is activated. (Defaults to false)
38978      * @return {Roo.UpdateManager} The UpdateManager
38979      */
38980     setUrl : function(url, params, loadOnce){
38981         if(this.refreshDelegate){
38982             this.un('activate', this.refreshDelegate);
38983         }
38984         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
38985         this.on("activate", this.refreshDelegate);
38986         return this.bodyEl.getUpdateManager();
38987     },
38988
38989     /** @private */
38990     _handleRefresh : function(url, params, loadOnce){
38991         if(!loadOnce || !this.loaded){
38992             var updater = this.bodyEl.getUpdateManager();
38993             updater.update(url, params, this._setLoaded.createDelegate(this));
38994         }
38995     },
38996
38997     /**
38998      *   Forces a content refresh from the URL specified in the {@link #setUrl} method.
38999      *   Will fail silently if the setUrl method has not been called.
39000      *   This does not activate the panel, just updates its content.
39001      */
39002     refresh : function(){
39003         if(this.refreshDelegate){
39004            this.loaded = false;
39005            this.refreshDelegate();
39006         }
39007     },
39008
39009     /** @private */
39010     _setLoaded : function(){
39011         this.loaded = true;
39012     },
39013
39014     /** @private */
39015     closeClick : function(e){
39016         var o = {};
39017         e.stopEvent();
39018         this.fireEvent("beforeclose", this, o);
39019         if(o.cancel !== true){
39020             this.tabPanel.removeTab(this.id);
39021         }
39022     },
39023     /**
39024      * The text displayed in the tooltip for the close icon.
39025      * @type String
39026      */
39027     closeText : "Close this tab"
39028 });
39029 /**
39030 *    This script refer to:
39031 *    Title: International Telephone Input
39032 *    Author: Jack O'Connor
39033 *    Code version:  v12.1.12
39034 *    Availability: https://github.com/jackocnr/intl-tel-input.git
39035 **/
39036
39037 Roo.bootstrap.PhoneInputData = function() {
39038     var d = [
39039       [
39040         "Afghanistan (‫افغانستان‬‎)",
39041         "af",
39042         "93"
39043       ],
39044       [
39045         "Albania (Shqipëri)",
39046         "al",
39047         "355"
39048       ],
39049       [
39050         "Algeria (‫الجزائر‬‎)",
39051         "dz",
39052         "213"
39053       ],
39054       [
39055         "American Samoa",
39056         "as",
39057         "1684"
39058       ],
39059       [
39060         "Andorra",
39061         "ad",
39062         "376"
39063       ],
39064       [
39065         "Angola",
39066         "ao",
39067         "244"
39068       ],
39069       [
39070         "Anguilla",
39071         "ai",
39072         "1264"
39073       ],
39074       [
39075         "Antigua and Barbuda",
39076         "ag",
39077         "1268"
39078       ],
39079       [
39080         "Argentina",
39081         "ar",
39082         "54"
39083       ],
39084       [
39085         "Armenia (Հայաստան)",
39086         "am",
39087         "374"
39088       ],
39089       [
39090         "Aruba",
39091         "aw",
39092         "297"
39093       ],
39094       [
39095         "Australia",
39096         "au",
39097         "61",
39098         0
39099       ],
39100       [
39101         "Austria (Österreich)",
39102         "at",
39103         "43"
39104       ],
39105       [
39106         "Azerbaijan (Azərbaycan)",
39107         "az",
39108         "994"
39109       ],
39110       [
39111         "Bahamas",
39112         "bs",
39113         "1242"
39114       ],
39115       [
39116         "Bahrain (‫البحرين‬‎)",
39117         "bh",
39118         "973"
39119       ],
39120       [
39121         "Bangladesh (বাংলাদেশ)",
39122         "bd",
39123         "880"
39124       ],
39125       [
39126         "Barbados",
39127         "bb",
39128         "1246"
39129       ],
39130       [
39131         "Belarus (Беларусь)",
39132         "by",
39133         "375"
39134       ],
39135       [
39136         "Belgium (België)",
39137         "be",
39138         "32"
39139       ],
39140       [
39141         "Belize",
39142         "bz",
39143         "501"
39144       ],
39145       [
39146         "Benin (Bénin)",
39147         "bj",
39148         "229"
39149       ],
39150       [
39151         "Bermuda",
39152         "bm",
39153         "1441"
39154       ],
39155       [
39156         "Bhutan (འབྲུག)",
39157         "bt",
39158         "975"
39159       ],
39160       [
39161         "Bolivia",
39162         "bo",
39163         "591"
39164       ],
39165       [
39166         "Bosnia and Herzegovina (Босна и Херцеговина)",
39167         "ba",
39168         "387"
39169       ],
39170       [
39171         "Botswana",
39172         "bw",
39173         "267"
39174       ],
39175       [
39176         "Brazil (Brasil)",
39177         "br",
39178         "55"
39179       ],
39180       [
39181         "British Indian Ocean Territory",
39182         "io",
39183         "246"
39184       ],
39185       [
39186         "British Virgin Islands",
39187         "vg",
39188         "1284"
39189       ],
39190       [
39191         "Brunei",
39192         "bn",
39193         "673"
39194       ],
39195       [
39196         "Bulgaria (България)",
39197         "bg",
39198         "359"
39199       ],
39200       [
39201         "Burkina Faso",
39202         "bf",
39203         "226"
39204       ],
39205       [
39206         "Burundi (Uburundi)",
39207         "bi",
39208         "257"
39209       ],
39210       [
39211         "Cambodia (កម្ពុជា)",
39212         "kh",
39213         "855"
39214       ],
39215       [
39216         "Cameroon (Cameroun)",
39217         "cm",
39218         "237"
39219       ],
39220       [
39221         "Canada",
39222         "ca",
39223         "1",
39224         1,
39225         ["204", "226", "236", "249", "250", "289", "306", "343", "365", "387", "403", "416", "418", "431", "437", "438", "450", "506", "514", "519", "548", "579", "581", "587", "604", "613", "639", "647", "672", "705", "709", "742", "778", "780", "782", "807", "819", "825", "867", "873", "902", "905"]
39226       ],
39227       [
39228         "Cape Verde (Kabu Verdi)",
39229         "cv",
39230         "238"
39231       ],
39232       [
39233         "Caribbean Netherlands",
39234         "bq",
39235         "599",
39236         1
39237       ],
39238       [
39239         "Cayman Islands",
39240         "ky",
39241         "1345"
39242       ],
39243       [
39244         "Central African Republic (République centrafricaine)",
39245         "cf",
39246         "236"
39247       ],
39248       [
39249         "Chad (Tchad)",
39250         "td",
39251         "235"
39252       ],
39253       [
39254         "Chile",
39255         "cl",
39256         "56"
39257       ],
39258       [
39259         "China (中国)",
39260         "cn",
39261         "86"
39262       ],
39263       [
39264         "Christmas Island",
39265         "cx",
39266         "61",
39267         2
39268       ],
39269       [
39270         "Cocos (Keeling) Islands",
39271         "cc",
39272         "61",
39273         1
39274       ],
39275       [
39276         "Colombia",
39277         "co",
39278         "57"
39279       ],
39280       [
39281         "Comoros (‫جزر القمر‬‎)",
39282         "km",
39283         "269"
39284       ],
39285       [
39286         "Congo (DRC) (Jamhuri ya Kidemokrasia ya Kongo)",
39287         "cd",
39288         "243"
39289       ],
39290       [
39291         "Congo (Republic) (Congo-Brazzaville)",
39292         "cg",
39293         "242"
39294       ],
39295       [
39296         "Cook Islands",
39297         "ck",
39298         "682"
39299       ],
39300       [
39301         "Costa Rica",
39302         "cr",
39303         "506"
39304       ],
39305       [
39306         "Côte d’Ivoire",
39307         "ci",
39308         "225"
39309       ],
39310       [
39311         "Croatia (Hrvatska)",
39312         "hr",
39313         "385"
39314       ],
39315       [
39316         "Cuba",
39317         "cu",
39318         "53"
39319       ],
39320       [
39321         "Curaçao",
39322         "cw",
39323         "599",
39324         0
39325       ],
39326       [
39327         "Cyprus (Κύπρος)",
39328         "cy",
39329         "357"
39330       ],
39331       [
39332         "Czech Republic (Česká republika)",
39333         "cz",
39334         "420"
39335       ],
39336       [
39337         "Denmark (Danmark)",
39338         "dk",
39339         "45"
39340       ],
39341       [
39342         "Djibouti",
39343         "dj",
39344         "253"
39345       ],
39346       [
39347         "Dominica",
39348         "dm",
39349         "1767"
39350       ],
39351       [
39352         "Dominican Republic (República Dominicana)",
39353         "do",
39354         "1",
39355         2,
39356         ["809", "829", "849"]
39357       ],
39358       [
39359         "Ecuador",
39360         "ec",
39361         "593"
39362       ],
39363       [
39364         "Egypt (‫مصر‬‎)",
39365         "eg",
39366         "20"
39367       ],
39368       [
39369         "El Salvador",
39370         "sv",
39371         "503"
39372       ],
39373       [
39374         "Equatorial Guinea (Guinea Ecuatorial)",
39375         "gq",
39376         "240"
39377       ],
39378       [
39379         "Eritrea",
39380         "er",
39381         "291"
39382       ],
39383       [
39384         "Estonia (Eesti)",
39385         "ee",
39386         "372"
39387       ],
39388       [
39389         "Ethiopia",
39390         "et",
39391         "251"
39392       ],
39393       [
39394         "Falkland Islands (Islas Malvinas)",
39395         "fk",
39396         "500"
39397       ],
39398       [
39399         "Faroe Islands (Føroyar)",
39400         "fo",
39401         "298"
39402       ],
39403       [
39404         "Fiji",
39405         "fj",
39406         "679"
39407       ],
39408       [
39409         "Finland (Suomi)",
39410         "fi",
39411         "358",
39412         0
39413       ],
39414       [
39415         "France",
39416         "fr",
39417         "33"
39418       ],
39419       [
39420         "French Guiana (Guyane française)",
39421         "gf",
39422         "594"
39423       ],
39424       [
39425         "French Polynesia (Polynésie française)",
39426         "pf",
39427         "689"
39428       ],
39429       [
39430         "Gabon",
39431         "ga",
39432         "241"
39433       ],
39434       [
39435         "Gambia",
39436         "gm",
39437         "220"
39438       ],
39439       [
39440         "Georgia (საქართველო)",
39441         "ge",
39442         "995"
39443       ],
39444       [
39445         "Germany (Deutschland)",
39446         "de",
39447         "49"
39448       ],
39449       [
39450         "Ghana (Gaana)",
39451         "gh",
39452         "233"
39453       ],
39454       [
39455         "Gibraltar",
39456         "gi",
39457         "350"
39458       ],
39459       [
39460         "Greece (Ελλάδα)",
39461         "gr",
39462         "30"
39463       ],
39464       [
39465         "Greenland (Kalaallit Nunaat)",
39466         "gl",
39467         "299"
39468       ],
39469       [
39470         "Grenada",
39471         "gd",
39472         "1473"
39473       ],
39474       [
39475         "Guadeloupe",
39476         "gp",
39477         "590",
39478         0
39479       ],
39480       [
39481         "Guam",
39482         "gu",
39483         "1671"
39484       ],
39485       [
39486         "Guatemala",
39487         "gt",
39488         "502"
39489       ],
39490       [
39491         "Guernsey",
39492         "gg",
39493         "44",
39494         1
39495       ],
39496       [
39497         "Guinea (Guinée)",
39498         "gn",
39499         "224"
39500       ],
39501       [
39502         "Guinea-Bissau (Guiné Bissau)",
39503         "gw",
39504         "245"
39505       ],
39506       [
39507         "Guyana",
39508         "gy",
39509         "592"
39510       ],
39511       [
39512         "Haiti",
39513         "ht",
39514         "509"
39515       ],
39516       [
39517         "Honduras",
39518         "hn",
39519         "504"
39520       ],
39521       [
39522         "Hong Kong (香港)",
39523         "hk",
39524         "852"
39525       ],
39526       [
39527         "Hungary (Magyarország)",
39528         "hu",
39529         "36"
39530       ],
39531       [
39532         "Iceland (Ísland)",
39533         "is",
39534         "354"
39535       ],
39536       [
39537         "India (भारत)",
39538         "in",
39539         "91"
39540       ],
39541       [
39542         "Indonesia",
39543         "id",
39544         "62"
39545       ],
39546       [
39547         "Iran (‫ایران‬‎)",
39548         "ir",
39549         "98"
39550       ],
39551       [
39552         "Iraq (‫العراق‬‎)",
39553         "iq",
39554         "964"
39555       ],
39556       [
39557         "Ireland",
39558         "ie",
39559         "353"
39560       ],
39561       [
39562         "Isle of Man",
39563         "im",
39564         "44",
39565         2
39566       ],
39567       [
39568         "Israel (‫ישראל‬‎)",
39569         "il",
39570         "972"
39571       ],
39572       [
39573         "Italy (Italia)",
39574         "it",
39575         "39",
39576         0
39577       ],
39578       [
39579         "Jamaica",
39580         "jm",
39581         "1876"
39582       ],
39583       [
39584         "Japan (日本)",
39585         "jp",
39586         "81"
39587       ],
39588       [
39589         "Jersey",
39590         "je",
39591         "44",
39592         3
39593       ],
39594       [
39595         "Jordan (‫الأردن‬‎)",
39596         "jo",
39597         "962"
39598       ],
39599       [
39600         "Kazakhstan (Казахстан)",
39601         "kz",
39602         "7",
39603         1
39604       ],
39605       [
39606         "Kenya",
39607         "ke",
39608         "254"
39609       ],
39610       [
39611         "Kiribati",
39612         "ki",
39613         "686"
39614       ],
39615       [
39616         "Kosovo",
39617         "xk",
39618         "383"
39619       ],
39620       [
39621         "Kuwait (‫الكويت‬‎)",
39622         "kw",
39623         "965"
39624       ],
39625       [
39626         "Kyrgyzstan (Кыргызстан)",
39627         "kg",
39628         "996"
39629       ],
39630       [
39631         "Laos (ລາວ)",
39632         "la",
39633         "856"
39634       ],
39635       [
39636         "Latvia (Latvija)",
39637         "lv",
39638         "371"
39639       ],
39640       [
39641         "Lebanon (‫لبنان‬‎)",
39642         "lb",
39643         "961"
39644       ],
39645       [
39646         "Lesotho",
39647         "ls",
39648         "266"
39649       ],
39650       [
39651         "Liberia",
39652         "lr",
39653         "231"
39654       ],
39655       [
39656         "Libya (‫ليبيا‬‎)",
39657         "ly",
39658         "218"
39659       ],
39660       [
39661         "Liechtenstein",
39662         "li",
39663         "423"
39664       ],
39665       [
39666         "Lithuania (Lietuva)",
39667         "lt",
39668         "370"
39669       ],
39670       [
39671         "Luxembourg",
39672         "lu",
39673         "352"
39674       ],
39675       [
39676         "Macau (澳門)",
39677         "mo",
39678         "853"
39679       ],
39680       [
39681         "Macedonia (FYROM) (Македонија)",
39682         "mk",
39683         "389"
39684       ],
39685       [
39686         "Madagascar (Madagasikara)",
39687         "mg",
39688         "261"
39689       ],
39690       [
39691         "Malawi",
39692         "mw",
39693         "265"
39694       ],
39695       [
39696         "Malaysia",
39697         "my",
39698         "60"
39699       ],
39700       [
39701         "Maldives",
39702         "mv",
39703         "960"
39704       ],
39705       [
39706         "Mali",
39707         "ml",
39708         "223"
39709       ],
39710       [
39711         "Malta",
39712         "mt",
39713         "356"
39714       ],
39715       [
39716         "Marshall Islands",
39717         "mh",
39718         "692"
39719       ],
39720       [
39721         "Martinique",
39722         "mq",
39723         "596"
39724       ],
39725       [
39726         "Mauritania (‫موريتانيا‬‎)",
39727         "mr",
39728         "222"
39729       ],
39730       [
39731         "Mauritius (Moris)",
39732         "mu",
39733         "230"
39734       ],
39735       [
39736         "Mayotte",
39737         "yt",
39738         "262",
39739         1
39740       ],
39741       [
39742         "Mexico (México)",
39743         "mx",
39744         "52"
39745       ],
39746       [
39747         "Micronesia",
39748         "fm",
39749         "691"
39750       ],
39751       [
39752         "Moldova (Republica Moldova)",
39753         "md",
39754         "373"
39755       ],
39756       [
39757         "Monaco",
39758         "mc",
39759         "377"
39760       ],
39761       [
39762         "Mongolia (Монгол)",
39763         "mn",
39764         "976"
39765       ],
39766       [
39767         "Montenegro (Crna Gora)",
39768         "me",
39769         "382"
39770       ],
39771       [
39772         "Montserrat",
39773         "ms",
39774         "1664"
39775       ],
39776       [
39777         "Morocco (‫المغرب‬‎)",
39778         "ma",
39779         "212",
39780         0
39781       ],
39782       [
39783         "Mozambique (Moçambique)",
39784         "mz",
39785         "258"
39786       ],
39787       [
39788         "Myanmar (Burma) (မြန်မာ)",
39789         "mm",
39790         "95"
39791       ],
39792       [
39793         "Namibia (Namibië)",
39794         "na",
39795         "264"
39796       ],
39797       [
39798         "Nauru",
39799         "nr",
39800         "674"
39801       ],
39802       [
39803         "Nepal (नेपाल)",
39804         "np",
39805         "977"
39806       ],
39807       [
39808         "Netherlands (Nederland)",
39809         "nl",
39810         "31"
39811       ],
39812       [
39813         "New Caledonia (Nouvelle-Calédonie)",
39814         "nc",
39815         "687"
39816       ],
39817       [
39818         "New Zealand",
39819         "nz",
39820         "64"
39821       ],
39822       [
39823         "Nicaragua",
39824         "ni",
39825         "505"
39826       ],
39827       [
39828         "Niger (Nijar)",
39829         "ne",
39830         "227"
39831       ],
39832       [
39833         "Nigeria",
39834         "ng",
39835         "234"
39836       ],
39837       [
39838         "Niue",
39839         "nu",
39840         "683"
39841       ],
39842       [
39843         "Norfolk Island",
39844         "nf",
39845         "672"
39846       ],
39847       [
39848         "North Korea (조선 민주주의 인민 공화국)",
39849         "kp",
39850         "850"
39851       ],
39852       [
39853         "Northern Mariana Islands",
39854         "mp",
39855         "1670"
39856       ],
39857       [
39858         "Norway (Norge)",
39859         "no",
39860         "47",
39861         0
39862       ],
39863       [
39864         "Oman (‫عُمان‬‎)",
39865         "om",
39866         "968"
39867       ],
39868       [
39869         "Pakistan (‫پاکستان‬‎)",
39870         "pk",
39871         "92"
39872       ],
39873       [
39874         "Palau",
39875         "pw",
39876         "680"
39877       ],
39878       [
39879         "Palestine (‫فلسطين‬‎)",
39880         "ps",
39881         "970"
39882       ],
39883       [
39884         "Panama (Panamá)",
39885         "pa",
39886         "507"
39887       ],
39888       [
39889         "Papua New Guinea",
39890         "pg",
39891         "675"
39892       ],
39893       [
39894         "Paraguay",
39895         "py",
39896         "595"
39897       ],
39898       [
39899         "Peru (Perú)",
39900         "pe",
39901         "51"
39902       ],
39903       [
39904         "Philippines",
39905         "ph",
39906         "63"
39907       ],
39908       [
39909         "Poland (Polska)",
39910         "pl",
39911         "48"
39912       ],
39913       [
39914         "Portugal",
39915         "pt",
39916         "351"
39917       ],
39918       [
39919         "Puerto Rico",
39920         "pr",
39921         "1",
39922         3,
39923         ["787", "939"]
39924       ],
39925       [
39926         "Qatar (‫قطر‬‎)",
39927         "qa",
39928         "974"
39929       ],
39930       [
39931         "Réunion (La Réunion)",
39932         "re",
39933         "262",
39934         0
39935       ],
39936       [
39937         "Romania (România)",
39938         "ro",
39939         "40"
39940       ],
39941       [
39942         "Russia (Россия)",
39943         "ru",
39944         "7",
39945         0
39946       ],
39947       [
39948         "Rwanda",
39949         "rw",
39950         "250"
39951       ],
39952       [
39953         "Saint Barthélemy",
39954         "bl",
39955         "590",
39956         1
39957       ],
39958       [
39959         "Saint Helena",
39960         "sh",
39961         "290"
39962       ],
39963       [
39964         "Saint Kitts and Nevis",
39965         "kn",
39966         "1869"
39967       ],
39968       [
39969         "Saint Lucia",
39970         "lc",
39971         "1758"
39972       ],
39973       [
39974         "Saint Martin (Saint-Martin (partie française))",
39975         "mf",
39976         "590",
39977         2
39978       ],
39979       [
39980         "Saint Pierre and Miquelon (Saint-Pierre-et-Miquelon)",
39981         "pm",
39982         "508"
39983       ],
39984       [
39985         "Saint Vincent and the Grenadines",
39986         "vc",
39987         "1784"
39988       ],
39989       [
39990         "Samoa",
39991         "ws",
39992         "685"
39993       ],
39994       [
39995         "San Marino",
39996         "sm",
39997         "378"
39998       ],
39999       [
40000         "São Tomé and Príncipe (São Tomé e Príncipe)",
40001         "st",
40002         "239"
40003       ],
40004       [
40005         "Saudi Arabia (‫المملكة العربية السعودية‬‎)",
40006         "sa",
40007         "966"
40008       ],
40009       [
40010         "Senegal (Sénégal)",
40011         "sn",
40012         "221"
40013       ],
40014       [
40015         "Serbia (Србија)",
40016         "rs",
40017         "381"
40018       ],
40019       [
40020         "Seychelles",
40021         "sc",
40022         "248"
40023       ],
40024       [
40025         "Sierra Leone",
40026         "sl",
40027         "232"
40028       ],
40029       [
40030         "Singapore",
40031         "sg",
40032         "65"
40033       ],
40034       [
40035         "Sint Maarten",
40036         "sx",
40037         "1721"
40038       ],
40039       [
40040         "Slovakia (Slovensko)",
40041         "sk",
40042         "421"
40043       ],
40044       [
40045         "Slovenia (Slovenija)",
40046         "si",
40047         "386"
40048       ],
40049       [
40050         "Solomon Islands",
40051         "sb",
40052         "677"
40053       ],
40054       [
40055         "Somalia (Soomaaliya)",
40056         "so",
40057         "252"
40058       ],
40059       [
40060         "South Africa",
40061         "za",
40062         "27"
40063       ],
40064       [
40065         "South Korea (대한민국)",
40066         "kr",
40067         "82"
40068       ],
40069       [
40070         "South Sudan (‫جنوب السودان‬‎)",
40071         "ss",
40072         "211"
40073       ],
40074       [
40075         "Spain (España)",
40076         "es",
40077         "34"
40078       ],
40079       [
40080         "Sri Lanka (ශ්‍රී ලංකාව)",
40081         "lk",
40082         "94"
40083       ],
40084       [
40085         "Sudan (‫السودان‬‎)",
40086         "sd",
40087         "249"
40088       ],
40089       [
40090         "Suriname",
40091         "sr",
40092         "597"
40093       ],
40094       [
40095         "Svalbard and Jan Mayen",
40096         "sj",
40097         "47",
40098         1
40099       ],
40100       [
40101         "Swaziland",
40102         "sz",
40103         "268"
40104       ],
40105       [
40106         "Sweden (Sverige)",
40107         "se",
40108         "46"
40109       ],
40110       [
40111         "Switzerland (Schweiz)",
40112         "ch",
40113         "41"
40114       ],
40115       [
40116         "Syria (‫سوريا‬‎)",
40117         "sy",
40118         "963"
40119       ],
40120       [
40121         "Taiwan (台灣)",
40122         "tw",
40123         "886"
40124       ],
40125       [
40126         "Tajikistan",
40127         "tj",
40128         "992"
40129       ],
40130       [
40131         "Tanzania",
40132         "tz",
40133         "255"
40134       ],
40135       [
40136         "Thailand (ไทย)",
40137         "th",
40138         "66"
40139       ],
40140       [
40141         "Timor-Leste",
40142         "tl",
40143         "670"
40144       ],
40145       [
40146         "Togo",
40147         "tg",
40148         "228"
40149       ],
40150       [
40151         "Tokelau",
40152         "tk",
40153         "690"
40154       ],
40155       [
40156         "Tonga",
40157         "to",
40158         "676"
40159       ],
40160       [
40161         "Trinidad and Tobago",
40162         "tt",
40163         "1868"
40164       ],
40165       [
40166         "Tunisia (‫تونس‬‎)",
40167         "tn",
40168         "216"
40169       ],
40170       [
40171         "Turkey (Türkiye)",
40172         "tr",
40173         "90"
40174       ],
40175       [
40176         "Turkmenistan",
40177         "tm",
40178         "993"
40179       ],
40180       [
40181         "Turks and Caicos Islands",
40182         "tc",
40183         "1649"
40184       ],
40185       [
40186         "Tuvalu",
40187         "tv",
40188         "688"
40189       ],
40190       [
40191         "U.S. Virgin Islands",
40192         "vi",
40193         "1340"
40194       ],
40195       [
40196         "Uganda",
40197         "ug",
40198         "256"
40199       ],
40200       [
40201         "Ukraine (Україна)",
40202         "ua",
40203         "380"
40204       ],
40205       [
40206         "United Arab Emirates (‫الإمارات العربية المتحدة‬‎)",
40207         "ae",
40208         "971"
40209       ],
40210       [
40211         "United Kingdom",
40212         "gb",
40213         "44",
40214         0
40215       ],
40216       [
40217         "United States",
40218         "us",
40219         "1",
40220         0
40221       ],
40222       [
40223         "Uruguay",
40224         "uy",
40225         "598"
40226       ],
40227       [
40228         "Uzbekistan (Oʻzbekiston)",
40229         "uz",
40230         "998"
40231       ],
40232       [
40233         "Vanuatu",
40234         "vu",
40235         "678"
40236       ],
40237       [
40238         "Vatican City (Città del Vaticano)",
40239         "va",
40240         "39",
40241         1
40242       ],
40243       [
40244         "Venezuela",
40245         "ve",
40246         "58"
40247       ],
40248       [
40249         "Vietnam (Việt Nam)",
40250         "vn",
40251         "84"
40252       ],
40253       [
40254         "Wallis and Futuna (Wallis-et-Futuna)",
40255         "wf",
40256         "681"
40257       ],
40258       [
40259         "Western Sahara (‫الصحراء الغربية‬‎)",
40260         "eh",
40261         "212",
40262         1
40263       ],
40264       [
40265         "Yemen (‫اليمن‬‎)",
40266         "ye",
40267         "967"
40268       ],
40269       [
40270         "Zambia",
40271         "zm",
40272         "260"
40273       ],
40274       [
40275         "Zimbabwe",
40276         "zw",
40277         "263"
40278       ],
40279       [
40280         "Åland Islands",
40281         "ax",
40282         "358",
40283         1
40284       ]
40285   ];
40286   
40287   return d;
40288 }/**
40289 *    This script refer to:
40290 *    Title: International Telephone Input
40291 *    Author: Jack O'Connor
40292 *    Code version:  v12.1.12
40293 *    Availability: https://github.com/jackocnr/intl-tel-input.git
40294 **/
40295
40296 /**
40297  * @class Roo.bootstrap.PhoneInput
40298  * @extends Roo.bootstrap.TriggerField
40299  * An input with International dial-code selection
40300  
40301  * @cfg {String} defaultDialCode default '+852'
40302  * @cfg {Array} preferedCountries default []
40303   
40304  * @constructor
40305  * Create a new PhoneInput.
40306  * @param {Object} config Configuration options
40307  */
40308
40309 Roo.bootstrap.PhoneInput = function(config) {
40310     Roo.bootstrap.PhoneInput.superclass.constructor.call(this, config);
40311 };
40312
40313 Roo.extend(Roo.bootstrap.PhoneInput, Roo.bootstrap.TriggerField, {
40314         
40315         listWidth: undefined,
40316         
40317         selectedClass: 'active',
40318         
40319         invalidClass : "has-warning",
40320         
40321         validClass: 'has-success',
40322         
40323         allowed: '0123456789',
40324         
40325         max_length: 15,
40326         
40327         /**
40328          * @cfg {String} defaultDialCode The default dial code when initializing the input
40329          */
40330         defaultDialCode: '+852',
40331         
40332         /**
40333          * @cfg {Array} preferedCountries A list of iso2 in array (e.g. ['hk','us']). Those related countries will show at the top of the input's choices
40334          */
40335         preferedCountries: false,
40336         
40337         getAutoCreate : function()
40338         {
40339             var data = Roo.bootstrap.PhoneInputData();
40340             var align = this.labelAlign || this.parentLabelAlign();
40341             var id = Roo.id();
40342             
40343             this.allCountries = [];
40344             this.dialCodeMapping = [];
40345             
40346             for (var i = 0; i < data.length; i++) {
40347               var c = data[i];
40348               this.allCountries[i] = {
40349                 name: c[0],
40350                 iso2: c[1],
40351                 dialCode: c[2],
40352                 priority: c[3] || 0,
40353                 areaCodes: c[4] || null
40354               };
40355               this.dialCodeMapping[c[2]] = {
40356                   name: c[0],
40357                   iso2: c[1],
40358                   priority: c[3] || 0,
40359                   areaCodes: c[4] || null
40360               };
40361             }
40362             
40363             var cfg = {
40364                 cls: 'form-group',
40365                 cn: []
40366             };
40367             
40368             var input =  {
40369                 tag: 'input',
40370                 id : id,
40371                 // type: 'number', -- do not use number - we get the flaky up/down arrows.
40372                 maxlength: this.max_length,
40373                 cls : 'form-control tel-input',
40374                 autocomplete: 'new-password'
40375             };
40376             
40377             var hiddenInput = {
40378                 tag: 'input',
40379                 type: 'hidden',
40380                 cls: 'hidden-tel-input'
40381             };
40382             
40383             if (this.name) {
40384                 hiddenInput.name = this.name;
40385             }
40386             
40387             if (this.disabled) {
40388                 input.disabled = true;
40389             }
40390             
40391             var flag_container = {
40392                 tag: 'div',
40393                 cls: 'flag-box',
40394                 cn: [
40395                     {
40396                         tag: 'div',
40397                         cls: 'flag'
40398                     },
40399                     {
40400                         tag: 'div',
40401                         cls: 'caret'
40402                     }
40403                 ]
40404             };
40405             
40406             var box = {
40407                 tag: 'div',
40408                 cls: this.hasFeedback ? 'has-feedback' : '',
40409                 cn: [
40410                     hiddenInput,
40411                     input,
40412                     {
40413                         tag: 'input',
40414                         cls: 'dial-code-holder',
40415                         disabled: true
40416                     }
40417                 ]
40418             };
40419             
40420             var container = {
40421                 cls: 'roo-select2-container input-group',
40422                 cn: [
40423                     flag_container,
40424                     box
40425                 ]
40426             };
40427             
40428             if (this.fieldLabel.length) {
40429                 var indicator = {
40430                     tag: 'i',
40431                     tooltip: 'This field is required'
40432                 };
40433                 
40434                 var label = {
40435                     tag: 'label',
40436                     'for':  id,
40437                     cls: 'control-label',
40438                     cn: []
40439                 };
40440                 
40441                 var label_text = {
40442                     tag: 'span',
40443                     html: this.fieldLabel
40444                 };
40445                 
40446                 indicator.cls = 'roo-required-indicator text-danger fa fa-lg fa-star left-indicator';
40447                 label.cn = [
40448                     indicator,
40449                     label_text
40450                 ];
40451                 
40452                 if(this.indicatorpos == 'right') {
40453                     indicator.cls = 'roo-required-indicator text-danger fa fa-lg fa-star right-indicator';
40454                     label.cn = [
40455                         label_text,
40456                         indicator
40457                     ];
40458                 }
40459                 
40460                 if(align == 'left') {
40461                     container = {
40462                         tag: 'div',
40463                         cn: [
40464                             container
40465                         ]
40466                     };
40467                     
40468                     if(this.labelWidth > 12){
40469                         label.style = "width: " + this.labelWidth + 'px';
40470                     }
40471                     if(this.labelWidth < 13 && this.labelmd == 0){
40472                         this.labelmd = this.labelWidth;
40473                     }
40474                     if(this.labellg > 0){
40475                         label.cls += ' col-lg-' + this.labellg;
40476                         input.cls += ' col-lg-' + (12 - this.labellg);
40477                     }
40478                     if(this.labelmd > 0){
40479                         label.cls += ' col-md-' + this.labelmd;
40480                         container.cls += ' col-md-' + (12 - this.labelmd);
40481                     }
40482                     if(this.labelsm > 0){
40483                         label.cls += ' col-sm-' + this.labelsm;
40484                         container.cls += ' col-sm-' + (12 - this.labelsm);
40485                     }
40486                     if(this.labelxs > 0){
40487                         label.cls += ' col-xs-' + this.labelxs;
40488                         container.cls += ' col-xs-' + (12 - this.labelxs);
40489                     }
40490                 }
40491             }
40492             
40493             cfg.cn = [
40494                 label,
40495                 container
40496             ];
40497             
40498             var settings = this;
40499             
40500             ['xs','sm','md','lg'].map(function(size){
40501                 if (settings[size]) {
40502                     cfg.cls += ' col-' + size + '-' + settings[size];
40503                 }
40504             });
40505             
40506             this.store = new Roo.data.Store({
40507                 proxy : new Roo.data.MemoryProxy({}),
40508                 reader : new Roo.data.JsonReader({
40509                     fields : [
40510                         {
40511                             'name' : 'name',
40512                             'type' : 'string'
40513                         },
40514                         {
40515                             'name' : 'iso2',
40516                             'type' : 'string'
40517                         },
40518                         {
40519                             'name' : 'dialCode',
40520                             'type' : 'string'
40521                         },
40522                         {
40523                             'name' : 'priority',
40524                             'type' : 'string'
40525                         },
40526                         {
40527                             'name' : 'areaCodes',
40528                             'type' : 'string'
40529                         }
40530                     ]
40531                 })
40532             });
40533             
40534             if(!this.preferedCountries) {
40535                 this.preferedCountries = [
40536                     'hk',
40537                     'gb',
40538                     'us'
40539                 ];
40540             }
40541             
40542             var p = this.preferedCountries.reverse();
40543             
40544             if(p) {
40545                 for (var i = 0; i < p.length; i++) {
40546                     for (var j = 0; j < this.allCountries.length; j++) {
40547                         if(this.allCountries[j].iso2 == p[i]) {
40548                             var t = this.allCountries[j];
40549                             this.allCountries.splice(j,1);
40550                             this.allCountries.unshift(t);
40551                         }
40552                     } 
40553                 }
40554             }
40555             
40556             this.store.proxy.data = {
40557                 success: true,
40558                 data: this.allCountries
40559             };
40560             
40561             return cfg;
40562         },
40563         
40564         initEvents : function()
40565         {
40566             this.createList();
40567             Roo.bootstrap.PhoneInput.superclass.initEvents.call(this);
40568             
40569             this.indicator = this.indicatorEl();
40570             this.flag = this.flagEl();
40571             this.dialCodeHolder = this.dialCodeHolderEl();
40572             
40573             this.trigger = this.el.select('div.flag-box',true).first();
40574             this.trigger.on("click", this.onTriggerClick, this, {preventDefault:true});
40575             
40576             var _this = this;
40577             
40578             (function(){
40579                 var lw = _this.listWidth || Math.max(_this.inputEl().getWidth(), _this.minListWidth);
40580                 _this.list.setWidth(lw);
40581             }).defer(100);
40582             
40583             this.list.on('mouseover', this.onViewOver, this);
40584             this.list.on('mousemove', this.onViewMove, this);
40585             this.inputEl().on("keyup", this.onKeyUp, this);
40586             this.inputEl().on("keypress", this.onKeyPress, this);
40587             
40588             this.tpl = '<li><a href="#"><div class="flag {iso2}"></div>{name} <span class="dial-code">+{dialCode}</span></a></li>';
40589
40590             this.view = new Roo.View(this.list, this.tpl, {
40591                 singleSelect:true, store: this.store, selectedClass: this.selectedClass
40592             });
40593             
40594             this.view.on('click', this.onViewClick, this);
40595             this.setValue(this.defaultDialCode);
40596         },
40597         
40598         onTriggerClick : function(e)
40599         {
40600             Roo.log('trigger click');
40601             if(this.disabled){
40602                 return;
40603             }
40604             
40605             if(this.isExpanded()){
40606                 this.collapse();
40607                 this.hasFocus = false;
40608             }else {
40609                 this.store.load({});
40610                 this.hasFocus = true;
40611                 this.expand();
40612             }
40613         },
40614         
40615         isExpanded : function()
40616         {
40617             return this.list.isVisible();
40618         },
40619         
40620         collapse : function()
40621         {
40622             if(!this.isExpanded()){
40623                 return;
40624             }
40625             this.list.hide();
40626             Roo.get(document).un('mousedown', this.collapseIf, this);
40627             Roo.get(document).un('mousewheel', this.collapseIf, this);
40628             this.fireEvent('collapse', this);
40629             this.validate();
40630         },
40631         
40632         expand : function()
40633         {
40634             Roo.log('expand');
40635
40636             if(this.isExpanded() || !this.hasFocus){
40637                 return;
40638             }
40639             
40640             var lw = this.listWidth || Math.max(this.inputEl().getWidth(), this.minListWidth);
40641             this.list.setWidth(lw);
40642             
40643             this.list.show();
40644             this.restrictHeight();
40645             
40646             Roo.get(document).on('mousedown', this.collapseIf, this);
40647             Roo.get(document).on('mousewheel', this.collapseIf, this);
40648             
40649             this.fireEvent('expand', this);
40650         },
40651         
40652         restrictHeight : function()
40653         {
40654             this.list.alignTo(this.inputEl(), this.listAlign);
40655             this.list.alignTo(this.inputEl(), this.listAlign);
40656         },
40657         
40658         onViewOver : function(e, t)
40659         {
40660             if(this.inKeyMode){
40661                 return;
40662             }
40663             var item = this.view.findItemFromChild(t);
40664             
40665             if(item){
40666                 var index = this.view.indexOf(item);
40667                 this.select(index, false);
40668             }
40669         },
40670
40671         // private
40672         onViewClick : function(view, doFocus, el, e)
40673         {
40674             var index = this.view.getSelectedIndexes()[0];
40675             
40676             var r = this.store.getAt(index);
40677             
40678             if(r){
40679                 this.onSelect(r, index);
40680             }
40681             if(doFocus !== false && !this.blockFocus){
40682                 this.inputEl().focus();
40683             }
40684         },
40685         
40686         onViewMove : function(e, t)
40687         {
40688             this.inKeyMode = false;
40689         },
40690         
40691         select : function(index, scrollIntoView)
40692         {
40693             this.selectedIndex = index;
40694             this.view.select(index);
40695             if(scrollIntoView !== false){
40696                 var el = this.view.getNode(index);
40697                 if(el){
40698                     this.list.scrollChildIntoView(el, false);
40699                 }
40700             }
40701         },
40702         
40703         createList : function()
40704         {
40705             this.list = Roo.get(document.body).createChild({
40706                 tag: 'ul',
40707                 cls: 'typeahead typeahead-long dropdown-menu tel-list',
40708                 style: 'display:none'
40709             });
40710             
40711             this.list.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
40712         },
40713         
40714         collapseIf : function(e)
40715         {
40716             var in_combo  = e.within(this.el);
40717             var in_list =  e.within(this.list);
40718             var is_list = (Roo.get(e.getTarget()).id == this.list.id) ? true : false;
40719             
40720             if (in_combo || in_list || is_list) {
40721                 return;
40722             }
40723             this.collapse();
40724         },
40725         
40726         onSelect : function(record, index)
40727         {
40728             if(this.fireEvent('beforeselect', this, record, index) !== false){
40729                 
40730                 this.setFlagClass(record.data.iso2);
40731                 this.setDialCode(record.data.dialCode);
40732                 this.hasFocus = false;
40733                 this.collapse();
40734                 this.fireEvent('select', this, record, index);
40735             }
40736         },
40737         
40738         flagEl : function()
40739         {
40740             var flag = this.el.select('div.flag',true).first();
40741             if(!flag){
40742                 return false;
40743             }
40744             return flag;
40745         },
40746         
40747         dialCodeHolderEl : function()
40748         {
40749             var d = this.el.select('input.dial-code-holder',true).first();
40750             if(!d){
40751                 return false;
40752             }
40753             return d;
40754         },
40755         
40756         setDialCode : function(v)
40757         {
40758             this.dialCodeHolder.dom.value = '+'+v;
40759         },
40760         
40761         setFlagClass : function(n)
40762         {
40763             this.flag.dom.className = 'flag '+n;
40764         },
40765         
40766         getValue : function()
40767         {
40768             var v = this.inputEl().getValue();
40769             if(this.dialCodeHolder) {
40770                 v = this.dialCodeHolder.dom.value+this.inputEl().getValue();
40771             }
40772             return v;
40773         },
40774         
40775         setValue : function(v)
40776         {
40777             var d = this.getDialCode(v);
40778             
40779             //invalid dial code
40780             if(v.length == 0 || !d || d.length == 0) {
40781                 if(this.rendered){
40782                     this.inputEl().dom.value = (v === null || v === undefined ? '' : v);
40783                     this.hiddenEl().dom.value = (v === null || v === undefined ? '' : v);
40784                 }
40785                 return;
40786             }
40787             
40788             //valid dial code
40789             this.setFlagClass(this.dialCodeMapping[d].iso2);
40790             this.setDialCode(d);
40791             this.inputEl().dom.value = v.replace('+'+d,'');
40792             this.hiddenEl().dom.value = this.getValue();
40793             
40794             this.validate();
40795         },
40796         
40797         getDialCode : function(v)
40798         {
40799             v = v ||  '';
40800             
40801             if (v.length == 0) {
40802                 return this.dialCodeHolder.dom.value;
40803             }
40804             
40805             var dialCode = "";
40806             if (v.charAt(0) != "+") {
40807                 return false;
40808             }
40809             var numericChars = "";
40810             for (var i = 1; i < v.length; i++) {
40811               var c = v.charAt(i);
40812               if (!isNaN(c)) {
40813                 numericChars += c;
40814                 if (this.dialCodeMapping[numericChars]) {
40815                   dialCode = v.substr(1, i);
40816                 }
40817                 if (numericChars.length == 4) {
40818                   break;
40819                 }
40820               }
40821             }
40822             return dialCode;
40823         },
40824         
40825         reset : function()
40826         {
40827             this.setValue(this.defaultDialCode);
40828             this.validate();
40829         },
40830         
40831         hiddenEl : function()
40832         {
40833             return this.el.select('input.hidden-tel-input',true).first();
40834         },
40835         
40836         // after setting val
40837         onKeyUp : function(e){
40838             this.setValue(this.getValue());
40839         },
40840         
40841         onKeyPress : function(e){
40842             if(this.allowed.indexOf(String.fromCharCode(e.getCharCode())) === -1){
40843                 e.stopEvent();
40844             }
40845         }
40846         
40847 });
40848 /**
40849  * @class Roo.bootstrap.MoneyField
40850  * @extends Roo.bootstrap.ComboBox
40851  * Bootstrap MoneyField class
40852  * 
40853  * @constructor
40854  * Create a new MoneyField.
40855  * @param {Object} config Configuration options
40856  */
40857
40858 Roo.bootstrap.MoneyField = function(config) {
40859     
40860     Roo.bootstrap.MoneyField.superclass.constructor.call(this, config);
40861     
40862 };
40863
40864 Roo.extend(Roo.bootstrap.MoneyField, Roo.bootstrap.ComboBox, {
40865     
40866     /**
40867      * @cfg {Boolean} allowDecimals False to disallow decimal values (defaults to true)
40868      */
40869     allowDecimals : true,
40870     /**
40871      * @cfg {String} decimalSeparator Character(s) to allow as the decimal separator (defaults to '.')
40872      */
40873     decimalSeparator : ".",
40874     /**
40875      * @cfg {Number} decimalPrecision The maximum precision to display after the decimal separator (defaults to 2)
40876      */
40877     decimalPrecision : 0,
40878     /**
40879      * @cfg {Boolean} allowNegative False to prevent entering a negative sign (defaults to true)
40880      */
40881     allowNegative : true,
40882     /**
40883      * @cfg {Boolean} allowZero False to blank out if the user enters '0' (defaults to true)
40884      */
40885     allowZero: true,
40886     /**
40887      * @cfg {Number} minValue The minimum allowed value (defaults to Number.NEGATIVE_INFINITY)
40888      */
40889     minValue : Number.NEGATIVE_INFINITY,
40890     /**
40891      * @cfg {Number} maxValue The maximum allowed value (defaults to Number.MAX_VALUE)
40892      */
40893     maxValue : Number.MAX_VALUE,
40894     /**
40895      * @cfg {String} minText Error text to display if the minimum value validation fails (defaults to "The minimum value for this field is {minValue}")
40896      */
40897     minText : "The minimum value for this field is {0}",
40898     /**
40899      * @cfg {String} maxText Error text to display if the maximum value validation fails (defaults to "The maximum value for this field is {maxValue}")
40900      */
40901     maxText : "The maximum value for this field is {0}",
40902     /**
40903      * @cfg {String} nanText Error text to display if the value is not a valid number.  For example, this can happen
40904      * if a valid character like '.' or '-' is left in the field with no number (defaults to "{value} is not a valid number")
40905      */
40906     nanText : "{0} is not a valid number",
40907     /**
40908      * @cfg {Boolean} castInt (true|false) cast int if true (defalut true)
40909      */
40910     castInt : true,
40911     /**
40912      * @cfg {String} defaults currency of the MoneyField
40913      * value should be in lkey
40914      */
40915     defaultCurrency : false,
40916     /**
40917      * @cfg {String} thousandsDelimiter Symbol of thousandsDelimiter
40918      */
40919     thousandsDelimiter : false,
40920     /**
40921      * @cfg {Number} max_length Maximum input field length allowed (defaults to Number.MAX_VALUE)
40922      */
40923     max_length: false,
40924     
40925     inputlg : 9,
40926     inputmd : 9,
40927     inputsm : 9,
40928     inputxs : 6,
40929     
40930     store : false,
40931     
40932     getAutoCreate : function()
40933     {
40934         var align = this.labelAlign || this.parentLabelAlign();
40935         
40936         var id = Roo.id();
40937
40938         var cfg = {
40939             cls: 'form-group',
40940             cn: []
40941         };
40942
40943         var input =  {
40944             tag: 'input',
40945             id : id,
40946             cls : 'form-control roo-money-amount-input',
40947             autocomplete: 'new-password'
40948         };
40949         
40950         var hiddenInput = {
40951             tag: 'input',
40952             type: 'hidden',
40953             id: Roo.id(),
40954             cls: 'hidden-number-input'
40955         };
40956         
40957         if(this.max_length) {
40958             input.maxlength = this.max_length; 
40959         }
40960         
40961         if (this.name) {
40962             hiddenInput.name = this.name;
40963         }
40964
40965         if (this.disabled) {
40966             input.disabled = true;
40967         }
40968
40969         var clg = 12 - this.inputlg;
40970         var cmd = 12 - this.inputmd;
40971         var csm = 12 - this.inputsm;
40972         var cxs = 12 - this.inputxs;
40973         
40974         var container = {
40975             tag : 'div',
40976             cls : 'row roo-money-field',
40977             cn : [
40978                 {
40979                     tag : 'div',
40980                     cls : 'roo-money-currency column col-lg-' + clg + ' col-md-' + cmd + ' col-sm-' + csm + ' col-xs-' + cxs,
40981                     cn : [
40982                         {
40983                             tag : 'div',
40984                             cls: 'roo-select2-container input-group',
40985                             cn: [
40986                                 {
40987                                     tag : 'input',
40988                                     cls : 'form-control roo-money-currency-input',
40989                                     autocomplete: 'new-password',
40990                                     readOnly : 1,
40991                                     name : this.currencyName
40992                                 },
40993                                 {
40994                                     tag :'span',
40995                                     cls : 'input-group-addon',
40996                                     cn : [
40997                                         {
40998                                             tag: 'span',
40999                                             cls: 'caret'
41000                                         }
41001                                     ]
41002                                 }
41003                             ]
41004                         }
41005                     ]
41006                 },
41007                 {
41008                     tag : 'div',
41009                     cls : 'roo-money-amount column col-lg-' + this.inputlg + ' col-md-' + this.inputmd + ' col-sm-' + this.inputsm + ' col-xs-' + this.inputxs,
41010                     cn : [
41011                         {
41012                             tag: 'div',
41013                             cls: this.hasFeedback ? 'has-feedback' : '',
41014                             cn: [
41015                                 input
41016                             ]
41017                         }
41018                     ]
41019                 }
41020             ]
41021             
41022         };
41023         
41024         if (this.fieldLabel.length) {
41025             var indicator = {
41026                 tag: 'i',
41027                 tooltip: 'This field is required'
41028             };
41029
41030             var label = {
41031                 tag: 'label',
41032                 'for':  id,
41033                 cls: 'control-label',
41034                 cn: []
41035             };
41036
41037             var label_text = {
41038                 tag: 'span',
41039                 html: this.fieldLabel
41040             };
41041
41042             indicator.cls = 'roo-required-indicator text-danger fa fa-lg fa-star left-indicator';
41043             label.cn = [
41044                 indicator,
41045                 label_text
41046             ];
41047
41048             if(this.indicatorpos == 'right') {
41049                 indicator.cls = 'roo-required-indicator text-danger fa fa-lg fa-star right-indicator';
41050                 label.cn = [
41051                     label_text,
41052                     indicator
41053                 ];
41054             }
41055
41056             if(align == 'left') {
41057                 container = {
41058                     tag: 'div',
41059                     cn: [
41060                         container
41061                     ]
41062                 };
41063
41064                 if(this.labelWidth > 12){
41065                     label.style = "width: " + this.labelWidth + 'px';
41066                 }
41067                 if(this.labelWidth < 13 && this.labelmd == 0){
41068                     this.labelmd = this.labelWidth;
41069                 }
41070                 if(this.labellg > 0){
41071                     label.cls += ' col-lg-' + this.labellg;
41072                     input.cls += ' col-lg-' + (12 - this.labellg);
41073                 }
41074                 if(this.labelmd > 0){
41075                     label.cls += ' col-md-' + this.labelmd;
41076                     container.cls += ' col-md-' + (12 - this.labelmd);
41077                 }
41078                 if(this.labelsm > 0){
41079                     label.cls += ' col-sm-' + this.labelsm;
41080                     container.cls += ' col-sm-' + (12 - this.labelsm);
41081                 }
41082                 if(this.labelxs > 0){
41083                     label.cls += ' col-xs-' + this.labelxs;
41084                     container.cls += ' col-xs-' + (12 - this.labelxs);
41085                 }
41086             }
41087         }
41088
41089         cfg.cn = [
41090             label,
41091             container,
41092             hiddenInput
41093         ];
41094         
41095         var settings = this;
41096
41097         ['xs','sm','md','lg'].map(function(size){
41098             if (settings[size]) {
41099                 cfg.cls += ' col-' + size + '-' + settings[size];
41100             }
41101         });
41102         
41103         return cfg;
41104     },
41105     
41106     initEvents : function()
41107     {
41108         this.indicator = this.indicatorEl();
41109         
41110         this.initCurrencyEvent();
41111         
41112         this.initNumberEvent();
41113     },
41114     
41115     initCurrencyEvent : function()
41116     {
41117         if (!this.store) {
41118             throw "can not find store for combo";
41119         }
41120         
41121         this.store = Roo.factory(this.store, Roo.data);
41122         this.store.parent = this;
41123         
41124         this.createList();
41125         
41126         this.triggerEl = this.el.select('.input-group-addon', true).first();
41127         
41128         this.triggerEl.on("click", this.onTriggerClick, this, { preventDefault : true });
41129         
41130         var _this = this;
41131         
41132         (function(){
41133             var lw = _this.listWidth || Math.max(_this.inputEl().getWidth(), _this.minListWidth);
41134             _this.list.setWidth(lw);
41135         }).defer(100);
41136         
41137         this.list.on('mouseover', this.onViewOver, this);
41138         this.list.on('mousemove', this.onViewMove, this);
41139         this.list.on('scroll', this.onViewScroll, this);
41140         
41141         if(!this.tpl){
41142             this.tpl = '<li><a href="#">{' + this.currencyField + '}</a></li>';
41143         }
41144         
41145         this.view = new Roo.View(this.list, this.tpl, {
41146             singleSelect:true, store: this.store, selectedClass: this.selectedClass
41147         });
41148         
41149         this.view.on('click', this.onViewClick, this);
41150         
41151         this.store.on('beforeload', this.onBeforeLoad, this);
41152         this.store.on('load', this.onLoad, this);
41153         this.store.on('loadexception', this.onLoadException, this);
41154         
41155         this.keyNav = new Roo.KeyNav(this.currencyEl(), {
41156             "up" : function(e){
41157                 this.inKeyMode = true;
41158                 this.selectPrev();
41159             },
41160
41161             "down" : function(e){
41162                 if(!this.isExpanded()){
41163                     this.onTriggerClick();
41164                 }else{
41165                     this.inKeyMode = true;
41166                     this.selectNext();
41167                 }
41168             },
41169
41170             "enter" : function(e){
41171                 this.collapse();
41172                 
41173                 if(this.fireEvent("specialkey", this, e)){
41174                     this.onViewClick(false);
41175                 }
41176                 
41177                 return true;
41178             },
41179
41180             "esc" : function(e){
41181                 this.collapse();
41182             },
41183
41184             "tab" : function(e){
41185                 this.collapse();
41186                 
41187                 if(this.fireEvent("specialkey", this, e)){
41188                     this.onViewClick(false);
41189                 }
41190                 
41191                 return true;
41192             },
41193
41194             scope : this,
41195
41196             doRelay : function(foo, bar, hname){
41197                 if(hname == 'down' || this.scope.isExpanded()){
41198                    return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
41199                 }
41200                 return true;
41201             },
41202
41203             forceKeyDown: true
41204         });
41205         
41206         this.currencyEl().on("click", this.onTriggerClick, this, { preventDefault : true });
41207         
41208     },
41209     
41210     initNumberEvent : function(e)
41211     {
41212         this.inputEl().on("keydown" , this.fireKey,  this);
41213         this.inputEl().on("focus", this.onFocus,  this);
41214         this.inputEl().on("blur", this.onBlur,  this);
41215         
41216         this.inputEl().relayEvent('keyup', this);
41217         
41218         if(this.indicator){
41219             this.indicator.addClass('invisible');
41220         }
41221  
41222         this.originalValue = this.getValue();
41223         
41224         if(this.validationEvent == 'keyup'){
41225             this.validationTask = new Roo.util.DelayedTask(this.validate, this);
41226             this.inputEl().on('keyup', this.filterValidation, this);
41227         }
41228         else if(this.validationEvent !== false){
41229             this.inputEl().on(this.validationEvent, this.validate, this, {buffer: this.validationDelay});
41230         }
41231         
41232         if(this.selectOnFocus){
41233             this.on("focus", this.preFocus, this);
41234             
41235         }
41236         if(this.maskRe || (this.vtype && this.disableKeyFilter !== true && (this.maskRe = Roo.form.VTypes[this.vtype+'Mask']))){
41237             this.inputEl().on("keypress", this.filterKeys, this);
41238         } else {
41239             this.inputEl().relayEvent('keypress', this);
41240         }
41241         
41242         var allowed = "0123456789";
41243         
41244         if(this.allowDecimals){
41245             allowed += this.decimalSeparator;
41246         }
41247         
41248         if(this.allowNegative){
41249             allowed += "-";
41250         }
41251         
41252         if(this.thousandsDelimiter) {
41253             allowed += ",";
41254         }
41255         
41256         this.stripCharsRe = new RegExp('[^'+allowed+']', 'gi');
41257         
41258         var keyPress = function(e){
41259             
41260             var k = e.getKey();
41261             
41262             var c = e.getCharCode();
41263             
41264             if(
41265                     (String.fromCharCode(c) == '.' || String.fromCharCode(c) == '-') &&
41266                     allowed.indexOf(String.fromCharCode(c)) === -1
41267             ){
41268                 e.stopEvent();
41269                 return;
41270             }
41271             
41272             if(!Roo.isIE && (e.isSpecialKey() || k == e.BACKSPACE || k == e.DELETE)){
41273                 return;
41274             }
41275             
41276             if(allowed.indexOf(String.fromCharCode(c)) === -1){
41277                 e.stopEvent();
41278             }
41279         };
41280         
41281         this.inputEl().on("keypress", keyPress, this);
41282         
41283     },
41284     
41285     onTriggerClick : function(e)
41286     {   
41287         if(this.disabled){
41288             return;
41289         }
41290         
41291         this.page = 0;
41292         this.loadNext = false;
41293         
41294         if(this.isExpanded()){
41295             this.collapse();
41296             return;
41297         }
41298         
41299         this.hasFocus = true;
41300         
41301         if(this.triggerAction == 'all') {
41302             this.doQuery(this.allQuery, true);
41303             return;
41304         }
41305         
41306         this.doQuery(this.getRawValue());
41307     },
41308     
41309     getCurrency : function()
41310     {   
41311         var v = this.currencyEl().getValue();
41312         
41313         return v;
41314     },
41315     
41316     restrictHeight : function()
41317     {
41318         this.list.alignTo(this.currencyEl(), this.listAlign);
41319         this.list.alignTo(this.currencyEl(), this.listAlign);
41320     },
41321     
41322     onViewClick : function(view, doFocus, el, e)
41323     {
41324         var index = this.view.getSelectedIndexes()[0];
41325         
41326         var r = this.store.getAt(index);
41327         
41328         if(r){
41329             this.onSelect(r, index);
41330         }
41331     },
41332     
41333     onSelect : function(record, index){
41334         
41335         if(this.fireEvent('beforeselect', this, record, index) !== false){
41336         
41337             this.setFromCurrencyData(index > -1 ? record.data : false);
41338             
41339             this.collapse();
41340             
41341             this.fireEvent('select', this, record, index);
41342         }
41343     },
41344     
41345     setFromCurrencyData : function(o)
41346     {
41347         var currency = '';
41348         
41349         this.lastCurrency = o;
41350         
41351         if (this.currencyField) {
41352             currency = !o || typeof(o[this.currencyField]) == 'undefined' ? '' : o[this.currencyField];
41353         } else {
41354             Roo.log('no  currencyField value set for '+ (this.name ? this.name : this.id));
41355         }
41356         
41357         this.lastSelectionText = currency;
41358         
41359         //setting default currency
41360         if(o[this.currencyField] * 1 == 0 && this.defaultCurrency) {
41361             this.setCurrency(this.defaultCurrency);
41362             return;
41363         }
41364         
41365         this.setCurrency(currency);
41366     },
41367     
41368     setFromData : function(o)
41369     {
41370         var c = {};
41371         
41372         c[this.currencyField] = !o || typeof(o[this.currencyName]) == 'undefined' ? '' : o[this.currencyName];
41373         
41374         this.setFromCurrencyData(c);
41375         
41376         var value = '';
41377         
41378         if (this.name) {
41379             value = !o || typeof(o[this.name]) == 'undefined' ? '' : o[this.name];
41380         } else {
41381             Roo.log('no value set for '+ (this.name ? this.name : this.id));
41382         }
41383         
41384         this.setValue(value);
41385         
41386     },
41387     
41388     setCurrency : function(v)
41389     {   
41390         this.currencyValue = v;
41391         
41392         if(this.rendered){
41393             this.currencyEl().dom.value = (v === null || v === undefined ? '' : v);
41394             this.validate();
41395         }
41396     },
41397     
41398     setValue : function(v)
41399     {
41400         v = String(this.fixPrecision(v)).replace(".", this.decimalSeparator);
41401         
41402         this.value = v;
41403         
41404         if(this.rendered){
41405             
41406             this.hiddenEl().dom.value = (v === null || v === undefined ? '' : v);
41407             
41408             this.inputEl().dom.value = (v == '') ? '' :
41409                 Roo.util.Format.number(v, this.decimalPrecision, this.thousandsDelimiter || '');
41410             
41411             if(!this.allowZero && v === '0') {
41412                 this.hiddenEl().dom.value = '';
41413                 this.inputEl().dom.value = '';
41414             }
41415             
41416             this.validate();
41417         }
41418     },
41419     
41420     getRawValue : function()
41421     {
41422         var v = this.inputEl().getValue();
41423         
41424         return v;
41425     },
41426     
41427     getValue : function()
41428     {
41429         return this.fixPrecision(this.parseValue(this.getRawValue()));
41430     },
41431     
41432     parseValue : function(value)
41433     {
41434         if(this.thousandsDelimiter) {
41435             value += "";
41436             r = new RegExp(",", "g");
41437             value = value.replace(r, "");
41438         }
41439         
41440         value = parseFloat(String(value).replace(this.decimalSeparator, "."));
41441         return isNaN(value) ? '' : value;
41442         
41443     },
41444     
41445     fixPrecision : function(value)
41446     {
41447         if(this.thousandsDelimiter) {
41448             value += "";
41449             r = new RegExp(",", "g");
41450             value = value.replace(r, "");
41451         }
41452         
41453         var nan = isNaN(value);
41454         
41455         if(!this.allowDecimals || this.decimalPrecision == -1 || nan || !value){
41456             return nan ? '' : value;
41457         }
41458         return parseFloat(value).toFixed(this.decimalPrecision);
41459     },
41460     
41461     decimalPrecisionFcn : function(v)
41462     {
41463         return Math.floor(v);
41464     },
41465     
41466     validateValue : function(value)
41467     {
41468         if(!Roo.bootstrap.MoneyField.superclass.validateValue.call(this, value)){
41469             return false;
41470         }
41471         
41472         var num = this.parseValue(value);
41473         
41474         if(isNaN(num)){
41475             this.markInvalid(String.format(this.nanText, value));
41476             return false;
41477         }
41478         
41479         if(num < this.minValue){
41480             this.markInvalid(String.format(this.minText, this.minValue));
41481             return false;
41482         }
41483         
41484         if(num > this.maxValue){
41485             this.markInvalid(String.format(this.maxText, this.maxValue));
41486             return false;
41487         }
41488         
41489         return true;
41490     },
41491     
41492     validate : function()
41493     {
41494         if(this.disabled || this.allowBlank){
41495             this.markValid();
41496             return true;
41497         }
41498         
41499         var currency = this.getCurrency();
41500         
41501         if(this.validateValue(this.getRawValue()) && currency.length){
41502             this.markValid();
41503             return true;
41504         }
41505         
41506         this.markInvalid();
41507         return false;
41508     },
41509     
41510     getName: function()
41511     {
41512         return this.name;
41513     },
41514     
41515     beforeBlur : function()
41516     {
41517         if(!this.castInt){
41518             return;
41519         }
41520         
41521         var v = this.parseValue(this.getRawValue());
41522         
41523         if(v || v == 0){
41524             this.setValue(v);
41525         }
41526     },
41527     
41528     onBlur : function()
41529     {
41530         this.beforeBlur();
41531         
41532         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
41533             //this.el.removeClass(this.focusClass);
41534         }
41535         
41536         this.hasFocus = false;
41537         
41538         if(this.validationEvent !== false && this.validateOnBlur && this.validationEvent != "blur"){
41539             this.validate();
41540         }
41541         
41542         var v = this.getValue();
41543         
41544         if(String(v) !== String(this.startValue)){
41545             this.fireEvent('change', this, v, this.startValue);
41546         }
41547         
41548         this.fireEvent("blur", this);
41549     },
41550     
41551     inputEl : function()
41552     {
41553         return this.el.select('.roo-money-amount-input', true).first();
41554     },
41555     
41556     currencyEl : function()
41557     {
41558         return this.el.select('.roo-money-currency-input', true).first();
41559     },
41560     
41561     hiddenEl : function()
41562     {
41563         return this.el.select('input.hidden-number-input',true).first();
41564     }
41565     
41566 });/**
41567  * @class Roo.bootstrap.BezierSignature
41568  * @extends Roo.bootstrap.Component
41569  * Bootstrap BezierSignature class
41570  * This script refer to:
41571  *    Title: Signature Pad
41572  *    Author: szimek
41573  *    Availability: https://github.com/szimek/signature_pad
41574  *
41575  * @constructor
41576  * Create a new BezierSignature
41577  * @param {Object} config The config object
41578  */
41579
41580 Roo.bootstrap.BezierSignature = function(config){
41581     Roo.bootstrap.BezierSignature.superclass.constructor.call(this, config);
41582     this.addEvents({
41583         "resize" : true
41584     });
41585 };
41586
41587 Roo.extend(Roo.bootstrap.BezierSignature, Roo.bootstrap.Component,
41588 {
41589      
41590     curve_data: [],
41591     
41592     is_empty: true,
41593     
41594     mouse_btn_down: true,
41595     
41596     /**
41597      * @cfg {int} canvas height
41598      */
41599     canvas_height: '200px',
41600     
41601     /**
41602      * @cfg {float|function} Radius of a single dot.
41603      */ 
41604     dot_size: false,
41605     
41606     /**
41607      * @cfg {float} Minimum width of a line. Defaults to 0.5.
41608      */
41609     min_width: 0.5,
41610     
41611     /**
41612      * @cfg {float} Maximum width of a line. Defaults to 2.5.
41613      */
41614     max_width: 2.5,
41615     
41616     /**
41617      * @cfg {integer} Draw the next point at most once per every x milliseconds. Set it to 0 to turn off throttling. Defaults to 16.
41618      */
41619     throttle: 16,
41620     
41621     /**
41622      * @cfg {integer} Add the next point only if the previous one is farther than x pixels. Defaults to 5.
41623      */
41624     min_distance: 5,
41625     
41626     /**
41627      * @cfg {string} Color used to clear the background. Can be any color format accepted by context.fillStyle. Defaults to "rgba(0,0,0,0)" (transparent black). Use a non-transparent color e.g. "rgb(255,255,255)" (opaque white) if you'd like to save signatures as JPEG images.
41628      */
41629     bg_color: 'rgba(0, 0, 0, 0)',
41630     
41631     /**
41632      * @cfg {string} Color used to draw the lines. Can be any color format accepted by context.fillStyle. Defaults to "black".
41633      */
41634     dot_color: 'black',
41635     
41636     /**
41637      * @cfg {float} Weight used to modify new velocity based on the previous velocity. Defaults to 0.7.
41638      */ 
41639     velocity_filter_weight: 0.7,
41640     
41641     /**
41642      * @cfg {function} Callback when stroke begin. 
41643      */
41644     onBegin: false,
41645     
41646     /**
41647      * @cfg {function} Callback when stroke end.
41648      */
41649     onEnd: false,
41650     
41651     getAutoCreate : function()
41652     {
41653         var cls = 'roo-signature column';
41654         
41655         if(this.cls){
41656             cls += ' ' + this.cls;
41657         }
41658         
41659         var col_sizes = [
41660             'lg',
41661             'md',
41662             'sm',
41663             'xs'
41664         ];
41665         
41666         for(var i = 0; i < col_sizes.length; i++) {
41667             if(this[col_sizes[i]]) {
41668                 cls += " col-"+col_sizes[i]+"-"+this[col_sizes[i]];
41669             }
41670         }
41671         
41672         var cfg = {
41673             tag: 'div',
41674             cls: cls,
41675             cn: [
41676                 {
41677                     tag: 'div',
41678                     cls: 'roo-signature-body',
41679                     cn: [
41680                         {
41681                             tag: 'canvas',
41682                             cls: 'roo-signature-body-canvas',
41683                             height: this.canvas_height,
41684                             width: this.canvas_width
41685                         }
41686                     ]
41687                 },
41688                 {
41689                     tag: 'input',
41690                     type: 'file',
41691                     style: 'display: none'
41692                 }
41693             ]
41694         };
41695         
41696         return cfg;
41697     },
41698     
41699     initEvents: function() 
41700     {
41701         Roo.bootstrap.BezierSignature.superclass.initEvents.call(this);
41702         
41703         var canvas = this.canvasEl();
41704         
41705         // mouse && touch event swapping...
41706         canvas.dom.style.touchAction = 'none';
41707         canvas.dom.style.msTouchAction = 'none';
41708         
41709         this.mouse_btn_down = false;
41710         canvas.on('mousedown', this._handleMouseDown, this);
41711         canvas.on('mousemove', this._handleMouseMove, this);
41712         Roo.select('html').first().on('mouseup', this._handleMouseUp, this);
41713         
41714         if (window.PointerEvent) {
41715             canvas.on('pointerdown', this._handleMouseDown, this);
41716             canvas.on('pointermove', this._handleMouseMove, this);
41717             Roo.select('html').first().on('pointerup', this._handleMouseUp, this);
41718         }
41719         
41720         if ('ontouchstart' in window) {
41721             canvas.on('touchstart', this._handleTouchStart, this);
41722             canvas.on('touchmove', this._handleTouchMove, this);
41723             canvas.on('touchend', this._handleTouchEnd, this);
41724         }
41725         
41726         Roo.EventManager.onWindowResize(this.resize, this, true);
41727         
41728         // file input event
41729         this.fileEl().on('change', this.uploadImage, this);
41730         
41731         this.clear();
41732         
41733         this.resize();
41734     },
41735     
41736     resize: function(){
41737         
41738         var canvas = this.canvasEl().dom;
41739         var ctx = this.canvasElCtx();
41740         var img_data = false;
41741         
41742         if(canvas.width > 0) {
41743             var img_data = ctx.getImageData(0, 0, canvas.width, canvas.height);
41744         }
41745         // setting canvas width will clean img data
41746         canvas.width = 0;
41747         
41748         var style = window.getComputedStyle ? 
41749             getComputedStyle(this.el.dom, null) : this.el.dom.currentStyle;
41750             
41751         var padding_left = parseInt(style.paddingLeft) || 0;
41752         var padding_right = parseInt(style.paddingRight) || 0;
41753         
41754         canvas.width = this.el.dom.clientWidth - padding_left - padding_right;
41755         
41756         if(img_data) {
41757             ctx.putImageData(img_data, 0, 0);
41758         }
41759     },
41760     
41761     _handleMouseDown: function(e)
41762     {
41763         if (e.browserEvent.which === 1) {
41764             this.mouse_btn_down = true;
41765             this.strokeBegin(e);
41766         }
41767     },
41768     
41769     _handleMouseMove: function (e)
41770     {
41771         if (this.mouse_btn_down) {
41772             this.strokeMoveUpdate(e);
41773         }
41774     },
41775     
41776     _handleMouseUp: function (e)
41777     {
41778         if (e.browserEvent.which === 1 && this.mouse_btn_down) {
41779             this.mouse_btn_down = false;
41780             this.strokeEnd(e);
41781         }
41782     },
41783     
41784     _handleTouchStart: function (e) {
41785         
41786         e.preventDefault();
41787         if (e.browserEvent.targetTouches.length === 1) {
41788             // var touch = e.browserEvent.changedTouches[0];
41789             // this.strokeBegin(touch);
41790             
41791              this.strokeBegin(e); // assume e catching the correct xy...
41792         }
41793     },
41794     
41795     _handleTouchMove: function (e) {
41796         e.preventDefault();
41797         // var touch = event.targetTouches[0];
41798         // _this._strokeMoveUpdate(touch);
41799         this.strokeMoveUpdate(e);
41800     },
41801     
41802     _handleTouchEnd: function (e) {
41803         var wasCanvasTouched = e.target === this.canvasEl().dom;
41804         if (wasCanvasTouched) {
41805             e.preventDefault();
41806             // var touch = event.changedTouches[0];
41807             // _this._strokeEnd(touch);
41808             this.strokeEnd(e);
41809         }
41810     },
41811     
41812     reset: function () {
41813         this._lastPoints = [];
41814         this._lastVelocity = 0;
41815         this._lastWidth = (this.min_width + this.max_width) / 2;
41816         this.canvasElCtx().fillStyle = this.dot_color;
41817     },
41818     
41819     strokeMoveUpdate: function(e)
41820     {
41821         this.strokeUpdate(e);
41822         
41823         if (this.throttle) {
41824             this.throttleStroke(this.strokeUpdate, this.throttle);
41825         }
41826         else {
41827             this.strokeUpdate(e);
41828         }
41829     },
41830     
41831     strokeBegin: function(e)
41832     {
41833         var newPointGroup = {
41834             color: this.dot_color,
41835             points: []
41836         };
41837         
41838         if (typeof this.onBegin === 'function') {
41839             this.onBegin(e);
41840         }
41841         
41842         this.curve_data.push(newPointGroup);
41843         this.reset();
41844         this.strokeUpdate(e);
41845     },
41846     
41847     strokeUpdate: function(e)
41848     {
41849         var rect = this.canvasEl().dom.getBoundingClientRect();
41850         var point = new this.Point(e.xy[0] - rect.left, e.xy[1] - rect.top, new Date().getTime());
41851         var lastPointGroup = this.curve_data[this.curve_data.length - 1];
41852         var lastPoints = lastPointGroup.points;
41853         var lastPoint = lastPoints.length > 0 && lastPoints[lastPoints.length - 1];
41854         var isLastPointTooClose = lastPoint
41855             ? point.distanceTo(lastPoint) <= this.min_distance
41856             : false;
41857         var color = lastPointGroup.color;
41858         if (!lastPoint || !(lastPoint && isLastPointTooClose)) {
41859             var curve = this.addPoint(point);
41860             if (!lastPoint) {
41861                 this.drawDot({color: color, point: point});
41862             }
41863             else if (curve) {
41864                 this.drawCurve({color: color, curve: curve});
41865             }
41866             lastPoints.push({
41867                 time: point.time,
41868                 x: point.x,
41869                 y: point.y
41870             });
41871         }
41872     },
41873     
41874     strokeEnd: function(e)
41875     {
41876         this.strokeUpdate(e);
41877         if (typeof this.onEnd === 'function') {
41878             this.onEnd(e);
41879         }
41880     },
41881     
41882     addPoint:  function (point) {
41883         var _lastPoints = this._lastPoints;
41884         _lastPoints.push(point);
41885         if (_lastPoints.length > 2) {
41886             if (_lastPoints.length === 3) {
41887                 _lastPoints.unshift(_lastPoints[0]);
41888             }
41889             var widths = this.calculateCurveWidths(_lastPoints[1], _lastPoints[2]);
41890             var curve = this.Bezier.fromPoints(_lastPoints, widths, this);
41891             _lastPoints.shift();
41892             return curve;
41893         }
41894         return null;
41895     },
41896     
41897     calculateCurveWidths: function (startPoint, endPoint) {
41898         var velocity = this.velocity_filter_weight * endPoint.velocityFrom(startPoint) +
41899             (1 - this.velocity_filter_weight) * this._lastVelocity;
41900
41901         var newWidth = Math.max(this.max_width / (velocity + 1), this.min_width);
41902         var widths = {
41903             end: newWidth,
41904             start: this._lastWidth
41905         };
41906         
41907         this._lastVelocity = velocity;
41908         this._lastWidth = newWidth;
41909         return widths;
41910     },
41911     
41912     drawDot: function (_a) {
41913         var color = _a.color, point = _a.point;
41914         var ctx = this.canvasElCtx();
41915         var width = typeof this.dot_size === 'function' ? this.dot_size() : this.dot_size;
41916         ctx.beginPath();
41917         this.drawCurveSegment(point.x, point.y, width);
41918         ctx.closePath();
41919         ctx.fillStyle = color;
41920         ctx.fill();
41921     },
41922     
41923     drawCurve: function (_a) {
41924         var color = _a.color, curve = _a.curve;
41925         var ctx = this.canvasElCtx();
41926         var widthDelta = curve.endWidth - curve.startWidth;
41927         var drawSteps = Math.floor(curve.length()) * 2;
41928         ctx.beginPath();
41929         ctx.fillStyle = color;
41930         for (var i = 0; i < drawSteps; i += 1) {
41931         var t = i / drawSteps;
41932         var tt = t * t;
41933         var ttt = tt * t;
41934         var u = 1 - t;
41935         var uu = u * u;
41936         var uuu = uu * u;
41937         var x = uuu * curve.startPoint.x;
41938         x += 3 * uu * t * curve.control1.x;
41939         x += 3 * u * tt * curve.control2.x;
41940         x += ttt * curve.endPoint.x;
41941         var y = uuu * curve.startPoint.y;
41942         y += 3 * uu * t * curve.control1.y;
41943         y += 3 * u * tt * curve.control2.y;
41944         y += ttt * curve.endPoint.y;
41945         var width = curve.startWidth + ttt * widthDelta;
41946         this.drawCurveSegment(x, y, width);
41947         }
41948         ctx.closePath();
41949         ctx.fill();
41950     },
41951     
41952     drawCurveSegment: function (x, y, width) {
41953         var ctx = this.canvasElCtx();
41954         ctx.moveTo(x, y);
41955         ctx.arc(x, y, width, 0, 2 * Math.PI, false);
41956         this.is_empty = false;
41957     },
41958     
41959     clear: function()
41960     {
41961         var ctx = this.canvasElCtx();
41962         var canvas = this.canvasEl().dom;
41963         ctx.fillStyle = this.bg_color;
41964         ctx.clearRect(0, 0, canvas.width, canvas.height);
41965         ctx.fillRect(0, 0, canvas.width, canvas.height);
41966         this.curve_data = [];
41967         this.reset();
41968         this.is_empty = true;
41969     },
41970     
41971     fileEl: function()
41972     {
41973         return  this.el.select('input',true).first();
41974     },
41975     
41976     canvasEl: function()
41977     {
41978         return this.el.select('canvas',true).first();
41979     },
41980     
41981     canvasElCtx: function()
41982     {
41983         return this.el.select('canvas',true).first().dom.getContext('2d');
41984     },
41985     
41986     getImage: function(type)
41987     {
41988         if(this.is_empty) {
41989             return false;
41990         }
41991         
41992         // encryption ?
41993         return this.canvasEl().dom.toDataURL('image/'+type, 1);
41994     },
41995     
41996     drawFromImage: function(img_src)
41997     {
41998         var img = new Image();
41999         
42000         img.onload = function(){
42001             this.canvasElCtx().drawImage(img, 0, 0);
42002         }.bind(this);
42003         
42004         img.src = img_src;
42005         
42006         this.is_empty = false;
42007     },
42008     
42009     selectImage: function()
42010     {
42011         this.fileEl().dom.click();
42012     },
42013     
42014     uploadImage: function(e)
42015     {
42016         var reader = new FileReader();
42017         
42018         reader.onload = function(e){
42019             var img = new Image();
42020             img.onload = function(){
42021                 this.reset();
42022                 this.canvasElCtx().drawImage(img, 0, 0);
42023             }.bind(this);
42024             img.src = e.target.result;
42025         }.bind(this);
42026         
42027         reader.readAsDataURL(e.target.files[0]);
42028     },
42029     
42030     // Bezier Point Constructor
42031     Point: (function () {
42032         function Point(x, y, time) {
42033             this.x = x;
42034             this.y = y;
42035             this.time = time || Date.now();
42036         }
42037         Point.prototype.distanceTo = function (start) {
42038             return Math.sqrt(Math.pow(this.x - start.x, 2) + Math.pow(this.y - start.y, 2));
42039         };
42040         Point.prototype.equals = function (other) {
42041             return this.x === other.x && this.y === other.y && this.time === other.time;
42042         };
42043         Point.prototype.velocityFrom = function (start) {
42044             return this.time !== start.time
42045             ? this.distanceTo(start) / (this.time - start.time)
42046             : 0;
42047         };
42048         return Point;
42049     }()),
42050     
42051     
42052     // Bezier Constructor
42053     Bezier: (function () {
42054         function Bezier(startPoint, control2, control1, endPoint, startWidth, endWidth) {
42055             this.startPoint = startPoint;
42056             this.control2 = control2;
42057             this.control1 = control1;
42058             this.endPoint = endPoint;
42059             this.startWidth = startWidth;
42060             this.endWidth = endWidth;
42061         }
42062         Bezier.fromPoints = function (points, widths, scope) {
42063             var c2 = this.calculateControlPoints(points[0], points[1], points[2], scope).c2;
42064             var c3 = this.calculateControlPoints(points[1], points[2], points[3], scope).c1;
42065             return new Bezier(points[1], c2, c3, points[2], widths.start, widths.end);
42066         };
42067         Bezier.calculateControlPoints = function (s1, s2, s3, scope) {
42068             var dx1 = s1.x - s2.x;
42069             var dy1 = s1.y - s2.y;
42070             var dx2 = s2.x - s3.x;
42071             var dy2 = s2.y - s3.y;
42072             var m1 = { x: (s1.x + s2.x) / 2.0, y: (s1.y + s2.y) / 2.0 };
42073             var m2 = { x: (s2.x + s3.x) / 2.0, y: (s2.y + s3.y) / 2.0 };
42074             var l1 = Math.sqrt(dx1 * dx1 + dy1 * dy1);
42075             var l2 = Math.sqrt(dx2 * dx2 + dy2 * dy2);
42076             var dxm = m1.x - m2.x;
42077             var dym = m1.y - m2.y;
42078             var k = l2 / (l1 + l2);
42079             var cm = { x: m2.x + dxm * k, y: m2.y + dym * k };
42080             var tx = s2.x - cm.x;
42081             var ty = s2.y - cm.y;
42082             return {
42083                 c1: new scope.Point(m1.x + tx, m1.y + ty),
42084                 c2: new scope.Point(m2.x + tx, m2.y + ty)
42085             };
42086         };
42087         Bezier.prototype.length = function () {
42088             var steps = 10;
42089             var length = 0;
42090             var px;
42091             var py;
42092             for (var i = 0; i <= steps; i += 1) {
42093                 var t = i / steps;
42094                 var cx = this.point(t, this.startPoint.x, this.control1.x, this.control2.x, this.endPoint.x);
42095                 var cy = this.point(t, this.startPoint.y, this.control1.y, this.control2.y, this.endPoint.y);
42096                 if (i > 0) {
42097                     var xdiff = cx - px;
42098                     var ydiff = cy - py;
42099                     length += Math.sqrt(xdiff * xdiff + ydiff * ydiff);
42100                 }
42101                 px = cx;
42102                 py = cy;
42103             }
42104             return length;
42105         };
42106         Bezier.prototype.point = function (t, start, c1, c2, end) {
42107             return (start * (1.0 - t) * (1.0 - t) * (1.0 - t))
42108             + (3.0 * c1 * (1.0 - t) * (1.0 - t) * t)
42109             + (3.0 * c2 * (1.0 - t) * t * t)
42110             + (end * t * t * t);
42111         };
42112         return Bezier;
42113     }()),
42114     
42115     throttleStroke: function(fn, wait) {
42116       if (wait === void 0) { wait = 250; }
42117       var previous = 0;
42118       var timeout = null;
42119       var result;
42120       var storedContext;
42121       var storedArgs;
42122       var later = function () {
42123           previous = Date.now();
42124           timeout = null;
42125           result = fn.apply(storedContext, storedArgs);
42126           if (!timeout) {
42127               storedContext = null;
42128               storedArgs = [];
42129           }
42130       };
42131       return function wrapper() {
42132           var args = [];
42133           for (var _i = 0; _i < arguments.length; _i++) {
42134               args[_i] = arguments[_i];
42135           }
42136           var now = Date.now();
42137           var remaining = wait - (now - previous);
42138           storedContext = this;
42139           storedArgs = args;
42140           if (remaining <= 0 || remaining > wait) {
42141               if (timeout) {
42142                   clearTimeout(timeout);
42143                   timeout = null;
42144               }
42145               previous = now;
42146               result = fn.apply(storedContext, storedArgs);
42147               if (!timeout) {
42148                   storedContext = null;
42149                   storedArgs = [];
42150               }
42151           }
42152           else if (!timeout) {
42153               timeout = window.setTimeout(later, remaining);
42154           }
42155           return result;
42156       };
42157   }
42158   
42159 });
42160
42161  
42162
42163