roojs-ui.js
[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 + ' hidden' + size + '-down';;
1076                 return;
1077             }
1078             cfg.cls += ' col-' + size + '-' + settings[size] + (
1079                 size == 'xs' ? (' col-' + settings[size] ) : '' // bs4 col-{num} replaces col-xs
1080             );
1081             
1082         });
1083         
1084         if (this.hidden) {
1085             cfg.cls += ' hidden';
1086         }
1087         
1088         if (this.alert && ["success","info","warning", "danger"].indexOf(this.alert) > -1) {
1089             cfg.cls +=' alert alert-' + this.alert;
1090         }
1091         
1092         
1093         if (this.html.length) {
1094             cfg.html = this.html;
1095         }
1096         if (this.fa) {
1097             var fasize = '';
1098             if (this.fasize > 1) {
1099                 fasize = ' fa-' + this.fasize + 'x';
1100             }
1101             cfg.html = '<i class="fa fa-'+this.fa + fasize + '"></i>' + (cfg.html || '');
1102             
1103             
1104         }
1105         if (this.icon) {
1106             cfg.html = '<i class="glyphicon glyphicon-'+this.icon + '"></i>' +  (cfg.html || '');
1107         }
1108         
1109         return cfg;
1110     }
1111    
1112 });
1113
1114  
1115
1116  /*
1117  * - LGPL
1118  *
1119  * page container.
1120  * 
1121  */
1122
1123
1124 /**
1125  * @class Roo.bootstrap.Container
1126  * @extends Roo.bootstrap.Component
1127  * Bootstrap Container class
1128  * @cfg {Boolean} jumbotron is it a jumbotron element
1129  * @cfg {String} html content of element
1130  * @cfg {String} well (lg|sm|md) a well, large, small or medium.
1131  * @cfg {String} panel (default|primary|success|info|warning|danger) render as panel  - type - primary/success.....
1132  * @cfg {String} header content of header (for panel)
1133  * @cfg {String} footer content of footer (for panel)
1134  * @cfg {String} sticky (footer|wrap|push) block to use as footer or body- needs css-bootstrap/sticky-footer.css
1135  * @cfg {String} tag (header|aside|section) type of HTML tag.
1136  * @cfg {String} alert (success|info|warning|danger) type alert (changes background / border...)
1137  * @cfg {String} fa font awesome icon
1138  * @cfg {String} icon (info-sign|check|...) glyphicon name
1139  * @cfg {Boolean} hidden (true|false) hide the element
1140  * @cfg {Boolean} expandable (true|false) default false
1141  * @cfg {Boolean} expanded (true|false) default true
1142  * @cfg {String} rheader contet on the right of header
1143  * @cfg {Boolean} clickable (true|false) default false
1144
1145  *     
1146  * @constructor
1147  * Create a new Container
1148  * @param {Object} config The config object
1149  */
1150
1151 Roo.bootstrap.Container = function(config){
1152     Roo.bootstrap.Container.superclass.constructor.call(this, config);
1153     
1154     this.addEvents({
1155         // raw events
1156          /**
1157          * @event expand
1158          * After the panel has been expand
1159          * 
1160          * @param {Roo.bootstrap.Container} this
1161          */
1162         "expand" : true,
1163         /**
1164          * @event collapse
1165          * After the panel has been collapsed
1166          * 
1167          * @param {Roo.bootstrap.Container} this
1168          */
1169         "collapse" : true,
1170         /**
1171          * @event click
1172          * When a element is chick
1173          * @param {Roo.bootstrap.Container} this
1174          * @param {Roo.EventObject} e
1175          */
1176         "click" : true
1177     });
1178 };
1179
1180 Roo.extend(Roo.bootstrap.Container, Roo.bootstrap.Component,  {
1181     
1182     jumbotron : false,
1183     well: '',
1184     panel : '',
1185     header: '',
1186     footer : '',
1187     sticky: '',
1188     tag : false,
1189     alert : false,
1190     fa: false,
1191     icon : false,
1192     expandable : false,
1193     rheader : '',
1194     expanded : true,
1195     clickable: false,
1196   
1197      
1198     getChildContainer : function() {
1199         
1200         if(!this.el){
1201             return false;
1202         }
1203         
1204         if (this.panel.length) {
1205             return this.el.select('.panel-body',true).first();
1206         }
1207         
1208         return this.el;
1209     },
1210     
1211     
1212     getAutoCreate : function(){
1213         
1214         var cfg = {
1215             tag : this.tag || 'div',
1216             html : '',
1217             cls : ''
1218         };
1219         if (this.jumbotron) {
1220             cfg.cls = 'jumbotron';
1221         }
1222         
1223         
1224         
1225         // - this is applied by the parent..
1226         //if (this.cls) {
1227         //    cfg.cls = this.cls + '';
1228         //}
1229         
1230         if (this.sticky.length) {
1231             
1232             var bd = Roo.get(document.body);
1233             if (!bd.hasClass('bootstrap-sticky')) {
1234                 bd.addClass('bootstrap-sticky');
1235                 Roo.select('html',true).setStyle('height', '100%');
1236             }
1237              
1238             cfg.cls += 'bootstrap-sticky-' + this.sticky;
1239         }
1240         
1241         
1242         if (this.well.length) {
1243             switch (this.well) {
1244                 case 'lg':
1245                 case 'sm':
1246                     cfg.cls +=' well well-' +this.well;
1247                     break;
1248                 default:
1249                     cfg.cls +=' well';
1250                     break;
1251             }
1252         }
1253         
1254         if (this.hidden) {
1255             cfg.cls += ' hidden';
1256         }
1257         
1258         
1259         if (this.alert && ["success","info","warning", "danger"].indexOf(this.alert) > -1) {
1260             cfg.cls +=' alert alert-' + this.alert;
1261         }
1262         
1263         var body = cfg;
1264         
1265         if (this.panel.length) {
1266             cfg.cls += ' panel panel-' + this.panel;
1267             cfg.cn = [];
1268             if (this.header.length) {
1269                 
1270                 var h = [];
1271                 
1272                 if(this.expandable){
1273                     
1274                     cfg.cls = cfg.cls + ' expandable';
1275                     
1276                     h.push({
1277                         tag: 'i',
1278                         cls: (this.expanded ? 'fa fa-minus' : 'fa fa-plus') 
1279                     });
1280                     
1281                 }
1282                 
1283                 h.push(
1284                     {
1285                         tag: 'span',
1286                         cls : 'panel-title',
1287                         html : (this.expandable ? '&nbsp;' : '') + this.header
1288                     },
1289                     {
1290                         tag: 'span',
1291                         cls: 'panel-header-right',
1292                         html: this.rheader
1293                     }
1294                 );
1295                 
1296                 cfg.cn.push({
1297                     cls : 'panel-heading',
1298                     style : this.expandable ? 'cursor: pointer' : '',
1299                     cn : h
1300                 });
1301                 
1302             }
1303             
1304             body = false;
1305             cfg.cn.push({
1306                 cls : 'panel-body' + (this.expanded ? '' : ' hide'),
1307                 html : this.html
1308             });
1309             
1310             
1311             if (this.footer.length) {
1312                 cfg.cn.push({
1313                     cls : 'panel-footer',
1314                     html : this.footer
1315                     
1316                 });
1317             }
1318             
1319         }
1320         
1321         if (body) {
1322             body.html = this.html || cfg.html;
1323             // prefix with the icons..
1324             if (this.fa) {
1325                 body.html = '<i class="fa fa-'+this.fa + '"></i>' + body.html ;
1326             }
1327             if (this.icon) {
1328                 body.html = '<i class="glyphicon glyphicon-'+this.icon + '"></i>' + body.html ;
1329             }
1330             
1331             
1332         }
1333         if ((!this.cls || !this.cls.length) && (!cfg.cls || !cfg.cls.length)) {
1334             cfg.cls =  'container';
1335         }
1336         
1337         return cfg;
1338     },
1339     
1340     initEvents: function() 
1341     {
1342         if(this.expandable){
1343             var headerEl = this.headerEl();
1344         
1345             if(headerEl){
1346                 headerEl.on('click', this.onToggleClick, this);
1347             }
1348         }
1349         
1350         if(this.clickable){
1351             this.el.on('click', this.onClick, this);
1352         }
1353         
1354     },
1355     
1356     onToggleClick : function()
1357     {
1358         var headerEl = this.headerEl();
1359         
1360         if(!headerEl){
1361             return;
1362         }
1363         
1364         if(this.expanded){
1365             this.collapse();
1366             return;
1367         }
1368         
1369         this.expand();
1370     },
1371     
1372     expand : function()
1373     {
1374         if(this.fireEvent('expand', this)) {
1375             
1376             this.expanded = true;
1377             
1378             //this.el.select('.panel-body',true).first().setVisibilityMode(Roo.Element.DISPLAY).show();
1379             
1380             this.el.select('.panel-body',true).first().removeClass('hide');
1381             
1382             var toggleEl = this.toggleEl();
1383
1384             if(!toggleEl){
1385                 return;
1386             }
1387
1388             toggleEl.removeClass(['fa-minus', 'fa-plus']).addClass(['fa-minus']);
1389         }
1390         
1391     },
1392     
1393     collapse : function()
1394     {
1395         if(this.fireEvent('collapse', this)) {
1396             
1397             this.expanded = false;
1398             
1399             //this.el.select('.panel-body',true).first().setVisibilityMode(Roo.Element.DISPLAY).hide();
1400             this.el.select('.panel-body',true).first().addClass('hide');
1401         
1402             var toggleEl = this.toggleEl();
1403
1404             if(!toggleEl){
1405                 return;
1406             }
1407
1408             toggleEl.removeClass(['fa-minus', 'fa-plus']).addClass(['fa-plus']);
1409         }
1410     },
1411     
1412     toggleEl : function()
1413     {
1414         if(!this.el || !this.panel.length || !this.header.length || !this.expandable){
1415             return;
1416         }
1417         
1418         return this.el.select('.panel-heading .fa',true).first();
1419     },
1420     
1421     headerEl : function()
1422     {
1423         if(!this.el || !this.panel.length || !this.header.length){
1424             return;
1425         }
1426         
1427         return this.el.select('.panel-heading',true).first()
1428     },
1429     
1430     bodyEl : function()
1431     {
1432         if(!this.el || !this.panel.length){
1433             return;
1434         }
1435         
1436         return this.el.select('.panel-body',true).first()
1437     },
1438     
1439     titleEl : function()
1440     {
1441         if(!this.el || !this.panel.length || !this.header.length){
1442             return;
1443         }
1444         
1445         return this.el.select('.panel-title',true).first();
1446     },
1447     
1448     setTitle : function(v)
1449     {
1450         var titleEl = this.titleEl();
1451         
1452         if(!titleEl){
1453             return;
1454         }
1455         
1456         titleEl.dom.innerHTML = v;
1457     },
1458     
1459     getTitle : function()
1460     {
1461         
1462         var titleEl = this.titleEl();
1463         
1464         if(!titleEl){
1465             return '';
1466         }
1467         
1468         return titleEl.dom.innerHTML;
1469     },
1470     
1471     setRightTitle : function(v)
1472     {
1473         var t = this.el.select('.panel-header-right',true).first();
1474         
1475         if(!t){
1476             return;
1477         }
1478         
1479         t.dom.innerHTML = v;
1480     },
1481     
1482     onClick : function(e)
1483     {
1484         e.preventDefault();
1485         
1486         this.fireEvent('click', this, e);
1487     }
1488 });
1489
1490  /*
1491  * - LGPL
1492  *
1493  * image
1494  * 
1495  */
1496
1497
1498 /**
1499  * @class Roo.bootstrap.Img
1500  * @extends Roo.bootstrap.Component
1501  * Bootstrap Img class
1502  * @cfg {Boolean} imgResponsive false | true
1503  * @cfg {String} border rounded | circle | thumbnail
1504  * @cfg {String} src image source
1505  * @cfg {String} alt image alternative text
1506  * @cfg {String} href a tag href
1507  * @cfg {String} target (_self|_blank|_parent|_top)target for a href.
1508  * @cfg {String} xsUrl xs image source
1509  * @cfg {String} smUrl sm image source
1510  * @cfg {String} mdUrl md image source
1511  * @cfg {String} lgUrl lg image source
1512  * 
1513  * @constructor
1514  * Create a new Input
1515  * @param {Object} config The config object
1516  */
1517
1518 Roo.bootstrap.Img = function(config){
1519     Roo.bootstrap.Img.superclass.constructor.call(this, config);
1520     
1521     this.addEvents({
1522         // img events
1523         /**
1524          * @event click
1525          * The img click event for the img.
1526          * @param {Roo.EventObject} e
1527          */
1528         "click" : true
1529     });
1530 };
1531
1532 Roo.extend(Roo.bootstrap.Img, Roo.bootstrap.Component,  {
1533     
1534     imgResponsive: true,
1535     border: '',
1536     src: 'about:blank',
1537     href: false,
1538     target: false,
1539     xsUrl: '',
1540     smUrl: '',
1541     mdUrl: '',
1542     lgUrl: '',
1543
1544     getAutoCreate : function()
1545     {   
1546         if(this.src || (!this.xsUrl && !this.smUrl && !this.mdUrl && !this.lgUrl)){
1547             return this.createSingleImg();
1548         }
1549         
1550         var cfg = {
1551             tag: 'div',
1552             cls: 'roo-image-responsive-group',
1553             cn: []
1554         };
1555         var _this = this;
1556         
1557         Roo.each(['xs', 'sm', 'md', 'lg'], function(size){
1558             
1559             if(!_this[size + 'Url']){
1560                 return;
1561             }
1562             
1563             var img = {
1564                 tag: 'img',
1565                 cls: (_this.imgResponsive) ? 'img-responsive' : '',
1566                 html: _this.html || cfg.html,
1567                 src: _this[size + 'Url']
1568             };
1569             
1570             img.cls += ' roo-image-responsive-' + size;
1571             
1572             var s = ['xs', 'sm', 'md', 'lg'];
1573             
1574             s.splice(s.indexOf(size), 1);
1575             
1576             Roo.each(s, function(ss){
1577                 img.cls += ' hidden-' + ss;
1578             });
1579             
1580             if (['rounded','circle','thumbnail'].indexOf(_this.border)>-1) {
1581                 cfg.cls += ' img-' + _this.border;
1582             }
1583             
1584             if(_this.alt){
1585                 cfg.alt = _this.alt;
1586             }
1587             
1588             if(_this.href){
1589                 var a = {
1590                     tag: 'a',
1591                     href: _this.href,
1592                     cn: [
1593                         img
1594                     ]
1595                 };
1596
1597                 if(this.target){
1598                     a.target = _this.target;
1599                 }
1600             }
1601             
1602             cfg.cn.push((_this.href) ? a : img);
1603             
1604         });
1605         
1606         return cfg;
1607     },
1608     
1609     createSingleImg : function()
1610     {
1611         var cfg = {
1612             tag: 'img',
1613             cls: (this.imgResponsive) ? 'img-responsive' : '',
1614             html : null,
1615             src : 'about:blank'  // just incase src get's set to undefined?!?
1616         };
1617         
1618         cfg.html = this.html || cfg.html;
1619         
1620         cfg.src = this.src || cfg.src;
1621         
1622         if (['rounded','circle','thumbnail'].indexOf(this.border)>-1) {
1623             cfg.cls += ' img-' + this.border;
1624         }
1625         
1626         if(this.alt){
1627             cfg.alt = this.alt;
1628         }
1629         
1630         if(this.href){
1631             var a = {
1632                 tag: 'a',
1633                 href: this.href,
1634                 cn: [
1635                     cfg
1636                 ]
1637             };
1638             
1639             if(this.target){
1640                 a.target = this.target;
1641             }
1642             
1643         }
1644         
1645         return (this.href) ? a : cfg;
1646     },
1647     
1648     initEvents: function() 
1649     {
1650         if(!this.href){
1651             this.el.on('click', this.onClick, this);
1652         }
1653         
1654     },
1655     
1656     onClick : function(e)
1657     {
1658         Roo.log('img onclick');
1659         this.fireEvent('click', this, e);
1660     },
1661     /**
1662      * Sets the url of the image - used to update it
1663      * @param {String} url the url of the image
1664      */
1665     
1666     setSrc : function(url)
1667     {
1668         this.src =  url;
1669         
1670         if(this.src || (!this.xsUrl && !this.smUrl && !this.mdUrl && !this.lgUrl)){
1671             this.el.dom.src =  url;
1672             return;
1673         }
1674         
1675         this.el.select('img', true).first().dom.src =  url;
1676     }
1677     
1678     
1679    
1680 });
1681
1682  /*
1683  * - LGPL
1684  *
1685  * image
1686  * 
1687  */
1688
1689
1690 /**
1691  * @class Roo.bootstrap.Link
1692  * @extends Roo.bootstrap.Component
1693  * Bootstrap Link Class
1694  * @cfg {String} alt image alternative text
1695  * @cfg {String} href a tag href
1696  * @cfg {String} target (_self|_blank|_parent|_top) target for a href.
1697  * @cfg {String} html the content of the link.
1698  * @cfg {String} anchor name for the anchor link
1699  * @cfg {String} fa - favicon
1700
1701  * @cfg {Boolean} preventDefault (true | false) default false
1702
1703  * 
1704  * @constructor
1705  * Create a new Input
1706  * @param {Object} config The config object
1707  */
1708
1709 Roo.bootstrap.Link = function(config){
1710     Roo.bootstrap.Link.superclass.constructor.call(this, config);
1711     
1712     this.addEvents({
1713         // img events
1714         /**
1715          * @event click
1716          * The img click event for the img.
1717          * @param {Roo.EventObject} e
1718          */
1719         "click" : true
1720     });
1721 };
1722
1723 Roo.extend(Roo.bootstrap.Link, Roo.bootstrap.Component,  {
1724     
1725     href: false,
1726     target: false,
1727     preventDefault: false,
1728     anchor : false,
1729     alt : false,
1730     fa: false,
1731
1732
1733     getAutoCreate : function()
1734     {
1735         var html = this.html || '';
1736         
1737         if (this.fa !== false) {
1738             html = '<i class="fa fa-' + this.fa + '"></i>';
1739         }
1740         var cfg = {
1741             tag: 'a'
1742         };
1743         // anchor's do not require html/href...
1744         if (this.anchor === false) {
1745             cfg.html = html;
1746             cfg.href = this.href || '#';
1747         } else {
1748             cfg.name = this.anchor;
1749             if (this.html !== false || this.fa !== false) {
1750                 cfg.html = html;
1751             }
1752             if (this.href !== false) {
1753                 cfg.href = this.href;
1754             }
1755         }
1756         
1757         if(this.alt !== false){
1758             cfg.alt = this.alt;
1759         }
1760         
1761         
1762         if(this.target !== false) {
1763             cfg.target = this.target;
1764         }
1765         
1766         return cfg;
1767     },
1768     
1769     initEvents: function() {
1770         
1771         if(!this.href || this.preventDefault){
1772             this.el.on('click', this.onClick, this);
1773         }
1774     },
1775     
1776     onClick : function(e)
1777     {
1778         if(this.preventDefault){
1779             e.preventDefault();
1780         }
1781         //Roo.log('img onclick');
1782         this.fireEvent('click', this, e);
1783     }
1784    
1785 });
1786
1787  /*
1788  * - LGPL
1789  *
1790  * header
1791  * 
1792  */
1793
1794 /**
1795  * @class Roo.bootstrap.Header
1796  * @extends Roo.bootstrap.Component
1797  * Bootstrap Header class
1798  * @cfg {String} html content of header
1799  * @cfg {Number} level (1|2|3|4|5|6) default 1
1800  * 
1801  * @constructor
1802  * Create a new Header
1803  * @param {Object} config The config object
1804  */
1805
1806
1807 Roo.bootstrap.Header  = function(config){
1808     Roo.bootstrap.Header.superclass.constructor.call(this, config);
1809 };
1810
1811 Roo.extend(Roo.bootstrap.Header, Roo.bootstrap.Component,  {
1812     
1813     //href : false,
1814     html : false,
1815     level : 1,
1816     
1817     
1818     
1819     getAutoCreate : function(){
1820         
1821         
1822         
1823         var cfg = {
1824             tag: 'h' + (1 *this.level),
1825             html: this.html || ''
1826         } ;
1827         
1828         return cfg;
1829     }
1830    
1831 });
1832
1833  
1834
1835  /*
1836  * Based on:
1837  * Ext JS Library 1.1.1
1838  * Copyright(c) 2006-2007, Ext JS, LLC.
1839  *
1840  * Originally Released Under LGPL - original licence link has changed is not relivant.
1841  *
1842  * Fork - LGPL
1843  * <script type="text/javascript">
1844  */
1845  
1846 /**
1847  * @class Roo.bootstrap.MenuMgr
1848  * Provides a common registry of all menu items on a page so that they can be easily accessed by id.
1849  * @singleton
1850  */
1851 Roo.bootstrap.MenuMgr = function(){
1852    var menus, active, groups = {}, attached = false, lastShow = new Date();
1853
1854    // private - called when first menu is created
1855    function init(){
1856        menus = {};
1857        active = new Roo.util.MixedCollection();
1858        Roo.get(document).addKeyListener(27, function(){
1859            if(active.length > 0){
1860                hideAll();
1861            }
1862        });
1863    }
1864
1865    // private
1866    function hideAll(){
1867        if(active && active.length > 0){
1868            var c = active.clone();
1869            c.each(function(m){
1870                m.hide();
1871            });
1872        }
1873    }
1874
1875    // private
1876    function onHide(m){
1877        active.remove(m);
1878        if(active.length < 1){
1879            Roo.get(document).un("mouseup", onMouseDown);
1880             
1881            attached = false;
1882        }
1883    }
1884
1885    // private
1886    function onShow(m){
1887        var last = active.last();
1888        lastShow = new Date();
1889        active.add(m);
1890        if(!attached){
1891           Roo.get(document).on("mouseup", onMouseDown);
1892            
1893            attached = true;
1894        }
1895        if(m.parentMenu){
1896           //m.getEl().setZIndex(parseInt(m.parentMenu.getEl().getStyle("z-index"), 10) + 3);
1897           m.parentMenu.activeChild = m;
1898        }else if(last && last.isVisible()){
1899           //m.getEl().setZIndex(parseInt(last.getEl().getStyle("z-index"), 10) + 3);
1900        }
1901    }
1902
1903    // private
1904    function onBeforeHide(m){
1905        if(m.activeChild){
1906            m.activeChild.hide();
1907        }
1908        if(m.autoHideTimer){
1909            clearTimeout(m.autoHideTimer);
1910            delete m.autoHideTimer;
1911        }
1912    }
1913
1914    // private
1915    function onBeforeShow(m){
1916        var pm = m.parentMenu;
1917        if(!pm && !m.allowOtherMenus){
1918            hideAll();
1919        }else if(pm && pm.activeChild && active != m){
1920            pm.activeChild.hide();
1921        }
1922    }
1923
1924    // private this should really trigger on mouseup..
1925    function onMouseDown(e){
1926         Roo.log("on Mouse Up");
1927         
1928         if(lastShow.getElapsed() > 50 && active.length > 0 && !e.getTarget(".dropdown-menu") && !e.getTarget('.user-menu')){
1929             Roo.log("MenuManager hideAll");
1930             hideAll();
1931             e.stopEvent();
1932         }
1933         
1934         
1935    }
1936
1937    // private
1938    function onBeforeCheck(mi, state){
1939        if(state){
1940            var g = groups[mi.group];
1941            for(var i = 0, l = g.length; i < l; i++){
1942                if(g[i] != mi){
1943                    g[i].setChecked(false);
1944                }
1945            }
1946        }
1947    }
1948
1949    return {
1950
1951        /**
1952         * Hides all menus that are currently visible
1953         */
1954        hideAll : function(){
1955             hideAll();  
1956        },
1957
1958        // private
1959        register : function(menu){
1960            if(!menus){
1961                init();
1962            }
1963            menus[menu.id] = menu;
1964            menu.on("beforehide", onBeforeHide);
1965            menu.on("hide", onHide);
1966            menu.on("beforeshow", onBeforeShow);
1967            menu.on("show", onShow);
1968            var g = menu.group;
1969            if(g && menu.events["checkchange"]){
1970                if(!groups[g]){
1971                    groups[g] = [];
1972                }
1973                groups[g].push(menu);
1974                menu.on("checkchange", onCheck);
1975            }
1976        },
1977
1978         /**
1979          * Returns a {@link Roo.menu.Menu} object
1980          * @param {String/Object} menu The string menu id, an existing menu object reference, or a Menu config that will
1981          * be used to generate and return a new Menu instance.
1982          */
1983        get : function(menu){
1984            if(typeof menu == "string"){ // menu id
1985                return menus[menu];
1986            }else if(menu.events){  // menu instance
1987                return menu;
1988            }
1989            /*else if(typeof menu.length == 'number'){ // array of menu items?
1990                return new Roo.bootstrap.Menu({items:menu});
1991            }else{ // otherwise, must be a config
1992                return new Roo.bootstrap.Menu(menu);
1993            }
1994            */
1995            return false;
1996        },
1997
1998        // private
1999        unregister : function(menu){
2000            delete menus[menu.id];
2001            menu.un("beforehide", onBeforeHide);
2002            menu.un("hide", onHide);
2003            menu.un("beforeshow", onBeforeShow);
2004            menu.un("show", onShow);
2005            var g = menu.group;
2006            if(g && menu.events["checkchange"]){
2007                groups[g].remove(menu);
2008                menu.un("checkchange", onCheck);
2009            }
2010        },
2011
2012        // private
2013        registerCheckable : function(menuItem){
2014            var g = menuItem.group;
2015            if(g){
2016                if(!groups[g]){
2017                    groups[g] = [];
2018                }
2019                groups[g].push(menuItem);
2020                menuItem.on("beforecheckchange", onBeforeCheck);
2021            }
2022        },
2023
2024        // private
2025        unregisterCheckable : function(menuItem){
2026            var g = menuItem.group;
2027            if(g){
2028                groups[g].remove(menuItem);
2029                menuItem.un("beforecheckchange", onBeforeCheck);
2030            }
2031        }
2032    };
2033 }();/*
2034  * - LGPL
2035  *
2036  * menu
2037  * 
2038  */
2039
2040 /**
2041  * @class Roo.bootstrap.Menu
2042  * @extends Roo.bootstrap.Component
2043  * Bootstrap Menu class - container for MenuItems
2044  * @cfg {String} type (dropdown|treeview|submenu) type of menu
2045  * @cfg {bool} hidden  if the menu should be hidden when rendered.
2046  * @cfg {bool} stopEvent (true|false)  Stop event after trigger press (default true)
2047  * @cfg {bool} isLink (true|false)  the menu has link disable auto expand and collaspe (default false)
2048  * 
2049  * @constructor
2050  * Create a new Menu
2051  * @param {Object} config The config object
2052  */
2053
2054
2055 Roo.bootstrap.Menu = function(config){
2056     Roo.bootstrap.Menu.superclass.constructor.call(this, config);
2057     if (this.registerMenu && this.type != 'treeview')  {
2058         Roo.bootstrap.MenuMgr.register(this);
2059     }
2060     
2061     
2062     this.addEvents({
2063         /**
2064          * @event beforeshow
2065          * Fires before this menu is displayed (return false to block)
2066          * @param {Roo.menu.Menu} this
2067          */
2068         beforeshow : true,
2069         /**
2070          * @event beforehide
2071          * Fires before this menu is hidden (return false to block)
2072          * @param {Roo.menu.Menu} this
2073          */
2074         beforehide : true,
2075         /**
2076          * @event show
2077          * Fires after this menu is displayed
2078          * @param {Roo.menu.Menu} this
2079          */
2080         show : true,
2081         /**
2082          * @event hide
2083          * Fires after this menu is hidden
2084          * @param {Roo.menu.Menu} this
2085          */
2086         hide : true,
2087         /**
2088          * @event click
2089          * Fires when this menu is clicked (or when the enter key is pressed while it is active)
2090          * @param {Roo.menu.Menu} this
2091          * @param {Roo.menu.Item} menuItem The menu item that was clicked
2092          * @param {Roo.EventObject} e
2093          */
2094         click : true,
2095         /**
2096          * @event mouseover
2097          * Fires when the mouse is hovering over this menu
2098          * @param {Roo.menu.Menu} this
2099          * @param {Roo.EventObject} e
2100          * @param {Roo.menu.Item} menuItem The menu item that was clicked
2101          */
2102         mouseover : true,
2103         /**
2104          * @event mouseout
2105          * Fires when the mouse exits this menu
2106          * @param {Roo.menu.Menu} this
2107          * @param {Roo.EventObject} e
2108          * @param {Roo.menu.Item} menuItem The menu item that was clicked
2109          */
2110         mouseout : true,
2111         /**
2112          * @event itemclick
2113          * Fires when a menu item contained in this menu is clicked
2114          * @param {Roo.menu.BaseItem} baseItem The BaseItem that was clicked
2115          * @param {Roo.EventObject} e
2116          */
2117         itemclick: true
2118     });
2119     this.menuitems = new Roo.util.MixedCollection(false, function(o) { return o.el.id; });
2120 };
2121
2122 Roo.extend(Roo.bootstrap.Menu, Roo.bootstrap.Component,  {
2123     
2124    /// html : false,
2125     //align : '',
2126     triggerEl : false,  // is this set by component builder? -- it should really be fetched from parent()???
2127     type: false,
2128     /**
2129      * @cfg {Boolean} registerMenu True (default) - means that clicking on screen etc. hides it.
2130      */
2131     registerMenu : true,
2132     
2133     menuItems :false, // stores the menu items..
2134     
2135     hidden:true,
2136         
2137     parentMenu : false,
2138     
2139     stopEvent : true,
2140     
2141     isLink : false,
2142     
2143     getChildContainer : function() {
2144         return this.el;  
2145     },
2146     
2147     getAutoCreate : function(){
2148          
2149         //if (['right'].indexOf(this.align)!==-1) {
2150         //    cfg.cn[1].cls += ' pull-right'
2151         //}
2152         
2153         
2154         var cfg = {
2155             tag : 'ul',
2156             cls : 'dropdown-menu' ,
2157             style : 'z-index:1000'
2158             
2159         };
2160         
2161         if (this.type === 'submenu') {
2162             cfg.cls = 'submenu active';
2163         }
2164         if (this.type === 'treeview') {
2165             cfg.cls = 'treeview-menu';
2166         }
2167         
2168         return cfg;
2169     },
2170     initEvents : function() {
2171         
2172        // Roo.log("ADD event");
2173        // Roo.log(this.triggerEl.dom);
2174         
2175         this.triggerEl.on('click', this.onTriggerClick, this);
2176         
2177         this.triggerEl.on(Roo.isTouch ? 'touchstart' : 'mouseup', this.onTriggerPress, this);
2178         
2179         
2180         if (this.triggerEl.hasClass('nav-item')) {
2181             // dropdown toggle on the 'a' in BS4?
2182             this.triggerEl.select('.nav-link',true).first().addClass('dropdown-toggle');
2183         } else {
2184             this.triggerEl.addClass('dropdown-toggle');
2185         }
2186         if (Roo.isTouch) {
2187             this.el.on('touchstart'  , this.onTouch, this);
2188         }
2189         this.el.on('click' , this.onClick, this);
2190
2191         this.el.on("mouseover", this.onMouseOver, this);
2192         this.el.on("mouseout", this.onMouseOut, this);
2193         
2194     },
2195     
2196     findTargetItem : function(e)
2197     {
2198         var t = e.getTarget(".dropdown-menu-item", this.el,  true);
2199         if(!t){
2200             return false;
2201         }
2202         //Roo.log(t);         Roo.log(t.id);
2203         if(t && t.id){
2204             //Roo.log(this.menuitems);
2205             return this.menuitems.get(t.id);
2206             
2207             //return this.items.get(t.menuItemId);
2208         }
2209         
2210         return false;
2211     },
2212     
2213     onTouch : function(e) 
2214     {
2215         Roo.log("menu.onTouch");
2216         //e.stopEvent(); this make the user popdown broken
2217         this.onClick(e);
2218     },
2219     
2220     onClick : function(e)
2221     {
2222         Roo.log("menu.onClick");
2223         
2224         var t = this.findTargetItem(e);
2225         if(!t || t.isContainer){
2226             return;
2227         }
2228         Roo.log(e);
2229         /*
2230         if (Roo.isTouch && e.type == 'touchstart' && t.menu  && !t.disabled) {
2231             if(t == this.activeItem && t.shouldDeactivate(e)){
2232                 this.activeItem.deactivate();
2233                 delete this.activeItem;
2234                 return;
2235             }
2236             if(t.canActivate){
2237                 this.setActiveItem(t, true);
2238             }
2239             return;
2240             
2241             
2242         }
2243         */
2244        
2245         Roo.log('pass click event');
2246         
2247         t.onClick(e);
2248         
2249         this.fireEvent("click", this, t, e);
2250         
2251         var _this = this;
2252         
2253         if(!t.href.length || t.href == '#'){
2254             (function() { _this.hide(); }).defer(100);
2255         }
2256         
2257     },
2258     
2259     onMouseOver : function(e){
2260         var t  = this.findTargetItem(e);
2261         //Roo.log(t);
2262         //if(t){
2263         //    if(t.canActivate && !t.disabled){
2264         //        this.setActiveItem(t, true);
2265         //    }
2266         //}
2267         
2268         this.fireEvent("mouseover", this, e, t);
2269     },
2270     isVisible : function(){
2271         return !this.hidden;
2272     },
2273     onMouseOut : function(e){
2274         var t  = this.findTargetItem(e);
2275         
2276         //if(t ){
2277         //    if(t == this.activeItem && t.shouldDeactivate(e)){
2278         //        this.activeItem.deactivate();
2279         //        delete this.activeItem;
2280         //    }
2281         //}
2282         this.fireEvent("mouseout", this, e, t);
2283     },
2284     
2285     
2286     /**
2287      * Displays this menu relative to another element
2288      * @param {String/HTMLElement/Roo.Element} element The element to align to
2289      * @param {String} position (optional) The {@link Roo.Element#alignTo} anchor position to use in aligning to
2290      * the element (defaults to this.defaultAlign)
2291      * @param {Roo.menu.Menu} parentMenu (optional) This menu's parent menu, if applicable (defaults to undefined)
2292      */
2293     show : function(el, pos, parentMenu)
2294     {
2295         if (false === this.fireEvent("beforeshow", this)) {
2296             Roo.log("show canceled");
2297             return;
2298         }
2299         this.parentMenu = parentMenu;
2300         if(!this.el){
2301             this.render();
2302         }
2303         
2304         this.showAt(this.el.getAlignToXY(el, pos || this.defaultAlign), parentMenu, false);
2305     },
2306      /**
2307      * Displays this menu at a specific xy position
2308      * @param {Array} xyPosition Contains X & Y [x, y] values for the position at which to show the menu (coordinates are page-based)
2309      * @param {Roo.menu.Menu} parentMenu (optional) This menu's parent menu, if applicable (defaults to undefined)
2310      */
2311     showAt : function(xy, parentMenu, /* private: */_e){
2312         this.parentMenu = parentMenu;
2313         if(!this.el){
2314             this.render();
2315         }
2316         if(_e !== false){
2317             this.fireEvent("beforeshow", this);
2318             //xy = this.el.adjustForConstraints(xy);
2319         }
2320         
2321         //this.el.show();
2322         this.hideMenuItems();
2323         this.hidden = false;
2324         this.triggerEl.addClass('open');
2325         this.el.addClass('show');
2326         
2327         // reassign x when hitting right
2328         if(this.el.getWidth() + xy[0] >= Roo.lib.Dom.getViewWidth()){
2329             xy[0] = xy[0] - this.el.getWidth() + this.triggerEl.getWidth();
2330         }
2331         
2332         // reassign y when hitting bottom
2333         if(this.el.getHeight() + xy[1] >= Roo.lib.Dom.getViewHeight()){
2334             xy[1] = xy[1] - this.el.getHeight() - this.triggerEl.getHeight();
2335         }
2336         
2337         // but the list may align on trigger left or trigger top... should it be a properity?
2338         
2339         if(this.el.getStyle('top') != 'auto' && this.el.getStyle('top').slice(-1) != "%"){
2340             this.el.setXY(xy);
2341         }
2342         
2343         this.focus();
2344         this.fireEvent("show", this);
2345     },
2346     
2347     focus : function(){
2348         return;
2349         if(!this.hidden){
2350             this.doFocus.defer(50, this);
2351         }
2352     },
2353
2354     doFocus : function(){
2355         if(!this.hidden){
2356             this.focusEl.focus();
2357         }
2358     },
2359
2360     /**
2361      * Hides this menu and optionally all parent menus
2362      * @param {Boolean} deep (optional) True to hide all parent menus recursively, if any (defaults to false)
2363      */
2364     hide : function(deep)
2365     {
2366         if (false === this.fireEvent("beforehide", this)) {
2367             Roo.log("hide canceled");
2368             return;
2369         }
2370         this.hideMenuItems();
2371         if(this.el && this.isVisible()){
2372            
2373             if(this.activeItem){
2374                 this.activeItem.deactivate();
2375                 this.activeItem = null;
2376             }
2377             this.triggerEl.removeClass('open');;
2378             this.el.removeClass('show');
2379             this.hidden = true;
2380             this.fireEvent("hide", this);
2381         }
2382         if(deep === true && this.parentMenu){
2383             this.parentMenu.hide(true);
2384         }
2385     },
2386     
2387     onTriggerClick : function(e)
2388     {
2389         Roo.log('trigger click');
2390         
2391         var target = e.getTarget();
2392         
2393         Roo.log(target.nodeName.toLowerCase());
2394         
2395         if(target.nodeName.toLowerCase() === 'i'){
2396             e.preventDefault();
2397         }
2398         
2399     },
2400     
2401     onTriggerPress  : function(e)
2402     {
2403         Roo.log('trigger press');
2404         //Roo.log(e.getTarget());
2405        // Roo.log(this.triggerEl.dom);
2406        
2407         // trigger only occurs on normal menu's -- if it's a treeview or dropdown... do not hide/show..
2408         var pel = Roo.get(e.getTarget());
2409         if (pel.findParent('.dropdown-menu') || pel.findParent('.treeview-menu') ) {
2410             Roo.log('is treeview or dropdown?');
2411             return;
2412         }
2413         
2414         if(e.getTarget().nodeName.toLowerCase() !== 'i' && this.isLink){
2415             return;
2416         }
2417         
2418         if (this.isVisible()) {
2419             Roo.log('hide');
2420             this.hide();
2421         } else {
2422             Roo.log('show');
2423             this.show(this.triggerEl, '?', false);
2424         }
2425         
2426         if(this.stopEvent || e.getTarget().nodeName.toLowerCase() === 'i'){
2427             e.stopEvent();
2428         }
2429         
2430     },
2431        
2432     
2433     hideMenuItems : function()
2434     {
2435         Roo.log("hide Menu Items");
2436         if (!this.el) { 
2437             return;
2438         }
2439         
2440         this.el.select('.open',true).each(function(aa) {
2441             
2442             aa.removeClass('open');
2443          
2444         });
2445     },
2446     addxtypeChild : function (tree, cntr) {
2447         var comp= Roo.bootstrap.Menu.superclass.addxtypeChild.call(this, tree, cntr);
2448           
2449         this.menuitems.add(comp);
2450         return comp;
2451
2452     },
2453     getEl : function()
2454     {
2455         Roo.log(this.el);
2456         return this.el;
2457     },
2458     
2459     clear : function()
2460     {
2461         this.getEl().dom.innerHTML = '';
2462         this.menuitems.clear();
2463     }
2464 });
2465
2466  
2467  /*
2468  * - LGPL
2469  *
2470  * menu item
2471  * 
2472  */
2473
2474
2475 /**
2476  * @class Roo.bootstrap.MenuItem
2477  * @extends Roo.bootstrap.Component
2478  * Bootstrap MenuItem class
2479  * @cfg {String} html the menu label
2480  * @cfg {String} href the link
2481  * @cfg {Boolean} preventDefault do not trigger A href on clicks (default false).
2482  * @cfg {Boolean} isContainer is it a container - just returns a drop down item..
2483  * @cfg {Boolean} active  used on sidebars to highlight active itesm
2484  * @cfg {String} fa favicon to show on left of menu item.
2485  * @cfg {Roo.bootsrap.Menu} menu the child menu.
2486  * 
2487  * 
2488  * @constructor
2489  * Create a new MenuItem
2490  * @param {Object} config The config object
2491  */
2492
2493
2494 Roo.bootstrap.MenuItem = function(config){
2495     Roo.bootstrap.MenuItem.superclass.constructor.call(this, config);
2496     this.addEvents({
2497         // raw events
2498         /**
2499          * @event click
2500          * The raw click event for the entire grid.
2501          * @param {Roo.bootstrap.MenuItem} this
2502          * @param {Roo.EventObject} e
2503          */
2504         "click" : true
2505     });
2506 };
2507
2508 Roo.extend(Roo.bootstrap.MenuItem, Roo.bootstrap.Component,  {
2509     
2510     href : false,
2511     html : false,
2512     preventDefault: false,
2513     isContainer : false,
2514     active : false,
2515     fa: false,
2516     
2517     getAutoCreate : function(){
2518         
2519         if(this.isContainer){
2520             return {
2521                 tag: 'li',
2522                 cls: 'dropdown-menu-item '
2523             };
2524         }
2525         var ctag = {
2526             tag: 'span',
2527             html: 'Link'
2528         };
2529         
2530         var anc = {
2531             tag : 'a',
2532             cls : 'dropdown-item',
2533             href : '#',
2534             cn : [  ]
2535         };
2536         
2537         if (this.fa !== false) {
2538             anc.cn.push({
2539                 tag : 'i',
2540                 cls : 'fa fa-' + this.fa
2541             });
2542         }
2543         
2544         anc.cn.push(ctag);
2545         
2546         
2547         var cfg= {
2548             tag: 'li',
2549             cls: 'dropdown-menu-item',
2550             cn: [ anc ]
2551         };
2552         if (this.parent().type == 'treeview') {
2553             cfg.cls = 'treeview-menu';
2554         }
2555         if (this.active) {
2556             cfg.cls += ' active';
2557         }
2558         
2559         
2560         
2561         anc.href = this.href || cfg.cn[0].href ;
2562         ctag.html = this.html || cfg.cn[0].html ;
2563         return cfg;
2564     },
2565     
2566     initEvents: function()
2567     {
2568         if (this.parent().type == 'treeview') {
2569             this.el.select('a').on('click', this.onClick, this);
2570         }
2571         
2572         if (this.menu) {
2573             this.menu.parentType = this.xtype;
2574             this.menu.triggerEl = this.el;
2575             this.menu = this.addxtype(Roo.apply({}, this.menu));
2576         }
2577         
2578     },
2579     onClick : function(e)
2580     {
2581         Roo.log('item on click ');
2582         
2583         if(this.preventDefault){
2584             e.preventDefault();
2585         }
2586         //this.parent().hideMenuItems();
2587         
2588         this.fireEvent('click', this, e);
2589     },
2590     getEl : function()
2591     {
2592         return this.el;
2593     } 
2594 });
2595
2596  
2597
2598  /*
2599  * - LGPL
2600  *
2601  * menu separator
2602  * 
2603  */
2604
2605
2606 /**
2607  * @class Roo.bootstrap.MenuSeparator
2608  * @extends Roo.bootstrap.Component
2609  * Bootstrap MenuSeparator class
2610  * 
2611  * @constructor
2612  * Create a new MenuItem
2613  * @param {Object} config The config object
2614  */
2615
2616
2617 Roo.bootstrap.MenuSeparator = function(config){
2618     Roo.bootstrap.MenuSeparator.superclass.constructor.call(this, config);
2619 };
2620
2621 Roo.extend(Roo.bootstrap.MenuSeparator, Roo.bootstrap.Component,  {
2622     
2623     getAutoCreate : function(){
2624         var cfg = {
2625             cls: 'divider',
2626             tag : 'li'
2627         };
2628         
2629         return cfg;
2630     }
2631    
2632 });
2633
2634  
2635
2636  
2637 /*
2638 * Licence: LGPL
2639 */
2640
2641 /**
2642  * @class Roo.bootstrap.Modal
2643  * @extends Roo.bootstrap.Component
2644  * Bootstrap Modal class
2645  * @cfg {String} title Title of dialog
2646  * @cfg {String} html - the body of the dialog (for simple ones) - you can also use template..
2647  * @cfg {Roo.Template} tmpl - a template with variables. to use it, add a handler in show:method  adn
2648  * @cfg {Boolean} specificTitle default false
2649  * @cfg {Array} buttons Array of buttons or standard button set..
2650  * @cfg {String} buttonPosition (left|right|center) default right (DEPRICATED) - use mr-auto on buttons to put them on the left
2651  * @cfg {Boolean} animate default true
2652  * @cfg {Boolean} allow_close default true
2653  * @cfg {Boolean} fitwindow default false
2654  * @cfg {String} size (sm|lg) default empty
2655  * @cfg {Number} max_width set the max width of modal
2656  *
2657  *
2658  * @constructor
2659  * Create a new Modal Dialog
2660  * @param {Object} config The config object
2661  */
2662
2663 Roo.bootstrap.Modal = function(config){
2664     Roo.bootstrap.Modal.superclass.constructor.call(this, config);
2665     this.addEvents({
2666         // raw events
2667         /**
2668          * @event btnclick
2669          * The raw btnclick event for the button
2670          * @param {Roo.EventObject} e
2671          */
2672         "btnclick" : true,
2673         /**
2674          * @event resize
2675          * Fire when dialog resize
2676          * @param {Roo.bootstrap.Modal} this
2677          * @param {Roo.EventObject} e
2678          */
2679         "resize" : true
2680     });
2681     this.buttons = this.buttons || [];
2682
2683     if (this.tmpl) {
2684         this.tmpl = Roo.factory(this.tmpl);
2685     }
2686
2687 };
2688
2689 Roo.extend(Roo.bootstrap.Modal, Roo.bootstrap.Component,  {
2690
2691     title : 'test dialog',
2692
2693     buttons : false,
2694
2695     // set on load...
2696
2697     html: false,
2698
2699     tmp: false,
2700
2701     specificTitle: false,
2702
2703     buttonPosition: 'right',
2704
2705     allow_close : true,
2706
2707     animate : true,
2708
2709     fitwindow: false,
2710     
2711      // private
2712     dialogEl: false,
2713     bodyEl:  false,
2714     footerEl:  false,
2715     titleEl:  false,
2716     closeEl:  false,
2717
2718     size: '',
2719     
2720     max_width: 0,
2721     
2722     max_height: 0,
2723     
2724     fit_content: false,
2725
2726     onRender : function(ct, position)
2727     {
2728         Roo.bootstrap.Component.superclass.onRender.call(this, ct, position);
2729
2730         if(!this.el){
2731             var cfg = Roo.apply({},  this.getAutoCreate());
2732             cfg.id = Roo.id();
2733             //if(!cfg.name){
2734             //    cfg.name = typeof(this.name) == 'undefined' ? this.id : this.name;
2735             //}
2736             //if (!cfg.name.length) {
2737             //    delete cfg.name;
2738            // }
2739             if (this.cls) {
2740                 cfg.cls += ' ' + this.cls;
2741             }
2742             if (this.style) {
2743                 cfg.style = this.style;
2744             }
2745             this.el = Roo.get(document.body).createChild(cfg, position);
2746         }
2747         //var type = this.el.dom.type;
2748
2749
2750         if(this.tabIndex !== undefined){
2751             this.el.dom.setAttribute('tabIndex', this.tabIndex);
2752         }
2753
2754         this.dialogEl = this.el.select('.modal-dialog',true).first();
2755         this.bodyEl = this.el.select('.modal-body',true).first();
2756         this.closeEl = this.el.select('.modal-header .close', true).first();
2757         this.headerEl = this.el.select('.modal-header',true).first();
2758         this.titleEl = this.el.select('.modal-title',true).first();
2759         this.footerEl = this.el.select('.modal-footer',true).first();
2760
2761         this.maskEl = Roo.DomHelper.append(document.body, {tag: "div", cls:"x-dlg-mask"}, true);
2762         
2763         //this.el.addClass("x-dlg-modal");
2764
2765         if (this.buttons.length) {
2766             Roo.each(this.buttons, function(bb) {
2767                 var b = Roo.apply({}, bb);
2768                 b.xns = b.xns || Roo.bootstrap;
2769                 b.xtype = b.xtype || 'Button';
2770                 if (typeof(b.listeners) == 'undefined') {
2771                     b.listeners = { click : this.onButtonClick.createDelegate(this)  };
2772                 }
2773
2774                 var btn = Roo.factory(b);
2775
2776                 btn.render(this.getButtonContainer());
2777
2778             },this);
2779         }
2780         // render the children.
2781         var nitems = [];
2782
2783         if(typeof(this.items) != 'undefined'){
2784             var items = this.items;
2785             delete this.items;
2786
2787             for(var i =0;i < items.length;i++) {
2788                 nitems.push(this.addxtype(Roo.apply({}, items[i])));
2789             }
2790         }
2791
2792         this.items = nitems;
2793
2794         // where are these used - they used to be body/close/footer
2795
2796
2797         this.initEvents();
2798         //this.el.addClass([this.fieldClass, this.cls]);
2799
2800     },
2801
2802     getAutoCreate : function()
2803     {
2804         var bdy = {
2805                 cls : 'modal-body',
2806                 html : this.html || ''
2807         };
2808
2809         var title = {
2810             tag: 'h4',
2811             cls : 'modal-title',
2812             html : this.title
2813         };
2814
2815         if(this.specificTitle){
2816             title = this.title;
2817
2818         }
2819
2820         var header = [];
2821         if (this.allow_close && Roo.bootstrap.version == 3) {
2822             header.push({
2823                 tag: 'button',
2824                 cls : 'close',
2825                 html : '&times'
2826             });
2827         }
2828
2829         header.push(title);
2830
2831         if (this.allow_close && Roo.bootstrap.version == 4) {
2832             header.push({
2833                 tag: 'button',
2834                 cls : 'close',
2835                 html : '&times'
2836             });
2837         }
2838         
2839         var size = '';
2840
2841         if(this.size.length){
2842             size = 'modal-' + this.size;
2843         }
2844         
2845         var footer = Roo.bootstrap.version == 3 ?
2846             {
2847                 cls : 'modal-footer',
2848                 cn : [
2849                     {
2850                         tag: 'div',
2851                         cls: 'btn-' + this.buttonPosition
2852                     }
2853                 ]
2854
2855             } :
2856             {  // BS4 uses mr-auto on left buttons....
2857                 cls : 'modal-footer'
2858             };
2859
2860             
2861
2862         
2863         
2864         var modal = {
2865             cls: "modal",
2866              cn : [
2867                 {
2868                     cls: "modal-dialog " + size,
2869                     cn : [
2870                         {
2871                             cls : "modal-content",
2872                             cn : [
2873                                 {
2874                                     cls : 'modal-header',
2875                                     cn : header
2876                                 },
2877                                 bdy,
2878                                 footer
2879                             ]
2880
2881                         }
2882                     ]
2883
2884                 }
2885             ]
2886         };
2887
2888         if(this.animate){
2889             modal.cls += ' fade';
2890         }
2891
2892         return modal;
2893
2894     },
2895     getChildContainer : function() {
2896
2897          return this.bodyEl;
2898
2899     },
2900     getButtonContainer : function() {
2901         
2902          return Roo.bootstrap.version == 4 ?
2903             this.el.select('.modal-footer',true).first()
2904             : this.el.select('.modal-footer div',true).first();
2905
2906     },
2907     initEvents : function()
2908     {
2909         if (this.allow_close) {
2910             this.closeEl.on('click', this.hide, this);
2911         }
2912         Roo.EventManager.onWindowResize(this.resize, this, true);
2913
2914
2915     },
2916   
2917
2918     resize : function()
2919     {
2920         this.maskEl.setSize(
2921             Roo.lib.Dom.getViewWidth(true),
2922             Roo.lib.Dom.getViewHeight(true)
2923         );
2924         
2925         if (this.fitwindow) {
2926             
2927            
2928             this.setSize(
2929                 this.width || Roo.lib.Dom.getViewportWidth(true) - 30,
2930                 this.height || Roo.lib.Dom.getViewportHeight(true) // catering margin-top 30 margin-bottom 30
2931             );
2932             return;
2933         }
2934         
2935         if(this.max_width !== 0) {
2936             
2937             var w = Math.min(this.max_width, Roo.lib.Dom.getViewportWidth(true) - 30);
2938             
2939             if(this.height) {
2940                 this.setSize(w, this.height);
2941                 return;
2942             }
2943             
2944             if(this.max_height) {
2945                 this.setSize(w,Math.min(
2946                     this.max_height,
2947                     Roo.lib.Dom.getViewportHeight(true) - 60
2948                 ));
2949                 
2950                 return;
2951             }
2952             
2953             if(!this.fit_content) {
2954                 this.setSize(w, Roo.lib.Dom.getViewportHeight(true) - 60);
2955                 return;
2956             }
2957             
2958             this.setSize(w, Math.min(
2959                 60 +
2960                 this.headerEl.getHeight() + 
2961                 this.footerEl.getHeight() + 
2962                 this.getChildHeight(this.bodyEl.dom.childNodes),
2963                 Roo.lib.Dom.getViewportHeight(true) - 60)
2964             );
2965         }
2966         
2967     },
2968
2969     setSize : function(w,h)
2970     {
2971         if (!w && !h) {
2972             return;
2973         }
2974         
2975         this.resizeTo(w,h);
2976     },
2977
2978     show : function() {
2979
2980         if (!this.rendered) {
2981             this.render();
2982         }
2983
2984         //this.el.setStyle('display', 'block');
2985         this.el.removeClass('hideing');
2986         this.el.dom.style.display='block';
2987         
2988         Roo.get(document.body).addClass('modal-open');
2989  
2990         if(this.animate){  // element has 'fade'  - so stuff happens after .3s ?- not sure why the delay?
2991             
2992             (function(){
2993                 this.el.addClass('show');
2994                 this.el.addClass('in');
2995             }).defer(50, this);
2996         }else{
2997             this.el.addClass('show');
2998             this.el.addClass('in');
2999         }
3000
3001         // not sure how we can show data in here..
3002         //if (this.tmpl) {
3003         //    this.getChildContainer().dom.innerHTML = this.tmpl.applyTemplate(this);
3004         //}
3005
3006         Roo.get(document.body).addClass("x-body-masked");
3007         
3008         this.maskEl.setSize(Roo.lib.Dom.getViewWidth(true),   Roo.lib.Dom.getViewHeight(true));
3009         this.maskEl.setStyle('z-index', Roo.bootstrap.Modal.zIndex++);
3010         this.maskEl.dom.style.display = 'block';
3011         this.maskEl.addClass('show');
3012         
3013         
3014         this.resize();
3015         
3016         this.fireEvent('show', this);
3017
3018         // set zindex here - otherwise it appears to be ignored...
3019         this.el.setStyle('z-index', Roo.bootstrap.Modal.zIndex++);
3020
3021         (function () {
3022             this.items.forEach( function(e) {
3023                 e.layout ? e.layout() : false;
3024
3025             });
3026         }).defer(100,this);
3027
3028     },
3029     hide : function()
3030     {
3031         if(this.fireEvent("beforehide", this) !== false){
3032             
3033             this.maskEl.removeClass('show');
3034             
3035             this.maskEl.dom.style.display = '';
3036             Roo.get(document.body).removeClass("x-body-masked");
3037             this.el.removeClass('in');
3038             this.el.select('.modal-dialog', true).first().setStyle('transform','');
3039
3040             if(this.animate){ // why
3041                 this.el.addClass('hideing');
3042                 this.el.removeClass('show');
3043                 (function(){
3044                     if (!this.el.hasClass('hideing')) {
3045                         return; // it's been shown again...
3046                     }
3047                     
3048                     this.el.dom.style.display='';
3049
3050                     Roo.get(document.body).removeClass('modal-open');
3051                     this.el.removeClass('hideing');
3052                 }).defer(150,this);
3053                 
3054             }else{
3055                 this.el.removeClass('show');
3056                 this.el.dom.style.display='';
3057                 Roo.get(document.body).removeClass('modal-open');
3058
3059             }
3060             this.fireEvent('hide', this);
3061         }
3062     },
3063     isVisible : function()
3064     {
3065         
3066         return this.el.hasClass('show') && !this.el.hasClass('hideing');
3067         
3068     },
3069
3070     addButton : function(str, cb)
3071     {
3072
3073
3074         var b = Roo.apply({}, { html : str } );
3075         b.xns = b.xns || Roo.bootstrap;
3076         b.xtype = b.xtype || 'Button';
3077         if (typeof(b.listeners) == 'undefined') {
3078             b.listeners = { click : cb.createDelegate(this)  };
3079         }
3080
3081         var btn = Roo.factory(b);
3082
3083         btn.render(this.getButtonContainer());
3084
3085         return btn;
3086
3087     },
3088
3089     setDefaultButton : function(btn)
3090     {
3091         //this.el.select('.modal-footer').()
3092     },
3093
3094     resizeTo: function(w,h)
3095     {
3096         this.dialogEl.setWidth(w);
3097         
3098         var diff = this.headerEl.getHeight() + this.footerEl.getHeight() + 60; // dialog margin-bottom: 30  
3099
3100         this.bodyEl.setHeight(h - diff);
3101         
3102         this.fireEvent('resize', this);
3103     },
3104     
3105     setContentSize  : function(w, h)
3106     {
3107
3108     },
3109     onButtonClick: function(btn,e)
3110     {
3111         //Roo.log([a,b,c]);
3112         this.fireEvent('btnclick', btn.name, e);
3113     },
3114      /**
3115      * Set the title of the Dialog
3116      * @param {String} str new Title
3117      */
3118     setTitle: function(str) {
3119         this.titleEl.dom.innerHTML = str;
3120     },
3121     /**
3122      * Set the body of the Dialog
3123      * @param {String} str new Title
3124      */
3125     setBody: function(str) {
3126         this.bodyEl.dom.innerHTML = str;
3127     },
3128     /**
3129      * Set the body of the Dialog using the template
3130      * @param {Obj} data - apply this data to the template and replace the body contents.
3131      */
3132     applyBody: function(obj)
3133     {
3134         if (!this.tmpl) {
3135             Roo.log("Error - using apply Body without a template");
3136             //code
3137         }
3138         this.tmpl.overwrite(this.bodyEl, obj);
3139     },
3140     
3141     getChildHeight : function(child_nodes)
3142     {
3143         if(
3144             !child_nodes ||
3145             child_nodes.length == 0
3146         ) {
3147             return;
3148         }
3149         
3150         var child_height = 0;
3151         
3152         for(var i = 0; i < child_nodes.length; i++) {
3153             
3154             /*
3155             * for modal with tabs...
3156             if(child_nodes[i].classList.contains('roo-layout-panel')) {
3157                 
3158                 var layout_childs = child_nodes[i].childNodes;
3159                 
3160                 for(var j = 0; j < layout_childs.length; j++) {
3161                     
3162                     if(layout_childs[j].classList.contains('roo-layout-panel-body')) {
3163                         
3164                         var layout_body_childs = layout_childs[j].childNodes;
3165                         
3166                         for(var k = 0; k < layout_body_childs.length; k++) {
3167                             
3168                             if(layout_body_childs[k].classList.contains('navbar')) {
3169                                 child_height += layout_body_childs[k].offsetHeight;
3170                                 continue;
3171                             }
3172                             
3173                             if(layout_body_childs[k].classList.contains('roo-layout-tabs-body')) {
3174                                 
3175                                 var layout_body_tab_childs = layout_body_childs[k].childNodes;
3176                                 
3177                                 for(var m = 0; m < layout_body_tab_childs.length; m++) {
3178                                     
3179                                     if(layout_body_tab_childs[m].classList.contains('roo-layout-active-content')) {
3180                                         child_height += this.getChildHeight(layout_body_tab_childs[m].childNodes);
3181                                         continue;
3182                                     }
3183                                     
3184                                 }
3185                                 
3186                             }
3187                             
3188                         }
3189                     }
3190                 }
3191                 continue;
3192             }
3193             */
3194             
3195             child_height += child_nodes[i].offsetHeight;
3196             // Roo.log(child_nodes[i].offsetHeight);
3197         }
3198         
3199         return child_height;
3200     }
3201
3202 });
3203
3204
3205 Roo.apply(Roo.bootstrap.Modal,  {
3206     /**
3207          * Button config that displays a single OK button
3208          * @type Object
3209          */
3210         OK :  [{
3211             name : 'ok',
3212             weight : 'primary',
3213             html : 'OK'
3214         }],
3215         /**
3216          * Button config that displays Yes and No buttons
3217          * @type Object
3218          */
3219         YESNO : [
3220             {
3221                 name  : 'no',
3222                 html : 'No'
3223             },
3224             {
3225                 name  :'yes',
3226                 weight : 'primary',
3227                 html : 'Yes'
3228             }
3229         ],
3230
3231         /**
3232          * Button config that displays OK and Cancel buttons
3233          * @type Object
3234          */
3235         OKCANCEL : [
3236             {
3237                name : 'cancel',
3238                 html : 'Cancel'
3239             },
3240             {
3241                 name : 'ok',
3242                 weight : 'primary',
3243                 html : 'OK'
3244             }
3245         ],
3246         /**
3247          * Button config that displays Yes, No and Cancel buttons
3248          * @type Object
3249          */
3250         YESNOCANCEL : [
3251             {
3252                 name : 'yes',
3253                 weight : 'primary',
3254                 html : 'Yes'
3255             },
3256             {
3257                 name : 'no',
3258                 html : 'No'
3259             },
3260             {
3261                 name : 'cancel',
3262                 html : 'Cancel'
3263             }
3264         ],
3265         
3266         zIndex : 10001
3267 });
3268 /*
3269  * - LGPL
3270  *
3271  * messagebox - can be used as a replace
3272  * 
3273  */
3274 /**
3275  * @class Roo.MessageBox
3276  * Utility class for generating different styles of message boxes.  The alias Roo.Msg can also be used.
3277  * Example usage:
3278  *<pre><code>
3279 // Basic alert:
3280 Roo.Msg.alert('Status', 'Changes saved successfully.');
3281
3282 // Prompt for user data:
3283 Roo.Msg.prompt('Name', 'Please enter your name:', function(btn, text){
3284     if (btn == 'ok'){
3285         // process text value...
3286     }
3287 });
3288
3289 // Show a dialog using config options:
3290 Roo.Msg.show({
3291    title:'Save Changes?',
3292    msg: 'Your are closing a tab that has unsaved changes. Would you like to save your changes?',
3293    buttons: Roo.Msg.YESNOCANCEL,
3294    fn: processResult,
3295    animEl: 'elId'
3296 });
3297 </code></pre>
3298  * @singleton
3299  */
3300 Roo.bootstrap.MessageBox = function(){
3301     var dlg, opt, mask, waitTimer;
3302     var bodyEl, msgEl, textboxEl, textareaEl, progressEl, pp;
3303     var buttons, activeTextEl, bwidth;
3304
3305     
3306     // private
3307     var handleButton = function(button){
3308         dlg.hide();
3309         Roo.callback(opt.fn, opt.scope||window, [button, activeTextEl.dom.value], 1);
3310     };
3311
3312     // private
3313     var handleHide = function(){
3314         if(opt && opt.cls){
3315             dlg.el.removeClass(opt.cls);
3316         }
3317         //if(waitTimer){
3318         //    Roo.TaskMgr.stop(waitTimer);
3319         //    waitTimer = null;
3320         //}
3321     };
3322
3323     // private
3324     var updateButtons = function(b){
3325         var width = 0;
3326         if(!b){
3327             buttons["ok"].hide();
3328             buttons["cancel"].hide();
3329             buttons["yes"].hide();
3330             buttons["no"].hide();
3331             dlg.footerEl.hide();
3332             
3333             return width;
3334         }
3335         dlg.footerEl.show();
3336         for(var k in buttons){
3337             if(typeof buttons[k] != "function"){
3338                 if(b[k]){
3339                     buttons[k].show();
3340                     buttons[k].setText(typeof b[k] == "string" ? b[k] : Roo.bootstrap.MessageBox.buttonText[k]);
3341                     width += buttons[k].el.getWidth()+15;
3342                 }else{
3343                     buttons[k].hide();
3344                 }
3345             }
3346         }
3347         return width;
3348     };
3349
3350     // private
3351     var handleEsc = function(d, k, e){
3352         if(opt && opt.closable !== false){
3353             dlg.hide();
3354         }
3355         if(e){
3356             e.stopEvent();
3357         }
3358     };
3359
3360     return {
3361         /**
3362          * Returns a reference to the underlying {@link Roo.BasicDialog} element
3363          * @return {Roo.BasicDialog} The BasicDialog element
3364          */
3365         getDialog : function(){
3366            if(!dlg){
3367                 dlg = new Roo.bootstrap.Modal( {
3368                     //draggable: true,
3369                     //resizable:false,
3370                     //constraintoviewport:false,
3371                     //fixedcenter:true,
3372                     //collapsible : false,
3373                     //shim:true,
3374                     //modal: true,
3375                 //    width: 'auto',
3376                   //  height:100,
3377                     //buttonAlign:"center",
3378                     closeClick : function(){
3379                         if(opt && opt.buttons && opt.buttons.no && !opt.buttons.cancel){
3380                             handleButton("no");
3381                         }else{
3382                             handleButton("cancel");
3383                         }
3384                     }
3385                 });
3386                 dlg.render();
3387                 dlg.on("hide", handleHide);
3388                 mask = dlg.mask;
3389                 //dlg.addKeyListener(27, handleEsc);
3390                 buttons = {};
3391                 this.buttons = buttons;
3392                 var bt = this.buttonText;
3393                 buttons["ok"] = dlg.addButton(bt["ok"], handleButton.createCallback("ok"));
3394                 buttons["yes"] = dlg.addButton(bt["yes"], handleButton.createCallback("yes"));
3395                 buttons["no"] = dlg.addButton(bt["no"], handleButton.createCallback("no"));
3396                 buttons["cancel"] = dlg.addButton(bt["cancel"], handleButton.createCallback("cancel"));
3397                 //Roo.log(buttons);
3398                 bodyEl = dlg.bodyEl.createChild({
3399
3400                     html:'<span class="roo-mb-text"></span><br /><input type="text" class="roo-mb-input" />' +
3401                         '<textarea class="roo-mb-textarea"></textarea>' +
3402                         '<div class="roo-mb-progress-wrap"><div class="roo-mb-progress"><div class="roo-mb-progress-bar">&#160;</div></div></div>'
3403                 });
3404                 msgEl = bodyEl.dom.firstChild;
3405                 textboxEl = Roo.get(bodyEl.dom.childNodes[2]);
3406                 textboxEl.enableDisplayMode();
3407                 textboxEl.addKeyListener([10,13], function(){
3408                     if(dlg.isVisible() && opt && opt.buttons){
3409                         if(opt.buttons.ok){
3410                             handleButton("ok");
3411                         }else if(opt.buttons.yes){
3412                             handleButton("yes");
3413                         }
3414                     }
3415                 });
3416                 textareaEl = Roo.get(bodyEl.dom.childNodes[3]);
3417                 textareaEl.enableDisplayMode();
3418                 progressEl = Roo.get(bodyEl.dom.childNodes[4]);
3419                 progressEl.enableDisplayMode();
3420                 
3421                 // This is supposed to be the progessElement.. but I think it's controlling the height of everything..
3422                 var pf = progressEl.dom.firstChild;
3423                 if (pf) {
3424                     pp = Roo.get(pf.firstChild);
3425                     pp.setHeight(pf.offsetHeight);
3426                 }
3427                 
3428             }
3429             return dlg;
3430         },
3431
3432         /**
3433          * Updates the message box body text
3434          * @param {String} text (optional) Replaces the message box element's innerHTML with the specified string (defaults to
3435          * the XHTML-compliant non-breaking space character '&amp;#160;')
3436          * @return {Roo.MessageBox} This message box
3437          */
3438         updateText : function(text)
3439         {
3440             if(!dlg.isVisible() && !opt.width){
3441                 dlg.dialogEl.setStyle({ 'max-width' : this.maxWidth});
3442                 // dlg.resizeTo(this.maxWidth, 100); // forcing the height breaks long alerts()
3443             }
3444             msgEl.innerHTML = text || '&#160;';
3445       
3446             var cw =  Math.max(msgEl.offsetWidth, msgEl.parentNode.scrollWidth);
3447             //Roo.log("guesed size: " + JSON.stringify([cw,msgEl.offsetWidth, msgEl.parentNode.scrollWidth]));
3448             var w = Math.max(
3449                     Math.min(opt.width || cw , this.maxWidth), 
3450                     Math.max(opt.minWidth || this.minWidth, bwidth)
3451             );
3452             if(opt.prompt){
3453                 activeTextEl.setWidth(w);
3454             }
3455             if(dlg.isVisible()){
3456                 dlg.fixedcenter = false;
3457             }
3458             // to big, make it scroll. = But as usual stupid IE does not support
3459             // !important..
3460             
3461             if ( bodyEl.getHeight() > (Roo.lib.Dom.getViewHeight() - 100)) {
3462                 bodyEl.setHeight ( Roo.lib.Dom.getViewHeight() - 100 );
3463                 bodyEl.dom.style.overflowY = 'auto' + ( Roo.isIE ? '' : ' !important');
3464             } else {
3465                 bodyEl.dom.style.height = '';
3466                 bodyEl.dom.style.overflowY = '';
3467             }
3468             if (cw > w) {
3469                 bodyEl.dom.style.get = 'auto' + ( Roo.isIE ? '' : ' !important');
3470             } else {
3471                 bodyEl.dom.style.overflowX = '';
3472             }
3473             
3474             dlg.setContentSize(w, bodyEl.getHeight());
3475             if(dlg.isVisible()){
3476                 dlg.fixedcenter = true;
3477             }
3478             return this;
3479         },
3480
3481         /**
3482          * Updates a progress-style message box's text and progress bar.  Only relevant on message boxes
3483          * initiated via {@link Roo.MessageBox#progress} or by calling {@link Roo.MessageBox#show} with progress: true.
3484          * @param {Number} value Any number between 0 and 1 (e.g., .5)
3485          * @param {String} text (optional) If defined, the message box's body text is replaced with the specified string (defaults to undefined)
3486          * @return {Roo.MessageBox} This message box
3487          */
3488         updateProgress : function(value, text){
3489             if(text){
3490                 this.updateText(text);
3491             }
3492             
3493             if (pp) { // weird bug on my firefox - for some reason this is not defined
3494                 pp.setWidth(Math.floor(value*progressEl.dom.firstChild.offsetWidth));
3495                 pp.setHeight(Math.floor(progressEl.dom.firstChild.offsetHeight));
3496             }
3497             return this;
3498         },        
3499
3500         /**
3501          * Returns true if the message box is currently displayed
3502          * @return {Boolean} True if the message box is visible, else false
3503          */
3504         isVisible : function(){
3505             return dlg && dlg.isVisible();  
3506         },
3507
3508         /**
3509          * Hides the message box if it is displayed
3510          */
3511         hide : function(){
3512             if(this.isVisible()){
3513                 dlg.hide();
3514             }  
3515         },
3516
3517         /**
3518          * Displays a new message box, or reinitializes an existing message box, based on the config options
3519          * passed in. All functions (e.g. prompt, alert, etc) on MessageBox call this function internally.
3520          * The following config object properties are supported:
3521          * <pre>
3522 Property    Type             Description
3523 ----------  ---------------  ------------------------------------------------------------------------------------
3524 animEl            String/Element   An id or Element from which the message box should animate as it opens and
3525                                    closes (defaults to undefined)
3526 buttons           Object/Boolean   A button config object (e.g., Roo.MessageBox.OKCANCEL or {ok:'Foo',
3527                                    cancel:'Bar'}), or false to not show any buttons (defaults to false)
3528 closable          Boolean          False to hide the top-right close button (defaults to true).  Note that
3529                                    progress and wait dialogs will ignore this property and always hide the
3530                                    close button as they can only be closed programmatically.
3531 cls               String           A custom CSS class to apply to the message box element
3532 defaultTextHeight Number           The default height in pixels of the message box's multiline textarea if
3533                                    displayed (defaults to 75)
3534 fn                Function         A callback function to execute after closing the dialog.  The arguments to the
3535                                    function will be btn (the name of the button that was clicked, if applicable,
3536                                    e.g. "ok"), and text (the value of the active text field, if applicable).
3537                                    Progress and wait dialogs will ignore this option since they do not respond to
3538                                    user actions and can only be closed programmatically, so any required function
3539                                    should be called by the same code after it closes the dialog.
3540 icon              String           A CSS class that provides a background image to be used as an icon for
3541                                    the dialog (e.g., Roo.MessageBox.WARNING or 'custom-class', defaults to '')
3542 maxWidth          Number           The maximum width in pixels of the message box (defaults to 600)
3543 minWidth          Number           The minimum width in pixels of the message box (defaults to 100)
3544 modal             Boolean          False to allow user interaction with the page while the message box is
3545                                    displayed (defaults to true)
3546 msg               String           A string that will replace the existing message box body text (defaults
3547                                    to the XHTML-compliant non-breaking space character '&#160;')
3548 multiline         Boolean          True to prompt the user to enter multi-line text (defaults to false)
3549 progress          Boolean          True to display a progress bar (defaults to false)
3550 progressText      String           The text to display inside the progress bar if progress = true (defaults to '')
3551 prompt            Boolean          True to prompt the user to enter single-line text (defaults to false)
3552 proxyDrag         Boolean          True to display a lightweight proxy while dragging (defaults to false)
3553 title             String           The title text
3554 value             String           The string value to set into the active textbox element if displayed
3555 wait              Boolean          True to display a progress bar (defaults to false)
3556 width             Number           The width of the dialog in pixels
3557 </pre>
3558          *
3559          * Example usage:
3560          * <pre><code>
3561 Roo.Msg.show({
3562    title: 'Address',
3563    msg: 'Please enter your address:',
3564    width: 300,
3565    buttons: Roo.MessageBox.OKCANCEL,
3566    multiline: true,
3567    fn: saveAddress,
3568    animEl: 'addAddressBtn'
3569 });
3570 </code></pre>
3571          * @param {Object} config Configuration options
3572          * @return {Roo.MessageBox} This message box
3573          */
3574         show : function(options)
3575         {
3576             
3577             // this causes nightmares if you show one dialog after another
3578             // especially on callbacks..
3579              
3580             if(this.isVisible()){
3581                 
3582                 this.hide();
3583                 Roo.log("[Roo.Messagebox] Show called while message displayed:" );
3584                 Roo.log("Old Dialog Message:" +  msgEl.innerHTML );
3585                 Roo.log("New Dialog Message:" +  options.msg )
3586                 //this.alert("ERROR", "Multiple dialogs where displayed at the same time");
3587                 //throw "Roo.MessageBox ERROR : Multiple dialogs where displayed at the same time";
3588                 
3589             }
3590             var d = this.getDialog();
3591             opt = options;
3592             d.setTitle(opt.title || "&#160;");
3593             d.closeEl.setDisplayed(opt.closable !== false);
3594             activeTextEl = textboxEl;
3595             opt.prompt = opt.prompt || (opt.multiline ? true : false);
3596             if(opt.prompt){
3597                 if(opt.multiline){
3598                     textboxEl.hide();
3599                     textareaEl.show();
3600                     textareaEl.setHeight(typeof opt.multiline == "number" ?
3601                         opt.multiline : this.defaultTextHeight);
3602                     activeTextEl = textareaEl;
3603                 }else{
3604                     textboxEl.show();
3605                     textareaEl.hide();
3606                 }
3607             }else{
3608                 textboxEl.hide();
3609                 textareaEl.hide();
3610             }
3611             progressEl.setDisplayed(opt.progress === true);
3612             if (opt.progress) {
3613                 d.animate = false; // do not animate progress, as it may not have finished animating before we close it..
3614             }
3615             this.updateProgress(0);
3616             activeTextEl.dom.value = opt.value || "";
3617             if(opt.prompt){
3618                 dlg.setDefaultButton(activeTextEl);
3619             }else{
3620                 var bs = opt.buttons;
3621                 var db = null;
3622                 if(bs && bs.ok){
3623                     db = buttons["ok"];
3624                 }else if(bs && bs.yes){
3625                     db = buttons["yes"];
3626                 }
3627                 dlg.setDefaultButton(db);
3628             }
3629             bwidth = updateButtons(opt.buttons);
3630             this.updateText(opt.msg);
3631             if(opt.cls){
3632                 d.el.addClass(opt.cls);
3633             }
3634             d.proxyDrag = opt.proxyDrag === true;
3635             d.modal = opt.modal !== false;
3636             d.mask = opt.modal !== false ? mask : false;
3637             if(!d.isVisible()){
3638                 // force it to the end of the z-index stack so it gets a cursor in FF
3639                 document.body.appendChild(dlg.el.dom);
3640                 d.animateTarget = null;
3641                 d.show(options.animEl);
3642             }
3643             return this;
3644         },
3645
3646         /**
3647          * Displays a message box with a progress bar.  This message box has no buttons and is not closeable by
3648          * the user.  You are responsible for updating the progress bar as needed via {@link Roo.MessageBox#updateProgress}
3649          * and closing the message box when the process is complete.
3650          * @param {String} title The title bar text
3651          * @param {String} msg The message box body text
3652          * @return {Roo.MessageBox} This message box
3653          */
3654         progress : function(title, msg){
3655             this.show({
3656                 title : title,
3657                 msg : msg,
3658                 buttons: false,
3659                 progress:true,
3660                 closable:false,
3661                 minWidth: this.minProgressWidth,
3662                 modal : true
3663             });
3664             return this;
3665         },
3666
3667         /**
3668          * Displays a standard read-only message box with an OK button (comparable to the basic JavaScript Window.alert).
3669          * If a callback function is passed it will be called after the user clicks the button, and the
3670          * id of the button that was clicked will be passed as the only parameter to the callback
3671          * (could also be the top-right close button).
3672          * @param {String} title The title bar text
3673          * @param {String} msg The message box body text
3674          * @param {Function} fn (optional) The callback function invoked after the message box is closed
3675          * @param {Object} scope (optional) The scope of the callback function
3676          * @return {Roo.MessageBox} This message box
3677          */
3678         alert : function(title, msg, fn, scope)
3679         {
3680             this.show({
3681                 title : title,
3682                 msg : msg,
3683                 buttons: this.OK,
3684                 fn: fn,
3685                 closable : false,
3686                 scope : scope,
3687                 modal : true
3688             });
3689             return this;
3690         },
3691
3692         /**
3693          * Displays a message box with an infinitely auto-updating progress bar.  This can be used to block user
3694          * interaction while waiting for a long-running process to complete that does not have defined intervals.
3695          * You are responsible for closing the message box when the process is complete.
3696          * @param {String} msg The message box body text
3697          * @param {String} title (optional) The title bar text
3698          * @return {Roo.MessageBox} This message box
3699          */
3700         wait : function(msg, title){
3701             this.show({
3702                 title : title,
3703                 msg : msg,
3704                 buttons: false,
3705                 closable:false,
3706                 progress:true,
3707                 modal:true,
3708                 width:300,
3709                 wait:true
3710             });
3711             waitTimer = Roo.TaskMgr.start({
3712                 run: function(i){
3713                     Roo.MessageBox.updateProgress(((((i+20)%20)+1)*5)*.01);
3714                 },
3715                 interval: 1000
3716             });
3717             return this;
3718         },
3719
3720         /**
3721          * Displays a confirmation message box with Yes and No buttons (comparable to JavaScript's Window.confirm).
3722          * If a callback function is passed it will be called after the user clicks either button, and the id of the
3723          * button that was clicked will be passed as the only parameter to the callback (could also be the top-right close button).
3724          * @param {String} title The title bar text
3725          * @param {String} msg The message box body text
3726          * @param {Function} fn (optional) The callback function invoked after the message box is closed
3727          * @param {Object} scope (optional) The scope of the callback function
3728          * @return {Roo.MessageBox} This message box
3729          */
3730         confirm : function(title, msg, fn, scope){
3731             this.show({
3732                 title : title,
3733                 msg : msg,
3734                 buttons: this.YESNO,
3735                 fn: fn,
3736                 scope : scope,
3737                 modal : true
3738             });
3739             return this;
3740         },
3741
3742         /**
3743          * Displays a message box with OK and Cancel buttons prompting the user to enter some text (comparable to
3744          * JavaScript's Window.prompt).  The prompt can be a single-line or multi-line textbox.  If a callback function
3745          * is passed it will be called after the user clicks either button, and the id of the button that was clicked
3746          * (could also be the top-right close button) and the text that was entered will be passed as the two
3747          * parameters to the callback.
3748          * @param {String} title The title bar text
3749          * @param {String} msg The message box body text
3750          * @param {Function} fn (optional) The callback function invoked after the message box is closed
3751          * @param {Object} scope (optional) The scope of the callback function
3752          * @param {Boolean/Number} multiline (optional) True to create a multiline textbox using the defaultTextHeight
3753          * property, or the height in pixels to create the textbox (defaults to false / single-line)
3754          * @return {Roo.MessageBox} This message box
3755          */
3756         prompt : function(title, msg, fn, scope, multiline){
3757             this.show({
3758                 title : title,
3759                 msg : msg,
3760                 buttons: this.OKCANCEL,
3761                 fn: fn,
3762                 minWidth:250,
3763                 scope : scope,
3764                 prompt:true,
3765                 multiline: multiline,
3766                 modal : true
3767             });
3768             return this;
3769         },
3770
3771         /**
3772          * Button config that displays a single OK button
3773          * @type Object
3774          */
3775         OK : {ok:true},
3776         /**
3777          * Button config that displays Yes and No buttons
3778          * @type Object
3779          */
3780         YESNO : {yes:true, no:true},
3781         /**
3782          * Button config that displays OK and Cancel buttons
3783          * @type Object
3784          */
3785         OKCANCEL : {ok:true, cancel:true},
3786         /**
3787          * Button config that displays Yes, No and Cancel buttons
3788          * @type Object
3789          */
3790         YESNOCANCEL : {yes:true, no:true, cancel:true},
3791
3792         /**
3793          * The default height in pixels of the message box's multiline textarea if displayed (defaults to 75)
3794          * @type Number
3795          */
3796         defaultTextHeight : 75,
3797         /**
3798          * The maximum width in pixels of the message box (defaults to 600)
3799          * @type Number
3800          */
3801         maxWidth : 600,
3802         /**
3803          * The minimum width in pixels of the message box (defaults to 100)
3804          * @type Number
3805          */
3806         minWidth : 100,
3807         /**
3808          * The minimum width in pixels of the message box if it is a progress-style dialog.  This is useful
3809          * for setting a different minimum width than text-only dialogs may need (defaults to 250)
3810          * @type Number
3811          */
3812         minProgressWidth : 250,
3813         /**
3814          * An object containing the default button text strings that can be overriden for localized language support.
3815          * Supported properties are: ok, cancel, yes and no.
3816          * Customize the default text like so: Roo.MessageBox.buttonText.yes = "S?";
3817          * @type Object
3818          */
3819         buttonText : {
3820             ok : "OK",
3821             cancel : "Cancel",
3822             yes : "Yes",
3823             no : "No"
3824         }
3825     };
3826 }();
3827
3828 /**
3829  * Shorthand for {@link Roo.MessageBox}
3830  */
3831 Roo.MessageBox = Roo.MessageBox || Roo.bootstrap.MessageBox;
3832 Roo.Msg = Roo.Msg || Roo.MessageBox;
3833 /*
3834  * - LGPL
3835  *
3836  * navbar
3837  * 
3838  */
3839
3840 /**
3841  * @class Roo.bootstrap.Navbar
3842  * @extends Roo.bootstrap.Component
3843  * Bootstrap Navbar class
3844
3845  * @constructor
3846  * Create a new Navbar
3847  * @param {Object} config The config object
3848  */
3849
3850
3851 Roo.bootstrap.Navbar = function(config){
3852     Roo.bootstrap.Navbar.superclass.constructor.call(this, config);
3853     this.addEvents({
3854         // raw events
3855         /**
3856          * @event beforetoggle
3857          * Fire before toggle the menu
3858          * @param {Roo.EventObject} e
3859          */
3860         "beforetoggle" : true
3861     });
3862 };
3863
3864 Roo.extend(Roo.bootstrap.Navbar, Roo.bootstrap.Component,  {
3865     
3866     
3867    
3868     // private
3869     navItems : false,
3870     loadMask : false,
3871     
3872     
3873     getAutoCreate : function(){
3874         
3875         
3876         throw { message : "nav bar is now a abstract base class - use NavSimplebar / NavHeaderbar / NavSidebar etc..."};
3877         
3878     },
3879     
3880     initEvents :function ()
3881     {
3882         //Roo.log(this.el.select('.navbar-toggle',true));
3883         this.el.select('.navbar-toggle',true).on('click', this.onToggle , this);
3884         
3885         var mark = {
3886             tag: "div",
3887             cls:"x-dlg-mask"
3888         };
3889         
3890         this.maskEl = Roo.DomHelper.append(this.el, mark, true);
3891         
3892         var size = this.el.getSize();
3893         this.maskEl.setSize(size.width, size.height);
3894         this.maskEl.enableDisplayMode("block");
3895         this.maskEl.hide();
3896         
3897         if(this.loadMask){
3898             this.maskEl.show();
3899         }
3900     },
3901     
3902     
3903     getChildContainer : function()
3904     {
3905         if (this.el && this.el.select('.collapse').getCount()) {
3906             return this.el.select('.collapse',true).first();
3907         }
3908         
3909         return this.el;
3910     },
3911     
3912     mask : function()
3913     {
3914         this.maskEl.show();
3915     },
3916     
3917     unmask : function()
3918     {
3919         this.maskEl.hide();
3920     },
3921     onToggle : function()
3922     {
3923         
3924         if(this.fireEvent('beforetoggle', this) === false){
3925             return;
3926         }
3927         var ce = this.el.select('.navbar-collapse',true).first();
3928       
3929         if (!ce.hasClass('show')) {
3930            this.expand();
3931         } else {
3932             this.collapse();
3933         }
3934         
3935         
3936     
3937     },
3938     /**
3939      * Expand the navbar pulldown 
3940      */
3941     expand : function ()
3942     {
3943        
3944         var ce = this.el.select('.navbar-collapse',true).first();
3945         if (ce.hasClass('collapsing')) {
3946             return;
3947         }
3948         ce.dom.style.height = '';
3949                // show it...
3950         ce.addClass('in'); // old...
3951         ce.removeClass('collapse');
3952         ce.addClass('show');
3953         var h = ce.getHeight();
3954         Roo.log(h);
3955         ce.removeClass('show');
3956         // at this point we should be able to see it..
3957         ce.addClass('collapsing');
3958         
3959         ce.setHeight(0); // resize it ...
3960         ce.on('transitionend', function() {
3961             //Roo.log('done transition');
3962             ce.removeClass('collapsing');
3963             ce.addClass('show');
3964             ce.removeClass('collapse');
3965
3966             ce.dom.style.height = '';
3967         }, this, { single: true} );
3968         ce.setHeight(h);
3969         ce.dom.scrollTop = 0;
3970     },
3971     /**
3972      * Collapse the navbar pulldown 
3973      */
3974     collapse : function()
3975     {
3976          var ce = this.el.select('.navbar-collapse',true).first();
3977        
3978         if (ce.hasClass('collapsing') || ce.hasClass('collapse') ) {
3979             // it's collapsed or collapsing..
3980             return;
3981         }
3982         ce.removeClass('in'); // old...
3983         ce.setHeight(ce.getHeight());
3984         ce.removeClass('show');
3985         ce.addClass('collapsing');
3986         
3987         ce.on('transitionend', function() {
3988             ce.dom.style.height = '';
3989             ce.removeClass('collapsing');
3990             ce.addClass('collapse');
3991         }, this, { single: true} );
3992         ce.setHeight(0);
3993     }
3994     
3995     
3996     
3997 });
3998
3999
4000
4001  
4002
4003  /*
4004  * - LGPL
4005  *
4006  * navbar
4007  * 
4008  */
4009
4010 /**
4011  * @class Roo.bootstrap.NavSimplebar
4012  * @extends Roo.bootstrap.Navbar
4013  * Bootstrap Sidebar class
4014  *
4015  * @cfg {Boolean} inverse is inverted color
4016  * 
4017  * @cfg {String} type (nav | pills | tabs)
4018  * @cfg {Boolean} arrangement stacked | justified
4019  * @cfg {String} align (left | right) alignment
4020  * 
4021  * @cfg {Boolean} main (true|false) main nav bar? default false
4022  * @cfg {Boolean} loadMask (true|false) loadMask on the bar
4023  * 
4024  * @cfg {String} tag (header|footer|nav|div) default is nav 
4025
4026  * @cfg {String} weight (light|primary|secondary|success|danger|warning|info|dark|white) default is light.
4027  * 
4028  * 
4029  * @constructor
4030  * Create a new Sidebar
4031  * @param {Object} config The config object
4032  */
4033
4034
4035 Roo.bootstrap.NavSimplebar = function(config){
4036     Roo.bootstrap.NavSimplebar.superclass.constructor.call(this, config);
4037 };
4038
4039 Roo.extend(Roo.bootstrap.NavSimplebar, Roo.bootstrap.Navbar,  {
4040     
4041     inverse: false,
4042     
4043     type: false,
4044     arrangement: '',
4045     align : false,
4046     
4047     weight : 'light',
4048     
4049     main : false,
4050     
4051     
4052     tag : false,
4053     
4054     
4055     getAutoCreate : function(){
4056         
4057         
4058         var cfg = {
4059             tag : this.tag || 'div',
4060             cls : 'navbar roo-navbar-simple' //navbar-expand-lg ??
4061         };
4062         if (['light','white'].indexOf(this.weight) > -1) {
4063             cfg.cls += ['light','white'].indexOf(this.weight) > -1 ? ' navbar-light' : ' navbar-dark';
4064         }
4065         cfg.cls += ' bg-' + this.weight;
4066         
4067         if (this.inverse) {
4068             cfg.cls += ' navbar-inverse';
4069             
4070         }
4071         
4072         // i'm not actually sure these are really used - normally we add a navGroup to a navbar
4073         
4074         if (Roo.bootstrap.version == 4 && this.xtype == 'NavSimplebar') {
4075             return cfg;
4076         }
4077         
4078         
4079     
4080         
4081         cfg.cn = [
4082             {
4083                 cls: 'nav nav-' + this.xtype,
4084                 tag : 'ul'
4085             }
4086         ];
4087         
4088          
4089         this.type = this.type || 'nav';
4090         if (['tabs','pills'].indexOf(this.type) != -1) {
4091             cfg.cn[0].cls += ' nav-' + this.type
4092         
4093         
4094         } else {
4095             if (this.type!=='nav') {
4096                 Roo.log('nav type must be nav/tabs/pills')
4097             }
4098             cfg.cn[0].cls += ' navbar-nav'
4099         }
4100         
4101         
4102         
4103         
4104         if (['stacked','justified'].indexOf(this.arrangement) != -1) {
4105             cfg.cn[0].cls += ' nav-' + this.arrangement;
4106         }
4107         
4108         
4109         if (this.align === 'right') {
4110             cfg.cn[0].cls += ' navbar-right';
4111         }
4112         
4113         
4114         
4115         
4116         return cfg;
4117     
4118         
4119     }
4120     
4121     
4122     
4123 });
4124
4125
4126
4127  
4128
4129  
4130        /*
4131  * - LGPL
4132  *
4133  * navbar
4134  * navbar-fixed-top
4135  * navbar-expand-md  fixed-top 
4136  */
4137
4138 /**
4139  * @class Roo.bootstrap.NavHeaderbar
4140  * @extends Roo.bootstrap.NavSimplebar
4141  * Bootstrap Sidebar class
4142  *
4143  * @cfg {String} brand what is brand
4144  * @cfg {String} position (fixed-top|fixed-bottom|static-top) position
4145  * @cfg {String} brand_href href of the brand
4146  * @cfg {Boolean} srButton generate the (screen reader / mobile) sr-only button   default true
4147  * @cfg {Boolean} autohide a top nav bar header that hides on scroll.
4148  * @cfg {Boolean} desktopCenter should the header be centered on desktop using a container class
4149  * @cfg {Roo.bootstrap.Row} mobilerow - a row to display on mobile only..
4150  * 
4151  * @constructor
4152  * Create a new Sidebar
4153  * @param {Object} config The config object
4154  */
4155
4156
4157 Roo.bootstrap.NavHeaderbar = function(config){
4158     Roo.bootstrap.NavHeaderbar.superclass.constructor.call(this, config);
4159       
4160 };
4161
4162 Roo.extend(Roo.bootstrap.NavHeaderbar, Roo.bootstrap.NavSimplebar,  {
4163     
4164     position: '',
4165     brand: '',
4166     brand_href: false,
4167     srButton : true,
4168     autohide : false,
4169     desktopCenter : false,
4170    
4171     
4172     getAutoCreate : function(){
4173         
4174         var   cfg = {
4175             tag: this.nav || 'nav',
4176             cls: 'navbar navbar-expand-md',
4177             role: 'navigation',
4178             cn: []
4179         };
4180         
4181         var cn = cfg.cn;
4182         if (this.desktopCenter) {
4183             cn.push({cls : 'container', cn : []});
4184             cn = cn[0].cn;
4185         }
4186         
4187         if(this.srButton){
4188             var btn = {
4189                 tag: 'button',
4190                 type: 'button',
4191                 cls: 'navbar-toggle navbar-toggler',
4192                 'data-toggle': 'collapse',
4193                 cn: [
4194                     {
4195                         tag: 'span',
4196                         cls: 'sr-only',
4197                         html: 'Toggle navigation'
4198                     },
4199                     {
4200                         tag: 'span',
4201                         cls: 'icon-bar navbar-toggler-icon'
4202                     },
4203                     {
4204                         tag: 'span',
4205                         cls: 'icon-bar'
4206                     },
4207                     {
4208                         tag: 'span',
4209                         cls: 'icon-bar'
4210                     }
4211                 ]
4212             };
4213             
4214             cn.push( Roo.bootstrap.version == 4 ? btn : {
4215                 tag: 'div',
4216                 cls: 'navbar-header',
4217                 cn: [
4218                     btn
4219                 ]
4220             });
4221         }
4222         
4223         cn.push({
4224             tag: 'div',
4225             cls: Roo.bootstrap.version == 4  ? 'nav flex-row roo-navbar-collapse' : 'collapse navbar-collapse roo-navbar-collapse',
4226             cn : []
4227         });
4228         
4229         cfg.cls += this.inverse ? ' navbar-inverse navbar-dark bg-dark' : ' navbar-default';
4230         
4231         if (['light','white'].indexOf(this.weight) > -1) {
4232             cfg.cls += ['light','white'].indexOf(this.weight) > -1 ? ' navbar-light' : ' navbar-dark';
4233         }
4234         cfg.cls += ' bg-' + this.weight;
4235         
4236         
4237         if (['fixed-top','fixed-bottom','static-top'].indexOf(this.position)>-1) {
4238             cfg.cls += ' navbar-' + this.position + ' ' + this.position ;
4239             
4240             // tag can override this..
4241             
4242             cfg.tag = this.tag || (this.position  == 'fixed-bottom' ? 'footer' : 'header');
4243         }
4244         
4245         if (this.brand !== '') {
4246             var cp =  Roo.bootstrap.version == 4 ? cn : cn[0].cn;
4247             cp.unshift({ // changed from push ?? BS4 needs it at the start? - does this break or exsiting?
4248                 tag: 'a',
4249                 href: this.brand_href ? this.brand_href : '#',
4250                 cls: 'navbar-brand',
4251                 cn: [
4252                 this.brand
4253                 ]
4254             });
4255         }
4256         
4257         if(this.main){
4258             cfg.cls += ' main-nav';
4259         }
4260         
4261         
4262         return cfg;
4263
4264         
4265     },
4266     getHeaderChildContainer : function()
4267     {
4268         if (this.srButton && this.el.select('.navbar-header').getCount()) {
4269             return this.el.select('.navbar-header',true).first();
4270         }
4271         
4272         return this.getChildContainer();
4273     },
4274     
4275     
4276     initEvents : function()
4277     {
4278         Roo.bootstrap.NavHeaderbar.superclass.initEvents.call(this);
4279         
4280         if (this.autohide) {
4281             
4282             var prevScroll = 0;
4283             var ft = this.el;
4284             
4285             Roo.get(document).on('scroll',function(e) {
4286                 var ns = Roo.get(document).getScroll().top;
4287                 var os = prevScroll;
4288                 prevScroll = ns;
4289                 
4290                 if(ns > os){
4291                     ft.removeClass('slideDown');
4292                     ft.addClass('slideUp');
4293                     return;
4294                 }
4295                 ft.removeClass('slideUp');
4296                 ft.addClass('slideDown');
4297                  
4298               
4299           },this);
4300         }
4301     }    
4302     
4303 });
4304
4305
4306
4307  
4308
4309  /*
4310  * - LGPL
4311  *
4312  * navbar
4313  * 
4314  */
4315
4316 /**
4317  * @class Roo.bootstrap.NavSidebar
4318  * @extends Roo.bootstrap.Navbar
4319  * Bootstrap Sidebar class
4320  * 
4321  * @constructor
4322  * Create a new Sidebar
4323  * @param {Object} config The config object
4324  */
4325
4326
4327 Roo.bootstrap.NavSidebar = function(config){
4328     Roo.bootstrap.NavSidebar.superclass.constructor.call(this, config);
4329 };
4330
4331 Roo.extend(Roo.bootstrap.NavSidebar, Roo.bootstrap.Navbar,  {
4332     
4333     sidebar : true, // used by Navbar Item and NavbarGroup at present...
4334     
4335     getAutoCreate : function(){
4336         
4337         
4338         return  {
4339             tag: 'div',
4340             cls: 'sidebar sidebar-nav'
4341         };
4342     
4343         
4344     }
4345     
4346     
4347     
4348 });
4349
4350
4351
4352  
4353
4354  /*
4355  * - LGPL
4356  *
4357  * nav group
4358  * 
4359  */
4360
4361 /**
4362  * @class Roo.bootstrap.NavGroup
4363  * @extends Roo.bootstrap.Component
4364  * Bootstrap NavGroup class
4365  * @cfg {String} align (left|right)
4366  * @cfg {Boolean} inverse
4367  * @cfg {String} type (nav|pills|tab) default nav
4368  * @cfg {String} navId - reference Id for navbar.
4369
4370  * 
4371  * @constructor
4372  * Create a new nav group
4373  * @param {Object} config The config object
4374  */
4375
4376 Roo.bootstrap.NavGroup = function(config){
4377     Roo.bootstrap.NavGroup.superclass.constructor.call(this, config);
4378     this.navItems = [];
4379    
4380     Roo.bootstrap.NavGroup.register(this);
4381      this.addEvents({
4382         /**
4383              * @event changed
4384              * Fires when the active item changes
4385              * @param {Roo.bootstrap.NavGroup} this
4386              * @param {Roo.bootstrap.Navbar.Item} selected The item selected
4387              * @param {Roo.bootstrap.Navbar.Item} prev The previously selected item 
4388          */
4389         'changed': true
4390      });
4391     
4392 };
4393
4394 Roo.extend(Roo.bootstrap.NavGroup, Roo.bootstrap.Component,  {
4395     
4396     align: '',
4397     inverse: false,
4398     form: false,
4399     type: 'nav',
4400     navId : '',
4401     // private
4402     
4403     navItems : false, 
4404     
4405     getAutoCreate : function()
4406     {
4407         var cfg = Roo.apply({}, Roo.bootstrap.NavGroup.superclass.getAutoCreate.call(this));
4408         
4409         cfg = {
4410             tag : 'ul',
4411             cls: 'nav' 
4412         };
4413         if (Roo.bootstrap.version == 4) {
4414             if (['tabs','pills'].indexOf(this.type) != -1) {
4415                 cfg.cls += ' nav-' + this.type; 
4416             } else {
4417                 // trying to remove so header bar can right align top?
4418                 if (this.parent() && this.parent().xtype != 'NavHeaderbar') {
4419                     // do not use on header bar... 
4420                     cfg.cls += ' navbar-nav';
4421                 }
4422             }
4423             
4424         } else {
4425             if (['tabs','pills'].indexOf(this.type) != -1) {
4426                 cfg.cls += ' nav-' + this.type
4427             } else {
4428                 if (this.type !== 'nav') {
4429                     Roo.log('nav type must be nav/tabs/pills')
4430                 }
4431                 cfg.cls += ' navbar-nav'
4432             }
4433         }
4434         
4435         if (this.parent() && this.parent().sidebar) {
4436             cfg = {
4437                 tag: 'ul',
4438                 cls: 'dashboard-menu sidebar-menu'
4439             };
4440             
4441             return cfg;
4442         }
4443         
4444         if (this.form === true) {
4445             cfg = {
4446                 tag: 'form',
4447                 cls: 'navbar-form form-inline'
4448             };
4449             //nav navbar-right ml-md-auto
4450             if (this.align === 'right') {
4451                 cfg.cls += ' navbar-right ml-md-auto';
4452             } else {
4453                 cfg.cls += ' navbar-left';
4454             }
4455         }
4456         
4457         if (this.align === 'right') {
4458             cfg.cls += ' navbar-right ml-md-auto';
4459         } else {
4460             cfg.cls += ' mr-auto';
4461         }
4462         
4463         if (this.inverse) {
4464             cfg.cls += ' navbar-inverse';
4465             
4466         }
4467         
4468         
4469         return cfg;
4470     },
4471     /**
4472     * sets the active Navigation item
4473     * @param {Roo.bootstrap.NavItem} the new current navitem
4474     */
4475     setActiveItem : function(item)
4476     {
4477         var prev = false;
4478         Roo.each(this.navItems, function(v){
4479             if (v == item) {
4480                 return ;
4481             }
4482             if (v.isActive()) {
4483                 v.setActive(false, true);
4484                 prev = v;
4485                 
4486             }
4487             
4488         });
4489
4490         item.setActive(true, true);
4491         this.fireEvent('changed', this, item, prev);
4492         
4493         
4494     },
4495     /**
4496     * gets the active Navigation item
4497     * @return {Roo.bootstrap.NavItem} the current navitem
4498     */
4499     getActive : function()
4500     {
4501         
4502         var prev = false;
4503         Roo.each(this.navItems, function(v){
4504             
4505             if (v.isActive()) {
4506                 prev = v;
4507                 
4508             }
4509             
4510         });
4511         return prev;
4512     },
4513     
4514     indexOfNav : function()
4515     {
4516         
4517         var prev = false;
4518         Roo.each(this.navItems, function(v,i){
4519             
4520             if (v.isActive()) {
4521                 prev = i;
4522                 
4523             }
4524             
4525         });
4526         return prev;
4527     },
4528     /**
4529     * adds a Navigation item
4530     * @param {Roo.bootstrap.NavItem} the navitem to add
4531     */
4532     addItem : function(cfg)
4533     {
4534         if (this.form && Roo.bootstrap.version == 4) {
4535             cfg.tag = 'div';
4536         }
4537         var cn = new Roo.bootstrap.NavItem(cfg);
4538         this.register(cn);
4539         cn.parentId = this.id;
4540         cn.onRender(this.el, null);
4541         return cn;
4542     },
4543     /**
4544     * register a Navigation item
4545     * @param {Roo.bootstrap.NavItem} the navitem to add
4546     */
4547     register : function(item)
4548     {
4549         this.navItems.push( item);
4550         item.navId = this.navId;
4551     
4552     },
4553     
4554     /**
4555     * clear all the Navigation item
4556     */
4557    
4558     clearAll : function()
4559     {
4560         this.navItems = [];
4561         this.el.dom.innerHTML = '';
4562     },
4563     
4564     getNavItem: function(tabId)
4565     {
4566         var ret = false;
4567         Roo.each(this.navItems, function(e) {
4568             if (e.tabId == tabId) {
4569                ret =  e;
4570                return false;
4571             }
4572             return true;
4573             
4574         });
4575         return ret;
4576     },
4577     
4578     setActiveNext : function()
4579     {
4580         var i = this.indexOfNav(this.getActive());
4581         if (i > this.navItems.length) {
4582             return;
4583         }
4584         this.setActiveItem(this.navItems[i+1]);
4585     },
4586     setActivePrev : function()
4587     {
4588         var i = this.indexOfNav(this.getActive());
4589         if (i  < 1) {
4590             return;
4591         }
4592         this.setActiveItem(this.navItems[i-1]);
4593     },
4594     clearWasActive : function(except) {
4595         Roo.each(this.navItems, function(e) {
4596             if (e.tabId != except.tabId && e.was_active) {
4597                e.was_active = false;
4598                return false;
4599             }
4600             return true;
4601             
4602         });
4603     },
4604     getWasActive : function ()
4605     {
4606         var r = false;
4607         Roo.each(this.navItems, function(e) {
4608             if (e.was_active) {
4609                r = e;
4610                return false;
4611             }
4612             return true;
4613             
4614         });
4615         return r;
4616     }
4617     
4618     
4619 });
4620
4621  
4622 Roo.apply(Roo.bootstrap.NavGroup, {
4623     
4624     groups: {},
4625      /**
4626     * register a Navigation Group
4627     * @param {Roo.bootstrap.NavGroup} the navgroup to add
4628     */
4629     register : function(navgrp)
4630     {
4631         this.groups[navgrp.navId] = navgrp;
4632         
4633     },
4634     /**
4635     * fetch a Navigation Group based on the navigation ID
4636     * @param {string} the navgroup to add
4637     * @returns {Roo.bootstrap.NavGroup} the navgroup 
4638     */
4639     get: function(navId) {
4640         if (typeof(this.groups[navId]) == 'undefined') {
4641             return false;
4642             //this.register(new Roo.bootstrap.NavGroup({ navId : navId }));
4643         }
4644         return this.groups[navId] ;
4645     }
4646     
4647     
4648     
4649 });
4650
4651  /*
4652  * - LGPL
4653  *
4654  * row
4655  * 
4656  */
4657
4658 /**
4659  * @class Roo.bootstrap.NavItem
4660  * @extends Roo.bootstrap.Component
4661  * Bootstrap Navbar.NavItem class
4662  * @cfg {String} href  link to
4663  * @cfg {String} button_weight (default | primary | secondary | success | info | warning | danger | link ) default none
4664
4665  * @cfg {String} html content of button
4666  * @cfg {String} badge text inside badge
4667  * @cfg {String} badgecls (bg-green|bg-red|bg-yellow)the extra classes for the badge
4668  * @cfg {String} glyphicon DEPRICATED - use fa
4669  * @cfg {String} icon DEPRICATED - use fa
4670  * @cfg {String} fa - Fontawsome icon name (can add stuff to it like fa-2x)
4671  * @cfg {Boolean} active Is item active
4672  * @cfg {Boolean} disabled Is item disabled
4673  
4674  * @cfg {Boolean} preventDefault (true | false) default false
4675  * @cfg {String} tabId the tab that this item activates.
4676  * @cfg {String} tagtype (a|span) render as a href or span?
4677  * @cfg {Boolean} animateRef (true|false) link to element default false  
4678   
4679  * @constructor
4680  * Create a new Navbar Item
4681  * @param {Object} config The config object
4682  */
4683 Roo.bootstrap.NavItem = function(config){
4684     Roo.bootstrap.NavItem.superclass.constructor.call(this, config);
4685     this.addEvents({
4686         // raw events
4687         /**
4688          * @event click
4689          * The raw click event for the entire grid.
4690          * @param {Roo.EventObject} e
4691          */
4692         "click" : true,
4693          /**
4694             * @event changed
4695             * Fires when the active item active state changes
4696             * @param {Roo.bootstrap.NavItem} this
4697             * @param {boolean} state the new state
4698              
4699          */
4700         'changed': true,
4701         /**
4702             * @event scrollto
4703             * Fires when scroll to element
4704             * @param {Roo.bootstrap.NavItem} this
4705             * @param {Object} options
4706             * @param {Roo.EventObject} e
4707              
4708          */
4709         'scrollto': true
4710     });
4711    
4712 };
4713
4714 Roo.extend(Roo.bootstrap.NavItem, Roo.bootstrap.Component,  {
4715     
4716     href: false,
4717     html: '',
4718     badge: '',
4719     icon: false,
4720     fa : false,
4721     glyphicon: false,
4722     active: false,
4723     preventDefault : false,
4724     tabId : false,
4725     tagtype : 'a',
4726     tag: 'li',
4727     disabled : false,
4728     animateRef : false,
4729     was_active : false,
4730     button_weight : '',
4731     button_outline : false,
4732     
4733     navLink: false,
4734     
4735     getAutoCreate : function(){
4736          
4737         var cfg = {
4738             tag: this.tag,
4739             cls: 'nav-item'
4740         };
4741         
4742         if (this.active) {
4743             cfg.cls = typeof(cfg.cls) == 'undefined' ? 'active' : cfg.cls + ' active';
4744         }
4745         if (this.disabled) {
4746             cfg.cls += ' disabled';
4747         }
4748         
4749         // BS4 only?
4750         if (this.button_weight.length) {
4751             cfg.tag = this.href ? 'a' : 'button';
4752             cfg.html = this.html || '';
4753             cfg.cls += ' btn btn' + (this.button_outline ? '-outline' : '') + '-' + this.button_weight;
4754             if (this.href) {
4755                 cfg.href = this.href;
4756             }
4757             if (this.fa) {
4758                 cfg.html = '<i class="fa fas fa-'+this.fa+'"></i> <span>' + this.html + '</span>';
4759             }
4760             
4761             // menu .. should add dropdown-menu class - so no need for carat..
4762             
4763             if (this.badge !== '') {
4764                  
4765                 cfg.html += ' <span class="badge badge-secondary">' + this.badge + '</span>';
4766             }
4767             return cfg;
4768         }
4769         
4770         if (this.href || this.html || this.glyphicon || this.icon || this.fa) {
4771             cfg.cn = [
4772                 {
4773                     tag: this.tagtype,
4774                     href : this.href || "#",
4775                     html: this.html || ''
4776                 }
4777             ];
4778             if (this.tagtype == 'a') {
4779                 cfg.cn[0].cls = 'nav-link';
4780             }
4781             if (this.icon) {
4782                 cfg.cn[0].html = '<i class="'+this.icon+'"></i> <span>' + cfg.cn[0].html + '</span>';
4783             }
4784             if (this.fa) {
4785                 cfg.cn[0].html = '<i class="fa fas fa-'+this.fa+'"></i> <span>' + cfg.cn[0].html + '</span>';
4786             }
4787             if(this.glyphicon) {
4788                 cfg.cn[0].html = '<span class="glyphicon glyphicon-' + this.glyphicon + '"></span> '  + cfg.cn[0].html;
4789             }
4790             
4791             if (this.menu) {
4792                 
4793                 cfg.cn[0].html += " <span class='caret'></span>";
4794              
4795             }
4796             
4797             if (this.badge !== '') {
4798                  
4799                 cfg.cn[0].html += ' <span class="badge badge-secondary">' + this.badge + '</span>';
4800             }
4801         }
4802         
4803         
4804         
4805         return cfg;
4806     },
4807     onRender : function(ct, position)
4808     {
4809        // Roo.log("Call onRender: " + this.xtype);
4810         if (Roo.bootstrap.version == 4 && ct.dom.type != 'ul') {
4811             this.tag = 'div';
4812         }
4813         
4814         var ret = Roo.bootstrap.NavItem.superclass.onRender.call(this, ct, position);
4815         this.navLink = this.el.select('.nav-link',true).first();
4816         return ret;
4817     },
4818       
4819     
4820     initEvents: function() 
4821     {
4822         if (typeof (this.menu) != 'undefined') {
4823             this.menu.parentType = this.xtype;
4824             this.menu.triggerEl = this.el;
4825             this.menu = this.addxtype(Roo.apply({}, this.menu));
4826         }
4827         
4828         this.el.select('a',true).on('click', this.onClick, this);
4829         
4830         if(this.tagtype == 'span'){
4831             this.el.select('span',true).on('click', this.onClick, this);
4832         }
4833        
4834         // at this point parent should be available..
4835         this.parent().register(this);
4836     },
4837     
4838     onClick : function(e)
4839     {
4840         if (e.getTarget('.dropdown-menu-item')) {
4841             // did you click on a menu itemm.... - then don't trigger onclick..
4842             return;
4843         }
4844         
4845         if(
4846                 this.preventDefault || 
4847                 this.href == '#' 
4848         ){
4849             Roo.log("NavItem - prevent Default?");
4850             e.preventDefault();
4851         }
4852         
4853         if (this.disabled) {
4854             return;
4855         }
4856         
4857         var tg = Roo.bootstrap.TabGroup.get(this.navId);
4858         if (tg && tg.transition) {
4859             Roo.log("waiting for the transitionend");
4860             return;
4861         }
4862         
4863         
4864         
4865         //Roo.log("fire event clicked");
4866         if(this.fireEvent('click', this, e) === false){
4867             return;
4868         };
4869         
4870         if(this.tagtype == 'span'){
4871             return;
4872         }
4873         
4874         //Roo.log(this.href);
4875         var ael = this.el.select('a',true).first();
4876         //Roo.log(ael);
4877         
4878         if(ael && this.animateRef && this.href.indexOf('#') > -1){
4879             //Roo.log(["test:",ael.dom.href.split("#")[0], document.location.toString().split("#")[0]]);
4880             if (ael.dom.href.split("#")[0] != document.location.toString().split("#")[0]) {
4881                 return; // ignore... - it's a 'hash' to another page.
4882             }
4883             Roo.log("NavItem - prevent Default?");
4884             e.preventDefault();
4885             this.scrollToElement(e);
4886         }
4887         
4888         
4889         var p =  this.parent();
4890    
4891         if (['tabs','pills'].indexOf(p.type)!==-1) {
4892             if (typeof(p.setActiveItem) !== 'undefined') {
4893                 p.setActiveItem(this);
4894             }
4895         }
4896         
4897         // if parent is a navbarheader....- and link is probably a '#' page ref.. then remove the expanded menu.
4898         if (p.parentType == 'NavHeaderbar' && !this.menu) {
4899             // remove the collapsed menu expand...
4900             p.parent().el.select('.roo-navbar-collapse',true).removeClass('in');  
4901         }
4902     },
4903     
4904     isActive: function () {
4905         return this.active
4906     },
4907     setActive : function(state, fire, is_was_active)
4908     {
4909         if (this.active && !state && this.navId) {
4910             this.was_active = true;
4911             var nv = Roo.bootstrap.NavGroup.get(this.navId);
4912             if (nv) {
4913                 nv.clearWasActive(this);
4914             }
4915             
4916         }
4917         this.active = state;
4918         
4919         if (!state ) {
4920             this.el.removeClass('active');
4921             this.navLink ? this.navLink.removeClass('active') : false;
4922         } else if (!this.el.hasClass('active')) {
4923             
4924             this.el.addClass('active');
4925             if (Roo.bootstrap.version == 4 && this.navLink ) {
4926                 this.navLink.addClass('active');
4927             }
4928             
4929         }
4930         if (fire) {
4931             this.fireEvent('changed', this, state);
4932         }
4933         
4934         // show a panel if it's registered and related..
4935         
4936         if (!this.navId || !this.tabId || !state || is_was_active) {
4937             return;
4938         }
4939         
4940         var tg = Roo.bootstrap.TabGroup.get(this.navId);
4941         if (!tg) {
4942             return;
4943         }
4944         var pan = tg.getPanelByName(this.tabId);
4945         if (!pan) {
4946             return;
4947         }
4948         // if we can not flip to new panel - go back to old nav highlight..
4949         if (false == tg.showPanel(pan)) {
4950             var nv = Roo.bootstrap.NavGroup.get(this.navId);
4951             if (nv) {
4952                 var onav = nv.getWasActive();
4953                 if (onav) {
4954                     onav.setActive(true, false, true);
4955                 }
4956             }
4957             
4958         }
4959         
4960         
4961         
4962     },
4963      // this should not be here...
4964     setDisabled : function(state)
4965     {
4966         this.disabled = state;
4967         if (!state ) {
4968             this.el.removeClass('disabled');
4969         } else if (!this.el.hasClass('disabled')) {
4970             this.el.addClass('disabled');
4971         }
4972         
4973     },
4974     
4975     /**
4976      * Fetch the element to display the tooltip on.
4977      * @return {Roo.Element} defaults to this.el
4978      */
4979     tooltipEl : function()
4980     {
4981         return this.el.select('' + this.tagtype + '', true).first();
4982     },
4983     
4984     scrollToElement : function(e)
4985     {
4986         var c = document.body;
4987         
4988         /*
4989          * Firefox / IE places the overflow at the html level, unless specifically styled to behave differently.
4990          */
4991         if(Roo.isFirefox || Roo.isIE || Roo.isIE11){
4992             c = document.documentElement;
4993         }
4994         
4995         var target = Roo.get(c).select('a[name=' + this.href.split('#')[1] +']', true).first();
4996         
4997         if(!target){
4998             return;
4999         }
5000
5001         var o = target.calcOffsetsTo(c);
5002         
5003         var options = {
5004             target : target,
5005             value : o[1]
5006         };
5007         
5008         this.fireEvent('scrollto', this, options, e);
5009         
5010         Roo.get(c).scrollTo('top', options.value, true);
5011         
5012         return;
5013     }
5014 });
5015  
5016
5017  /*
5018  * - LGPL
5019  *
5020  * sidebar item
5021  *
5022  *  li
5023  *    <span> icon </span>
5024  *    <span> text </span>
5025  *    <span>badge </span>
5026  */
5027
5028 /**
5029  * @class Roo.bootstrap.NavSidebarItem
5030  * @extends Roo.bootstrap.NavItem
5031  * Bootstrap Navbar.NavSidebarItem class
5032  * {String} badgeWeight (default|primary|success|info|warning|danger)the extra classes for the badge
5033  * {Boolean} open is the menu open
5034  * {Boolean} buttonView use button as the tigger el rather that a (default false)
5035  * {String} buttonWeight (default|primary|success|info|warning|danger)the extra classes for the button
5036  * {String} buttonSize (sm|md|lg)the extra classes for the button
5037  * {Boolean} showArrow show arrow next to the text (default true)
5038  * @constructor
5039  * Create a new Navbar Button
5040  * @param {Object} config The config object
5041  */
5042 Roo.bootstrap.NavSidebarItem = function(config){
5043     Roo.bootstrap.NavSidebarItem.superclass.constructor.call(this, config);
5044     this.addEvents({
5045         // raw events
5046         /**
5047          * @event click
5048          * The raw click event for the entire grid.
5049          * @param {Roo.EventObject} e
5050          */
5051         "click" : true,
5052          /**
5053             * @event changed
5054             * Fires when the active item active state changes
5055             * @param {Roo.bootstrap.NavSidebarItem} this
5056             * @param {boolean} state the new state
5057              
5058          */
5059         'changed': true
5060     });
5061    
5062 };
5063
5064 Roo.extend(Roo.bootstrap.NavSidebarItem, Roo.bootstrap.NavItem,  {
5065     
5066     badgeWeight : 'default',
5067     
5068     open: false,
5069     
5070     buttonView : false,
5071     
5072     buttonWeight : 'default',
5073     
5074     buttonSize : 'md',
5075     
5076     showArrow : true,
5077     
5078     getAutoCreate : function(){
5079         
5080         
5081         var a = {
5082                 tag: 'a',
5083                 href : this.href || '#',
5084                 cls: '',
5085                 html : '',
5086                 cn : []
5087         };
5088         
5089         if(this.buttonView){
5090             a = {
5091                 tag: 'button',
5092                 href : this.href || '#',
5093                 cls: 'btn btn-' + this.buttonWeight + ' btn-' + this.buttonSize + 'roo-button-dropdown-toggle',
5094                 html : this.html,
5095                 cn : []
5096             };
5097         }
5098         
5099         var cfg = {
5100             tag: 'li',
5101             cls: '',
5102             cn: [ a ]
5103         };
5104         
5105         if (this.active) {
5106             cfg.cls += ' active';
5107         }
5108         
5109         if (this.disabled) {
5110             cfg.cls += ' disabled';
5111         }
5112         if (this.open) {
5113             cfg.cls += ' open x-open';
5114         }
5115         // left icon..
5116         if (this.glyphicon || this.icon) {
5117             var c = this.glyphicon  ? ('glyphicon glyphicon-'+this.glyphicon)  : this.icon;
5118             a.cn.push({ tag : 'i', cls : c }) ;
5119         }
5120         
5121         if(!this.buttonView){
5122             var span = {
5123                 tag: 'span',
5124                 html : this.html || ''
5125             };
5126
5127             a.cn.push(span);
5128             
5129         }
5130         
5131         if (this.badge !== '') {
5132             a.cn.push({ tag: 'span',  cls : 'badge pull-right badge-' + this.badgeWeight, html: this.badge }); 
5133         }
5134         
5135         if (this.menu) {
5136             
5137             if(this.showArrow){
5138                 a.cn.push({ tag : 'i', cls : 'glyphicon glyphicon-chevron-down pull-right'});
5139             }
5140             
5141             a.cls += ' dropdown-toggle treeview' ;
5142         }
5143         
5144         return cfg;
5145     },
5146     
5147     initEvents : function()
5148     { 
5149         if (typeof (this.menu) != 'undefined') {
5150             this.menu.parentType = this.xtype;
5151             this.menu.triggerEl = this.el;
5152             this.menu = this.addxtype(Roo.apply({}, this.menu));
5153         }
5154         
5155         this.el.on('click', this.onClick, this);
5156         
5157         if(this.badge !== ''){
5158             this.badgeEl = this.el.select('.badge', true).first().setVisibilityMode(Roo.Element.DISPLAY);
5159         }
5160         
5161     },
5162     
5163     onClick : function(e)
5164     {
5165         if(this.disabled){
5166             e.preventDefault();
5167             return;
5168         }
5169         
5170         if(this.preventDefault){
5171             e.preventDefault();
5172         }
5173         
5174         this.fireEvent('click', this, e);
5175     },
5176     
5177     disable : function()
5178     {
5179         this.setDisabled(true);
5180     },
5181     
5182     enable : function()
5183     {
5184         this.setDisabled(false);
5185     },
5186     
5187     setDisabled : function(state)
5188     {
5189         if(this.disabled == state){
5190             return;
5191         }
5192         
5193         this.disabled = state;
5194         
5195         if (state) {
5196             this.el.addClass('disabled');
5197             return;
5198         }
5199         
5200         this.el.removeClass('disabled');
5201         
5202         return;
5203     },
5204     
5205     setActive : function(state)
5206     {
5207         if(this.active == state){
5208             return;
5209         }
5210         
5211         this.active = state;
5212         
5213         if (state) {
5214             this.el.addClass('active');
5215             return;
5216         }
5217         
5218         this.el.removeClass('active');
5219         
5220         return;
5221     },
5222     
5223     isActive: function () 
5224     {
5225         return this.active;
5226     },
5227     
5228     setBadge : function(str)
5229     {
5230         if(!this.badgeEl){
5231             return;
5232         }
5233         
5234         this.badgeEl.dom.innerHTML = str;
5235     }
5236     
5237    
5238      
5239  
5240 });
5241  
5242
5243  /*
5244  * - LGPL
5245  *
5246  * row
5247  * 
5248  */
5249
5250 /**
5251  * @class Roo.bootstrap.Row
5252  * @extends Roo.bootstrap.Component
5253  * Bootstrap Row class (contains columns...)
5254  * 
5255  * @constructor
5256  * Create a new Row
5257  * @param {Object} config The config object
5258  */
5259
5260 Roo.bootstrap.Row = function(config){
5261     Roo.bootstrap.Row.superclass.constructor.call(this, config);
5262 };
5263
5264 Roo.extend(Roo.bootstrap.Row, Roo.bootstrap.Component,  {
5265     
5266     getAutoCreate : function(){
5267        return {
5268             cls: 'row clearfix'
5269        };
5270     }
5271     
5272     
5273 });
5274
5275  
5276
5277  /*
5278  * - LGPL
5279  *
5280  * element
5281  * 
5282  */
5283
5284 /**
5285  * @class Roo.bootstrap.Element
5286  * @extends Roo.bootstrap.Component
5287  * Bootstrap Element class
5288  * @cfg {String} html contents of the element
5289  * @cfg {String} tag tag of the element
5290  * @cfg {String} cls class of the element
5291  * @cfg {Boolean} preventDefault (true|false) default false
5292  * @cfg {Boolean} clickable (true|false) default false
5293  * 
5294  * @constructor
5295  * Create a new Element
5296  * @param {Object} config The config object
5297  */
5298
5299 Roo.bootstrap.Element = function(config){
5300     Roo.bootstrap.Element.superclass.constructor.call(this, config);
5301     
5302     this.addEvents({
5303         // raw events
5304         /**
5305          * @event click
5306          * When a element is chick
5307          * @param {Roo.bootstrap.Element} this
5308          * @param {Roo.EventObject} e
5309          */
5310         "click" : true
5311     });
5312 };
5313
5314 Roo.extend(Roo.bootstrap.Element, Roo.bootstrap.Component,  {
5315     
5316     tag: 'div',
5317     cls: '',
5318     html: '',
5319     preventDefault: false, 
5320     clickable: false,
5321     
5322     getAutoCreate : function(){
5323         
5324         var cfg = {
5325             tag: this.tag,
5326             // cls: this.cls, double assign in parent class Component.js :: onRender
5327             html: this.html
5328         };
5329         
5330         return cfg;
5331     },
5332     
5333     initEvents: function() 
5334     {
5335         Roo.bootstrap.Element.superclass.initEvents.call(this);
5336         
5337         if(this.clickable){
5338             this.el.on('click', this.onClick, this);
5339         }
5340         
5341     },
5342     
5343     onClick : function(e)
5344     {
5345         if(this.preventDefault){
5346             e.preventDefault();
5347         }
5348         
5349         this.fireEvent('click', this, e);
5350     },
5351     
5352     getValue : function()
5353     {
5354         return this.el.dom.innerHTML;
5355     },
5356     
5357     setValue : function(value)
5358     {
5359         this.el.dom.innerHTML = value;
5360     }
5361    
5362 });
5363
5364  
5365
5366  /*
5367  * - LGPL
5368  *
5369  * pagination
5370  * 
5371  */
5372
5373 /**
5374  * @class Roo.bootstrap.Pagination
5375  * @extends Roo.bootstrap.Component
5376  * Bootstrap Pagination class
5377  * @cfg {String} size xs | sm | md | lg
5378  * @cfg {Boolean} inverse false | true
5379  * 
5380  * @constructor
5381  * Create a new Pagination
5382  * @param {Object} config The config object
5383  */
5384
5385 Roo.bootstrap.Pagination = function(config){
5386     Roo.bootstrap.Pagination.superclass.constructor.call(this, config);
5387 };
5388
5389 Roo.extend(Roo.bootstrap.Pagination, Roo.bootstrap.Component,  {
5390     
5391     cls: false,
5392     size: false,
5393     inverse: false,
5394     
5395     getAutoCreate : function(){
5396         var cfg = {
5397             tag: 'ul',
5398                 cls: 'pagination'
5399         };
5400         if (this.inverse) {
5401             cfg.cls += ' inverse';
5402         }
5403         if (this.html) {
5404             cfg.html=this.html;
5405         }
5406         if (this.cls) {
5407             cfg.cls += " " + this.cls;
5408         }
5409         return cfg;
5410     }
5411    
5412 });
5413
5414  
5415
5416  /*
5417  * - LGPL
5418  *
5419  * Pagination item
5420  * 
5421  */
5422
5423
5424 /**
5425  * @class Roo.bootstrap.PaginationItem
5426  * @extends Roo.bootstrap.Component
5427  * Bootstrap PaginationItem class
5428  * @cfg {String} html text
5429  * @cfg {String} href the link
5430  * @cfg {Boolean} preventDefault (true | false) default true
5431  * @cfg {Boolean} active (true | false) default false
5432  * @cfg {Boolean} disabled default false
5433  * 
5434  * 
5435  * @constructor
5436  * Create a new PaginationItem
5437  * @param {Object} config The config object
5438  */
5439
5440
5441 Roo.bootstrap.PaginationItem = function(config){
5442     Roo.bootstrap.PaginationItem.superclass.constructor.call(this, config);
5443     this.addEvents({
5444         // raw events
5445         /**
5446          * @event click
5447          * The raw click event for the entire grid.
5448          * @param {Roo.EventObject} e
5449          */
5450         "click" : true
5451     });
5452 };
5453
5454 Roo.extend(Roo.bootstrap.PaginationItem, Roo.bootstrap.Component,  {
5455     
5456     href : false,
5457     html : false,
5458     preventDefault: true,
5459     active : false,
5460     cls : false,
5461     disabled: false,
5462     
5463     getAutoCreate : function(){
5464         var cfg= {
5465             tag: 'li',
5466             cn: [
5467                 {
5468                     tag : 'a',
5469                     href : this.href ? this.href : '#',
5470                     html : this.html ? this.html : ''
5471                 }
5472             ]
5473         };
5474         
5475         if(this.cls){
5476             cfg.cls = this.cls;
5477         }
5478         
5479         if(this.disabled){
5480             cfg.cls = typeof(cfg.cls) !== 'undefined' ? cfg.cls + ' disabled' : 'disabled';
5481         }
5482         
5483         if(this.active){
5484             cfg.cls = typeof(cfg.cls) !== 'undefined' ? cfg.cls + ' active' : 'active';
5485         }
5486         
5487         return cfg;
5488     },
5489     
5490     initEvents: function() {
5491         
5492         this.el.on('click', this.onClick, this);
5493         
5494     },
5495     onClick : function(e)
5496     {
5497         Roo.log('PaginationItem on click ');
5498         if(this.preventDefault){
5499             e.preventDefault();
5500         }
5501         
5502         if(this.disabled){
5503             return;
5504         }
5505         
5506         this.fireEvent('click', this, e);
5507     }
5508    
5509 });
5510
5511  
5512
5513  /*
5514  * - LGPL
5515  *
5516  * slider
5517  * 
5518  */
5519
5520
5521 /**
5522  * @class Roo.bootstrap.Slider
5523  * @extends Roo.bootstrap.Component
5524  * Bootstrap Slider class
5525  *    
5526  * @constructor
5527  * Create a new Slider
5528  * @param {Object} config The config object
5529  */
5530
5531 Roo.bootstrap.Slider = function(config){
5532     Roo.bootstrap.Slider.superclass.constructor.call(this, config);
5533 };
5534
5535 Roo.extend(Roo.bootstrap.Slider, Roo.bootstrap.Component,  {
5536     
5537     getAutoCreate : function(){
5538         
5539         var cfg = {
5540             tag: 'div',
5541             cls: 'slider slider-sample1 vertical-handler ui-slider ui-slider-horizontal ui-widget ui-widget-content ui-corner-all',
5542             cn: [
5543                 {
5544                     tag: 'a',
5545                     cls: 'ui-slider-handle ui-state-default ui-corner-all'
5546                 }
5547             ]
5548         };
5549         
5550         return cfg;
5551     }
5552    
5553 });
5554
5555  /*
5556  * Based on:
5557  * Ext JS Library 1.1.1
5558  * Copyright(c) 2006-2007, Ext JS, LLC.
5559  *
5560  * Originally Released Under LGPL - original licence link has changed is not relivant.
5561  *
5562  * Fork - LGPL
5563  * <script type="text/javascript">
5564  */
5565  
5566
5567 /**
5568  * @class Roo.grid.ColumnModel
5569  * @extends Roo.util.Observable
5570  * This is the default implementation of a ColumnModel used by the Grid. It defines
5571  * the columns in the grid.
5572  * <br>Usage:<br>
5573  <pre><code>
5574  var colModel = new Roo.grid.ColumnModel([
5575         {header: "Ticker", width: 60, sortable: true, locked: true},
5576         {header: "Company Name", width: 150, sortable: true},
5577         {header: "Market Cap.", width: 100, sortable: true},
5578         {header: "$ Sales", width: 100, sortable: true, renderer: money},
5579         {header: "Employees", width: 100, sortable: true, resizable: false}
5580  ]);
5581  </code></pre>
5582  * <p>
5583  
5584  * The config options listed for this class are options which may appear in each
5585  * individual column definition.
5586  * <br/>RooJS Fix - column id's are not sequential but use Roo.id() - fixes bugs with layouts.
5587  * @constructor
5588  * @param {Object} config An Array of column config objects. See this class's
5589  * config objects for details.
5590 */
5591 Roo.grid.ColumnModel = function(config){
5592         /**
5593      * The config passed into the constructor
5594      */
5595     this.config = config;
5596     this.lookup = {};
5597
5598     // if no id, create one
5599     // if the column does not have a dataIndex mapping,
5600     // map it to the order it is in the config
5601     for(var i = 0, len = config.length; i < len; i++){
5602         var c = config[i];
5603         if(typeof c.dataIndex == "undefined"){
5604             c.dataIndex = i;
5605         }
5606         if(typeof c.renderer == "string"){
5607             c.renderer = Roo.util.Format[c.renderer];
5608         }
5609         if(typeof c.id == "undefined"){
5610             c.id = Roo.id();
5611         }
5612         if(c.editor && c.editor.xtype){
5613             c.editor  = Roo.factory(c.editor, Roo.grid);
5614         }
5615         if(c.editor && c.editor.isFormField){
5616             c.editor = new Roo.grid.GridEditor(c.editor);
5617         }
5618         this.lookup[c.id] = c;
5619     }
5620
5621     /**
5622      * The width of columns which have no width specified (defaults to 100)
5623      * @type Number
5624      */
5625     this.defaultWidth = 100;
5626
5627     /**
5628      * Default sortable of columns which have no sortable specified (defaults to false)
5629      * @type Boolean
5630      */
5631     this.defaultSortable = false;
5632
5633     this.addEvents({
5634         /**
5635              * @event widthchange
5636              * Fires when the width of a column changes.
5637              * @param {ColumnModel} this
5638              * @param {Number} columnIndex The column index
5639              * @param {Number} newWidth The new width
5640              */
5641             "widthchange": true,
5642         /**
5643              * @event headerchange
5644              * Fires when the text of a header changes.
5645              * @param {ColumnModel} this
5646              * @param {Number} columnIndex The column index
5647              * @param {Number} newText The new header text
5648              */
5649             "headerchange": true,
5650         /**
5651              * @event hiddenchange
5652              * Fires when a column is hidden or "unhidden".
5653              * @param {ColumnModel} this
5654              * @param {Number} columnIndex The column index
5655              * @param {Boolean} hidden true if hidden, false otherwise
5656              */
5657             "hiddenchange": true,
5658             /**
5659          * @event columnmoved
5660          * Fires when a column is moved.
5661          * @param {ColumnModel} this
5662          * @param {Number} oldIndex
5663          * @param {Number} newIndex
5664          */
5665         "columnmoved" : true,
5666         /**
5667          * @event columlockchange
5668          * Fires when a column's locked state is changed
5669          * @param {ColumnModel} this
5670          * @param {Number} colIndex
5671          * @param {Boolean} locked true if locked
5672          */
5673         "columnlockchange" : true
5674     });
5675     Roo.grid.ColumnModel.superclass.constructor.call(this);
5676 };
5677 Roo.extend(Roo.grid.ColumnModel, Roo.util.Observable, {
5678     /**
5679      * @cfg {String} header The header text to display in the Grid view.
5680      */
5681     /**
5682      * @cfg {String} dataIndex (Optional) The name of the field in the grid's {@link Roo.data.Store}'s
5683      * {@link Roo.data.Record} definition from which to draw the column's value. If not
5684      * specified, the column's index is used as an index into the Record's data Array.
5685      */
5686     /**
5687      * @cfg {Number} width (Optional) The initial width in pixels of the column. Using this
5688      * instead of {@link Roo.grid.Grid#autoSizeColumns} is more efficient.
5689      */
5690     /**
5691      * @cfg {Boolean} sortable (Optional) True if sorting is to be allowed on this column.
5692      * Defaults to the value of the {@link #defaultSortable} property.
5693      * Whether local/remote sorting is used is specified in {@link Roo.data.Store#remoteSort}.
5694      */
5695     /**
5696      * @cfg {Boolean} locked (Optional) True to lock the column in place while scrolling the Grid.  Defaults to false.
5697      */
5698     /**
5699      * @cfg {Boolean} fixed (Optional) True if the column width cannot be changed.  Defaults to false.
5700      */
5701     /**
5702      * @cfg {Boolean} resizable (Optional) False to disable column resizing. Defaults to true.
5703      */
5704     /**
5705      * @cfg {Boolean} hidden (Optional) True to hide the column. Defaults to false.
5706      */
5707     /**
5708      * @cfg {Function} renderer (Optional) A function used to generate HTML markup for a cell
5709      * given the cell's data value. See {@link #setRenderer}. If not specified, the
5710      * default renderer returns the escaped data value. If an object is returned (bootstrap only)
5711      * then it is treated as a Roo Component object instance, and it is rendered after the initial row is rendered
5712      */
5713        /**
5714      * @cfg {Roo.grid.GridEditor} editor (Optional) For grid editors - returns the grid editor 
5715      */
5716     /**
5717      * @cfg {String} align (Optional) Set the CSS text-align property of the column.  Defaults to undefined.
5718      */
5719     /**
5720      * @cfg {String} valign (Optional) Set the CSS vertical-align property of the column (eg. middle, top, bottom etc).  Defaults to undefined.
5721      */
5722     /**
5723      * @cfg {String} cursor (Optional)
5724      */
5725     /**
5726      * @cfg {String} tooltip (Optional)
5727      */
5728     /**
5729      * @cfg {Number} xs (Optional)
5730      */
5731     /**
5732      * @cfg {Number} sm (Optional)
5733      */
5734     /**
5735      * @cfg {Number} md (Optional)
5736      */
5737     /**
5738      * @cfg {Number} lg (Optional)
5739      */
5740     /**
5741      * Returns the id of the column at the specified index.
5742      * @param {Number} index The column index
5743      * @return {String} the id
5744      */
5745     getColumnId : function(index){
5746         return this.config[index].id;
5747     },
5748
5749     /**
5750      * Returns the column for a specified id.
5751      * @param {String} id The column id
5752      * @return {Object} the column
5753      */
5754     getColumnById : function(id){
5755         return this.lookup[id];
5756     },
5757
5758     
5759     /**
5760      * Returns the column for a specified dataIndex.
5761      * @param {String} dataIndex The column dataIndex
5762      * @return {Object|Boolean} the column or false if not found
5763      */
5764     getColumnByDataIndex: function(dataIndex){
5765         var index = this.findColumnIndex(dataIndex);
5766         return index > -1 ? this.config[index] : false;
5767     },
5768     
5769     /**
5770      * Returns the index for a specified column id.
5771      * @param {String} id The column id
5772      * @return {Number} the index, or -1 if not found
5773      */
5774     getIndexById : function(id){
5775         for(var i = 0, len = this.config.length; i < len; i++){
5776             if(this.config[i].id == id){
5777                 return i;
5778             }
5779         }
5780         return -1;
5781     },
5782     
5783     /**
5784      * Returns the index for a specified column dataIndex.
5785      * @param {String} dataIndex The column dataIndex
5786      * @return {Number} the index, or -1 if not found
5787      */
5788     
5789     findColumnIndex : function(dataIndex){
5790         for(var i = 0, len = this.config.length; i < len; i++){
5791             if(this.config[i].dataIndex == dataIndex){
5792                 return i;
5793             }
5794         }
5795         return -1;
5796     },
5797     
5798     
5799     moveColumn : function(oldIndex, newIndex){
5800         var c = this.config[oldIndex];
5801         this.config.splice(oldIndex, 1);
5802         this.config.splice(newIndex, 0, c);
5803         this.dataMap = null;
5804         this.fireEvent("columnmoved", this, oldIndex, newIndex);
5805     },
5806
5807     isLocked : function(colIndex){
5808         return this.config[colIndex].locked === true;
5809     },
5810
5811     setLocked : function(colIndex, value, suppressEvent){
5812         if(this.isLocked(colIndex) == value){
5813             return;
5814         }
5815         this.config[colIndex].locked = value;
5816         if(!suppressEvent){
5817             this.fireEvent("columnlockchange", this, colIndex, value);
5818         }
5819     },
5820
5821     getTotalLockedWidth : function(){
5822         var totalWidth = 0;
5823         for(var i = 0; i < this.config.length; i++){
5824             if(this.isLocked(i) && !this.isHidden(i)){
5825                 this.totalWidth += this.getColumnWidth(i);
5826             }
5827         }
5828         return totalWidth;
5829     },
5830
5831     getLockedCount : function(){
5832         for(var i = 0, len = this.config.length; i < len; i++){
5833             if(!this.isLocked(i)){
5834                 return i;
5835             }
5836         }
5837         
5838         return this.config.length;
5839     },
5840
5841     /**
5842      * Returns the number of columns.
5843      * @return {Number}
5844      */
5845     getColumnCount : function(visibleOnly){
5846         if(visibleOnly === true){
5847             var c = 0;
5848             for(var i = 0, len = this.config.length; i < len; i++){
5849                 if(!this.isHidden(i)){
5850                     c++;
5851                 }
5852             }
5853             return c;
5854         }
5855         return this.config.length;
5856     },
5857
5858     /**
5859      * Returns the column configs that return true by the passed function that is called with (columnConfig, index)
5860      * @param {Function} fn
5861      * @param {Object} scope (optional)
5862      * @return {Array} result
5863      */
5864     getColumnsBy : function(fn, scope){
5865         var r = [];
5866         for(var i = 0, len = this.config.length; i < len; i++){
5867             var c = this.config[i];
5868             if(fn.call(scope||this, c, i) === true){
5869                 r[r.length] = c;
5870             }
5871         }
5872         return r;
5873     },
5874
5875     /**
5876      * Returns true if the specified column is sortable.
5877      * @param {Number} col The column index
5878      * @return {Boolean}
5879      */
5880     isSortable : function(col){
5881         if(typeof this.config[col].sortable == "undefined"){
5882             return this.defaultSortable;
5883         }
5884         return this.config[col].sortable;
5885     },
5886
5887     /**
5888      * Returns the rendering (formatting) function defined for the column.
5889      * @param {Number} col The column index.
5890      * @return {Function} The function used to render the cell. See {@link #setRenderer}.
5891      */
5892     getRenderer : function(col){
5893         if(!this.config[col].renderer){
5894             return Roo.grid.ColumnModel.defaultRenderer;
5895         }
5896         return this.config[col].renderer;
5897     },
5898
5899     /**
5900      * Sets the rendering (formatting) function for a column.
5901      * @param {Number} col The column index
5902      * @param {Function} fn The function to use to process the cell's raw data
5903      * to return HTML markup for the grid view. The render function is called with
5904      * the following parameters:<ul>
5905      * <li>Data value.</li>
5906      * <li>Cell metadata. An object in which you may set the following attributes:<ul>
5907      * <li>css A CSS style string to apply to the table cell.</li>
5908      * <li>attr An HTML attribute definition string to apply to the data container element <i>within</i> the table cell.</li></ul>
5909      * <li>The {@link Roo.data.Record} from which the data was extracted.</li>
5910      * <li>Row index</li>
5911      * <li>Column index</li>
5912      * <li>The {@link Roo.data.Store} object from which the Record was extracted</li></ul>
5913      */
5914     setRenderer : function(col, fn){
5915         this.config[col].renderer = fn;
5916     },
5917
5918     /**
5919      * Returns the width for the specified column.
5920      * @param {Number} col The column index
5921      * @return {Number}
5922      */
5923     getColumnWidth : function(col){
5924         return this.config[col].width * 1 || this.defaultWidth;
5925     },
5926
5927     /**
5928      * Sets the width for a column.
5929      * @param {Number} col The column index
5930      * @param {Number} width The new width
5931      */
5932     setColumnWidth : function(col, width, suppressEvent){
5933         this.config[col].width = width;
5934         this.totalWidth = null;
5935         if(!suppressEvent){
5936              this.fireEvent("widthchange", this, col, width);
5937         }
5938     },
5939
5940     /**
5941      * Returns the total width of all columns.
5942      * @param {Boolean} includeHidden True to include hidden column widths
5943      * @return {Number}
5944      */
5945     getTotalWidth : function(includeHidden){
5946         if(!this.totalWidth){
5947             this.totalWidth = 0;
5948             for(var i = 0, len = this.config.length; i < len; i++){
5949                 if(includeHidden || !this.isHidden(i)){
5950                     this.totalWidth += this.getColumnWidth(i);
5951                 }
5952             }
5953         }
5954         return this.totalWidth;
5955     },
5956
5957     /**
5958      * Returns the header for the specified column.
5959      * @param {Number} col The column index
5960      * @return {String}
5961      */
5962     getColumnHeader : function(col){
5963         return this.config[col].header;
5964     },
5965
5966     /**
5967      * Sets the header for a column.
5968      * @param {Number} col The column index
5969      * @param {String} header The new header
5970      */
5971     setColumnHeader : function(col, header){
5972         this.config[col].header = header;
5973         this.fireEvent("headerchange", this, col, header);
5974     },
5975
5976     /**
5977      * Returns the tooltip for the specified column.
5978      * @param {Number} col The column index
5979      * @return {String}
5980      */
5981     getColumnTooltip : function(col){
5982             return this.config[col].tooltip;
5983     },
5984     /**
5985      * Sets the tooltip for a column.
5986      * @param {Number} col The column index
5987      * @param {String} tooltip The new tooltip
5988      */
5989     setColumnTooltip : function(col, tooltip){
5990             this.config[col].tooltip = tooltip;
5991     },
5992
5993     /**
5994      * Returns the dataIndex for the specified column.
5995      * @param {Number} col The column index
5996      * @return {Number}
5997      */
5998     getDataIndex : function(col){
5999         return this.config[col].dataIndex;
6000     },
6001
6002     /**
6003      * Sets the dataIndex for a column.
6004      * @param {Number} col The column index
6005      * @param {Number} dataIndex The new dataIndex
6006      */
6007     setDataIndex : function(col, dataIndex){
6008         this.config[col].dataIndex = dataIndex;
6009     },
6010
6011     
6012     
6013     /**
6014      * Returns true if the cell is editable.
6015      * @param {Number} colIndex The column index
6016      * @param {Number} rowIndex The row index - this is nto actually used..?
6017      * @return {Boolean}
6018      */
6019     isCellEditable : function(colIndex, rowIndex){
6020         return (this.config[colIndex].editable || (typeof this.config[colIndex].editable == "undefined" && this.config[colIndex].editor)) ? true : false;
6021     },
6022
6023     /**
6024      * Returns the editor defined for the cell/column.
6025      * return false or null to disable editing.
6026      * @param {Number} colIndex The column index
6027      * @param {Number} rowIndex The row index
6028      * @return {Object}
6029      */
6030     getCellEditor : function(colIndex, rowIndex){
6031         return this.config[colIndex].editor;
6032     },
6033
6034     /**
6035      * Sets if a column is editable.
6036      * @param {Number} col The column index
6037      * @param {Boolean} editable True if the column is editable
6038      */
6039     setEditable : function(col, editable){
6040         this.config[col].editable = editable;
6041     },
6042
6043
6044     /**
6045      * Returns true if the column is hidden.
6046      * @param {Number} colIndex The column index
6047      * @return {Boolean}
6048      */
6049     isHidden : function(colIndex){
6050         return this.config[colIndex].hidden;
6051     },
6052
6053
6054     /**
6055      * Returns true if the column width cannot be changed
6056      */
6057     isFixed : function(colIndex){
6058         return this.config[colIndex].fixed;
6059     },
6060
6061     /**
6062      * Returns true if the column can be resized
6063      * @return {Boolean}
6064      */
6065     isResizable : function(colIndex){
6066         return colIndex >= 0 && this.config[colIndex].resizable !== false && this.config[colIndex].fixed !== true;
6067     },
6068     /**
6069      * Sets if a column is hidden.
6070      * @param {Number} colIndex The column index
6071      * @param {Boolean} hidden True if the column is hidden
6072      */
6073     setHidden : function(colIndex, hidden){
6074         this.config[colIndex].hidden = hidden;
6075         this.totalWidth = null;
6076         this.fireEvent("hiddenchange", this, colIndex, hidden);
6077     },
6078
6079     /**
6080      * Sets the editor for a column.
6081      * @param {Number} col The column index
6082      * @param {Object} editor The editor object
6083      */
6084     setEditor : function(col, editor){
6085         this.config[col].editor = editor;
6086     }
6087 });
6088
6089 Roo.grid.ColumnModel.defaultRenderer = function(value)
6090 {
6091     if(typeof value == "object") {
6092         return value;
6093     }
6094         if(typeof value == "string" && value.length < 1){
6095             return "&#160;";
6096         }
6097     
6098         return String.format("{0}", value);
6099 };
6100
6101 // Alias for backwards compatibility
6102 Roo.grid.DefaultColumnModel = Roo.grid.ColumnModel;
6103 /*
6104  * Based on:
6105  * Ext JS Library 1.1.1
6106  * Copyright(c) 2006-2007, Ext JS, LLC.
6107  *
6108  * Originally Released Under LGPL - original licence link has changed is not relivant.
6109  *
6110  * Fork - LGPL
6111  * <script type="text/javascript">
6112  */
6113  
6114 /**
6115  * @class Roo.LoadMask
6116  * A simple utility class for generically masking elements while loading data.  If the element being masked has
6117  * an underlying {@link Roo.data.Store}, the masking will be automatically synchronized with the store's loading
6118  * process and the mask element will be cached for reuse.  For all other elements, this mask will replace the
6119  * element's UpdateManager load indicator and will be destroyed after the initial load.
6120  * @constructor
6121  * Create a new LoadMask
6122  * @param {String/HTMLElement/Roo.Element} el The element or DOM node, or its id
6123  * @param {Object} config The config object
6124  */
6125 Roo.LoadMask = function(el, config){
6126     this.el = Roo.get(el);
6127     Roo.apply(this, config);
6128     if(this.store){
6129         this.store.on('beforeload', this.onBeforeLoad, this);
6130         this.store.on('load', this.onLoad, this);
6131         this.store.on('loadexception', this.onLoadException, this);
6132         this.removeMask = false;
6133     }else{
6134         var um = this.el.getUpdateManager();
6135         um.showLoadIndicator = false; // disable the default indicator
6136         um.on('beforeupdate', this.onBeforeLoad, this);
6137         um.on('update', this.onLoad, this);
6138         um.on('failure', this.onLoad, this);
6139         this.removeMask = true;
6140     }
6141 };
6142
6143 Roo.LoadMask.prototype = {
6144     /**
6145      * @cfg {Boolean} removeMask
6146      * True to create a single-use mask that is automatically destroyed after loading (useful for page loads),
6147      * False to persist the mask element reference for multiple uses (e.g., for paged data widgets).  Defaults to false.
6148      */
6149     /**
6150      * @cfg {String} msg
6151      * The text to display in a centered loading message box (defaults to 'Loading...')
6152      */
6153     msg : 'Loading...',
6154     /**
6155      * @cfg {String} msgCls
6156      * The CSS class to apply to the loading message element (defaults to "x-mask-loading")
6157      */
6158     msgCls : 'x-mask-loading',
6159
6160     /**
6161      * Read-only. True if the mask is currently disabled so that it will not be displayed (defaults to false)
6162      * @type Boolean
6163      */
6164     disabled: false,
6165
6166     /**
6167      * Disables the mask to prevent it from being displayed
6168      */
6169     disable : function(){
6170        this.disabled = true;
6171     },
6172
6173     /**
6174      * Enables the mask so that it can be displayed
6175      */
6176     enable : function(){
6177         this.disabled = false;
6178     },
6179     
6180     onLoadException : function()
6181     {
6182         Roo.log(arguments);
6183         
6184         if (typeof(arguments[3]) != 'undefined') {
6185             Roo.MessageBox.alert("Error loading",arguments[3]);
6186         } 
6187         /*
6188         try {
6189             if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
6190                 Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
6191             }   
6192         } catch(e) {
6193             
6194         }
6195         */
6196     
6197         (function() { this.el.unmask(this.removeMask); }).defer(50, this);
6198     },
6199     // private
6200     onLoad : function()
6201     {
6202         (function() { this.el.unmask(this.removeMask); }).defer(50, this);
6203     },
6204
6205     // private
6206     onBeforeLoad : function(){
6207         if(!this.disabled){
6208             (function() { this.el.mask(this.msg, this.msgCls); }).defer(50, this);
6209         }
6210     },
6211
6212     // private
6213     destroy : function(){
6214         if(this.store){
6215             this.store.un('beforeload', this.onBeforeLoad, this);
6216             this.store.un('load', this.onLoad, this);
6217             this.store.un('loadexception', this.onLoadException, this);
6218         }else{
6219             var um = this.el.getUpdateManager();
6220             um.un('beforeupdate', this.onBeforeLoad, this);
6221             um.un('update', this.onLoad, this);
6222             um.un('failure', this.onLoad, this);
6223         }
6224     }
6225 };/*
6226  * - LGPL
6227  *
6228  * table
6229  * 
6230  */
6231
6232 /**
6233  * @class Roo.bootstrap.Table
6234  * @extends Roo.bootstrap.Component
6235  * Bootstrap Table class
6236  * @cfg {String} cls table class
6237  * @cfg {String} align (left|center|right) Specifies the alignment of a table according to surrounding text
6238  * @cfg {String} bgcolor Specifies the background color for a table
6239  * @cfg {Number} border Specifies whether the table cells should have borders or not
6240  * @cfg {Number} cellpadding Specifies the space between the cell wall and the cell content
6241  * @cfg {Number} cellspacing Specifies the space between cells
6242  * @cfg {String} frame Specifies which parts of the outside borders that should be visible
6243  * @cfg {String} rules Specifies which parts of the inside borders that should be visible
6244  * @cfg {String} sortable Specifies that the table should be sortable
6245  * @cfg {String} summary Specifies a summary of the content of a table
6246  * @cfg {Number} width Specifies the width of a table
6247  * @cfg {String} layout table layout (auto | fixed | initial | inherit)
6248  * 
6249  * @cfg {boolean} striped Should the rows be alternative striped
6250  * @cfg {boolean} bordered Add borders to the table
6251  * @cfg {boolean} hover Add hover highlighting
6252  * @cfg {boolean} condensed Format condensed
6253  * @cfg {boolean} responsive Format condensed
6254  * @cfg {Boolean} loadMask (true|false) default false
6255  * @cfg {Boolean} footerShow (true|false) generate tfoot, default true
6256  * @cfg {Boolean} headerShow (true|false) generate thead, default true
6257  * @cfg {Boolean} rowSelection (true|false) default false
6258  * @cfg {Boolean} cellSelection (true|false) default false
6259  * @cfg {Boolean} scrollBody (true|false) default false - body scrolled / fixed header
6260  * @cfg {Roo.bootstrap.PagingToolbar} footer  a paging toolbar
6261  * @cfg {Boolean} lazyLoad  auto load data while scrolling to the end (default false)
6262  * @cfg {Boolean} auto_hide_footer  auto hide footer if only one page (default false)
6263  
6264  * 
6265  * @constructor
6266  * Create a new Table
6267  * @param {Object} config The config object
6268  */
6269
6270 Roo.bootstrap.Table = function(config){
6271     Roo.bootstrap.Table.superclass.constructor.call(this, config);
6272     
6273   
6274     
6275     // BC...
6276     this.rowSelection = (typeof(config.rowSelection) != 'undefined') ? config.rowSelection : this.rowSelection;
6277     this.cellSelection = (typeof(config.cellSelection) != 'undefined') ? config.cellSelection : this.cellSelection;
6278     this.headerShow = (typeof(config.thead) != 'undefined') ? config.thead : this.headerShow;
6279     this.footerShow = (typeof(config.tfoot) != 'undefined') ? config.tfoot : this.footerShow;
6280     
6281     this.sm = this.sm || {xtype: 'RowSelectionModel'};
6282     if (this.sm) {
6283         this.sm.grid = this;
6284         this.selModel = Roo.factory(this.sm, Roo.bootstrap.Table);
6285         this.sm = this.selModel;
6286         this.sm.xmodule = this.xmodule || false;
6287     }
6288     
6289     if (this.cm && typeof(this.cm.config) == 'undefined') {
6290         this.colModel = new Roo.grid.ColumnModel(this.cm);
6291         this.cm = this.colModel;
6292         this.cm.xmodule = this.xmodule || false;
6293     }
6294     if (this.store) {
6295         this.store= Roo.factory(this.store, Roo.data);
6296         this.ds = this.store;
6297         this.ds.xmodule = this.xmodule || false;
6298          
6299     }
6300     if (this.footer && this.store) {
6301         this.footer.dataSource = this.ds;
6302         this.footer = Roo.factory(this.footer);
6303     }
6304     
6305     /** @private */
6306     this.addEvents({
6307         /**
6308          * @event cellclick
6309          * Fires when a cell is clicked
6310          * @param {Roo.bootstrap.Table} this
6311          * @param {Roo.Element} el
6312          * @param {Number} rowIndex
6313          * @param {Number} columnIndex
6314          * @param {Roo.EventObject} e
6315          */
6316         "cellclick" : true,
6317         /**
6318          * @event celldblclick
6319          * Fires when a cell is double clicked
6320          * @param {Roo.bootstrap.Table} this
6321          * @param {Roo.Element} el
6322          * @param {Number} rowIndex
6323          * @param {Number} columnIndex
6324          * @param {Roo.EventObject} e
6325          */
6326         "celldblclick" : true,
6327         /**
6328          * @event rowclick
6329          * Fires when a row is clicked
6330          * @param {Roo.bootstrap.Table} this
6331          * @param {Roo.Element} el
6332          * @param {Number} rowIndex
6333          * @param {Roo.EventObject} e
6334          */
6335         "rowclick" : true,
6336         /**
6337          * @event rowdblclick
6338          * Fires when a row is double clicked
6339          * @param {Roo.bootstrap.Table} this
6340          * @param {Roo.Element} el
6341          * @param {Number} rowIndex
6342          * @param {Roo.EventObject} e
6343          */
6344         "rowdblclick" : true,
6345         /**
6346          * @event mouseover
6347          * Fires when a mouseover occur
6348          * @param {Roo.bootstrap.Table} this
6349          * @param {Roo.Element} el
6350          * @param {Number} rowIndex
6351          * @param {Number} columnIndex
6352          * @param {Roo.EventObject} e
6353          */
6354         "mouseover" : true,
6355         /**
6356          * @event mouseout
6357          * Fires when a mouseout occur
6358          * @param {Roo.bootstrap.Table} this
6359          * @param {Roo.Element} el
6360          * @param {Number} rowIndex
6361          * @param {Number} columnIndex
6362          * @param {Roo.EventObject} e
6363          */
6364         "mouseout" : true,
6365         /**
6366          * @event rowclass
6367          * Fires when a row is rendered, so you can change add a style to it.
6368          * @param {Roo.bootstrap.Table} this
6369          * @param {Object} rowcfg   contains record  rowIndex colIndex and rowClass - set rowClass to add a style.
6370          */
6371         'rowclass' : true,
6372           /**
6373          * @event rowsrendered
6374          * Fires when all the  rows have been rendered
6375          * @param {Roo.bootstrap.Table} this
6376          */
6377         'rowsrendered' : true,
6378         /**
6379          * @event contextmenu
6380          * The raw contextmenu event for the entire grid.
6381          * @param {Roo.EventObject} e
6382          */
6383         "contextmenu" : true,
6384         /**
6385          * @event rowcontextmenu
6386          * Fires when a row is right clicked
6387          * @param {Roo.bootstrap.Table} this
6388          * @param {Number} rowIndex
6389          * @param {Roo.EventObject} e
6390          */
6391         "rowcontextmenu" : true,
6392         /**
6393          * @event cellcontextmenu
6394          * Fires when a cell is right clicked
6395          * @param {Roo.bootstrap.Table} this
6396          * @param {Number} rowIndex
6397          * @param {Number} cellIndex
6398          * @param {Roo.EventObject} e
6399          */
6400          "cellcontextmenu" : true,
6401          /**
6402          * @event headercontextmenu
6403          * Fires when a header is right clicked
6404          * @param {Roo.bootstrap.Table} this
6405          * @param {Number} columnIndex
6406          * @param {Roo.EventObject} e
6407          */
6408         "headercontextmenu" : true
6409     });
6410 };
6411
6412 Roo.extend(Roo.bootstrap.Table, Roo.bootstrap.Component,  {
6413     
6414     cls: false,
6415     align: false,
6416     bgcolor: false,
6417     border: false,
6418     cellpadding: false,
6419     cellspacing: false,
6420     frame: false,
6421     rules: false,
6422     sortable: false,
6423     summary: false,
6424     width: false,
6425     striped : false,
6426     scrollBody : false,
6427     bordered: false,
6428     hover:  false,
6429     condensed : false,
6430     responsive : false,
6431     sm : false,
6432     cm : false,
6433     store : false,
6434     loadMask : false,
6435     footerShow : true,
6436     headerShow : true,
6437   
6438     rowSelection : false,
6439     cellSelection : false,
6440     layout : false,
6441     
6442     // Roo.Element - the tbody
6443     mainBody: false,
6444     // Roo.Element - thead element
6445     mainHead: false,
6446     
6447     container: false, // used by gridpanel...
6448     
6449     lazyLoad : false,
6450     
6451     CSS : Roo.util.CSS,
6452     
6453     auto_hide_footer : false,
6454     
6455     getAutoCreate : function()
6456     {
6457         var cfg = Roo.apply({}, Roo.bootstrap.Table.superclass.getAutoCreate.call(this));
6458         
6459         cfg = {
6460             tag: 'table',
6461             cls : 'table',
6462             cn : []
6463         };
6464         if (this.scrollBody) {
6465             cfg.cls += ' table-body-fixed';
6466         }    
6467         if (this.striped) {
6468             cfg.cls += ' table-striped';
6469         }
6470         
6471         if (this.hover) {
6472             cfg.cls += ' table-hover';
6473         }
6474         if (this.bordered) {
6475             cfg.cls += ' table-bordered';
6476         }
6477         if (this.condensed) {
6478             cfg.cls += ' table-condensed';
6479         }
6480         if (this.responsive) {
6481             cfg.cls += ' table-responsive';
6482         }
6483         
6484         if (this.cls) {
6485             cfg.cls+=  ' ' +this.cls;
6486         }
6487         
6488         // this lot should be simplifed...
6489         var _t = this;
6490         var cp = [
6491             'align',
6492             'bgcolor',
6493             'border',
6494             'cellpadding',
6495             'cellspacing',
6496             'frame',
6497             'rules',
6498             'sortable',
6499             'summary',
6500             'width'
6501         ].forEach(function(k) {
6502             if (_t[k]) {
6503                 cfg[k] = _t[k];
6504             }
6505         });
6506         
6507         
6508         if (this.layout) {
6509             cfg.style = (typeof(cfg.style) == 'undefined') ? ('table-layout:' + this.layout + ';') : (cfg.style + ('table-layout:' + this.layout + ';'));
6510         }
6511         
6512         if(this.store || this.cm){
6513             if(this.headerShow){
6514                 cfg.cn.push(this.renderHeader());
6515             }
6516             
6517             cfg.cn.push(this.renderBody());
6518             
6519             if(this.footerShow){
6520                 cfg.cn.push(this.renderFooter());
6521             }
6522             // where does this come from?
6523             //cfg.cls+=  ' TableGrid';
6524         }
6525         
6526         return { cn : [ cfg ] };
6527     },
6528     
6529     initEvents : function()
6530     {   
6531         if(!this.store || !this.cm){
6532             return;
6533         }
6534         if (this.selModel) {
6535             this.selModel.initEvents();
6536         }
6537         
6538         
6539         //Roo.log('initEvents with ds!!!!');
6540         
6541         this.mainBody = this.el.select('tbody', true).first();
6542         this.mainHead = this.el.select('thead', true).first();
6543         this.mainFoot = this.el.select('tfoot', true).first();
6544         
6545         
6546         
6547         var _this = this;
6548         
6549         Roo.each(this.el.select('thead th.sortable', true).elements, function(e){
6550             e.on('click', _this.sort, _this);
6551         });
6552         
6553         this.mainBody.on("click", this.onClick, this);
6554         this.mainBody.on("dblclick", this.onDblClick, this);
6555         
6556         // why is this done????? = it breaks dialogs??
6557         //this.parent().el.setStyle('position', 'relative');
6558         
6559         
6560         if (this.footer) {
6561             this.footer.parentId = this.id;
6562             this.footer.onRender(this.el.select('tfoot tr td').first(), null);
6563             
6564             if(this.lazyLoad){
6565                 this.el.select('tfoot tr td').first().addClass('hide');
6566             }
6567         } 
6568         
6569         if(this.loadMask) {
6570             this.maskEl = new Roo.LoadMask(this.el, { store : this.ds, msgCls: 'roo-el-mask-msg' });
6571         }
6572         
6573         this.store.on('load', this.onLoad, this);
6574         this.store.on('beforeload', this.onBeforeLoad, this);
6575         this.store.on('update', this.onUpdate, this);
6576         this.store.on('add', this.onAdd, this);
6577         this.store.on("clear", this.clear, this);
6578         
6579         this.el.on("contextmenu", this.onContextMenu, this);
6580         
6581         this.mainBody.on('scroll', this.onBodyScroll, this);
6582         
6583         this.cm.on("headerchange", this.onHeaderChange, this);
6584         
6585         this.cm.on("hiddenchange", this.onHiddenChange, this, arguments);
6586         
6587     },
6588     
6589     onContextMenu : function(e, t)
6590     {
6591         this.processEvent("contextmenu", e);
6592     },
6593     
6594     processEvent : function(name, e)
6595     {
6596         if (name != 'touchstart' ) {
6597             this.fireEvent(name, e);    
6598         }
6599         
6600         var t = e.getTarget();
6601         
6602         var cell = Roo.get(t);
6603         
6604         if(!cell){
6605             return;
6606         }
6607         
6608         if(cell.findParent('tfoot', false, true)){
6609             return;
6610         }
6611         
6612         if(cell.findParent('thead', false, true)){
6613             
6614             if(e.getTarget().nodeName.toLowerCase() != 'th'){
6615                 cell = Roo.get(t).findParent('th', false, true);
6616                 if (!cell) {
6617                     Roo.log("failed to find th in thead?");
6618                     Roo.log(e.getTarget());
6619                     return;
6620                 }
6621             }
6622             
6623             var cellIndex = cell.dom.cellIndex;
6624             
6625             var ename = name == 'touchstart' ? 'click' : name;
6626             this.fireEvent("header" + ename, this, cellIndex, e);
6627             
6628             return;
6629         }
6630         
6631         if(e.getTarget().nodeName.toLowerCase() != 'td'){
6632             cell = Roo.get(t).findParent('td', false, true);
6633             if (!cell) {
6634                 Roo.log("failed to find th in tbody?");
6635                 Roo.log(e.getTarget());
6636                 return;
6637             }
6638         }
6639         
6640         var row = cell.findParent('tr', false, true);
6641         var cellIndex = cell.dom.cellIndex;
6642         var rowIndex = row.dom.rowIndex - 1;
6643         
6644         if(row !== false){
6645             
6646             this.fireEvent("row" + name, this, rowIndex, e);
6647             
6648             if(cell !== false){
6649             
6650                 this.fireEvent("cell" + name, this, rowIndex, cellIndex, e);
6651             }
6652         }
6653         
6654     },
6655     
6656     onMouseover : function(e, el)
6657     {
6658         var cell = Roo.get(el);
6659         
6660         if(!cell){
6661             return;
6662         }
6663         
6664         if(e.getTarget().nodeName.toLowerCase() != 'td'){
6665             cell = cell.findParent('td', false, true);
6666         }
6667         
6668         var row = cell.findParent('tr', false, true);
6669         var cellIndex = cell.dom.cellIndex;
6670         var rowIndex = row.dom.rowIndex - 1; // start from 0
6671         
6672         this.fireEvent('mouseover', this, cell, rowIndex, cellIndex, e);
6673         
6674     },
6675     
6676     onMouseout : function(e, el)
6677     {
6678         var cell = Roo.get(el);
6679         
6680         if(!cell){
6681             return;
6682         }
6683         
6684         if(e.getTarget().nodeName.toLowerCase() != 'td'){
6685             cell = cell.findParent('td', false, true);
6686         }
6687         
6688         var row = cell.findParent('tr', false, true);
6689         var cellIndex = cell.dom.cellIndex;
6690         var rowIndex = row.dom.rowIndex - 1; // start from 0
6691         
6692         this.fireEvent('mouseout', this, cell, rowIndex, cellIndex, e);
6693         
6694     },
6695     
6696     onClick : function(e, el)
6697     {
6698         var cell = Roo.get(el);
6699         
6700         if(!cell || (!this.cellSelection && !this.rowSelection)){
6701             return;
6702         }
6703         
6704         if(e.getTarget().nodeName.toLowerCase() != 'td'){
6705             cell = cell.findParent('td', false, true);
6706         }
6707         
6708         if(!cell || typeof(cell) == 'undefined'){
6709             return;
6710         }
6711         
6712         var row = cell.findParent('tr', false, true);
6713         
6714         if(!row || typeof(row) == 'undefined'){
6715             return;
6716         }
6717         
6718         var cellIndex = cell.dom.cellIndex;
6719         var rowIndex = this.getRowIndex(row);
6720         
6721         // why??? - should these not be based on SelectionModel?
6722         if(this.cellSelection){
6723             this.fireEvent('cellclick', this, cell, rowIndex, cellIndex, e);
6724         }
6725         
6726         if(this.rowSelection){
6727             this.fireEvent('rowclick', this, row, rowIndex, e);
6728         }
6729         
6730         
6731     },
6732         
6733     onDblClick : function(e,el)
6734     {
6735         var cell = Roo.get(el);
6736         
6737         if(!cell || (!this.cellSelection && !this.rowSelection)){
6738             return;
6739         }
6740         
6741         if(e.getTarget().nodeName.toLowerCase() != 'td'){
6742             cell = cell.findParent('td', false, true);
6743         }
6744         
6745         if(!cell || typeof(cell) == 'undefined'){
6746             return;
6747         }
6748         
6749         var row = cell.findParent('tr', false, true);
6750         
6751         if(!row || typeof(row) == 'undefined'){
6752             return;
6753         }
6754         
6755         var cellIndex = cell.dom.cellIndex;
6756         var rowIndex = this.getRowIndex(row);
6757         
6758         if(this.cellSelection){
6759             this.fireEvent('celldblclick', this, cell, rowIndex, cellIndex, e);
6760         }
6761         
6762         if(this.rowSelection){
6763             this.fireEvent('rowdblclick', this, row, rowIndex, e);
6764         }
6765     },
6766     
6767     sort : function(e,el)
6768     {
6769         var col = Roo.get(el);
6770         
6771         if(!col.hasClass('sortable')){
6772             return;
6773         }
6774         
6775         var sort = col.attr('sort');
6776         var dir = 'ASC';
6777         
6778         if(col.select('i', true).first().hasClass('glyphicon-arrow-up')){
6779             dir = 'DESC';
6780         }
6781         
6782         this.store.sortInfo = {field : sort, direction : dir};
6783         
6784         if (this.footer) {
6785             Roo.log("calling footer first");
6786             this.footer.onClick('first');
6787         } else {
6788         
6789             this.store.load({ params : { start : 0 } });
6790         }
6791     },
6792     
6793     renderHeader : function()
6794     {
6795         var header = {
6796             tag: 'thead',
6797             cn : []
6798         };
6799         
6800         var cm = this.cm;
6801         this.totalWidth = 0;
6802         
6803         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
6804             
6805             var config = cm.config[i];
6806             
6807             var c = {
6808                 tag: 'th',
6809                 cls : 'x-hcol-' + i,
6810                 style : '',
6811                 html: cm.getColumnHeader(i)
6812             };
6813             
6814             var hh = '';
6815             
6816             if(typeof(config.sortable) != 'undefined' && config.sortable){
6817                 c.cls = 'sortable';
6818                 c.html = '<i class="glyphicon"></i>' + c.html;
6819             }
6820             
6821             // could use BS4 hidden-..-down 
6822             
6823             if(typeof(config.lgHeader) != 'undefined'){
6824                 hh += '<span class="hidden-xs hidden-sm hidden-md ">' + config.lgHeader + '</span>';
6825             }
6826             
6827             if(typeof(config.mdHeader) != 'undefined'){
6828                 hh += '<span class="hidden-xs hidden-sm hidden-lg">' + config.mdHeader + '</span>';
6829             }
6830             
6831             if(typeof(config.smHeader) != 'undefined'){
6832                 hh += '<span class="hidden-xs hidden-md hidden-lg">' + config.smHeader + '</span>';
6833             }
6834             
6835             if(typeof(config.xsHeader) != 'undefined'){
6836                 hh += '<span class="hidden-sm hidden-md hidden-lg">' + config.xsHeader + '</span>';
6837             }
6838             
6839             if(hh.length){
6840                 c.html = hh;
6841             }
6842             
6843             if(typeof(config.tooltip) != 'undefined'){
6844                 c.tooltip = config.tooltip;
6845             }
6846             
6847             if(typeof(config.colspan) != 'undefined'){
6848                 c.colspan = config.colspan;
6849             }
6850             
6851             if(typeof(config.hidden) != 'undefined' && config.hidden){
6852                 c.style += ' display:none;';
6853             }
6854             
6855             if(typeof(config.dataIndex) != 'undefined'){
6856                 c.sort = config.dataIndex;
6857             }
6858             
6859            
6860             
6861             if(typeof(config.align) != 'undefined' && config.align.length){
6862                 c.style += ' text-align:' + config.align + ';';
6863             }
6864             
6865             if(typeof(config.width) != 'undefined'){
6866                 c.style += ' width:' + config.width + 'px;';
6867                 this.totalWidth += config.width;
6868             } else {
6869                 this.totalWidth += 100; // assume minimum of 100 per column?
6870             }
6871             
6872             if(typeof(config.cls) != 'undefined'){
6873                 c.cls = (typeof(c.cls) == 'undefined') ? config.cls : (c.cls + ' ' + config.cls);
6874             }
6875             
6876             ['xs','sm','md','lg'].map(function(size){
6877                 
6878                 if(typeof(config[size]) == 'undefined'){
6879                     return;
6880                 }
6881                  
6882                 if (!config[size]) { // 0 = hidden
6883                     // BS 4 '0' is treated as hide that column and below.
6884                     c.cls += ' hidden-' + size + ' hidden' + size + '-down';
6885                     return;
6886                 }
6887                 
6888                 c.cls += ' col-' + size + '-' + config[size] + (
6889                     size == 'xs' ? (' col-' + config[size] ) : '' // bs4 col-{num} replaces col-xs
6890                 );
6891                 
6892                 
6893             });
6894             
6895             header.cn.push(c)
6896         }
6897         
6898         return header;
6899     },
6900     
6901     renderBody : function()
6902     {
6903         var body = {
6904             tag: 'tbody',
6905             cn : [
6906                 {
6907                     tag: 'tr',
6908                     cn : [
6909                         {
6910                             tag : 'td',
6911                             colspan :  this.cm.getColumnCount()
6912                         }
6913                     ]
6914                 }
6915             ]
6916         };
6917         
6918         return body;
6919     },
6920     
6921     renderFooter : function()
6922     {
6923         var footer = {
6924             tag: 'tfoot',
6925             cn : [
6926                 {
6927                     tag: 'tr',
6928                     cn : [
6929                         {
6930                             tag : 'td',
6931                             colspan :  this.cm.getColumnCount()
6932                         }
6933                     ]
6934                 }
6935             ]
6936         };
6937         
6938         return footer;
6939     },
6940     
6941     
6942     
6943     onLoad : function()
6944     {
6945 //        Roo.log('ds onload');
6946         this.clear();
6947         
6948         var _this = this;
6949         var cm = this.cm;
6950         var ds = this.store;
6951         
6952         Roo.each(this.el.select('thead th.sortable', true).elements, function(e){
6953             e.select('i', true).removeClass(['glyphicon-arrow-up', 'glyphicon-arrow-down']);
6954             if (_this.store.sortInfo) {
6955                     
6956                 if(e.hasClass('sortable') && e.attr('sort') == _this.store.sortInfo.field && _this.store.sortInfo.direction.toUpperCase() == 'ASC'){
6957                     e.select('i', true).addClass(['glyphicon-arrow-up']);
6958                 }
6959                 
6960                 if(e.hasClass('sortable') && e.attr('sort') == _this.store.sortInfo.field && _this.store.sortInfo.direction.toUpperCase() == 'DESC'){
6961                     e.select('i', true).addClass(['glyphicon-arrow-down']);
6962                 }
6963             }
6964         });
6965         
6966         var tbody =  this.mainBody;
6967               
6968         if(ds.getCount() > 0){
6969             ds.data.each(function(d,rowIndex){
6970                 var row =  this.renderRow(cm, ds, rowIndex);
6971                 
6972                 tbody.createChild(row);
6973                 
6974                 var _this = this;
6975                 
6976                 if(row.cellObjects.length){
6977                     Roo.each(row.cellObjects, function(r){
6978                         _this.renderCellObject(r);
6979                     })
6980                 }
6981                 
6982             }, this);
6983         }
6984         
6985         var tfoot = this.el.select('tfoot', true).first();
6986         
6987         if(this.footerShow && this.auto_hide_footer && this.mainFoot){
6988             
6989             this.mainFoot.setVisibilityMode(Roo.Element.DISPLAY).hide();
6990             
6991             var total = this.ds.getTotalCount();
6992             
6993             if(this.footer.pageSize < total){
6994                 this.mainFoot.show();
6995             }
6996         }
6997         
6998         Roo.each(this.el.select('tbody td', true).elements, function(e){
6999             e.on('mouseover', _this.onMouseover, _this);
7000         });
7001         
7002         Roo.each(this.el.select('tbody td', true).elements, function(e){
7003             e.on('mouseout', _this.onMouseout, _this);
7004         });
7005         this.fireEvent('rowsrendered', this);
7006         
7007         this.autoSize();
7008     },
7009     
7010     
7011     onUpdate : function(ds,record)
7012     {
7013         this.refreshRow(record);
7014         this.autoSize();
7015     },
7016     
7017     onRemove : function(ds, record, index, isUpdate){
7018         if(isUpdate !== true){
7019             this.fireEvent("beforerowremoved", this, index, record);
7020         }
7021         var bt = this.mainBody.dom;
7022         
7023         var rows = this.el.select('tbody > tr', true).elements;
7024         
7025         if(typeof(rows[index]) != 'undefined'){
7026             bt.removeChild(rows[index].dom);
7027         }
7028         
7029 //        if(bt.rows[index]){
7030 //            bt.removeChild(bt.rows[index]);
7031 //        }
7032         
7033         if(isUpdate !== true){
7034             //this.stripeRows(index);
7035             //this.syncRowHeights(index, index);
7036             //this.layout();
7037             this.fireEvent("rowremoved", this, index, record);
7038         }
7039     },
7040     
7041     onAdd : function(ds, records, rowIndex)
7042     {
7043         //Roo.log('on Add called');
7044         // - note this does not handle multiple adding very well..
7045         var bt = this.mainBody.dom;
7046         for (var i =0 ; i < records.length;i++) {
7047             //Roo.log('call insert row Add called on ' + rowIndex + ':' + i);
7048             //Roo.log(records[i]);
7049             //Roo.log(this.store.getAt(rowIndex+i));
7050             this.insertRow(this.store, rowIndex + i, false);
7051             return;
7052         }
7053         
7054     },
7055     
7056     
7057     refreshRow : function(record){
7058         var ds = this.store, index;
7059         if(typeof record == 'number'){
7060             index = record;
7061             record = ds.getAt(index);
7062         }else{
7063             index = ds.indexOf(record);
7064         }
7065         this.insertRow(ds, index, true);
7066         this.autoSize();
7067         this.onRemove(ds, record, index+1, true);
7068         this.autoSize();
7069         //this.syncRowHeights(index, index);
7070         //this.layout();
7071         this.fireEvent("rowupdated", this, index, record);
7072     },
7073     
7074     insertRow : function(dm, rowIndex, isUpdate){
7075         
7076         if(!isUpdate){
7077             this.fireEvent("beforerowsinserted", this, rowIndex);
7078         }
7079             //var s = this.getScrollState();
7080         var row = this.renderRow(this.cm, this.store, rowIndex);
7081         // insert before rowIndex..
7082         var e = this.mainBody.createChild(row,this.getRowDom(rowIndex));
7083         
7084         var _this = this;
7085                 
7086         if(row.cellObjects.length){
7087             Roo.each(row.cellObjects, function(r){
7088                 _this.renderCellObject(r);
7089             })
7090         }
7091             
7092         if(!isUpdate){
7093             this.fireEvent("rowsinserted", this, rowIndex);
7094             //this.syncRowHeights(firstRow, lastRow);
7095             //this.stripeRows(firstRow);
7096             //this.layout();
7097         }
7098         
7099     },
7100     
7101     
7102     getRowDom : function(rowIndex)
7103     {
7104         var rows = this.el.select('tbody > tr', true).elements;
7105         
7106         return (typeof(rows[rowIndex]) == 'undefined') ? false : rows[rowIndex];
7107         
7108     },
7109     // returns the object tree for a tr..
7110   
7111     
7112     renderRow : function(cm, ds, rowIndex) 
7113     {
7114         var d = ds.getAt(rowIndex);
7115         
7116         var row = {
7117             tag : 'tr',
7118             cls : 'x-row-' + rowIndex,
7119             cn : []
7120         };
7121             
7122         var cellObjects = [];
7123         
7124         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
7125             var config = cm.config[i];
7126             
7127             var renderer = cm.getRenderer(i);
7128             var value = '';
7129             var id = false;
7130             
7131             if(typeof(renderer) !== 'undefined'){
7132                 value = renderer(d.data[cm.getDataIndex(i)], false, d);
7133             }
7134             // if object are returned, then they are expected to be Roo.bootstrap.Component instances
7135             // and are rendered into the cells after the row is rendered - using the id for the element.
7136             
7137             if(typeof(value) === 'object'){
7138                 id = Roo.id();
7139                 cellObjects.push({
7140                     container : id,
7141                     cfg : value 
7142                 })
7143             }
7144             
7145             var rowcfg = {
7146                 record: d,
7147                 rowIndex : rowIndex,
7148                 colIndex : i,
7149                 rowClass : ''
7150             };
7151
7152             this.fireEvent('rowclass', this, rowcfg);
7153             
7154             var td = {
7155                 tag: 'td',
7156                 cls : rowcfg.rowClass + ' x-col-' + i,
7157                 style: '',
7158                 html: (typeof(value) === 'object') ? '' : value
7159             };
7160             
7161             if (id) {
7162                 td.id = id;
7163             }
7164             
7165             if(typeof(config.colspan) != 'undefined'){
7166                 td.colspan = config.colspan;
7167             }
7168             
7169             if(typeof(config.hidden) != 'undefined' && config.hidden){
7170                 td.style += ' display:none;';
7171             }
7172             
7173             if(typeof(config.align) != 'undefined' && config.align.length){
7174                 td.style += ' text-align:' + config.align + ';';
7175             }
7176             if(typeof(config.valign) != 'undefined' && config.valign.length){
7177                 td.style += ' vertical-align:' + config.valign + ';';
7178             }
7179             
7180             if(typeof(config.width) != 'undefined'){
7181                 td.style += ' width:' +  config.width + 'px;';
7182             }
7183             
7184             if(typeof(config.cursor) != 'undefined'){
7185                 td.style += ' cursor:' +  config.cursor + ';';
7186             }
7187             
7188             if(typeof(config.cls) != 'undefined'){
7189                 td.cls = (typeof(td.cls) == 'undefined') ? config.cls : (td.cls + ' ' + config.cls);
7190             }
7191             
7192             ['xs','sm','md','lg'].map(function(size){
7193                 
7194                 if(typeof(config[size]) == 'undefined'){
7195                     return;
7196                 }
7197                 
7198                 
7199                   
7200                 if (!config[size]) { // 0 = hidden
7201                     // BS 4 '0' is treated as hide that column and below.
7202                     td.cls += ' hidden-' + size + ' hidden' + size + '-down';
7203                     return;
7204                 }
7205                 
7206                 td.cls += ' col-' + size + '-' + config[size] + (
7207                     size == 'xs' ? (' col-' +   config[size] ) : '' // bs4 col-{num} replaces col-xs
7208                 );
7209                  
7210
7211             });
7212             
7213             row.cn.push(td);
7214            
7215         }
7216         
7217         row.cellObjects = cellObjects;
7218         
7219         return row;
7220           
7221     },
7222     
7223     
7224     
7225     onBeforeLoad : function()
7226     {
7227         
7228     },
7229      /**
7230      * Remove all rows
7231      */
7232     clear : function()
7233     {
7234         this.el.select('tbody', true).first().dom.innerHTML = '';
7235     },
7236     /**
7237      * Show or hide a row.
7238      * @param {Number} rowIndex to show or hide
7239      * @param {Boolean} state hide
7240      */
7241     setRowVisibility : function(rowIndex, state)
7242     {
7243         var bt = this.mainBody.dom;
7244         
7245         var rows = this.el.select('tbody > tr', true).elements;
7246         
7247         if(typeof(rows[rowIndex]) == 'undefined'){
7248             return;
7249         }
7250         rows[rowIndex].dom.style.display = state ? '' : 'none';
7251     },
7252     
7253     
7254     getSelectionModel : function(){
7255         if(!this.selModel){
7256             this.selModel = new Roo.bootstrap.Table.RowSelectionModel({grid: this});
7257         }
7258         return this.selModel;
7259     },
7260     /*
7261      * Render the Roo.bootstrap object from renderder
7262      */
7263     renderCellObject : function(r)
7264     {
7265         var _this = this;
7266         
7267         r.cfg.parentId = (typeof(r.container) == 'string') ? r.container : r.container.id;
7268         
7269         var t = r.cfg.render(r.container);
7270         
7271         if(r.cfg.cn){
7272             Roo.each(r.cfg.cn, function(c){
7273                 var child = {
7274                     container: t.getChildContainer(),
7275                     cfg: c
7276                 };
7277                 _this.renderCellObject(child);
7278             })
7279         }
7280     },
7281     
7282     getRowIndex : function(row)
7283     {
7284         var rowIndex = -1;
7285         
7286         Roo.each(this.el.select('tbody > tr', true).elements, function(el, index){
7287             if(el != row){
7288                 return;
7289             }
7290             
7291             rowIndex = index;
7292         });
7293         
7294         return rowIndex;
7295     },
7296      /**
7297      * Returns the grid's underlying element = used by panel.Grid
7298      * @return {Element} The element
7299      */
7300     getGridEl : function(){
7301         return this.el;
7302     },
7303      /**
7304      * Forces a resize - used by panel.Grid
7305      * @return {Element} The element
7306      */
7307     autoSize : function()
7308     {
7309         //var ctr = Roo.get(this.container.dom.parentElement);
7310         var ctr = Roo.get(this.el.dom);
7311         
7312         var thd = this.getGridEl().select('thead',true).first();
7313         var tbd = this.getGridEl().select('tbody', true).first();
7314         var tfd = this.getGridEl().select('tfoot', true).first();
7315         
7316         var cw = ctr.getWidth();
7317         
7318         if (tbd) {
7319             
7320             tbd.setSize(ctr.getWidth(),
7321                         ctr.getHeight() - ((thd ? thd.getHeight() : 0) + (tfd ? tfd.getHeight() : 0))
7322             );
7323             var barsize = (tbd.dom.offsetWidth - tbd.dom.clientWidth);
7324             cw -= barsize;
7325         }
7326         cw = Math.max(cw, this.totalWidth);
7327         this.getGridEl().select('tr',true).setWidth(cw);
7328         // resize 'expandable coloumn?
7329         
7330         return; // we doe not have a view in this design..
7331         
7332     },
7333     onBodyScroll: function()
7334     {
7335         //Roo.log("body scrolled');" + this.mainBody.dom.scrollLeft);
7336         if(this.mainHead){
7337             this.mainHead.setStyle({
7338                 'position' : 'relative',
7339                 'left': (-1* this.mainBody.dom.scrollLeft) + 'px'
7340             });
7341         }
7342         
7343         if(this.lazyLoad){
7344             
7345             var scrollHeight = this.mainBody.dom.scrollHeight;
7346             
7347             var scrollTop = Math.ceil(this.mainBody.getScroll().top);
7348             
7349             var height = this.mainBody.getHeight();
7350             
7351             if(scrollHeight - height == scrollTop) {
7352                 
7353                 var total = this.ds.getTotalCount();
7354                 
7355                 if(this.footer.cursor + this.footer.pageSize < total){
7356                     
7357                     this.footer.ds.load({
7358                         params : {
7359                             start : this.footer.cursor + this.footer.pageSize,
7360                             limit : this.footer.pageSize
7361                         },
7362                         add : true
7363                     });
7364                 }
7365             }
7366             
7367         }
7368     },
7369     
7370     onHeaderChange : function()
7371     {
7372         var header = this.renderHeader();
7373         var table = this.el.select('table', true).first();
7374         
7375         this.mainHead.remove();
7376         this.mainHead = table.createChild(header, this.mainBody, false);
7377     },
7378     
7379     onHiddenChange : function(colModel, colIndex, hidden)
7380     {
7381         var thSelector = '#' + this.id + ' .x-hcol-' + colIndex;
7382         var tdSelector = '#' + this.id + ' .x-col-' + colIndex;
7383         
7384         this.CSS.updateRule(thSelector, "display", "");
7385         this.CSS.updateRule(tdSelector, "display", "");
7386         
7387         if(hidden){
7388             this.CSS.updateRule(thSelector, "display", "none");
7389             this.CSS.updateRule(tdSelector, "display", "none");
7390         }
7391         
7392         this.onHeaderChange();
7393         this.onLoad();
7394     },
7395     
7396     setColumnWidth: function(col_index, width)
7397     {
7398         // width = "md-2 xs-2..."
7399         if(!this.colModel.config[col_index]) {
7400             return;
7401         }
7402         
7403         var w = width.split(" ");
7404         
7405         var rows = this.el.dom.getElementsByClassName("x-col-"+col_index);
7406         
7407         var h_row = this.el.dom.getElementsByClassName("x-hcol-"+col_index);
7408         
7409         
7410         for(var j = 0; j < w.length; j++) {
7411             
7412             if(!w[j]) {
7413                 continue;
7414             }
7415             
7416             var size_cls = w[j].split("-");
7417             
7418             if(!Number.isInteger(size_cls[1] * 1)) {
7419                 continue;
7420             }
7421             
7422             if(!this.colModel.config[col_index][size_cls[0]]) {
7423                 continue;
7424             }
7425             
7426             if(!h_row[0].classList.contains("col-"+size_cls[0]+"-"+this.colModel.config[col_index][size_cls[0]])) {
7427                 continue;
7428             }
7429             
7430             h_row[0].classList.replace(
7431                 "col-"+size_cls[0]+"-"+this.colModel.config[col_index][size_cls[0]],
7432                 "col-"+size_cls[0]+"-"+size_cls[1]
7433             );
7434             
7435             for(var i = 0; i < rows.length; i++) {
7436                 
7437                 var size_cls = w[j].split("-");
7438                 
7439                 if(!Number.isInteger(size_cls[1] * 1)) {
7440                     continue;
7441                 }
7442                 
7443                 if(!this.colModel.config[col_index][size_cls[0]]) {
7444                     continue;
7445                 }
7446                 
7447                 if(!rows[i].classList.contains("col-"+size_cls[0]+"-"+this.colModel.config[col_index][size_cls[0]])) {
7448                     continue;
7449                 }
7450                 
7451                 rows[i].classList.replace(
7452                     "col-"+size_cls[0]+"-"+this.colModel.config[col_index][size_cls[0]],
7453                     "col-"+size_cls[0]+"-"+size_cls[1]
7454                 );
7455             }
7456             
7457             this.colModel.config[col_index][size_cls[0]] = size_cls[1];
7458         }
7459     }
7460 });
7461
7462  
7463
7464  /*
7465  * - LGPL
7466  *
7467  * table cell
7468  * 
7469  */
7470
7471 /**
7472  * @class Roo.bootstrap.TableCell
7473  * @extends Roo.bootstrap.Component
7474  * Bootstrap TableCell class
7475  * @cfg {String} html cell contain text
7476  * @cfg {String} cls cell class
7477  * @cfg {String} tag cell tag (td|th) default td
7478  * @cfg {String} abbr Specifies an abbreviated version of the content in a cell
7479  * @cfg {String} align Aligns the content in a cell
7480  * @cfg {String} axis Categorizes cells
7481  * @cfg {String} bgcolor Specifies the background color of a cell
7482  * @cfg {Number} charoff Sets the number of characters the content will be aligned from the character specified by the char attribute
7483  * @cfg {Number} colspan Specifies the number of columns a cell should span
7484  * @cfg {String} headers Specifies one or more header cells a cell is related to
7485  * @cfg {Number} height Sets the height of a cell
7486  * @cfg {String} nowrap Specifies that the content inside a cell should not wrap
7487  * @cfg {Number} rowspan Sets the number of rows a cell should span
7488  * @cfg {String} scope Defines a way to associate header cells and data cells in a table
7489  * @cfg {String} valign Vertical aligns the content in a cell
7490  * @cfg {Number} width Specifies the width of a cell
7491  * 
7492  * @constructor
7493  * Create a new TableCell
7494  * @param {Object} config The config object
7495  */
7496
7497 Roo.bootstrap.TableCell = function(config){
7498     Roo.bootstrap.TableCell.superclass.constructor.call(this, config);
7499 };
7500
7501 Roo.extend(Roo.bootstrap.TableCell, Roo.bootstrap.Component,  {
7502     
7503     html: false,
7504     cls: false,
7505     tag: false,
7506     abbr: false,
7507     align: false,
7508     axis: false,
7509     bgcolor: false,
7510     charoff: false,
7511     colspan: false,
7512     headers: false,
7513     height: false,
7514     nowrap: false,
7515     rowspan: false,
7516     scope: false,
7517     valign: false,
7518     width: false,
7519     
7520     
7521     getAutoCreate : function(){
7522         var cfg = Roo.apply({}, Roo.bootstrap.TableCell.superclass.getAutoCreate.call(this));
7523         
7524         cfg = {
7525             tag: 'td'
7526         };
7527         
7528         if(this.tag){
7529             cfg.tag = this.tag;
7530         }
7531         
7532         if (this.html) {
7533             cfg.html=this.html
7534         }
7535         if (this.cls) {
7536             cfg.cls=this.cls
7537         }
7538         if (this.abbr) {
7539             cfg.abbr=this.abbr
7540         }
7541         if (this.align) {
7542             cfg.align=this.align
7543         }
7544         if (this.axis) {
7545             cfg.axis=this.axis
7546         }
7547         if (this.bgcolor) {
7548             cfg.bgcolor=this.bgcolor
7549         }
7550         if (this.charoff) {
7551             cfg.charoff=this.charoff
7552         }
7553         if (this.colspan) {
7554             cfg.colspan=this.colspan
7555         }
7556         if (this.headers) {
7557             cfg.headers=this.headers
7558         }
7559         if (this.height) {
7560             cfg.height=this.height
7561         }
7562         if (this.nowrap) {
7563             cfg.nowrap=this.nowrap
7564         }
7565         if (this.rowspan) {
7566             cfg.rowspan=this.rowspan
7567         }
7568         if (this.scope) {
7569             cfg.scope=this.scope
7570         }
7571         if (this.valign) {
7572             cfg.valign=this.valign
7573         }
7574         if (this.width) {
7575             cfg.width=this.width
7576         }
7577         
7578         
7579         return cfg;
7580     }
7581    
7582 });
7583
7584  
7585
7586  /*
7587  * - LGPL
7588  *
7589  * table row
7590  * 
7591  */
7592
7593 /**
7594  * @class Roo.bootstrap.TableRow
7595  * @extends Roo.bootstrap.Component
7596  * Bootstrap TableRow class
7597  * @cfg {String} cls row class
7598  * @cfg {String} align Aligns the content in a table row
7599  * @cfg {String} bgcolor Specifies a background color for a table row
7600  * @cfg {Number} charoff Sets the number of characters the content will be aligned from the character specified by the char attribute
7601  * @cfg {String} valign Vertical aligns the content in a table row
7602  * 
7603  * @constructor
7604  * Create a new TableRow
7605  * @param {Object} config The config object
7606  */
7607
7608 Roo.bootstrap.TableRow = function(config){
7609     Roo.bootstrap.TableRow.superclass.constructor.call(this, config);
7610 };
7611
7612 Roo.extend(Roo.bootstrap.TableRow, Roo.bootstrap.Component,  {
7613     
7614     cls: false,
7615     align: false,
7616     bgcolor: false,
7617     charoff: false,
7618     valign: false,
7619     
7620     getAutoCreate : function(){
7621         var cfg = Roo.apply({}, Roo.bootstrap.TableRow.superclass.getAutoCreate.call(this));
7622         
7623         cfg = {
7624             tag: 'tr'
7625         };
7626             
7627         if(this.cls){
7628             cfg.cls = this.cls;
7629         }
7630         if(this.align){
7631             cfg.align = this.align;
7632         }
7633         if(this.bgcolor){
7634             cfg.bgcolor = this.bgcolor;
7635         }
7636         if(this.charoff){
7637             cfg.charoff = this.charoff;
7638         }
7639         if(this.valign){
7640             cfg.valign = this.valign;
7641         }
7642         
7643         return cfg;
7644     }
7645    
7646 });
7647
7648  
7649
7650  /*
7651  * - LGPL
7652  *
7653  * table body
7654  * 
7655  */
7656
7657 /**
7658  * @class Roo.bootstrap.TableBody
7659  * @extends Roo.bootstrap.Component
7660  * Bootstrap TableBody class
7661  * @cfg {String} cls element class
7662  * @cfg {String} tag element tag (thead|tbody|tfoot) default tbody
7663  * @cfg {String} align Aligns the content inside the element
7664  * @cfg {Number} charoff Sets the number of characters the content inside the element will be aligned from the character specified by the char attribute
7665  * @cfg {String} valign Vertical aligns the content inside the <tbody> element
7666  * 
7667  * @constructor
7668  * Create a new TableBody
7669  * @param {Object} config The config object
7670  */
7671
7672 Roo.bootstrap.TableBody = function(config){
7673     Roo.bootstrap.TableBody.superclass.constructor.call(this, config);
7674 };
7675
7676 Roo.extend(Roo.bootstrap.TableBody, Roo.bootstrap.Component,  {
7677     
7678     cls: false,
7679     tag: false,
7680     align: false,
7681     charoff: false,
7682     valign: false,
7683     
7684     getAutoCreate : function(){
7685         var cfg = Roo.apply({}, Roo.bootstrap.TableBody.superclass.getAutoCreate.call(this));
7686         
7687         cfg = {
7688             tag: 'tbody'
7689         };
7690             
7691         if (this.cls) {
7692             cfg.cls=this.cls
7693         }
7694         if(this.tag){
7695             cfg.tag = this.tag;
7696         }
7697         
7698         if(this.align){
7699             cfg.align = this.align;
7700         }
7701         if(this.charoff){
7702             cfg.charoff = this.charoff;
7703         }
7704         if(this.valign){
7705             cfg.valign = this.valign;
7706         }
7707         
7708         return cfg;
7709     }
7710     
7711     
7712 //    initEvents : function()
7713 //    {
7714 //        
7715 //        if(!this.store){
7716 //            return;
7717 //        }
7718 //        
7719 //        this.store = Roo.factory(this.store, Roo.data);
7720 //        this.store.on('load', this.onLoad, this);
7721 //        
7722 //        this.store.load();
7723 //        
7724 //    },
7725 //    
7726 //    onLoad: function () 
7727 //    {   
7728 //        this.fireEvent('load', this);
7729 //    }
7730 //    
7731 //   
7732 });
7733
7734  
7735
7736  /*
7737  * Based on:
7738  * Ext JS Library 1.1.1
7739  * Copyright(c) 2006-2007, Ext JS, LLC.
7740  *
7741  * Originally Released Under LGPL - original licence link has changed is not relivant.
7742  *
7743  * Fork - LGPL
7744  * <script type="text/javascript">
7745  */
7746
7747 // as we use this in bootstrap.
7748 Roo.namespace('Roo.form');
7749  /**
7750  * @class Roo.form.Action
7751  * Internal Class used to handle form actions
7752  * @constructor
7753  * @param {Roo.form.BasicForm} el The form element or its id
7754  * @param {Object} config Configuration options
7755  */
7756
7757  
7758  
7759 // define the action interface
7760 Roo.form.Action = function(form, options){
7761     this.form = form;
7762     this.options = options || {};
7763 };
7764 /**
7765  * Client Validation Failed
7766  * @const 
7767  */
7768 Roo.form.Action.CLIENT_INVALID = 'client';
7769 /**
7770  * Server Validation Failed
7771  * @const 
7772  */
7773 Roo.form.Action.SERVER_INVALID = 'server';
7774  /**
7775  * Connect to Server Failed
7776  * @const 
7777  */
7778 Roo.form.Action.CONNECT_FAILURE = 'connect';
7779 /**
7780  * Reading Data from Server Failed
7781  * @const 
7782  */
7783 Roo.form.Action.LOAD_FAILURE = 'load';
7784
7785 Roo.form.Action.prototype = {
7786     type : 'default',
7787     failureType : undefined,
7788     response : undefined,
7789     result : undefined,
7790
7791     // interface method
7792     run : function(options){
7793
7794     },
7795
7796     // interface method
7797     success : function(response){
7798
7799     },
7800
7801     // interface method
7802     handleResponse : function(response){
7803
7804     },
7805
7806     // default connection failure
7807     failure : function(response){
7808         
7809         this.response = response;
7810         this.failureType = Roo.form.Action.CONNECT_FAILURE;
7811         this.form.afterAction(this, false);
7812     },
7813
7814     processResponse : function(response){
7815         this.response = response;
7816         if(!response.responseText){
7817             return true;
7818         }
7819         this.result = this.handleResponse(response);
7820         return this.result;
7821     },
7822
7823     // utility functions used internally
7824     getUrl : function(appendParams){
7825         var url = this.options.url || this.form.url || this.form.el.dom.action;
7826         if(appendParams){
7827             var p = this.getParams();
7828             if(p){
7829                 url += (url.indexOf('?') != -1 ? '&' : '?') + p;
7830             }
7831         }
7832         return url;
7833     },
7834
7835     getMethod : function(){
7836         return (this.options.method || this.form.method || this.form.el.dom.method || 'POST').toUpperCase();
7837     },
7838
7839     getParams : function(){
7840         var bp = this.form.baseParams;
7841         var p = this.options.params;
7842         if(p){
7843             if(typeof p == "object"){
7844                 p = Roo.urlEncode(Roo.applyIf(p, bp));
7845             }else if(typeof p == 'string' && bp){
7846                 p += '&' + Roo.urlEncode(bp);
7847             }
7848         }else if(bp){
7849             p = Roo.urlEncode(bp);
7850         }
7851         return p;
7852     },
7853
7854     createCallback : function(){
7855         return {
7856             success: this.success,
7857             failure: this.failure,
7858             scope: this,
7859             timeout: (this.form.timeout*1000),
7860             upload: this.form.fileUpload ? this.success : undefined
7861         };
7862     }
7863 };
7864
7865 Roo.form.Action.Submit = function(form, options){
7866     Roo.form.Action.Submit.superclass.constructor.call(this, form, options);
7867 };
7868
7869 Roo.extend(Roo.form.Action.Submit, Roo.form.Action, {
7870     type : 'submit',
7871
7872     haveProgress : false,
7873     uploadComplete : false,
7874     
7875     // uploadProgress indicator.
7876     uploadProgress : function()
7877     {
7878         if (!this.form.progressUrl) {
7879             return;
7880         }
7881         
7882         if (!this.haveProgress) {
7883             Roo.MessageBox.progress("Uploading", "Uploading");
7884         }
7885         if (this.uploadComplete) {
7886            Roo.MessageBox.hide();
7887            return;
7888         }
7889         
7890         this.haveProgress = true;
7891    
7892         var uid = this.form.findField('UPLOAD_IDENTIFIER').getValue();
7893         
7894         var c = new Roo.data.Connection();
7895         c.request({
7896             url : this.form.progressUrl,
7897             params: {
7898                 id : uid
7899             },
7900             method: 'GET',
7901             success : function(req){
7902                //console.log(data);
7903                 var rdata = false;
7904                 var edata;
7905                 try  {
7906                    rdata = Roo.decode(req.responseText)
7907                 } catch (e) {
7908                     Roo.log("Invalid data from server..");
7909                     Roo.log(edata);
7910                     return;
7911                 }
7912                 if (!rdata || !rdata.success) {
7913                     Roo.log(rdata);
7914                     Roo.MessageBox.alert(Roo.encode(rdata));
7915                     return;
7916                 }
7917                 var data = rdata.data;
7918                 
7919                 if (this.uploadComplete) {
7920                    Roo.MessageBox.hide();
7921                    return;
7922                 }
7923                    
7924                 if (data){
7925                     Roo.MessageBox.updateProgress(data.bytes_uploaded/data.bytes_total,
7926                        Math.floor((data.bytes_total - data.bytes_uploaded)/1000) + 'k remaining'
7927                     );
7928                 }
7929                 this.uploadProgress.defer(2000,this);
7930             },
7931        
7932             failure: function(data) {
7933                 Roo.log('progress url failed ');
7934                 Roo.log(data);
7935             },
7936             scope : this
7937         });
7938            
7939     },
7940     
7941     
7942     run : function()
7943     {
7944         // run get Values on the form, so it syncs any secondary forms.
7945         this.form.getValues();
7946         
7947         var o = this.options;
7948         var method = this.getMethod();
7949         var isPost = method == 'POST';
7950         if(o.clientValidation === false || this.form.isValid()){
7951             
7952             if (this.form.progressUrl) {
7953                 this.form.findField('UPLOAD_IDENTIFIER').setValue(
7954                     (new Date() * 1) + '' + Math.random());
7955                     
7956             } 
7957             
7958             
7959             Roo.Ajax.request(Roo.apply(this.createCallback(), {
7960                 form:this.form.el.dom,
7961                 url:this.getUrl(!isPost),
7962                 method: method,
7963                 params:isPost ? this.getParams() : null,
7964                 isUpload: this.form.fileUpload,
7965                 formData : this.form.formData
7966             }));
7967             
7968             this.uploadProgress();
7969
7970         }else if (o.clientValidation !== false){ // client validation failed
7971             this.failureType = Roo.form.Action.CLIENT_INVALID;
7972             this.form.afterAction(this, false);
7973         }
7974     },
7975
7976     success : function(response)
7977     {
7978         this.uploadComplete= true;
7979         if (this.haveProgress) {
7980             Roo.MessageBox.hide();
7981         }
7982         
7983         
7984         var result = this.processResponse(response);
7985         if(result === true || result.success){
7986             this.form.afterAction(this, true);
7987             return;
7988         }
7989         if(result.errors){
7990             this.form.markInvalid(result.errors);
7991             this.failureType = Roo.form.Action.SERVER_INVALID;
7992         }
7993         this.form.afterAction(this, false);
7994     },
7995     failure : function(response)
7996     {
7997         this.uploadComplete= true;
7998         if (this.haveProgress) {
7999             Roo.MessageBox.hide();
8000         }
8001         
8002         this.response = response;
8003         this.failureType = Roo.form.Action.CONNECT_FAILURE;
8004         this.form.afterAction(this, false);
8005     },
8006     
8007     handleResponse : function(response){
8008         if(this.form.errorReader){
8009             var rs = this.form.errorReader.read(response);
8010             var errors = [];
8011             if(rs.records){
8012                 for(var i = 0, len = rs.records.length; i < len; i++) {
8013                     var r = rs.records[i];
8014                     errors[i] = r.data;
8015                 }
8016             }
8017             if(errors.length < 1){
8018                 errors = null;
8019             }
8020             return {
8021                 success : rs.success,
8022                 errors : errors
8023             };
8024         }
8025         var ret = false;
8026         try {
8027             ret = Roo.decode(response.responseText);
8028         } catch (e) {
8029             ret = {
8030                 success: false,
8031                 errorMsg: "Failed to read server message: " + (response ? response.responseText : ' - no message'),
8032                 errors : []
8033             };
8034         }
8035         return ret;
8036         
8037     }
8038 });
8039
8040
8041 Roo.form.Action.Load = function(form, options){
8042     Roo.form.Action.Load.superclass.constructor.call(this, form, options);
8043     this.reader = this.form.reader;
8044 };
8045
8046 Roo.extend(Roo.form.Action.Load, Roo.form.Action, {
8047     type : 'load',
8048
8049     run : function(){
8050         
8051         Roo.Ajax.request(Roo.apply(
8052                 this.createCallback(), {
8053                     method:this.getMethod(),
8054                     url:this.getUrl(false),
8055                     params:this.getParams()
8056         }));
8057     },
8058
8059     success : function(response){
8060         
8061         var result = this.processResponse(response);
8062         if(result === true || !result.success || !result.data){
8063             this.failureType = Roo.form.Action.LOAD_FAILURE;
8064             this.form.afterAction(this, false);
8065             return;
8066         }
8067         this.form.clearInvalid();
8068         this.form.setValues(result.data);
8069         this.form.afterAction(this, true);
8070     },
8071
8072     handleResponse : function(response){
8073         if(this.form.reader){
8074             var rs = this.form.reader.read(response);
8075             var data = rs.records && rs.records[0] ? rs.records[0].data : null;
8076             return {
8077                 success : rs.success,
8078                 data : data
8079             };
8080         }
8081         return Roo.decode(response.responseText);
8082     }
8083 });
8084
8085 Roo.form.Action.ACTION_TYPES = {
8086     'load' : Roo.form.Action.Load,
8087     'submit' : Roo.form.Action.Submit
8088 };/*
8089  * - LGPL
8090  *
8091  * form
8092  *
8093  */
8094
8095 /**
8096  * @class Roo.bootstrap.Form
8097  * @extends Roo.bootstrap.Component
8098  * Bootstrap Form class
8099  * @cfg {String} method  GET | POST (default POST)
8100  * @cfg {String} labelAlign top | left (default top)
8101  * @cfg {String} align left  | right - for navbars
8102  * @cfg {Boolean} loadMask load mask when submit (default true)
8103
8104  *
8105  * @constructor
8106  * Create a new Form
8107  * @param {Object} config The config object
8108  */
8109
8110
8111 Roo.bootstrap.Form = function(config){
8112     
8113     Roo.bootstrap.Form.superclass.constructor.call(this, config);
8114     
8115     Roo.bootstrap.Form.popover.apply();
8116     
8117     this.addEvents({
8118         /**
8119          * @event clientvalidation
8120          * If the monitorValid config option is true, this event fires repetitively to notify of valid state
8121          * @param {Form} this
8122          * @param {Boolean} valid true if the form has passed client-side validation
8123          */
8124         clientvalidation: true,
8125         /**
8126          * @event beforeaction
8127          * Fires before any action is performed. Return false to cancel the action.
8128          * @param {Form} this
8129          * @param {Action} action The action to be performed
8130          */
8131         beforeaction: true,
8132         /**
8133          * @event actionfailed
8134          * Fires when an action fails.
8135          * @param {Form} this
8136          * @param {Action} action The action that failed
8137          */
8138         actionfailed : true,
8139         /**
8140          * @event actioncomplete
8141          * Fires when an action is completed.
8142          * @param {Form} this
8143          * @param {Action} action The action that completed
8144          */
8145         actioncomplete : true
8146     });
8147 };
8148
8149 Roo.extend(Roo.bootstrap.Form, Roo.bootstrap.Component,  {
8150
8151      /**
8152      * @cfg {String} method
8153      * The request method to use (GET or POST) for form actions if one isn't supplied in the action options.
8154      */
8155     method : 'POST',
8156     /**
8157      * @cfg {String} url
8158      * The URL to use for form actions if one isn't supplied in the action options.
8159      */
8160     /**
8161      * @cfg {Boolean} fileUpload
8162      * Set to true if this form is a file upload.
8163      */
8164
8165     /**
8166      * @cfg {Object} baseParams
8167      * Parameters to pass with all requests. e.g. baseParams: {id: '123', foo: 'bar'}.
8168      */
8169
8170     /**
8171      * @cfg {Number} timeout Timeout for form actions in seconds (default is 30 seconds).
8172      */
8173     timeout: 30,
8174     /**
8175      * @cfg {Sting} align (left|right) for navbar forms
8176      */
8177     align : 'left',
8178
8179     // private
8180     activeAction : null,
8181
8182     /**
8183      * By default wait messages are displayed with Roo.MessageBox.wait. You can target a specific
8184      * element by passing it or its id or mask the form itself by passing in true.
8185      * @type Mixed
8186      */
8187     waitMsgTarget : false,
8188
8189     loadMask : true,
8190     
8191     /**
8192      * @cfg {Boolean} errorMask (true|false) default false
8193      */
8194     errorMask : false,
8195     
8196     /**
8197      * @cfg {Number} maskOffset Default 100
8198      */
8199     maskOffset : 100,
8200     
8201     /**
8202      * @cfg {Boolean} maskBody
8203      */
8204     maskBody : false,
8205
8206     getAutoCreate : function(){
8207
8208         var cfg = {
8209             tag: 'form',
8210             method : this.method || 'POST',
8211             id : this.id || Roo.id(),
8212             cls : ''
8213         };
8214         if (this.parent().xtype.match(/^Nav/)) {
8215             cfg.cls = 'navbar-form form-inline navbar-' + this.align;
8216
8217         }
8218
8219         if (this.labelAlign == 'left' ) {
8220             cfg.cls += ' form-horizontal';
8221         }
8222
8223
8224         return cfg;
8225     },
8226     initEvents : function()
8227     {
8228         this.el.on('submit', this.onSubmit, this);
8229         // this was added as random key presses on the form where triggering form submit.
8230         this.el.on('keypress', function(e) {
8231             if (e.getCharCode() != 13) {
8232                 return true;
8233             }
8234             // we might need to allow it for textareas.. and some other items.
8235             // check e.getTarget().
8236
8237             if(e.getTarget().nodeName.toLowerCase() === 'textarea'){
8238                 return true;
8239             }
8240
8241             Roo.log("keypress blocked");
8242
8243             e.preventDefault();
8244             return false;
8245         });
8246         
8247     },
8248     // private
8249     onSubmit : function(e){
8250         e.stopEvent();
8251     },
8252
8253      /**
8254      * Returns true if client-side validation on the form is successful.
8255      * @return Boolean
8256      */
8257     isValid : function(){
8258         var items = this.getItems();
8259         var valid = true;
8260         var target = false;
8261         
8262         items.each(function(f){
8263             
8264             if(f.validate()){
8265                 return;
8266             }
8267             
8268             Roo.log('invalid field: ' + f.name);
8269             
8270             valid = false;
8271
8272             if(!target && f.el.isVisible(true)){
8273                 target = f;
8274             }
8275            
8276         });
8277         
8278         if(this.errorMask && !valid){
8279             Roo.bootstrap.Form.popover.mask(this, target);
8280         }
8281         
8282         return valid;
8283     },
8284     
8285     /**
8286      * Returns true if any fields in this form have changed since their original load.
8287      * @return Boolean
8288      */
8289     isDirty : function(){
8290         var dirty = false;
8291         var items = this.getItems();
8292         items.each(function(f){
8293            if(f.isDirty()){
8294                dirty = true;
8295                return false;
8296            }
8297            return true;
8298         });
8299         return dirty;
8300     },
8301      /**
8302      * Performs a predefined action (submit or load) or custom actions you define on this form.
8303      * @param {String} actionName The name of the action type
8304      * @param {Object} options (optional) The options to pass to the action.  All of the config options listed
8305      * below are supported by both the submit and load actions unless otherwise noted (custom actions could also
8306      * accept other config options):
8307      * <pre>
8308 Property          Type             Description
8309 ----------------  ---------------  ----------------------------------------------------------------------------------
8310 url               String           The url for the action (defaults to the form's url)
8311 method            String           The form method to use (defaults to the form's method, or POST if not defined)
8312 params            String/Object    The params to pass (defaults to the form's baseParams, or none if not defined)
8313 clientValidation  Boolean          Applies to submit only.  Pass true to call form.isValid() prior to posting to
8314                                    validate the form on the client (defaults to false)
8315      * </pre>
8316      * @return {BasicForm} this
8317      */
8318     doAction : function(action, options){
8319         if(typeof action == 'string'){
8320             action = new Roo.form.Action.ACTION_TYPES[action](this, options);
8321         }
8322         if(this.fireEvent('beforeaction', this, action) !== false){
8323             this.beforeAction(action);
8324             action.run.defer(100, action);
8325         }
8326         return this;
8327     },
8328
8329     // private
8330     beforeAction : function(action){
8331         var o = action.options;
8332         
8333         if(this.loadMask){
8334             
8335             if(this.maskBody){
8336                 Roo.get(document.body).mask(o.waitMsg || "Sending", 'x-mask-loading')
8337             } else {
8338                 this.el.mask(o.waitMsg || "Sending", 'x-mask-loading');
8339             }
8340         }
8341         // not really supported yet.. ??
8342
8343         //if(this.waitMsgTarget === true){
8344         //  this.el.mask(o.waitMsg || "Sending", 'x-mask-loading');
8345         //}else if(this.waitMsgTarget){
8346         //    this.waitMsgTarget = Roo.get(this.waitMsgTarget);
8347         //    this.waitMsgTarget.mask(o.waitMsg || "Sending", 'x-mask-loading');
8348         //}else {
8349         //    Roo.MessageBox.wait(o.waitMsg || "Sending", o.waitTitle || this.waitTitle || 'Please Wait...');
8350        // }
8351
8352     },
8353
8354     // private
8355     afterAction : function(action, success){
8356         this.activeAction = null;
8357         var o = action.options;
8358
8359         if(this.loadMask){
8360             
8361             if(this.maskBody){
8362                 Roo.get(document.body).unmask();
8363             } else {
8364                 this.el.unmask();
8365             }
8366         }
8367         
8368         //if(this.waitMsgTarget === true){
8369 //            this.el.unmask();
8370         //}else if(this.waitMsgTarget){
8371         //    this.waitMsgTarget.unmask();
8372         //}else{
8373         //    Roo.MessageBox.updateProgress(1);
8374         //    Roo.MessageBox.hide();
8375        // }
8376         //
8377         if(success){
8378             if(o.reset){
8379                 this.reset();
8380             }
8381             Roo.callback(o.success, o.scope, [this, action]);
8382             this.fireEvent('actioncomplete', this, action);
8383
8384         }else{
8385
8386             // failure condition..
8387             // we have a scenario where updates need confirming.
8388             // eg. if a locking scenario exists..
8389             // we look for { errors : { needs_confirm : true }} in the response.
8390             if (
8391                 (typeof(action.result) != 'undefined')  &&
8392                 (typeof(action.result.errors) != 'undefined')  &&
8393                 (typeof(action.result.errors.needs_confirm) != 'undefined')
8394            ){
8395                 var _t = this;
8396                 Roo.log("not supported yet");
8397                  /*
8398
8399                 Roo.MessageBox.confirm(
8400                     "Change requires confirmation",
8401                     action.result.errorMsg,
8402                     function(r) {
8403                         if (r != 'yes') {
8404                             return;
8405                         }
8406                         _t.doAction('submit', { params :  { _submit_confirmed : 1 } }  );
8407                     }
8408
8409                 );
8410                 */
8411
8412
8413                 return;
8414             }
8415
8416             Roo.callback(o.failure, o.scope, [this, action]);
8417             // show an error message if no failed handler is set..
8418             if (!this.hasListener('actionfailed')) {
8419                 Roo.log("need to add dialog support");
8420                 /*
8421                 Roo.MessageBox.alert("Error",
8422                     (typeof(action.result) != 'undefined' && typeof(action.result.errorMsg) != 'undefined') ?
8423                         action.result.errorMsg :
8424                         "Saving Failed, please check your entries or try again"
8425                 );
8426                 */
8427             }
8428
8429             this.fireEvent('actionfailed', this, action);
8430         }
8431
8432     },
8433     /**
8434      * Find a Roo.form.Field in this form by id, dataIndex, name or hiddenName
8435      * @param {String} id The value to search for
8436      * @return Field
8437      */
8438     findField : function(id){
8439         var items = this.getItems();
8440         var field = items.get(id);
8441         if(!field){
8442              items.each(function(f){
8443                 if(f.isFormField && (f.dataIndex == id || f.id == id || f.getName() == id)){
8444                     field = f;
8445                     return false;
8446                 }
8447                 return true;
8448             });
8449         }
8450         return field || null;
8451     },
8452      /**
8453      * Mark fields in this form invalid in bulk.
8454      * @param {Array/Object} errors Either an array in the form [{id:'fieldId', msg:'The message'},...] or an object hash of {id: msg, id2: msg2}
8455      * @return {BasicForm} this
8456      */
8457     markInvalid : function(errors){
8458         if(errors instanceof Array){
8459             for(var i = 0, len = errors.length; i < len; i++){
8460                 var fieldError = errors[i];
8461                 var f = this.findField(fieldError.id);
8462                 if(f){
8463                     f.markInvalid(fieldError.msg);
8464                 }
8465             }
8466         }else{
8467             var field, id;
8468             for(id in errors){
8469                 if(typeof errors[id] != 'function' && (field = this.findField(id))){
8470                     field.markInvalid(errors[id]);
8471                 }
8472             }
8473         }
8474         //Roo.each(this.childForms || [], function (f) {
8475         //    f.markInvalid(errors);
8476         //});
8477
8478         return this;
8479     },
8480
8481     /**
8482      * Set values for fields in this form in bulk.
8483      * @param {Array/Object} values Either an array in the form [{id:'fieldId', value:'foo'},...] or an object hash of {id: value, id2: value2}
8484      * @return {BasicForm} this
8485      */
8486     setValues : function(values){
8487         if(values instanceof Array){ // array of objects
8488             for(var i = 0, len = values.length; i < len; i++){
8489                 var v = values[i];
8490                 var f = this.findField(v.id);
8491                 if(f){
8492                     f.setValue(v.value);
8493                     if(this.trackResetOnLoad){
8494                         f.originalValue = f.getValue();
8495                     }
8496                 }
8497             }
8498         }else{ // object hash
8499             var field, id;
8500             for(id in values){
8501                 if(typeof values[id] != 'function' && (field = this.findField(id))){
8502
8503                     if (field.setFromData &&
8504                         field.valueField &&
8505                         field.displayField &&
8506                         // combos' with local stores can
8507                         // be queried via setValue()
8508                         // to set their value..
8509                         (field.store && !field.store.isLocal)
8510                         ) {
8511                         // it's a combo
8512                         var sd = { };
8513                         sd[field.valueField] = typeof(values[field.hiddenName]) == 'undefined' ? '' : values[field.hiddenName];
8514                         sd[field.displayField] = typeof(values[field.name]) == 'undefined' ? '' : values[field.name];
8515                         field.setFromData(sd);
8516
8517                     } else if(field.setFromData && (field.store && !field.store.isLocal)) {
8518                         
8519                         field.setFromData(values);
8520                         
8521                     } else {
8522                         field.setValue(values[id]);
8523                     }
8524
8525
8526                     if(this.trackResetOnLoad){
8527                         field.originalValue = field.getValue();
8528                     }
8529                 }
8530             }
8531         }
8532
8533         //Roo.each(this.childForms || [], function (f) {
8534         //    f.setValues(values);
8535         //});
8536
8537         return this;
8538     },
8539
8540     /**
8541      * Returns the fields in this form as an object with key/value pairs. If multiple fields exist with the same name
8542      * they are returned as an array.
8543      * @param {Boolean} asString
8544      * @return {Object}
8545      */
8546     getValues : function(asString){
8547         //if (this.childForms) {
8548             // copy values from the child forms
8549         //    Roo.each(this.childForms, function (f) {
8550         //        this.setValues(f.getValues());
8551         //    }, this);
8552         //}
8553
8554
8555
8556         var fs = Roo.lib.Ajax.serializeForm(this.el.dom);
8557         if(asString === true){
8558             return fs;
8559         }
8560         return Roo.urlDecode(fs);
8561     },
8562
8563     /**
8564      * Returns the fields in this form as an object with key/value pairs.
8565      * This differs from getValues as it calls getValue on each child item, rather than using dom data.
8566      * @return {Object}
8567      */
8568     getFieldValues : function(with_hidden)
8569     {
8570         var items = this.getItems();
8571         var ret = {};
8572         items.each(function(f){
8573             
8574             if (!f.getName()) {
8575                 return;
8576             }
8577             
8578             var v = f.getValue();
8579             
8580             if (f.inputType =='radio') {
8581                 if (typeof(ret[f.getName()]) == 'undefined') {
8582                     ret[f.getName()] = ''; // empty..
8583                 }
8584
8585                 if (!f.el.dom.checked) {
8586                     return;
8587
8588                 }
8589                 v = f.el.dom.value;
8590
8591             }
8592             
8593             if(f.xtype == 'MoneyField'){
8594                 ret[f.currencyName] = f.getCurrency();
8595             }
8596
8597             // not sure if this supported any more..
8598             if ((typeof(v) == 'object') && f.getRawValue) {
8599                 v = f.getRawValue() ; // dates..
8600             }
8601             // combo boxes where name != hiddenName...
8602             if (f.name !== false && f.name != '' && f.name != f.getName()) {
8603                 ret[f.name] = f.getRawValue();
8604             }
8605             ret[f.getName()] = v;
8606         });
8607
8608         return ret;
8609     },
8610
8611     /**
8612      * Clears all invalid messages in this form.
8613      * @return {BasicForm} this
8614      */
8615     clearInvalid : function(){
8616         var items = this.getItems();
8617
8618         items.each(function(f){
8619            f.clearInvalid();
8620         });
8621
8622         return this;
8623     },
8624
8625     /**
8626      * Resets this form.
8627      * @return {BasicForm} this
8628      */
8629     reset : function(){
8630         var items = this.getItems();
8631         items.each(function(f){
8632             f.reset();
8633         });
8634
8635         Roo.each(this.childForms || [], function (f) {
8636             f.reset();
8637         });
8638
8639
8640         return this;
8641     },
8642     
8643     getItems : function()
8644     {
8645         var r=new Roo.util.MixedCollection(false, function(o){
8646             return o.id || (o.id = Roo.id());
8647         });
8648         var iter = function(el) {
8649             if (el.inputEl) {
8650                 r.add(el);
8651             }
8652             if (!el.items) {
8653                 return;
8654             }
8655             Roo.each(el.items,function(e) {
8656                 iter(e);
8657             });
8658         };
8659
8660         iter(this);
8661         return r;
8662     },
8663     
8664     hideFields : function(items)
8665     {
8666         Roo.each(items, function(i){
8667             
8668             var f = this.findField(i);
8669             
8670             if(!f){
8671                 return;
8672             }
8673             
8674             f.hide();
8675             
8676         }, this);
8677     },
8678     
8679     showFields : function(items)
8680     {
8681         Roo.each(items, function(i){
8682             
8683             var f = this.findField(i);
8684             
8685             if(!f){
8686                 return;
8687             }
8688             
8689             f.show();
8690             
8691         }, this);
8692     }
8693
8694 });
8695
8696 Roo.apply(Roo.bootstrap.Form, {
8697     
8698     popover : {
8699         
8700         padding : 5,
8701         
8702         isApplied : false,
8703         
8704         isMasked : false,
8705         
8706         form : false,
8707         
8708         target : false,
8709         
8710         toolTip : false,
8711         
8712         intervalID : false,
8713         
8714         maskEl : false,
8715         
8716         apply : function()
8717         {
8718             if(this.isApplied){
8719                 return;
8720             }
8721             
8722             this.maskEl = {
8723                 top : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-top-mask" }, true),
8724                 left : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-left-mask" }, true),
8725                 bottom : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-bottom-mask" }, true),
8726                 right : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-right-mask" }, true)
8727             };
8728             
8729             this.maskEl.top.enableDisplayMode("block");
8730             this.maskEl.left.enableDisplayMode("block");
8731             this.maskEl.bottom.enableDisplayMode("block");
8732             this.maskEl.right.enableDisplayMode("block");
8733             
8734             this.toolTip = new Roo.bootstrap.Tooltip({
8735                 cls : 'roo-form-error-popover',
8736                 alignment : {
8737                     'left' : ['r-l', [-2,0], 'right'],
8738                     'right' : ['l-r', [2,0], 'left'],
8739                     'bottom' : ['tl-bl', [0,2], 'top'],
8740                     'top' : [ 'bl-tl', [0,-2], 'bottom']
8741                 }
8742             });
8743             
8744             this.toolTip.render(Roo.get(document.body));
8745
8746             this.toolTip.el.enableDisplayMode("block");
8747             
8748             Roo.get(document.body).on('click', function(){
8749                 this.unmask();
8750             }, this);
8751             
8752             Roo.get(document.body).on('touchstart', function(){
8753                 this.unmask();
8754             }, this);
8755             
8756             this.isApplied = true
8757         },
8758         
8759         mask : function(form, target)
8760         {
8761             this.form = form;
8762             
8763             this.target = target;
8764             
8765             if(!this.form.errorMask || !target.el){
8766                 return;
8767             }
8768             
8769             var scrollable = this.target.el.findScrollableParent() || this.target.el.findParent('div.modal', 100, true) || Roo.get(document.body);
8770             
8771             Roo.log(scrollable);
8772             
8773             var ot = this.target.el.calcOffsetsTo(scrollable);
8774             
8775             var scrollTo = ot[1] - this.form.maskOffset;
8776             
8777             scrollTo = Math.min(scrollTo, scrollable.dom.scrollHeight);
8778             
8779             scrollable.scrollTo('top', scrollTo);
8780             
8781             var box = this.target.el.getBox();
8782             Roo.log(box);
8783             var zIndex = Roo.bootstrap.Modal.zIndex++;
8784
8785             
8786             this.maskEl.top.setStyle('position', 'absolute');
8787             this.maskEl.top.setStyle('z-index', zIndex);
8788             this.maskEl.top.setSize(Roo.lib.Dom.getDocumentWidth(), box.y - this.padding);
8789             this.maskEl.top.setLeft(0);
8790             this.maskEl.top.setTop(0);
8791             this.maskEl.top.show();
8792             
8793             this.maskEl.left.setStyle('position', 'absolute');
8794             this.maskEl.left.setStyle('z-index', zIndex);
8795             this.maskEl.left.setSize(box.x - this.padding, box.height + this.padding * 2);
8796             this.maskEl.left.setLeft(0);
8797             this.maskEl.left.setTop(box.y - this.padding);
8798             this.maskEl.left.show();
8799
8800             this.maskEl.bottom.setStyle('position', 'absolute');
8801             this.maskEl.bottom.setStyle('z-index', zIndex);
8802             this.maskEl.bottom.setSize(Roo.lib.Dom.getDocumentWidth(), Roo.lib.Dom.getDocumentHeight() - box.bottom - this.padding);
8803             this.maskEl.bottom.setLeft(0);
8804             this.maskEl.bottom.setTop(box.bottom + this.padding);
8805             this.maskEl.bottom.show();
8806
8807             this.maskEl.right.setStyle('position', 'absolute');
8808             this.maskEl.right.setStyle('z-index', zIndex);
8809             this.maskEl.right.setSize(Roo.lib.Dom.getDocumentWidth() - box.right - this.padding, box.height + this.padding * 2);
8810             this.maskEl.right.setLeft(box.right + this.padding);
8811             this.maskEl.right.setTop(box.y - this.padding);
8812             this.maskEl.right.show();
8813
8814             this.toolTip.bindEl = this.target.el;
8815
8816             this.toolTip.el.setStyle('z-index', Roo.bootstrap.Modal.zIndex++);
8817
8818             var tip = this.target.blankText;
8819
8820             if(this.target.getValue() !== '' ) {
8821                 
8822                 if (this.target.invalidText.length) {
8823                     tip = this.target.invalidText;
8824                 } else if (this.target.regexText.length){
8825                     tip = this.target.regexText;
8826                 }
8827             }
8828
8829             this.toolTip.show(tip);
8830
8831             this.intervalID = window.setInterval(function() {
8832                 Roo.bootstrap.Form.popover.unmask();
8833             }, 10000);
8834
8835             window.onwheel = function(){ return false;};
8836             
8837             (function(){ this.isMasked = true; }).defer(500, this);
8838             
8839         },
8840         
8841         unmask : function()
8842         {
8843             if(!this.isApplied || !this.isMasked || !this.form || !this.target || !this.form.errorMask){
8844                 return;
8845             }
8846             
8847             this.maskEl.top.setStyle('position', 'absolute');
8848             this.maskEl.top.setSize(0, 0).setXY([0, 0]);
8849             this.maskEl.top.hide();
8850
8851             this.maskEl.left.setStyle('position', 'absolute');
8852             this.maskEl.left.setSize(0, 0).setXY([0, 0]);
8853             this.maskEl.left.hide();
8854
8855             this.maskEl.bottom.setStyle('position', 'absolute');
8856             this.maskEl.bottom.setSize(0, 0).setXY([0, 0]);
8857             this.maskEl.bottom.hide();
8858
8859             this.maskEl.right.setStyle('position', 'absolute');
8860             this.maskEl.right.setSize(0, 0).setXY([0, 0]);
8861             this.maskEl.right.hide();
8862             
8863             this.toolTip.hide();
8864             
8865             this.toolTip.el.hide();
8866             
8867             window.onwheel = function(){ return true;};
8868             
8869             if(this.intervalID){
8870                 window.clearInterval(this.intervalID);
8871                 this.intervalID = false;
8872             }
8873             
8874             this.isMasked = false;
8875             
8876         }
8877         
8878     }
8879     
8880 });
8881
8882 /*
8883  * Based on:
8884  * Ext JS Library 1.1.1
8885  * Copyright(c) 2006-2007, Ext JS, LLC.
8886  *
8887  * Originally Released Under LGPL - original licence link has changed is not relivant.
8888  *
8889  * Fork - LGPL
8890  * <script type="text/javascript">
8891  */
8892 /**
8893  * @class Roo.form.VTypes
8894  * Overridable validation definitions. The validations provided are basic and intended to be easily customizable and extended.
8895  * @singleton
8896  */
8897 Roo.form.VTypes = function(){
8898     // closure these in so they are only created once.
8899     var alpha = /^[a-zA-Z_]+$/;
8900     var alphanum = /^[a-zA-Z0-9_]+$/;
8901     var email = /^([\w]+)(.[\w]+)*@([\w-]+\.){1,5}([A-Za-z]){2,24}$/;
8902     var url = /(((https?)|(ftp)):\/\/([\-\w]+\.)+\w{2,3}(\/[%\-\w]+(\.\w{2,})?)*(([\w\-\.\?\\\/+@&#;`~=%!]*)(\.\w{2,})?)*\/?)/i;
8903
8904     // All these messages and functions are configurable
8905     return {
8906         /**
8907          * The function used to validate email addresses
8908          * @param {String} value The email address
8909          */
8910         'email' : function(v){
8911             return email.test(v);
8912         },
8913         /**
8914          * The error text to display when the email validation function returns false
8915          * @type String
8916          */
8917         'emailText' : 'This field should be an e-mail address in the format "user@domain.com"',
8918         /**
8919          * The keystroke filter mask to be applied on email input
8920          * @type RegExp
8921          */
8922         'emailMask' : /[a-z0-9_\.\-@]/i,
8923
8924         /**
8925          * The function used to validate URLs
8926          * @param {String} value The URL
8927          */
8928         'url' : function(v){
8929             return url.test(v);
8930         },
8931         /**
8932          * The error text to display when the url validation function returns false
8933          * @type String
8934          */
8935         'urlText' : 'This field should be a URL in the format "http:/'+'/www.domain.com"',
8936         
8937         /**
8938          * The function used to validate alpha values
8939          * @param {String} value The value
8940          */
8941         'alpha' : function(v){
8942             return alpha.test(v);
8943         },
8944         /**
8945          * The error text to display when the alpha validation function returns false
8946          * @type String
8947          */
8948         'alphaText' : 'This field should only contain letters and _',
8949         /**
8950          * The keystroke filter mask to be applied on alpha input
8951          * @type RegExp
8952          */
8953         'alphaMask' : /[a-z_]/i,
8954
8955         /**
8956          * The function used to validate alphanumeric values
8957          * @param {String} value The value
8958          */
8959         'alphanum' : function(v){
8960             return alphanum.test(v);
8961         },
8962         /**
8963          * The error text to display when the alphanumeric validation function returns false
8964          * @type String
8965          */
8966         'alphanumText' : 'This field should only contain letters, numbers and _',
8967         /**
8968          * The keystroke filter mask to be applied on alphanumeric input
8969          * @type RegExp
8970          */
8971         'alphanumMask' : /[a-z0-9_]/i
8972     };
8973 }();/*
8974  * - LGPL
8975  *
8976  * Input
8977  * 
8978  */
8979
8980 /**
8981  * @class Roo.bootstrap.Input
8982  * @extends Roo.bootstrap.Component
8983  * Bootstrap Input class
8984  * @cfg {Boolean} disabled is it disabled
8985  * @cfg {String} inputType button | checkbox | email | file | hidden | image | number | password | radio | range | reset | search | submit | text
8986  * @cfg {String} name name of the input
8987  * @cfg {string} fieldLabel - the label associated
8988  * @cfg {string} placeholder - placeholder to put in text.
8989  * @cfg {string}  before - input group add on before
8990  * @cfg {string} after - input group add on after
8991  * @cfg {string} size - (lg|sm) or leave empty..
8992  * @cfg {Number} xs colspan out of 12 for mobile-sized screens
8993  * @cfg {Number} sm colspan out of 12 for tablet-sized screens
8994  * @cfg {Number} md colspan out of 12 for computer-sized screens
8995  * @cfg {Number} lg colspan out of 12 for large computer-sized screens
8996  * @cfg {string} value default value of the input
8997  * @cfg {Number} labelWidth set the width of label 
8998  * @cfg {Number} labellg set the width of label (1-12)
8999  * @cfg {Number} labelmd set the width of label (1-12)
9000  * @cfg {Number} labelsm set the width of label (1-12)
9001  * @cfg {Number} labelxs set the width of label (1-12)
9002  * @cfg {String} labelAlign (top|left)
9003  * @cfg {Boolean} readOnly Specifies that the field should be read-only
9004  * @cfg {String} autocomplete - default is new-password see: https://developers.google.com/web/fundamentals/input/form/label-and-name-inputs?hl=en
9005  * @cfg {String} indicatorpos (left|right) default left
9006  * @cfg {String} capture (user|camera) use for file input only. (default empty)
9007  * @cfg {String} accept (image|video|audio) use for file input only. (default empty)
9008
9009  * @cfg {String} align (left|center|right) Default left
9010  * @cfg {Boolean} forceFeedback (true|false) Default false
9011  * 
9012  * @constructor
9013  * Create a new Input
9014  * @param {Object} config The config object
9015  */
9016
9017 Roo.bootstrap.Input = function(config){
9018     
9019     Roo.bootstrap.Input.superclass.constructor.call(this, config);
9020     
9021     this.addEvents({
9022         /**
9023          * @event focus
9024          * Fires when this field receives input focus.
9025          * @param {Roo.form.Field} this
9026          */
9027         focus : true,
9028         /**
9029          * @event blur
9030          * Fires when this field loses input focus.
9031          * @param {Roo.form.Field} this
9032          */
9033         blur : true,
9034         /**
9035          * @event specialkey
9036          * Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check
9037          * {@link Roo.EventObject#getKey} to determine which key was pressed.
9038          * @param {Roo.form.Field} this
9039          * @param {Roo.EventObject} e The event object
9040          */
9041         specialkey : true,
9042         /**
9043          * @event change
9044          * Fires just before the field blurs if the field value has changed.
9045          * @param {Roo.form.Field} this
9046          * @param {Mixed} newValue The new value
9047          * @param {Mixed} oldValue The original value
9048          */
9049         change : true,
9050         /**
9051          * @event invalid
9052          * Fires after the field has been marked as invalid.
9053          * @param {Roo.form.Field} this
9054          * @param {String} msg The validation message
9055          */
9056         invalid : true,
9057         /**
9058          * @event valid
9059          * Fires after the field has been validated with no errors.
9060          * @param {Roo.form.Field} this
9061          */
9062         valid : true,
9063          /**
9064          * @event keyup
9065          * Fires after the key up
9066          * @param {Roo.form.Field} this
9067          * @param {Roo.EventObject}  e The event Object
9068          */
9069         keyup : true
9070     });
9071 };
9072
9073 Roo.extend(Roo.bootstrap.Input, Roo.bootstrap.Component,  {
9074      /**
9075      * @cfg {String/Boolean} validationEvent The event that should initiate field validation. Set to false to disable
9076       automatic validation (defaults to "keyup").
9077      */
9078     validationEvent : "keyup",
9079      /**
9080      * @cfg {Boolean} validateOnBlur Whether the field should validate when it loses focus (defaults to true).
9081      */
9082     validateOnBlur : true,
9083     /**
9084      * @cfg {Number} validationDelay The length of time in milliseconds after user input begins until validation is initiated (defaults to 250)
9085      */
9086     validationDelay : 250,
9087      /**
9088      * @cfg {String} focusClass The CSS class to use when the field receives focus (defaults to "x-form-focus")
9089      */
9090     focusClass : "x-form-focus",  // not needed???
9091     
9092        
9093     /**
9094      * @cfg {String} invalidClass DEPRICATED - code uses BS4 - is-valid / is-invalid
9095      */
9096     invalidClass : "has-warning",
9097     
9098     /**
9099      * @cfg {String} validClass DEPRICATED - code uses BS4 - is-valid / is-invalid
9100      */
9101     validClass : "has-success",
9102     
9103     /**
9104      * @cfg {Boolean} hasFeedback (true|false) default true
9105      */
9106     hasFeedback : true,
9107     
9108     /**
9109      * @cfg {String} invalidFeedbackIcon The CSS class to use when create feedback icon (defaults to "x-form-invalid")
9110      */
9111     invalidFeedbackClass : "glyphicon-warning-sign",
9112     
9113     /**
9114      * @cfg {String} validFeedbackIcon The CSS class to use when create feedback icon (defaults to "x-form-invalid")
9115      */
9116     validFeedbackClass : "glyphicon-ok",
9117     
9118     /**
9119      * @cfg {Boolean} selectOnFocus True to automatically select any existing field text when the field receives input focus (defaults to false)
9120      */
9121     selectOnFocus : false,
9122     
9123      /**
9124      * @cfg {String} maskRe An input mask regular expression that will be used to filter keystrokes that don't match (defaults to null)
9125      */
9126     maskRe : null,
9127        /**
9128      * @cfg {String} vtype A validation type name as defined in {@link Roo.form.VTypes} (defaults to null)
9129      */
9130     vtype : null,
9131     
9132       /**
9133      * @cfg {Boolean} disableKeyFilter True to disable input keystroke filtering (defaults to false)
9134      */
9135     disableKeyFilter : false,
9136     
9137        /**
9138      * @cfg {Boolean} disabled True to disable the field (defaults to false).
9139      */
9140     disabled : false,
9141      /**
9142      * @cfg {Boolean} allowBlank False to validate that the value length > 0 (defaults to true)
9143      */
9144     allowBlank : true,
9145     /**
9146      * @cfg {String} blankText Error text to display if the allow blank validation fails (defaults to "This field is required")
9147      */
9148     blankText : "Please complete this mandatory field",
9149     
9150      /**
9151      * @cfg {Number} minLength Minimum input field length required (defaults to 0)
9152      */
9153     minLength : 0,
9154     /**
9155      * @cfg {Number} maxLength Maximum input field length allowed (defaults to Number.MAX_VALUE)
9156      */
9157     maxLength : Number.MAX_VALUE,
9158     /**
9159      * @cfg {String} minLengthText Error text to display if the minimum length validation fails (defaults to "The minimum length for this field is {minLength}")
9160      */
9161     minLengthText : "The minimum length for this field is {0}",
9162     /**
9163      * @cfg {String} maxLengthText Error text to display if the maximum length validation fails (defaults to "The maximum length for this field is {maxLength}")
9164      */
9165     maxLengthText : "The maximum length for this field is {0}",
9166   
9167     
9168     /**
9169      * @cfg {Function} validator A custom validation function to be called during field validation (defaults to null).
9170      * If available, this function will be called only after the basic validators all return true, and will be passed the
9171      * current field value and expected to return boolean true if the value is valid or a string error message if invalid.
9172      */
9173     validator : null,
9174     /**
9175      * @cfg {RegExp} regex A JavaScript RegExp object to be tested against the field value during validation (defaults to null).
9176      * If available, this regex will be evaluated only after the basic validators all return true, and will be passed the
9177      * current field value.  If the test fails, the field will be marked invalid using {@link #regexText}.
9178      */
9179     regex : null,
9180     /**
9181      * @cfg {String} regexText -- Depricated - use Invalid Text
9182      */
9183     regexText : "",
9184     
9185     /**
9186      * @cfg {String} invalidText The error text to display if {@link #validator} test fails during validation (defaults to "")
9187      */
9188     invalidText : "",
9189     
9190     
9191     
9192     autocomplete: false,
9193     
9194     
9195     fieldLabel : '',
9196     inputType : 'text',
9197     
9198     name : false,
9199     placeholder: false,
9200     before : false,
9201     after : false,
9202     size : false,
9203     hasFocus : false,
9204     preventMark: false,
9205     isFormField : true,
9206     value : '',
9207     labelWidth : 2,
9208     labelAlign : false,
9209     readOnly : false,
9210     align : false,
9211     formatedValue : false,
9212     forceFeedback : false,
9213     
9214     indicatorpos : 'left',
9215     
9216     labellg : 0,
9217     labelmd : 0,
9218     labelsm : 0,
9219     labelxs : 0,
9220     
9221     capture : '',
9222     accept : '',
9223     
9224     parentLabelAlign : function()
9225     {
9226         var parent = this;
9227         while (parent.parent()) {
9228             parent = parent.parent();
9229             if (typeof(parent.labelAlign) !='undefined') {
9230                 return parent.labelAlign;
9231             }
9232         }
9233         return 'left';
9234         
9235     },
9236     
9237     getAutoCreate : function()
9238     {
9239         var align = (!this.labelAlign) ? this.parentLabelAlign() : this.labelAlign;
9240         
9241         var id = Roo.id();
9242         
9243         var cfg = {};
9244         
9245         if(this.inputType != 'hidden'){
9246             cfg.cls = 'form-group' //input-group
9247         }
9248         
9249         var input =  {
9250             tag: 'input',
9251             id : id,
9252             type : this.inputType,
9253             value : this.value,
9254             cls : 'form-control',
9255             placeholder : this.placeholder || '',
9256             autocomplete : this.autocomplete || 'new-password'
9257         };
9258         
9259         if(this.capture.length){
9260             input.capture = this.capture;
9261         }
9262         
9263         if(this.accept.length){
9264             input.accept = this.accept + "/*";
9265         }
9266         
9267         if(this.align){
9268             input.style = (typeof(input.style) == 'undefined') ? ('text-align:' + this.align) : (input.style + 'text-align:' + this.align);
9269         }
9270         
9271         if(this.maxLength && this.maxLength != Number.MAX_VALUE){
9272             input.maxLength = this.maxLength;
9273         }
9274         
9275         if (this.disabled) {
9276             input.disabled=true;
9277         }
9278         
9279         if (this.readOnly) {
9280             input.readonly=true;
9281         }
9282         
9283         if (this.name) {
9284             input.name = this.name;
9285         }
9286         
9287         if (this.size) {
9288             input.cls += ' input-' + this.size;
9289         }
9290         
9291         var settings=this;
9292         ['xs','sm','md','lg'].map(function(size){
9293             if (settings[size]) {
9294                 cfg.cls += ' col-' + size + '-' + settings[size];
9295             }
9296         });
9297         
9298         var inputblock = input;
9299         
9300         var feedback = {
9301             tag: 'span',
9302             cls: 'glyphicon form-control-feedback'
9303         };
9304             
9305         if(this.hasFeedback && this.inputType != 'hidden' && !this.allowBlank){
9306             
9307             inputblock = {
9308                 cls : 'has-feedback',
9309                 cn :  [
9310                     input,
9311                     feedback
9312                 ] 
9313             };  
9314         }
9315         
9316         if (this.before || this.after) {
9317             
9318             inputblock = {
9319                 cls : 'input-group',
9320                 cn :  [] 
9321             };
9322             
9323             if (this.before && typeof(this.before) == 'string') {
9324                 
9325                 inputblock.cn.push({
9326                     tag :'span',
9327                     cls : 'roo-input-before input-group-addon input-group-prepend input-group-text',
9328                     html : this.before
9329                 });
9330             }
9331             if (this.before && typeof(this.before) == 'object') {
9332                 this.before = Roo.factory(this.before);
9333                 
9334                 inputblock.cn.push({
9335                     tag :'span',
9336                     cls : 'roo-input-before input-group-prepend input-group-text input-group-' +
9337                         (this.before.xtype == 'Button' ? 'btn' : 'addon')  //?? what about checkboxes - that looks like a bit of a hack thought? 
9338                 });
9339             }
9340             
9341             inputblock.cn.push(input);
9342             
9343             if (this.after && typeof(this.after) == 'string') {
9344                 inputblock.cn.push({
9345                     tag :'span',
9346                     cls : 'roo-input-after input-group-append input-group-text input-group-addon',
9347                     html : this.after
9348                 });
9349             }
9350             if (this.after && typeof(this.after) == 'object') {
9351                 this.after = Roo.factory(this.after);
9352                 
9353                 inputblock.cn.push({
9354                     tag :'span',
9355                     cls : 'roo-input-after input-group-append input-group-text input-group-' +
9356                         (this.after.xtype == 'Button' ? 'btn' : 'addon')  //?? what about checkboxes - that looks like a bit of a hack thought? 
9357                 });
9358             }
9359             
9360             if(this.hasFeedback && this.inputType != 'hidden' && !this.allowBlank){
9361                 inputblock.cls += ' has-feedback';
9362                 inputblock.cn.push(feedback);
9363             }
9364         };
9365         var indicator = {
9366             tag : 'i',
9367             cls : 'roo-required-indicator ' + (this.indicatorpos == 'right'  ? 'right' : 'left') +'-indicator text-danger fa fa-lg fa-star',
9368             tooltip : 'This field is required'
9369         };
9370         if (Roo.bootstrap.version == 4) {
9371             indicator = {
9372                 tag : 'i',
9373                 style : 'display-none'
9374             };
9375         }
9376         if (align ==='left' && this.fieldLabel.length) {
9377             
9378             cfg.cls += ' roo-form-group-label-left'  + (Roo.bootstrap.version == 4 ? ' row' : '');
9379             
9380             cfg.cn = [
9381                 indicator,
9382                 {
9383                     tag: 'label',
9384                     'for' :  id,
9385                     cls : 'control-label col-form-label',
9386                     html : this.fieldLabel
9387
9388                 },
9389                 {
9390                     cls : "", 
9391                     cn: [
9392                         inputblock
9393                     ]
9394                 }
9395             ];
9396             
9397             var labelCfg = cfg.cn[1];
9398             var contentCfg = cfg.cn[2];
9399             
9400             if(this.indicatorpos == 'right'){
9401                 cfg.cn = [
9402                     {
9403                         tag: 'label',
9404                         'for' :  id,
9405                         cls : 'control-label col-form-label',
9406                         cn : [
9407                             {
9408                                 tag : 'span',
9409                                 html : this.fieldLabel
9410                             },
9411                             indicator
9412                         ]
9413                     },
9414                     {
9415                         cls : "",
9416                         cn: [
9417                             inputblock
9418                         ]
9419                     }
9420
9421                 ];
9422                 
9423                 labelCfg = cfg.cn[0];
9424                 contentCfg = cfg.cn[1];
9425             
9426             }
9427             
9428             if(this.labelWidth > 12){
9429                 labelCfg.style = "width: " + this.labelWidth + 'px';
9430             }
9431             
9432             if(this.labelWidth < 13 && this.labelmd == 0){
9433                 this.labelmd = this.labelWidth;
9434             }
9435             
9436             if(this.labellg > 0){
9437                 labelCfg.cls += ' col-lg-' + this.labellg;
9438                 contentCfg.cls += ' col-lg-' + (12 - this.labellg);
9439             }
9440             
9441             if(this.labelmd > 0){
9442                 labelCfg.cls += ' col-md-' + this.labelmd;
9443                 contentCfg.cls += ' col-md-' + (12 - this.labelmd);
9444             }
9445             
9446             if(this.labelsm > 0){
9447                 labelCfg.cls += ' col-sm-' + this.labelsm;
9448                 contentCfg.cls += ' col-sm-' + (12 - this.labelsm);
9449             }
9450             
9451             if(this.labelxs > 0){
9452                 labelCfg.cls += ' col-xs-' + this.labelxs;
9453                 contentCfg.cls += ' col-xs-' + (12 - this.labelxs);
9454             }
9455             
9456             
9457         } else if ( this.fieldLabel.length) {
9458                 
9459             cfg.cn = [
9460                 {
9461                     tag : 'i',
9462                     cls : 'roo-required-indicator left-indicator text-danger fa fa-lg fa-star',
9463                     tooltip : 'This field is required'
9464                 },
9465                 {
9466                     tag: 'label',
9467                    //cls : 'input-group-addon',
9468                     html : this.fieldLabel
9469
9470                 },
9471
9472                inputblock
9473
9474            ];
9475            
9476            if(this.indicatorpos == 'right'){
9477                 
9478                 cfg.cn = [
9479                     {
9480                         tag: 'label',
9481                        //cls : 'input-group-addon',
9482                         html : this.fieldLabel
9483
9484                     },
9485                     {
9486                         tag : 'i',
9487                         cls : 'roo-required-indicator right-indicator text-danger fa fa-lg fa-star',
9488                         tooltip : 'This field is required'
9489                     },
9490
9491                    inputblock
9492
9493                ];
9494
9495             }
9496
9497         } else {
9498             
9499             cfg.cn = [
9500
9501                     inputblock
9502
9503             ];
9504                 
9505                 
9506         };
9507         
9508         if (this.parentType === 'Navbar' &&  this.parent().bar) {
9509            cfg.cls += ' navbar-form';
9510         }
9511         
9512         if (this.parentType === 'NavGroup' && !(Roo.bootstrap.version == 4 && this.parent().form)) {
9513             // on BS4 we do this only if not form 
9514             cfg.cls += ' navbar-form';
9515             cfg.tag = 'li';
9516         }
9517         
9518         return cfg;
9519         
9520     },
9521     /**
9522      * return the real input element.
9523      */
9524     inputEl: function ()
9525     {
9526         return this.el.select('input.form-control',true).first();
9527     },
9528     
9529     tooltipEl : function()
9530     {
9531         return this.inputEl();
9532     },
9533     
9534     indicatorEl : function()
9535     {
9536         if (Roo.bootstrap.version == 4) {
9537             return false; // not enabled in v4 yet.
9538         }
9539         
9540         var indicator = this.el.select('i.roo-required-indicator',true).first();
9541         
9542         if(!indicator){
9543             return false;
9544         }
9545         
9546         return indicator;
9547         
9548     },
9549     
9550     setDisabled : function(v)
9551     {
9552         var i  = this.inputEl().dom;
9553         if (!v) {
9554             i.removeAttribute('disabled');
9555             return;
9556             
9557         }
9558         i.setAttribute('disabled','true');
9559     },
9560     initEvents : function()
9561     {
9562           
9563         this.inputEl().on("keydown" , this.fireKey,  this);
9564         this.inputEl().on("focus", this.onFocus,  this);
9565         this.inputEl().on("blur", this.onBlur,  this);
9566         
9567         this.inputEl().relayEvent('keyup', this);
9568         
9569         this.indicator = this.indicatorEl();
9570         
9571         if(this.indicator){
9572             this.indicator.addClass(this.indicatorpos == 'right' ? 'hidden' : 'invisible'); // changed from invisible??? - 
9573         }
9574  
9575         // reference to original value for reset
9576         this.originalValue = this.getValue();
9577         //Roo.form.TextField.superclass.initEvents.call(this);
9578         if(this.validationEvent == 'keyup'){
9579             this.validationTask = new Roo.util.DelayedTask(this.validate, this);
9580             this.inputEl().on('keyup', this.filterValidation, this);
9581         }
9582         else if(this.validationEvent !== false){
9583             this.inputEl().on(this.validationEvent, this.validate, this, {buffer: this.validationDelay});
9584         }
9585         
9586         if(this.selectOnFocus){
9587             this.on("focus", this.preFocus, this);
9588             
9589         }
9590         if(this.maskRe || (this.vtype && this.disableKeyFilter !== true && (this.maskRe = Roo.form.VTypes[this.vtype+'Mask']))){
9591             this.inputEl().on("keypress", this.filterKeys, this);
9592         } else {
9593             this.inputEl().relayEvent('keypress', this);
9594         }
9595        /* if(this.grow){
9596             this.el.on("keyup", this.onKeyUp,  this, {buffer:50});
9597             this.el.on("click", this.autoSize,  this);
9598         }
9599         */
9600         if(this.inputEl().is('input[type=password]') && Roo.isSafari){
9601             this.inputEl().on('keydown', this.SafariOnKeyDown, this);
9602         }
9603         
9604         if (typeof(this.before) == 'object') {
9605             this.before.render(this.el.select('.roo-input-before',true).first());
9606         }
9607         if (typeof(this.after) == 'object') {
9608             this.after.render(this.el.select('.roo-input-after',true).first());
9609         }
9610         
9611         this.inputEl().on('change', this.onChange, this);
9612         
9613     },
9614     filterValidation : function(e){
9615         if(!e.isNavKeyPress()){
9616             this.validationTask.delay(this.validationDelay);
9617         }
9618     },
9619      /**
9620      * Validates the field value
9621      * @return {Boolean} True if the value is valid, else false
9622      */
9623     validate : function(){
9624         //if(this.disabled || this.validateValue(this.processValue(this.getRawValue()))){
9625         if(this.disabled || this.validateValue(this.getRawValue())){
9626             this.markValid();
9627             return true;
9628         }
9629         
9630         this.markInvalid();
9631         return false;
9632     },
9633     
9634     
9635     /**
9636      * Validates a value according to the field's validation rules and marks the field as invalid
9637      * if the validation fails
9638      * @param {Mixed} value The value to validate
9639      * @return {Boolean} True if the value is valid, else false
9640      */
9641     validateValue : function(value)
9642     {
9643         if(this.getVisibilityEl().hasClass('hidden')){
9644             return true;
9645         }
9646         
9647         if(value.length < 1)  { // if it's blank
9648             if(this.allowBlank){
9649                 return true;
9650             }
9651             return false;
9652         }
9653         
9654         if(value.length < this.minLength){
9655             return false;
9656         }
9657         if(value.length > this.maxLength){
9658             return false;
9659         }
9660         if(this.vtype){
9661             var vt = Roo.form.VTypes;
9662             if(!vt[this.vtype](value, this)){
9663                 return false;
9664             }
9665         }
9666         if(typeof this.validator == "function"){
9667             var msg = this.validator(value);
9668             if(msg !== true){
9669                 return false;
9670             }
9671             if (typeof(msg) == 'string') {
9672                 this.invalidText = msg;
9673             }
9674         }
9675         
9676         if(this.regex && !this.regex.test(value)){
9677             return false;
9678         }
9679         
9680         return true;
9681     },
9682     
9683      // private
9684     fireKey : function(e){
9685         //Roo.log('field ' + e.getKey());
9686         if(e.isNavKeyPress()){
9687             this.fireEvent("specialkey", this, e);
9688         }
9689     },
9690     focus : function (selectText){
9691         if(this.rendered){
9692             this.inputEl().focus();
9693             if(selectText === true){
9694                 this.inputEl().dom.select();
9695             }
9696         }
9697         return this;
9698     } ,
9699     
9700     onFocus : function(){
9701         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
9702            // this.el.addClass(this.focusClass);
9703         }
9704         if(!this.hasFocus){
9705             this.hasFocus = true;
9706             this.startValue = this.getValue();
9707             this.fireEvent("focus", this);
9708         }
9709     },
9710     
9711     beforeBlur : Roo.emptyFn,
9712
9713     
9714     // private
9715     onBlur : function(){
9716         this.beforeBlur();
9717         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
9718             //this.el.removeClass(this.focusClass);
9719         }
9720         this.hasFocus = false;
9721         if(this.validationEvent !== false && this.validateOnBlur && this.validationEvent != "blur"){
9722             this.validate();
9723         }
9724         var v = this.getValue();
9725         if(String(v) !== String(this.startValue)){
9726             this.fireEvent('change', this, v, this.startValue);
9727         }
9728         this.fireEvent("blur", this);
9729     },
9730     
9731     onChange : function(e)
9732     {
9733         var v = this.getValue();
9734         if(String(v) !== String(this.startValue)){
9735             this.fireEvent('change', this, v, this.startValue);
9736         }
9737         
9738     },
9739     
9740     /**
9741      * Resets the current field value to the originally loaded value and clears any validation messages
9742      */
9743     reset : function(){
9744         this.setValue(this.originalValue);
9745         this.validate();
9746     },
9747      /**
9748      * Returns the name of the field
9749      * @return {Mixed} name The name field
9750      */
9751     getName: function(){
9752         return this.name;
9753     },
9754      /**
9755      * Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}.
9756      * @return {Mixed} value The field value
9757      */
9758     getValue : function(){
9759         
9760         var v = this.inputEl().getValue();
9761         
9762         return v;
9763     },
9764     /**
9765      * Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}.
9766      * @return {Mixed} value The field value
9767      */
9768     getRawValue : function(){
9769         var v = this.inputEl().getValue();
9770         
9771         return v;
9772     },
9773     
9774     /**
9775      * Sets the underlying DOM field's value directly, bypassing validation.  To set the value with validation see {@link #setValue}.
9776      * @param {Mixed} value The value to set
9777      */
9778     setRawValue : function(v){
9779         return this.inputEl().dom.value = (v === null || v === undefined ? '' : v);
9780     },
9781     
9782     selectText : function(start, end){
9783         var v = this.getRawValue();
9784         if(v.length > 0){
9785             start = start === undefined ? 0 : start;
9786             end = end === undefined ? v.length : end;
9787             var d = this.inputEl().dom;
9788             if(d.setSelectionRange){
9789                 d.setSelectionRange(start, end);
9790             }else if(d.createTextRange){
9791                 var range = d.createTextRange();
9792                 range.moveStart("character", start);
9793                 range.moveEnd("character", v.length-end);
9794                 range.select();
9795             }
9796         }
9797     },
9798     
9799     /**
9800      * Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}.
9801      * @param {Mixed} value The value to set
9802      */
9803     setValue : function(v){
9804         this.value = v;
9805         if(this.rendered){
9806             this.inputEl().dom.value = (v === null || v === undefined ? '' : v);
9807             this.validate();
9808         }
9809     },
9810     
9811     /*
9812     processValue : function(value){
9813         if(this.stripCharsRe){
9814             var newValue = value.replace(this.stripCharsRe, '');
9815             if(newValue !== value){
9816                 this.setRawValue(newValue);
9817                 return newValue;
9818             }
9819         }
9820         return value;
9821     },
9822   */
9823     preFocus : function(){
9824         
9825         if(this.selectOnFocus){
9826             this.inputEl().dom.select();
9827         }
9828     },
9829     filterKeys : function(e){
9830         var k = e.getKey();
9831         if(!Roo.isIE && (e.isNavKeyPress() || k == e.BACKSPACE || (k == e.DELETE && e.button == -1))){
9832             return;
9833         }
9834         var c = e.getCharCode(), cc = String.fromCharCode(c);
9835         if(Roo.isIE && (e.isSpecialKey() || !cc)){
9836             return;
9837         }
9838         if(!this.maskRe.test(cc)){
9839             e.stopEvent();
9840         }
9841     },
9842      /**
9843      * Clear any invalid styles/messages for this field
9844      */
9845     clearInvalid : function(){
9846         
9847         if(!this.el || this.preventMark){ // not rendered
9848             return;
9849         }
9850         
9851         
9852         this.el.removeClass([this.invalidClass, 'is-invalid']);
9853         
9854         if(this.hasFeedback && this.inputType != 'hidden' && !this.allowBlank){
9855             
9856             var feedback = this.el.select('.form-control-feedback', true).first();
9857             
9858             if(feedback){
9859                 this.el.select('.form-control-feedback', true).first().removeClass(this.invalidFeedbackClass);
9860             }
9861             
9862         }
9863         
9864         if(this.indicator){
9865             this.indicator.removeClass('visible');
9866             this.indicator.addClass(this.indicatorpos == 'right' ? 'hidden' : 'invisible');
9867         }
9868         
9869         this.fireEvent('valid', this);
9870     },
9871     
9872      /**
9873      * Mark this field as valid
9874      */
9875     markValid : function()
9876     {
9877         if(!this.el  || this.preventMark){ // not rendered...
9878             return;
9879         }
9880         
9881         this.el.removeClass([this.invalidClass, this.validClass]);
9882         this.inputEl().removeClass(['is-valid', 'is-invalid']);
9883
9884         var feedback = this.el.select('.form-control-feedback', true).first();
9885             
9886         if(feedback){
9887             this.el.select('.form-control-feedback', true).first().removeClass([this.invalidFeedbackClass, this.validFeedbackClass]);
9888         }
9889         
9890         if(this.indicator){
9891             this.indicator.removeClass('visible');
9892             this.indicator.addClass(this.indicatorpos == 'right' ? 'hidden' : 'invisible');
9893         }
9894         
9895         if(this.disabled){
9896             return;
9897         }
9898         
9899         if(this.allowBlank && !this.getRawValue().length){
9900             return;
9901         }
9902         if (Roo.bootstrap.version == 3) {
9903             this.el.addClass(this.validClass);
9904         } else {
9905             this.inputEl().addClass('is-valid');
9906         }
9907
9908         if(this.hasFeedback && this.inputType != 'hidden' && !this.allowBlank && (this.getValue().length || this.forceFeedback)){
9909             
9910             var feedback = this.el.select('.form-control-feedback', true).first();
9911             
9912             if(feedback){
9913                 this.el.select('.form-control-feedback', true).first().removeClass([this.invalidFeedbackClass, this.validFeedbackClass]);
9914                 this.el.select('.form-control-feedback', true).first().addClass([this.validFeedbackClass]);
9915             }
9916             
9917         }
9918         
9919         this.fireEvent('valid', this);
9920     },
9921     
9922      /**
9923      * Mark this field as invalid
9924      * @param {String} msg The validation message
9925      */
9926     markInvalid : function(msg)
9927     {
9928         if(!this.el  || this.preventMark){ // not rendered
9929             return;
9930         }
9931         
9932         this.el.removeClass([this.invalidClass, this.validClass]);
9933         this.inputEl().removeClass(['is-valid', 'is-invalid']);
9934         
9935         var feedback = this.el.select('.form-control-feedback', true).first();
9936             
9937         if(feedback){
9938             this.el.select('.form-control-feedback', true).first().removeClass(
9939                     [this.invalidFeedbackClass, this.validFeedbackClass]);
9940         }
9941
9942         if(this.disabled){
9943             return;
9944         }
9945         
9946         if(this.allowBlank && !this.getRawValue().length){
9947             return;
9948         }
9949         
9950         if(this.indicator){
9951             this.indicator.removeClass(this.indicatorpos == 'right' ? 'hidden' : 'invisible');
9952             this.indicator.addClass('visible');
9953         }
9954         if (Roo.bootstrap.version == 3) {
9955             this.el.addClass(this.invalidClass);
9956         } else {
9957             this.inputEl().addClass('is-invalid');
9958         }
9959         
9960         
9961         
9962         if(this.hasFeedback && this.inputType != 'hidden' && !this.allowBlank){
9963             
9964             var feedback = this.el.select('.form-control-feedback', true).first();
9965             
9966             if(feedback){
9967                 this.el.select('.form-control-feedback', true).first().removeClass([this.invalidFeedbackClass, this.validFeedbackClass]);
9968                 
9969                 if(this.getValue().length || this.forceFeedback){
9970                     this.el.select('.form-control-feedback', true).first().addClass([this.invalidFeedbackClass]);
9971                 }
9972                 
9973             }
9974             
9975         }
9976         
9977         this.fireEvent('invalid', this, msg);
9978     },
9979     // private
9980     SafariOnKeyDown : function(event)
9981     {
9982         // this is a workaround for a password hang bug on chrome/ webkit.
9983         if (this.inputEl().dom.type != 'password') {
9984             return;
9985         }
9986         
9987         var isSelectAll = false;
9988         
9989         if(this.inputEl().dom.selectionEnd > 0){
9990             isSelectAll = (this.inputEl().dom.selectionEnd - this.inputEl().dom.selectionStart - this.getValue().length == 0) ? true : false;
9991         }
9992         if(((event.getKey() == 8 || event.getKey() == 46) && this.getValue().length ==1)){ // backspace and delete key
9993             event.preventDefault();
9994             this.setValue('');
9995             return;
9996         }
9997         
9998         if(isSelectAll  && event.getCharCode() > 31 && !event.ctrlKey) { // not backspace and delete key (or ctrl-v)
9999             
10000             event.preventDefault();
10001             // this is very hacky as keydown always get's upper case.
10002             //
10003             var cc = String.fromCharCode(event.getCharCode());
10004             this.setValue( event.shiftKey ?  cc : cc.toLowerCase());
10005             
10006         }
10007     },
10008     adjustWidth : function(tag, w){
10009         tag = tag.toLowerCase();
10010         if(typeof w == 'number' && Roo.isStrict && !Roo.isSafari){
10011             if(Roo.isIE && (tag == 'input' || tag == 'textarea')){
10012                 if(tag == 'input'){
10013                     return w + 2;
10014                 }
10015                 if(tag == 'textarea'){
10016                     return w-2;
10017                 }
10018             }else if(Roo.isOpera){
10019                 if(tag == 'input'){
10020                     return w + 2;
10021                 }
10022                 if(tag == 'textarea'){
10023                     return w-2;
10024                 }
10025             }
10026         }
10027         return w;
10028     },
10029     
10030     setFieldLabel : function(v)
10031     {
10032         if(!this.rendered){
10033             return;
10034         }
10035         
10036         if(this.indicatorEl()){
10037             var ar = this.el.select('label > span',true);
10038             
10039             if (ar.elements.length) {
10040                 this.el.select('label > span',true).first().dom.innerHTML = (v === null || v === undefined ? '' : v);
10041                 this.fieldLabel = v;
10042                 return;
10043             }
10044             
10045             var br = this.el.select('label',true);
10046             
10047             if(br.elements.length) {
10048                 this.el.select('label',true).first().dom.innerHTML = (v === null || v === undefined ? '' : v);
10049                 this.fieldLabel = v;
10050                 return;
10051             }
10052             
10053             Roo.log('Cannot Found any of label > span || label in input');
10054             return;
10055         }
10056         
10057         this.el.select('label',true).first().dom.innerHTML = (v === null || v === undefined ? '' : v);
10058         this.fieldLabel = v;
10059         
10060         
10061     }
10062 });
10063
10064  
10065 /*
10066  * - LGPL
10067  *
10068  * Input
10069  * 
10070  */
10071
10072 /**
10073  * @class Roo.bootstrap.TextArea
10074  * @extends Roo.bootstrap.Input
10075  * Bootstrap TextArea class
10076  * @cfg {Number} cols Specifies the visible width of a text area
10077  * @cfg {Number} rows Specifies the visible number of lines in a text area
10078  * @cfg {string} wrap (soft|hard)Specifies how the text in a text area is to be wrapped when submitted in a form
10079  * @cfg {string} resize (none|both|horizontal|vertical|inherit|initial)
10080  * @cfg {string} html text
10081  * 
10082  * @constructor
10083  * Create a new TextArea
10084  * @param {Object} config The config object
10085  */
10086
10087 Roo.bootstrap.TextArea = function(config){
10088     Roo.bootstrap.TextArea.superclass.constructor.call(this, config);
10089    
10090 };
10091
10092 Roo.extend(Roo.bootstrap.TextArea, Roo.bootstrap.Input,  {
10093      
10094     cols : false,
10095     rows : 5,
10096     readOnly : false,
10097     warp : 'soft',
10098     resize : false,
10099     value: false,
10100     html: false,
10101     
10102     getAutoCreate : function(){
10103         
10104         var align = (!this.labelAlign) ? this.parentLabelAlign() : this.labelAlign;
10105         
10106         var id = Roo.id();
10107         
10108         var cfg = {};
10109         
10110         if(this.inputType != 'hidden'){
10111             cfg.cls = 'form-group' //input-group
10112         }
10113         
10114         var input =  {
10115             tag: 'textarea',
10116             id : id,
10117             warp : this.warp,
10118             rows : this.rows,
10119             value : this.value || '',
10120             html: this.html || '',
10121             cls : 'form-control',
10122             placeholder : this.placeholder || '' 
10123             
10124         };
10125         
10126         if(this.maxLength && this.maxLength != Number.MAX_VALUE){
10127             input.maxLength = this.maxLength;
10128         }
10129         
10130         if(this.resize){
10131             input.style = (typeof(input.style) == 'undefined') ? 'resize:' + this.resize : input.style + 'resize:' + this.resize;
10132         }
10133         
10134         if(this.cols){
10135             input.cols = this.cols;
10136         }
10137         
10138         if (this.readOnly) {
10139             input.readonly = true;
10140         }
10141         
10142         if (this.name) {
10143             input.name = this.name;
10144         }
10145         
10146         if (this.size) {
10147             input.cls = (typeof(input.cls) == 'undefined') ? 'input-' + this.size : input.cls + ' input-' + this.size;
10148         }
10149         
10150         var settings=this;
10151         ['xs','sm','md','lg'].map(function(size){
10152             if (settings[size]) {
10153                 cfg.cls += ' col-' + size + '-' + settings[size];
10154             }
10155         });
10156         
10157         var inputblock = input;
10158         
10159         if(this.hasFeedback && !this.allowBlank){
10160             
10161             var feedback = {
10162                 tag: 'span',
10163                 cls: 'glyphicon form-control-feedback'
10164             };
10165
10166             inputblock = {
10167                 cls : 'has-feedback',
10168                 cn :  [
10169                     input,
10170                     feedback
10171                 ] 
10172             };  
10173         }
10174         
10175         
10176         if (this.before || this.after) {
10177             
10178             inputblock = {
10179                 cls : 'input-group',
10180                 cn :  [] 
10181             };
10182             if (this.before) {
10183                 inputblock.cn.push({
10184                     tag :'span',
10185                     cls : 'input-group-addon',
10186                     html : this.before
10187                 });
10188             }
10189             
10190             inputblock.cn.push(input);
10191             
10192             if(this.hasFeedback && !this.allowBlank){
10193                 inputblock.cls += ' has-feedback';
10194                 inputblock.cn.push(feedback);
10195             }
10196             
10197             if (this.after) {
10198                 inputblock.cn.push({
10199                     tag :'span',
10200                     cls : 'input-group-addon',
10201                     html : this.after
10202                 });
10203             }
10204             
10205         }
10206         
10207         if (align ==='left' && this.fieldLabel.length) {
10208             cfg.cn = [
10209                 {
10210                     tag: 'label',
10211                     'for' :  id,
10212                     cls : 'control-label',
10213                     html : this.fieldLabel
10214                 },
10215                 {
10216                     cls : "",
10217                     cn: [
10218                         inputblock
10219                     ]
10220                 }
10221
10222             ];
10223             
10224             if(this.labelWidth > 12){
10225                 cfg.cn[0].style = "width: " + this.labelWidth + 'px';
10226             }
10227
10228             if(this.labelWidth < 13 && this.labelmd == 0){
10229                 this.labelmd = this.labelWidth;
10230             }
10231
10232             if(this.labellg > 0){
10233                 cfg.cn[0].cls += ' col-lg-' + this.labellg;
10234                 cfg.cn[1].cls += ' col-lg-' + (12 - this.labellg);
10235             }
10236
10237             if(this.labelmd > 0){
10238                 cfg.cn[0].cls += ' col-md-' + this.labelmd;
10239                 cfg.cn[1].cls += ' col-md-' + (12 - this.labelmd);
10240             }
10241
10242             if(this.labelsm > 0){
10243                 cfg.cn[0].cls += ' col-sm-' + this.labelsm;
10244                 cfg.cn[1].cls += ' col-sm-' + (12 - this.labelsm);
10245             }
10246
10247             if(this.labelxs > 0){
10248                 cfg.cn[0].cls += ' col-xs-' + this.labelxs;
10249                 cfg.cn[1].cls += ' col-xs-' + (12 - this.labelxs);
10250             }
10251             
10252         } else if ( this.fieldLabel.length) {
10253             cfg.cn = [
10254
10255                {
10256                    tag: 'label',
10257                    //cls : 'input-group-addon',
10258                    html : this.fieldLabel
10259
10260                },
10261
10262                inputblock
10263
10264            ];
10265
10266         } else {
10267
10268             cfg.cn = [
10269
10270                 inputblock
10271
10272             ];
10273                 
10274         }
10275         
10276         if (this.disabled) {
10277             input.disabled=true;
10278         }
10279         
10280         return cfg;
10281         
10282     },
10283     /**
10284      * return the real textarea element.
10285      */
10286     inputEl: function ()
10287     {
10288         return this.el.select('textarea.form-control',true).first();
10289     },
10290     
10291     /**
10292      * Clear any invalid styles/messages for this field
10293      */
10294     clearInvalid : function()
10295     {
10296         
10297         if(!this.el || this.preventMark){ // not rendered
10298             return;
10299         }
10300         
10301         var label = this.el.select('label', true).first();
10302         var icon = this.el.select('i.fa-star', true).first();
10303         
10304         if(label && icon){
10305             icon.remove();
10306         }
10307         this.el.removeClass( this.validClass);
10308         this.inputEl().removeClass('is-invalid');
10309          
10310         if(this.hasFeedback && this.inputType != 'hidden' && !this.allowBlank){
10311             
10312             var feedback = this.el.select('.form-control-feedback', true).first();
10313             
10314             if(feedback){
10315                 this.el.select('.form-control-feedback', true).first().removeClass(this.invalidFeedbackClass);
10316             }
10317             
10318         }
10319         
10320         this.fireEvent('valid', this);
10321     },
10322     
10323      /**
10324      * Mark this field as valid
10325      */
10326     markValid : function()
10327     {
10328         if(!this.el  || this.preventMark){ // not rendered
10329             return;
10330         }
10331         
10332         this.el.removeClass([this.invalidClass, this.validClass]);
10333         this.inputEl().removeClass(['is-valid', 'is-invalid']);
10334         
10335         var feedback = this.el.select('.form-control-feedback', true).first();
10336             
10337         if(feedback){
10338             this.el.select('.form-control-feedback', true).first().removeClass([this.invalidFeedbackClass, this.validFeedbackClass]);
10339         }
10340
10341         if(this.disabled || this.allowBlank){
10342             return;
10343         }
10344         
10345         var label = this.el.select('label', true).first();
10346         var icon = this.el.select('i.fa-star', true).first();
10347         
10348         if(label && icon){
10349             icon.remove();
10350         }
10351         if (Roo.bootstrap.version == 3) {
10352             this.el.addClass(this.validClass);
10353         } else {
10354             this.inputEl().addClass('is-valid');
10355         }
10356         
10357         
10358         if(this.hasFeedback && this.inputType != 'hidden' && !this.allowBlank && (this.getValue().length || this.forceFeedback)){
10359             
10360             var feedback = this.el.select('.form-control-feedback', true).first();
10361             
10362             if(feedback){
10363                 this.el.select('.form-control-feedback', true).first().removeClass([this.invalidFeedbackClass, this.validFeedbackClass]);
10364                 this.el.select('.form-control-feedback', true).first().addClass([this.validFeedbackClass]);
10365             }
10366             
10367         }
10368         
10369         this.fireEvent('valid', this);
10370     },
10371     
10372      /**
10373      * Mark this field as invalid
10374      * @param {String} msg The validation message
10375      */
10376     markInvalid : function(msg)
10377     {
10378         if(!this.el  || this.preventMark){ // not rendered
10379             return;
10380         }
10381         
10382         this.el.removeClass([this.invalidClass, this.validClass]);
10383         this.inputEl().removeClass(['is-valid', 'is-invalid']);
10384         
10385         var feedback = this.el.select('.form-control-feedback', true).first();
10386             
10387         if(feedback){
10388             this.el.select('.form-control-feedback', true).first().removeClass([this.invalidFeedbackClass, this.validFeedbackClass]);
10389         }
10390
10391         if(this.disabled || this.allowBlank){
10392             return;
10393         }
10394         
10395         var label = this.el.select('label', true).first();
10396         var icon = this.el.select('i.fa-star', true).first();
10397         
10398         if(!this.getValue().length && label && !icon){
10399             this.el.createChild({
10400                 tag : 'i',
10401                 cls : 'text-danger fa fa-lg fa-star',
10402                 tooltip : 'This field is required',
10403                 style : 'margin-right:5px;'
10404             }, label, true);
10405         }
10406         
10407         if (Roo.bootstrap.version == 3) {
10408             this.el.addClass(this.invalidClass);
10409         } else {
10410             this.inputEl().addClass('is-invalid');
10411         }
10412         
10413         // fixme ... this may be depricated need to test..
10414         if(this.hasFeedback && this.inputType != 'hidden' && !this.allowBlank){
10415             
10416             var feedback = this.el.select('.form-control-feedback', true).first();
10417             
10418             if(feedback){
10419                 this.el.select('.form-control-feedback', true).first().removeClass([this.invalidFeedbackClass, this.validFeedbackClass]);
10420                 
10421                 if(this.getValue().length || this.forceFeedback){
10422                     this.el.select('.form-control-feedback', true).first().addClass([this.invalidFeedbackClass]);
10423                 }
10424                 
10425             }
10426             
10427         }
10428         
10429         this.fireEvent('invalid', this, msg);
10430     }
10431 });
10432
10433  
10434 /*
10435  * - LGPL
10436  *
10437  * trigger field - base class for combo..
10438  * 
10439  */
10440  
10441 /**
10442  * @class Roo.bootstrap.TriggerField
10443  * @extends Roo.bootstrap.Input
10444  * Provides a convenient wrapper for TextFields that adds a clickable trigger button (looks like a combobox by default).
10445  * The trigger has no default action, so you must assign a function to implement the trigger click handler by
10446  * overriding {@link #onTriggerClick}. You can create a TriggerField directly, as it renders exactly like a combobox
10447  * for which you can provide a custom implementation.  For example:
10448  * <pre><code>
10449 var trigger = new Roo.bootstrap.TriggerField();
10450 trigger.onTriggerClick = myTriggerFn;
10451 trigger.applyTo('my-field');
10452 </code></pre>
10453  *
10454  * However, in general you will most likely want to use TriggerField as the base class for a reusable component.
10455  * {@link Roo.bootstrap.DateField} and {@link Roo.bootstrap.ComboBox} are perfect examples of this.
10456  * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
10457  * class 'x-form-trigger' by default and triggerClass will be <b>appended</b> if specified.
10458  * @cfg {String} caret (search|calendar) BS3 only - carat fa name
10459
10460  * @constructor
10461  * Create a new TriggerField.
10462  * @param {Object} config Configuration options (valid {@Roo.bootstrap.Input} config options will also be applied
10463  * to the base TextField)
10464  */
10465 Roo.bootstrap.TriggerField = function(config){
10466     this.mimicing = false;
10467     Roo.bootstrap.TriggerField.superclass.constructor.call(this, config);
10468 };
10469
10470 Roo.extend(Roo.bootstrap.TriggerField, Roo.bootstrap.Input,  {
10471     /**
10472      * @cfg {String} triggerClass A CSS class to apply to the trigger
10473      */
10474      /**
10475      * @cfg {Boolean} hideTrigger True to hide the trigger element and display only the base text field (defaults to false)
10476      */
10477     hideTrigger:false,
10478
10479     /**
10480      * @cfg {Boolean} removable (true|false) special filter default false
10481      */
10482     removable : false,
10483     
10484     /** @cfg {Boolean} grow @hide */
10485     /** @cfg {Number} growMin @hide */
10486     /** @cfg {Number} growMax @hide */
10487
10488     /**
10489      * @hide 
10490      * @method
10491      */
10492     autoSize: Roo.emptyFn,
10493     // private
10494     monitorTab : true,
10495     // private
10496     deferHeight : true,
10497
10498     
10499     actionMode : 'wrap',
10500     
10501     caret : false,
10502     
10503     
10504     getAutoCreate : function(){
10505        
10506         var align = this.labelAlign || this.parentLabelAlign();
10507         
10508         var id = Roo.id();
10509         
10510         var cfg = {
10511             cls: 'form-group' //input-group
10512         };
10513         
10514         
10515         var input =  {
10516             tag: 'input',
10517             id : id,
10518             type : this.inputType,
10519             cls : 'form-control',
10520             autocomplete: 'new-password',
10521             placeholder : this.placeholder || '' 
10522             
10523         };
10524         if (this.name) {
10525             input.name = this.name;
10526         }
10527         if (this.size) {
10528             input.cls += ' input-' + this.size;
10529         }
10530         
10531         if (this.disabled) {
10532             input.disabled=true;
10533         }
10534         
10535         var inputblock = input;
10536         
10537         if(this.hasFeedback && !this.allowBlank){
10538             
10539             var feedback = {
10540                 tag: 'span',
10541                 cls: 'glyphicon form-control-feedback'
10542             };
10543             
10544             if(this.removable && !this.editable && !this.tickable){
10545                 inputblock = {
10546                     cls : 'has-feedback',
10547                     cn :  [
10548                         inputblock,
10549                         {
10550                             tag: 'button',
10551                             html : 'x',
10552                             cls : 'roo-combo-removable-btn close'
10553                         },
10554                         feedback
10555                     ] 
10556                 };
10557             } else {
10558                 inputblock = {
10559                     cls : 'has-feedback',
10560                     cn :  [
10561                         inputblock,
10562                         feedback
10563                     ] 
10564                 };
10565             }
10566
10567         } else {
10568             if(this.removable && !this.editable && !this.tickable){
10569                 inputblock = {
10570                     cls : 'roo-removable',
10571                     cn :  [
10572                         inputblock,
10573                         {
10574                             tag: 'button',
10575                             html : 'x',
10576                             cls : 'roo-combo-removable-btn close'
10577                         }
10578                     ] 
10579                 };
10580             }
10581         }
10582         
10583         if (this.before || this.after) {
10584             
10585             inputblock = {
10586                 cls : 'input-group',
10587                 cn :  [] 
10588             };
10589             if (this.before) {
10590                 inputblock.cn.push({
10591                     tag :'span',
10592                     cls : 'input-group-addon input-group-prepend input-group-text',
10593                     html : this.before
10594                 });
10595             }
10596             
10597             inputblock.cn.push(input);
10598             
10599             if(this.hasFeedback && !this.allowBlank){
10600                 inputblock.cls += ' has-feedback';
10601                 inputblock.cn.push(feedback);
10602             }
10603             
10604             if (this.after) {
10605                 inputblock.cn.push({
10606                     tag :'span',
10607                     cls : 'input-group-addon input-group-append input-group-text',
10608                     html : this.after
10609                 });
10610             }
10611             
10612         };
10613         
10614       
10615         
10616         var ibwrap = inputblock;
10617         
10618         if(this.multiple){
10619             ibwrap = {
10620                 tag: 'ul',
10621                 cls: 'roo-select2-choices',
10622                 cn:[
10623                     {
10624                         tag: 'li',
10625                         cls: 'roo-select2-search-field',
10626                         cn: [
10627
10628                             inputblock
10629                         ]
10630                     }
10631                 ]
10632             };
10633                 
10634         }
10635         
10636         var combobox = {
10637             cls: 'roo-select2-container input-group',
10638             cn: [
10639                  {
10640                     tag: 'input',
10641                     type : 'hidden',
10642                     cls: 'form-hidden-field'
10643                 },
10644                 ibwrap
10645             ]
10646         };
10647         
10648         if(!this.multiple && this.showToggleBtn){
10649             
10650             var caret = {
10651                         tag: 'span',
10652                         cls: 'caret'
10653              };
10654             if (this.caret != false) {
10655                 caret = {
10656                      tag: 'i',
10657                      cls: 'fa fa-' + this.caret
10658                 };
10659                 
10660             }
10661             
10662             combobox.cn.push({
10663                 tag :'span',
10664                 cls : 'input-group-addon input-group-append input-group-text btn dropdown-toggle',
10665                 cn : [
10666                     Roo.bootstrap.version == 3 ? caret : '',
10667                     {
10668                         tag: 'span',
10669                         cls: 'combobox-clear',
10670                         cn  : [
10671                             {
10672                                 tag : 'i',
10673                                 cls: 'icon-remove'
10674                             }
10675                         ]
10676                     }
10677                 ]
10678
10679             })
10680         }
10681         
10682         if(this.multiple){
10683             combobox.cls += ' roo-select2-container-multi';
10684         }
10685          var indicator = {
10686             tag : 'i',
10687             cls : 'roo-required-indicator ' + (this.indicatorpos == 'right'  ? 'right' : 'left') +'-indicator text-danger fa fa-lg fa-star',
10688             tooltip : 'This field is required'
10689         };
10690         if (Roo.bootstrap.version == 4) {
10691             indicator = {
10692                 tag : 'i',
10693                 style : 'display:none'
10694             };
10695         }
10696         
10697         
10698         if (align ==='left' && this.fieldLabel.length) {
10699             
10700             cfg.cls += ' roo-form-group-label-left'  + (Roo.bootstrap.version == 4 ? ' row' : '');
10701
10702             cfg.cn = [
10703                 indicator,
10704                 {
10705                     tag: 'label',
10706                     'for' :  id,
10707                     cls : 'control-label',
10708                     html : this.fieldLabel
10709
10710                 },
10711                 {
10712                     cls : "", 
10713                     cn: [
10714                         combobox
10715                     ]
10716                 }
10717
10718             ];
10719             
10720             var labelCfg = cfg.cn[1];
10721             var contentCfg = cfg.cn[2];
10722             
10723             if(this.indicatorpos == 'right'){
10724                 cfg.cn = [
10725                     {
10726                         tag: 'label',
10727                         'for' :  id,
10728                         cls : 'control-label',
10729                         cn : [
10730                             {
10731                                 tag : 'span',
10732                                 html : this.fieldLabel
10733                             },
10734                             indicator
10735                         ]
10736                     },
10737                     {
10738                         cls : "", 
10739                         cn: [
10740                             combobox
10741                         ]
10742                     }
10743
10744                 ];
10745                 
10746                 labelCfg = cfg.cn[0];
10747                 contentCfg = cfg.cn[1];
10748             }
10749             
10750             if(this.labelWidth > 12){
10751                 labelCfg.style = "width: " + this.labelWidth + 'px';
10752             }
10753             
10754             if(this.labelWidth < 13 && this.labelmd == 0){
10755                 this.labelmd = this.labelWidth;
10756             }
10757             
10758             if(this.labellg > 0){
10759                 labelCfg.cls += ' col-lg-' + this.labellg;
10760                 contentCfg.cls += ' col-lg-' + (12 - this.labellg);
10761             }
10762             
10763             if(this.labelmd > 0){
10764                 labelCfg.cls += ' col-md-' + this.labelmd;
10765                 contentCfg.cls += ' col-md-' + (12 - this.labelmd);
10766             }
10767             
10768             if(this.labelsm > 0){
10769                 labelCfg.cls += ' col-sm-' + this.labelsm;
10770                 contentCfg.cls += ' col-sm-' + (12 - this.labelsm);
10771             }
10772             
10773             if(this.labelxs > 0){
10774                 labelCfg.cls += ' col-xs-' + this.labelxs;
10775                 contentCfg.cls += ' col-xs-' + (12 - this.labelxs);
10776             }
10777             
10778         } else if ( this.fieldLabel.length) {
10779 //                Roo.log(" label");
10780             cfg.cn = [
10781                 indicator,
10782                {
10783                    tag: 'label',
10784                    //cls : 'input-group-addon',
10785                    html : this.fieldLabel
10786
10787                },
10788
10789                combobox
10790
10791             ];
10792             
10793             if(this.indicatorpos == 'right'){
10794                 
10795                 cfg.cn = [
10796                     {
10797                        tag: 'label',
10798                        cn : [
10799                            {
10800                                tag : 'span',
10801                                html : this.fieldLabel
10802                            },
10803                            indicator
10804                        ]
10805
10806                     },
10807                     combobox
10808
10809                 ];
10810
10811             }
10812
10813         } else {
10814             
10815 //                Roo.log(" no label && no align");
10816                 cfg = combobox
10817                      
10818                 
10819         }
10820         
10821         var settings=this;
10822         ['xs','sm','md','lg'].map(function(size){
10823             if (settings[size]) {
10824                 cfg.cls += ' col-' + size + '-' + settings[size];
10825             }
10826         });
10827         
10828         return cfg;
10829         
10830     },
10831     
10832     
10833     
10834     // private
10835     onResize : function(w, h){
10836 //        Roo.bootstrap.TriggerField.superclass.onResize.apply(this, arguments);
10837 //        if(typeof w == 'number'){
10838 //            var x = w - this.trigger.getWidth();
10839 //            this.inputEl().setWidth(this.adjustWidth('input', x));
10840 //            this.trigger.setStyle('left', x+'px');
10841 //        }
10842     },
10843
10844     // private
10845     adjustSize : Roo.BoxComponent.prototype.adjustSize,
10846
10847     // private
10848     getResizeEl : function(){
10849         return this.inputEl();
10850     },
10851
10852     // private
10853     getPositionEl : function(){
10854         return this.inputEl();
10855     },
10856
10857     // private
10858     alignErrorIcon : function(){
10859         this.errorIcon.alignTo(this.inputEl(), 'tl-tr', [2, 0]);
10860     },
10861
10862     // private
10863     initEvents : function(){
10864         
10865         this.createList();
10866         
10867         Roo.bootstrap.TriggerField.superclass.initEvents.call(this);
10868         //this.wrap = this.el.wrap({cls: "x-form-field-wrap"});
10869         if(!this.multiple && this.showToggleBtn){
10870             this.trigger = this.el.select('span.dropdown-toggle',true).first();
10871             if(this.hideTrigger){
10872                 this.trigger.setDisplayed(false);
10873             }
10874             this.trigger.on("click", this.onTriggerClick, this, {preventDefault:true});
10875         }
10876         
10877         if(this.multiple){
10878             this.inputEl().on("click", this.onTriggerClick, this, {preventDefault:true});
10879         }
10880         
10881         if(this.removable && !this.editable && !this.tickable){
10882             var close = this.closeTriggerEl();
10883             
10884             if(close){
10885                 close.setVisibilityMode(Roo.Element.DISPLAY).hide();
10886                 close.on('click', this.removeBtnClick, this, close);
10887             }
10888         }
10889         
10890         //this.trigger.addClassOnOver('x-form-trigger-over');
10891         //this.trigger.addClassOnClick('x-form-trigger-click');
10892         
10893         //if(!this.width){
10894         //    this.wrap.setWidth(this.el.getWidth()+this.trigger.getWidth());
10895         //}
10896     },
10897     
10898     closeTriggerEl : function()
10899     {
10900         var close = this.el.select('.roo-combo-removable-btn', true).first();
10901         return close ? close : false;
10902     },
10903     
10904     removeBtnClick : function(e, h, el)
10905     {
10906         e.preventDefault();
10907         
10908         if(this.fireEvent("remove", this) !== false){
10909             this.reset();
10910             this.fireEvent("afterremove", this)
10911         }
10912     },
10913     
10914     createList : function()
10915     {
10916         this.list = Roo.get(document.body).createChild({
10917             tag: Roo.bootstrap.version == 4 ? 'div' : 'ul',
10918             cls: 'typeahead typeahead-long dropdown-menu',
10919             style: 'display:none'
10920         });
10921         
10922         this.list.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';;
10923         
10924     },
10925
10926     // private
10927     initTrigger : function(){
10928        
10929     },
10930
10931     // private
10932     onDestroy : function(){
10933         if(this.trigger){
10934             this.trigger.removeAllListeners();
10935           //  this.trigger.remove();
10936         }
10937         //if(this.wrap){
10938         //    this.wrap.remove();
10939         //}
10940         Roo.bootstrap.TriggerField.superclass.onDestroy.call(this);
10941     },
10942
10943     // private
10944     onFocus : function(){
10945         Roo.bootstrap.TriggerField.superclass.onFocus.call(this);
10946         /*
10947         if(!this.mimicing){
10948             this.wrap.addClass('x-trigger-wrap-focus');
10949             this.mimicing = true;
10950             Roo.get(Roo.isIE ? document.body : document).on("mousedown", this.mimicBlur, this);
10951             if(this.monitorTab){
10952                 this.el.on("keydown", this.checkTab, this);
10953             }
10954         }
10955         */
10956     },
10957
10958     // private
10959     checkTab : function(e){
10960         if(e.getKey() == e.TAB){
10961             this.triggerBlur();
10962         }
10963     },
10964
10965     // private
10966     onBlur : function(){
10967         // do nothing
10968     },
10969
10970     // private
10971     mimicBlur : function(e, t){
10972         /*
10973         if(!this.wrap.contains(t) && this.validateBlur()){
10974             this.triggerBlur();
10975         }
10976         */
10977     },
10978
10979     // private
10980     triggerBlur : function(){
10981         this.mimicing = false;
10982         Roo.get(Roo.isIE ? document.body : document).un("mousedown", this.mimicBlur);
10983         if(this.monitorTab){
10984             this.el.un("keydown", this.checkTab, this);
10985         }
10986         //this.wrap.removeClass('x-trigger-wrap-focus');
10987         Roo.bootstrap.TriggerField.superclass.onBlur.call(this);
10988     },
10989
10990     // private
10991     // This should be overriden by any subclass that needs to check whether or not the field can be blurred.
10992     validateBlur : function(e, t){
10993         return true;
10994     },
10995
10996     // private
10997     onDisable : function(){
10998         this.inputEl().dom.disabled = true;
10999         //Roo.bootstrap.TriggerField.superclass.onDisable.call(this);
11000         //if(this.wrap){
11001         //    this.wrap.addClass('x-item-disabled');
11002         //}
11003     },
11004
11005     // private
11006     onEnable : function(){
11007         this.inputEl().dom.disabled = false;
11008         //Roo.bootstrap.TriggerField.superclass.onEnable.call(this);
11009         //if(this.wrap){
11010         //    this.el.removeClass('x-item-disabled');
11011         //}
11012     },
11013
11014     // private
11015     onShow : function(){
11016         var ae = this.getActionEl();
11017         
11018         if(ae){
11019             ae.dom.style.display = '';
11020             ae.dom.style.visibility = 'visible';
11021         }
11022     },
11023
11024     // private
11025     
11026     onHide : function(){
11027         var ae = this.getActionEl();
11028         ae.dom.style.display = 'none';
11029     },
11030
11031     /**
11032      * The function that should handle the trigger's click event.  This method does nothing by default until overridden
11033      * by an implementing function.
11034      * @method
11035      * @param {EventObject} e
11036      */
11037     onTriggerClick : Roo.emptyFn
11038 });
11039  /*
11040  * Based on:
11041  * Ext JS Library 1.1.1
11042  * Copyright(c) 2006-2007, Ext JS, LLC.
11043  *
11044  * Originally Released Under LGPL - original licence link has changed is not relivant.
11045  *
11046  * Fork - LGPL
11047  * <script type="text/javascript">
11048  */
11049
11050
11051 /**
11052  * @class Roo.data.SortTypes
11053  * @singleton
11054  * Defines the default sorting (casting?) comparison functions used when sorting data.
11055  */
11056 Roo.data.SortTypes = {
11057     /**
11058      * Default sort that does nothing
11059      * @param {Mixed} s The value being converted
11060      * @return {Mixed} The comparison value
11061      */
11062     none : function(s){
11063         return s;
11064     },
11065     
11066     /**
11067      * The regular expression used to strip tags
11068      * @type {RegExp}
11069      * @property
11070      */
11071     stripTagsRE : /<\/?[^>]+>/gi,
11072     
11073     /**
11074      * Strips all HTML tags to sort on text only
11075      * @param {Mixed} s The value being converted
11076      * @return {String} The comparison value
11077      */
11078     asText : function(s){
11079         return String(s).replace(this.stripTagsRE, "");
11080     },
11081     
11082     /**
11083      * Strips all HTML tags to sort on text only - Case insensitive
11084      * @param {Mixed} s The value being converted
11085      * @return {String} The comparison value
11086      */
11087     asUCText : function(s){
11088         return String(s).toUpperCase().replace(this.stripTagsRE, "");
11089     },
11090     
11091     /**
11092      * Case insensitive string
11093      * @param {Mixed} s The value being converted
11094      * @return {String} The comparison value
11095      */
11096     asUCString : function(s) {
11097         return String(s).toUpperCase();
11098     },
11099     
11100     /**
11101      * Date sorting
11102      * @param {Mixed} s The value being converted
11103      * @return {Number} The comparison value
11104      */
11105     asDate : function(s) {
11106         if(!s){
11107             return 0;
11108         }
11109         if(s instanceof Date){
11110             return s.getTime();
11111         }
11112         return Date.parse(String(s));
11113     },
11114     
11115     /**
11116      * Float sorting
11117      * @param {Mixed} s The value being converted
11118      * @return {Float} The comparison value
11119      */
11120     asFloat : function(s) {
11121         var val = parseFloat(String(s).replace(/,/g, ""));
11122         if(isNaN(val)) {
11123             val = 0;
11124         }
11125         return val;
11126     },
11127     
11128     /**
11129      * Integer sorting
11130      * @param {Mixed} s The value being converted
11131      * @return {Number} The comparison value
11132      */
11133     asInt : function(s) {
11134         var val = parseInt(String(s).replace(/,/g, ""));
11135         if(isNaN(val)) {
11136             val = 0;
11137         }
11138         return val;
11139     }
11140 };/*
11141  * Based on:
11142  * Ext JS Library 1.1.1
11143  * Copyright(c) 2006-2007, Ext JS, LLC.
11144  *
11145  * Originally Released Under LGPL - original licence link has changed is not relivant.
11146  *
11147  * Fork - LGPL
11148  * <script type="text/javascript">
11149  */
11150
11151 /**
11152 * @class Roo.data.Record
11153  * Instances of this class encapsulate both record <em>definition</em> information, and record
11154  * <em>value</em> information for use in {@link Roo.data.Store} objects, or any code which needs
11155  * to access Records cached in an {@link Roo.data.Store} object.<br>
11156  * <p>
11157  * Constructors for this class are generated by passing an Array of field definition objects to {@link #create}.
11158  * Instances are usually only created by {@link Roo.data.Reader} implementations when processing unformatted data
11159  * objects.<br>
11160  * <p>
11161  * Record objects generated by this constructor inherit all the methods of Roo.data.Record listed below.
11162  * @constructor
11163  * This constructor should not be used to create Record objects. Instead, use the constructor generated by
11164  * {@link #create}. The parameters are the same.
11165  * @param {Array} data An associative Array of data values keyed by the field name.
11166  * @param {Object} id (Optional) The id of the record. This id should be unique, and is used by the
11167  * {@link Roo.data.Store} object which owns the Record to index its collection of Records. If
11168  * not specified an integer id is generated.
11169  */
11170 Roo.data.Record = function(data, id){
11171     this.id = (id || id === 0) ? id : ++Roo.data.Record.AUTO_ID;
11172     this.data = data;
11173 };
11174
11175 /**
11176  * Generate a constructor for a specific record layout.
11177  * @param {Array} o An Array of field definition objects which specify field names, and optionally,
11178  * data types, and a mapping for an {@link Roo.data.Reader} to extract the field's value from a data object.
11179  * Each field definition object may contain the following properties: <ul>
11180  * <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,
11181  * for example the <em>dataIndex</em> property in column definition objects passed to {@link Roo.grid.ColumnModel}</p></li>
11182  * <li><b>mapping</b> : String<p style="margin-left:1em">(Optional) A path specification for use by the {@link Roo.data.Reader} implementation
11183  * that is creating the Record to access the data value from the data object. If an {@link Roo.data.JsonReader}
11184  * is being used, then this is a string containing the javascript expression to reference the data relative to 
11185  * the record item's root. If an {@link Roo.data.XmlReader} is being used, this is an {@link Roo.DomQuery} path
11186  * to the data item relative to the record element. If the mapping expression is the same as the field name,
11187  * this may be omitted.</p></li>
11188  * <li><b>type</b> : String<p style="margin-left:1em">(Optional) The data type for conversion to displayable value. Possible values are
11189  * <ul><li>auto (Default, implies no conversion)</li>
11190  * <li>string</li>
11191  * <li>int</li>
11192  * <li>float</li>
11193  * <li>boolean</li>
11194  * <li>date</li></ul></p></li>
11195  * <li><b>sortType</b> : Mixed<p style="margin-left:1em">(Optional) A member of {@link Roo.data.SortTypes}.</p></li>
11196  * <li><b>sortDir</b> : String<p style="margin-left:1em">(Optional) Initial direction to sort. "ASC" or "DESC"</p></li>
11197  * <li><b>convert</b> : Function<p style="margin-left:1em">(Optional) A function which converts the value provided
11198  * by the Reader into an object that will be stored in the Record. It is passed the
11199  * following parameters:<ul>
11200  * <li><b>v</b> : Mixed<p style="margin-left:1em">The data value as read by the Reader.</p></li>
11201  * </ul></p></li>
11202  * <li><b>dateFormat</b> : String<p style="margin-left:1em">(Optional) A format String for the Date.parseDate function.</p></li>
11203  * </ul>
11204  * <br>usage:<br><pre><code>
11205 var TopicRecord = Roo.data.Record.create(
11206     {name: 'title', mapping: 'topic_title'},
11207     {name: 'author', mapping: 'username'},
11208     {name: 'totalPosts', mapping: 'topic_replies', type: 'int'},
11209     {name: 'lastPost', mapping: 'post_time', type: 'date'},
11210     {name: 'lastPoster', mapping: 'user2'},
11211     {name: 'excerpt', mapping: 'post_text'}
11212 );
11213
11214 var myNewRecord = new TopicRecord({
11215     title: 'Do my job please',
11216     author: 'noobie',
11217     totalPosts: 1,
11218     lastPost: new Date(),
11219     lastPoster: 'Animal',
11220     excerpt: 'No way dude!'
11221 });
11222 myStore.add(myNewRecord);
11223 </code></pre>
11224  * @method create
11225  * @static
11226  */
11227 Roo.data.Record.create = function(o){
11228     var f = function(){
11229         f.superclass.constructor.apply(this, arguments);
11230     };
11231     Roo.extend(f, Roo.data.Record);
11232     var p = f.prototype;
11233     p.fields = new Roo.util.MixedCollection(false, function(field){
11234         return field.name;
11235     });
11236     for(var i = 0, len = o.length; i < len; i++){
11237         p.fields.add(new Roo.data.Field(o[i]));
11238     }
11239     f.getField = function(name){
11240         return p.fields.get(name);  
11241     };
11242     return f;
11243 };
11244
11245 Roo.data.Record.AUTO_ID = 1000;
11246 Roo.data.Record.EDIT = 'edit';
11247 Roo.data.Record.REJECT = 'reject';
11248 Roo.data.Record.COMMIT = 'commit';
11249
11250 Roo.data.Record.prototype = {
11251     /**
11252      * Readonly flag - true if this record has been modified.
11253      * @type Boolean
11254      */
11255     dirty : false,
11256     editing : false,
11257     error: null,
11258     modified: null,
11259
11260     // private
11261     join : function(store){
11262         this.store = store;
11263     },
11264
11265     /**
11266      * Set the named field to the specified value.
11267      * @param {String} name The name of the field to set.
11268      * @param {Object} value The value to set the field to.
11269      */
11270     set : function(name, value){
11271         if(this.data[name] == value){
11272             return;
11273         }
11274         this.dirty = true;
11275         if(!this.modified){
11276             this.modified = {};
11277         }
11278         if(typeof this.modified[name] == 'undefined'){
11279             this.modified[name] = this.data[name];
11280         }
11281         this.data[name] = value;
11282         if(!this.editing && this.store){
11283             this.store.afterEdit(this);
11284         }       
11285     },
11286
11287     /**
11288      * Get the value of the named field.
11289      * @param {String} name The name of the field to get the value of.
11290      * @return {Object} The value of the field.
11291      */
11292     get : function(name){
11293         return this.data[name]; 
11294     },
11295
11296     // private
11297     beginEdit : function(){
11298         this.editing = true;
11299         this.modified = {}; 
11300     },
11301
11302     // private
11303     cancelEdit : function(){
11304         this.editing = false;
11305         delete this.modified;
11306     },
11307
11308     // private
11309     endEdit : function(){
11310         this.editing = false;
11311         if(this.dirty && this.store){
11312             this.store.afterEdit(this);
11313         }
11314     },
11315
11316     /**
11317      * Usually called by the {@link Roo.data.Store} which owns the Record.
11318      * Rejects all changes made to the Record since either creation, or the last commit operation.
11319      * Modified fields are reverted to their original values.
11320      * <p>
11321      * Developers should subscribe to the {@link Roo.data.Store#update} event to have their code notified
11322      * of reject operations.
11323      */
11324     reject : function(){
11325         var m = this.modified;
11326         for(var n in m){
11327             if(typeof m[n] != "function"){
11328                 this.data[n] = m[n];
11329             }
11330         }
11331         this.dirty = false;
11332         delete this.modified;
11333         this.editing = false;
11334         if(this.store){
11335             this.store.afterReject(this);
11336         }
11337     },
11338
11339     /**
11340      * Usually called by the {@link Roo.data.Store} which owns the Record.
11341      * Commits all changes made to the Record since either creation, or the last commit operation.
11342      * <p>
11343      * Developers should subscribe to the {@link Roo.data.Store#update} event to have their code notified
11344      * of commit operations.
11345      */
11346     commit : function(){
11347         this.dirty = false;
11348         delete this.modified;
11349         this.editing = false;
11350         if(this.store){
11351             this.store.afterCommit(this);
11352         }
11353     },
11354
11355     // private
11356     hasError : function(){
11357         return this.error != null;
11358     },
11359
11360     // private
11361     clearError : function(){
11362         this.error = null;
11363     },
11364
11365     /**
11366      * Creates a copy of this record.
11367      * @param {String} id (optional) A new record id if you don't want to use this record's id
11368      * @return {Record}
11369      */
11370     copy : function(newId) {
11371         return new this.constructor(Roo.apply({}, this.data), newId || this.id);
11372     }
11373 };/*
11374  * Based on:
11375  * Ext JS Library 1.1.1
11376  * Copyright(c) 2006-2007, Ext JS, LLC.
11377  *
11378  * Originally Released Under LGPL - original licence link has changed is not relivant.
11379  *
11380  * Fork - LGPL
11381  * <script type="text/javascript">
11382  */
11383
11384
11385
11386 /**
11387  * @class Roo.data.Store
11388  * @extends Roo.util.Observable
11389  * The Store class encapsulates a client side cache of {@link Roo.data.Record} objects which provide input data
11390  * for widgets such as the Roo.grid.Grid, or the Roo.form.ComboBox.<br>
11391  * <p>
11392  * 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
11393  * has no knowledge of the format of the data returned by the Proxy.<br>
11394  * <p>
11395  * A Store object uses its configured implementation of {@link Roo.data.DataReader} to create {@link Roo.data.Record}
11396  * instances from the data object. These records are cached and made available through accessor functions.
11397  * @constructor
11398  * Creates a new Store.
11399  * @param {Object} config A config object containing the objects needed for the Store to access data,
11400  * and read the data into Records.
11401  */
11402 Roo.data.Store = function(config){
11403     this.data = new Roo.util.MixedCollection(false);
11404     this.data.getKey = function(o){
11405         return o.id;
11406     };
11407     this.baseParams = {};
11408     // private
11409     this.paramNames = {
11410         "start" : "start",
11411         "limit" : "limit",
11412         "sort" : "sort",
11413         "dir" : "dir",
11414         "multisort" : "_multisort"
11415     };
11416
11417     if(config && config.data){
11418         this.inlineData = config.data;
11419         delete config.data;
11420     }
11421
11422     Roo.apply(this, config);
11423     
11424     if(this.reader){ // reader passed
11425         this.reader = Roo.factory(this.reader, Roo.data);
11426         this.reader.xmodule = this.xmodule || false;
11427         if(!this.recordType){
11428             this.recordType = this.reader.recordType;
11429         }
11430         if(this.reader.onMetaChange){
11431             this.reader.onMetaChange = this.onMetaChange.createDelegate(this);
11432         }
11433     }
11434
11435     if(this.recordType){
11436         this.fields = this.recordType.prototype.fields;
11437     }
11438     this.modified = [];
11439
11440     this.addEvents({
11441         /**
11442          * @event datachanged
11443          * Fires when the data cache has changed, and a widget which is using this Store
11444          * as a Record cache should refresh its view.
11445          * @param {Store} this
11446          */
11447         datachanged : true,
11448         /**
11449          * @event metachange
11450          * Fires when this store's reader provides new metadata (fields). This is currently only support for JsonReaders.
11451          * @param {Store} this
11452          * @param {Object} meta The JSON metadata
11453          */
11454         metachange : true,
11455         /**
11456          * @event add
11457          * Fires when Records have been added to the Store
11458          * @param {Store} this
11459          * @param {Roo.data.Record[]} records The array of Records added
11460          * @param {Number} index The index at which the record(s) were added
11461          */
11462         add : true,
11463         /**
11464          * @event remove
11465          * Fires when a Record has been removed from the Store
11466          * @param {Store} this
11467          * @param {Roo.data.Record} record The Record that was removed
11468          * @param {Number} index The index at which the record was removed
11469          */
11470         remove : true,
11471         /**
11472          * @event update
11473          * Fires when a Record has been updated
11474          * @param {Store} this
11475          * @param {Roo.data.Record} record The Record that was updated
11476          * @param {String} operation The update operation being performed.  Value may be one of:
11477          * <pre><code>
11478  Roo.data.Record.EDIT
11479  Roo.data.Record.REJECT
11480  Roo.data.Record.COMMIT
11481          * </code></pre>
11482          */
11483         update : true,
11484         /**
11485          * @event clear
11486          * Fires when the data cache has been cleared.
11487          * @param {Store} this
11488          */
11489         clear : true,
11490         /**
11491          * @event beforeload
11492          * Fires before a request is made for a new data object.  If the beforeload handler returns false
11493          * the load action will be canceled.
11494          * @param {Store} this
11495          * @param {Object} options The loading options that were specified (see {@link #load} for details)
11496          */
11497         beforeload : true,
11498         /**
11499          * @event beforeloadadd
11500          * Fires after a new set of Records has been loaded.
11501          * @param {Store} this
11502          * @param {Roo.data.Record[]} records The Records that were loaded
11503          * @param {Object} options The loading options that were specified (see {@link #load} for details)
11504          */
11505         beforeloadadd : true,
11506         /**
11507          * @event load
11508          * Fires after a new set of Records has been loaded, before they are added to the store.
11509          * @param {Store} this
11510          * @param {Roo.data.Record[]} records The Records that were loaded
11511          * @param {Object} options The loading options that were specified (see {@link #load} for details)
11512          * @params {Object} return from reader
11513          */
11514         load : true,
11515         /**
11516          * @event loadexception
11517          * Fires if an exception occurs in the Proxy during loading.
11518          * Called with the signature of the Proxy's "loadexception" event.
11519          * If you return Json { data: [] , success: false, .... } then this will be thrown with the following args
11520          * 
11521          * @param {Proxy} 
11522          * @param {Object} return from JsonData.reader() - success, totalRecords, records
11523          * @param {Object} load options 
11524          * @param {Object} jsonData from your request (normally this contains the Exception)
11525          */
11526         loadexception : true
11527     });
11528     
11529     if(this.proxy){
11530         this.proxy = Roo.factory(this.proxy, Roo.data);
11531         this.proxy.xmodule = this.xmodule || false;
11532         this.relayEvents(this.proxy,  ["loadexception"]);
11533     }
11534     this.sortToggle = {};
11535     this.sortOrder = []; // array of order of sorting - updated by grid if multisort is enabled.
11536
11537     Roo.data.Store.superclass.constructor.call(this);
11538
11539     if(this.inlineData){
11540         this.loadData(this.inlineData);
11541         delete this.inlineData;
11542     }
11543 };
11544
11545 Roo.extend(Roo.data.Store, Roo.util.Observable, {
11546      /**
11547     * @cfg {boolean} isLocal   flag if data is locally available (and can be always looked up
11548     * without a remote query - used by combo/forms at present.
11549     */
11550     
11551     /**
11552     * @cfg {Roo.data.DataProxy} proxy The Proxy object which provides access to a data object.
11553     */
11554     /**
11555     * @cfg {Array} data Inline data to be loaded when the store is initialized.
11556     */
11557     /**
11558     * @cfg {Roo.data.Reader} reader The Reader object which processes the data object and returns
11559     * an Array of Roo.data.record objects which are cached keyed by their <em>id</em> property.
11560     */
11561     /**
11562     * @cfg {Object} baseParams An object containing properties which are to be sent as parameters
11563     * on any HTTP request
11564     */
11565     /**
11566     * @cfg {Object} sortInfo A config object in the format: {field: "fieldName", direction: "ASC|DESC"}
11567     */
11568     /**
11569     * @cfg {Boolean} multiSort enable multi column sorting (sort is based on the order of columns, remote only at present)
11570     */
11571     multiSort: false,
11572     /**
11573     * @cfg {boolean} remoteSort True if sorting is to be handled by requesting the Proxy to provide a refreshed
11574     * version of the data object in sorted order, as opposed to sorting the Record cache in place (defaults to false).
11575     */
11576     remoteSort : false,
11577
11578     /**
11579     * @cfg {boolean} pruneModifiedRecords True to clear all modified record information each time the store is
11580      * loaded or when a record is removed. (defaults to false).
11581     */
11582     pruneModifiedRecords : false,
11583
11584     // private
11585     lastOptions : null,
11586
11587     /**
11588      * Add Records to the Store and fires the add event.
11589      * @param {Roo.data.Record[]} records An Array of Roo.data.Record objects to add to the cache.
11590      */
11591     add : function(records){
11592         records = [].concat(records);
11593         for(var i = 0, len = records.length; i < len; i++){
11594             records[i].join(this);
11595         }
11596         var index = this.data.length;
11597         this.data.addAll(records);
11598         this.fireEvent("add", this, records, index);
11599     },
11600
11601     /**
11602      * Remove a Record from the Store and fires the remove event.
11603      * @param {Ext.data.Record} record The Roo.data.Record object to remove from the cache.
11604      */
11605     remove : function(record){
11606         var index = this.data.indexOf(record);
11607         this.data.removeAt(index);
11608  
11609         if(this.pruneModifiedRecords){
11610             this.modified.remove(record);
11611         }
11612         this.fireEvent("remove", this, record, index);
11613     },
11614
11615     /**
11616      * Remove all Records from the Store and fires the clear event.
11617      */
11618     removeAll : function(){
11619         this.data.clear();
11620         if(this.pruneModifiedRecords){
11621             this.modified = [];
11622         }
11623         this.fireEvent("clear", this);
11624     },
11625
11626     /**
11627      * Inserts Records to the Store at the given index and fires the add event.
11628      * @param {Number} index The start index at which to insert the passed Records.
11629      * @param {Roo.data.Record[]} records An Array of Roo.data.Record objects to add to the cache.
11630      */
11631     insert : function(index, records){
11632         records = [].concat(records);
11633         for(var i = 0, len = records.length; i < len; i++){
11634             this.data.insert(index, records[i]);
11635             records[i].join(this);
11636         }
11637         this.fireEvent("add", this, records, index);
11638     },
11639
11640     /**
11641      * Get the index within the cache of the passed Record.
11642      * @param {Roo.data.Record} record The Roo.data.Record object to to find.
11643      * @return {Number} The index of the passed Record. Returns -1 if not found.
11644      */
11645     indexOf : function(record){
11646         return this.data.indexOf(record);
11647     },
11648
11649     /**
11650      * Get the index within the cache of the Record with the passed id.
11651      * @param {String} id The id of the Record to find.
11652      * @return {Number} The index of the Record. Returns -1 if not found.
11653      */
11654     indexOfId : function(id){
11655         return this.data.indexOfKey(id);
11656     },
11657
11658     /**
11659      * Get the Record with the specified id.
11660      * @param {String} id The id of the Record to find.
11661      * @return {Roo.data.Record} The Record with the passed id. Returns undefined if not found.
11662      */
11663     getById : function(id){
11664         return this.data.key(id);
11665     },
11666
11667     /**
11668      * Get the Record at the specified index.
11669      * @param {Number} index The index of the Record to find.
11670      * @return {Roo.data.Record} The Record at the passed index. Returns undefined if not found.
11671      */
11672     getAt : function(index){
11673         return this.data.itemAt(index);
11674     },
11675
11676     /**
11677      * Returns a range of Records between specified indices.
11678      * @param {Number} startIndex (optional) The starting index (defaults to 0)
11679      * @param {Number} endIndex (optional) The ending index (defaults to the last Record in the Store)
11680      * @return {Roo.data.Record[]} An array of Records
11681      */
11682     getRange : function(start, end){
11683         return this.data.getRange(start, end);
11684     },
11685
11686     // private
11687     storeOptions : function(o){
11688         o = Roo.apply({}, o);
11689         delete o.callback;
11690         delete o.scope;
11691         this.lastOptions = o;
11692     },
11693
11694     /**
11695      * Loads the Record cache from the configured Proxy using the configured Reader.
11696      * <p>
11697      * If using remote paging, then the first load call must specify the <em>start</em>
11698      * and <em>limit</em> properties in the options.params property to establish the initial
11699      * position within the dataset, and the number of Records to cache on each read from the Proxy.
11700      * <p>
11701      * <strong>It is important to note that for remote data sources, loading is asynchronous,
11702      * and this call will return before the new data has been loaded. Perform any post-processing
11703      * in a callback function, or in a "load" event handler.</strong>
11704      * <p>
11705      * @param {Object} options An object containing properties which control loading options:<ul>
11706      * <li>params {Object} An object containing properties to pass as HTTP parameters to a remote data source.</li>
11707      * <li>callback {Function} A function to be called after the Records have been loaded. The callback is
11708      * passed the following arguments:<ul>
11709      * <li>r : Roo.data.Record[]</li>
11710      * <li>options: Options object from the load call</li>
11711      * <li>success: Boolean success indicator</li></ul></li>
11712      * <li>scope {Object} Scope with which to call the callback (defaults to the Store object)</li>
11713      * <li>add {Boolean} indicator to append loaded records rather than replace the current cache.</li>
11714      * </ul>
11715      */
11716     load : function(options){
11717         options = options || {};
11718         if(this.fireEvent("beforeload", this, options) !== false){
11719             this.storeOptions(options);
11720             var p = Roo.apply(options.params || {}, this.baseParams);
11721             // if meta was not loaded from remote source.. try requesting it.
11722             if (!this.reader.metaFromRemote) {
11723                 p._requestMeta = 1;
11724             }
11725             if(this.sortInfo && this.remoteSort){
11726                 var pn = this.paramNames;
11727                 p[pn["sort"]] = this.sortInfo.field;
11728                 p[pn["dir"]] = this.sortInfo.direction;
11729             }
11730             if (this.multiSort) {
11731                 var pn = this.paramNames;
11732                 p[pn["multisort"]] = Roo.encode( { sort : this.sortToggle, order: this.sortOrder });
11733             }
11734             
11735             this.proxy.load(p, this.reader, this.loadRecords, this, options);
11736         }
11737     },
11738
11739     /**
11740      * Reloads the Record cache from the configured Proxy using the configured Reader and
11741      * the options from the last load operation performed.
11742      * @param {Object} options (optional) An object containing properties which may override the options
11743      * used in the last load operation. See {@link #load} for details (defaults to null, in which case
11744      * the most recently used options are reused).
11745      */
11746     reload : function(options){
11747         this.load(Roo.applyIf(options||{}, this.lastOptions));
11748     },
11749
11750     // private
11751     // Called as a callback by the Reader during a load operation.
11752     loadRecords : function(o, options, success){
11753         if(!o || success === false){
11754             if(success !== false){
11755                 this.fireEvent("load", this, [], options, o);
11756             }
11757             if(options.callback){
11758                 options.callback.call(options.scope || this, [], options, false);
11759             }
11760             return;
11761         }
11762         // if data returned failure - throw an exception.
11763         if (o.success === false) {
11764             // show a message if no listener is registered.
11765             if (!this.hasListener('loadexception') && typeof(o.raw.errorMsg) != 'undefined') {
11766                     Roo.MessageBox.alert("Error loading",o.raw.errorMsg);
11767             }
11768             // loadmask wil be hooked into this..
11769             this.fireEvent("loadexception", this, o, options, o.raw.errorMsg);
11770             return;
11771         }
11772         var r = o.records, t = o.totalRecords || r.length;
11773         
11774         this.fireEvent("beforeloadadd", this, r, options, o);
11775         
11776         if(!options || options.add !== true){
11777             if(this.pruneModifiedRecords){
11778                 this.modified = [];
11779             }
11780             for(var i = 0, len = r.length; i < len; i++){
11781                 r[i].join(this);
11782             }
11783             if(this.snapshot){
11784                 this.data = this.snapshot;
11785                 delete this.snapshot;
11786             }
11787             this.data.clear();
11788             this.data.addAll(r);
11789             this.totalLength = t;
11790             this.applySort();
11791             this.fireEvent("datachanged", this);
11792         }else{
11793             this.totalLength = Math.max(t, this.data.length+r.length);
11794             this.add(r);
11795         }
11796         
11797         if(this.parent && !Roo.isIOS && !this.useNativeIOS && this.parent.emptyTitle.length) {
11798                 
11799             var e = new Roo.data.Record({});
11800
11801             e.set(this.parent.displayField, this.parent.emptyTitle);
11802             e.set(this.parent.valueField, '');
11803
11804             this.insert(0, e);
11805         }
11806             
11807         this.fireEvent("load", this, r, options, o);
11808         if(options.callback){
11809             options.callback.call(options.scope || this, r, options, true);
11810         }
11811     },
11812
11813
11814     /**
11815      * Loads data from a passed data block. A Reader which understands the format of the data
11816      * must have been configured in the constructor.
11817      * @param {Object} data The data block from which to read the Records.  The format of the data expected
11818      * is dependent on the type of Reader that is configured and should correspond to that Reader's readRecords parameter.
11819      * @param {Boolean} append (Optional) True to append the new Records rather than replace the existing cache.
11820      */
11821     loadData : function(o, append){
11822         var r = this.reader.readRecords(o);
11823         this.loadRecords(r, {add: append}, true);
11824     },
11825
11826     /**
11827      * Gets the number of cached records.
11828      * <p>
11829      * <em>If using paging, this may not be the total size of the dataset. If the data object
11830      * used by the Reader contains the dataset size, then the getTotalCount() function returns
11831      * the data set size</em>
11832      */
11833     getCount : function(){
11834         return this.data.length || 0;
11835     },
11836
11837     /**
11838      * Gets the total number of records in the dataset as returned by the server.
11839      * <p>
11840      * <em>If using paging, for this to be accurate, the data object used by the Reader must contain
11841      * the dataset size</em>
11842      */
11843     getTotalCount : function(){
11844         return this.totalLength || 0;
11845     },
11846
11847     /**
11848      * Returns the sort state of the Store as an object with two properties:
11849      * <pre><code>
11850  field {String} The name of the field by which the Records are sorted
11851  direction {String} The sort order, "ASC" or "DESC"
11852      * </code></pre>
11853      */
11854     getSortState : function(){
11855         return this.sortInfo;
11856     },
11857
11858     // private
11859     applySort : function(){
11860         if(this.sortInfo && !this.remoteSort){
11861             var s = this.sortInfo, f = s.field;
11862             var st = this.fields.get(f).sortType;
11863             var fn = function(r1, r2){
11864                 var v1 = st(r1.data[f]), v2 = st(r2.data[f]);
11865                 return v1 > v2 ? 1 : (v1 < v2 ? -1 : 0);
11866             };
11867             this.data.sort(s.direction, fn);
11868             if(this.snapshot && this.snapshot != this.data){
11869                 this.snapshot.sort(s.direction, fn);
11870             }
11871         }
11872     },
11873
11874     /**
11875      * Sets the default sort column and order to be used by the next load operation.
11876      * @param {String} fieldName The name of the field to sort by.
11877      * @param {String} dir (optional) The sort order, "ASC" or "DESC" (defaults to "ASC")
11878      */
11879     setDefaultSort : function(field, dir){
11880         this.sortInfo = {field: field, direction: dir ? dir.toUpperCase() : "ASC"};
11881     },
11882
11883     /**
11884      * Sort the Records.
11885      * If remote sorting is used, the sort is performed on the server, and the cache is
11886      * reloaded. If local sorting is used, the cache is sorted internally.
11887      * @param {String} fieldName The name of the field to sort by.
11888      * @param {String} dir (optional) The sort order, "ASC" or "DESC" (defaults to "ASC")
11889      */
11890     sort : function(fieldName, dir){
11891         var f = this.fields.get(fieldName);
11892         if(!dir){
11893             this.sortToggle[f.name] = this.sortToggle[f.name] || f.sortDir;
11894             
11895             if(this.multiSort || (this.sortInfo && this.sortInfo.field == f.name) ){ // toggle sort dir
11896                 dir = (this.sortToggle[f.name] || "ASC").toggle("ASC", "DESC");
11897             }else{
11898                 dir = f.sortDir;
11899             }
11900         }
11901         this.sortToggle[f.name] = dir;
11902         this.sortInfo = {field: f.name, direction: dir};
11903         if(!this.remoteSort){
11904             this.applySort();
11905             this.fireEvent("datachanged", this);
11906         }else{
11907             this.load(this.lastOptions);
11908         }
11909     },
11910
11911     /**
11912      * Calls the specified function for each of the Records in the cache.
11913      * @param {Function} fn The function to call. The Record is passed as the first parameter.
11914      * Returning <em>false</em> aborts and exits the iteration.
11915      * @param {Object} scope (optional) The scope in which to call the function (defaults to the Record).
11916      */
11917     each : function(fn, scope){
11918         this.data.each(fn, scope);
11919     },
11920
11921     /**
11922      * Gets all records modified since the last commit.  Modified records are persisted across load operations
11923      * (e.g., during paging).
11924      * @return {Roo.data.Record[]} An array of Records containing outstanding modifications.
11925      */
11926     getModifiedRecords : function(){
11927         return this.modified;
11928     },
11929
11930     // private
11931     createFilterFn : function(property, value, anyMatch){
11932         if(!value.exec){ // not a regex
11933             value = String(value);
11934             if(value.length == 0){
11935                 return false;
11936             }
11937             value = new RegExp((anyMatch === true ? '' : '^') + Roo.escapeRe(value), "i");
11938         }
11939         return function(r){
11940             return value.test(r.data[property]);
11941         };
11942     },
11943
11944     /**
11945      * Sums the value of <i>property</i> for each record between start and end and returns the result.
11946      * @param {String} property A field on your records
11947      * @param {Number} start The record index to start at (defaults to 0)
11948      * @param {Number} end The last record index to include (defaults to length - 1)
11949      * @return {Number} The sum
11950      */
11951     sum : function(property, start, end){
11952         var rs = this.data.items, v = 0;
11953         start = start || 0;
11954         end = (end || end === 0) ? end : rs.length-1;
11955
11956         for(var i = start; i <= end; i++){
11957             v += (rs[i].data[property] || 0);
11958         }
11959         return v;
11960     },
11961
11962     /**
11963      * Filter the records by a specified property.
11964      * @param {String} field A field on your records
11965      * @param {String/RegExp} value Either a string that the field
11966      * should start with or a RegExp to test against the field
11967      * @param {Boolean} anyMatch True to match any part not just the beginning
11968      */
11969     filter : function(property, value, anyMatch){
11970         var fn = this.createFilterFn(property, value, anyMatch);
11971         return fn ? this.filterBy(fn) : this.clearFilter();
11972     },
11973
11974     /**
11975      * Filter by a function. The specified function will be called with each
11976      * record in this data source. If the function returns true the record is included,
11977      * otherwise it is filtered.
11978      * @param {Function} fn The function to be called, it will receive 2 args (record, id)
11979      * @param {Object} scope (optional) The scope of the function (defaults to this)
11980      */
11981     filterBy : function(fn, scope){
11982         this.snapshot = this.snapshot || this.data;
11983         this.data = this.queryBy(fn, scope||this);
11984         this.fireEvent("datachanged", this);
11985     },
11986
11987     /**
11988      * Query the records by a specified property.
11989      * @param {String} field A field on your records
11990      * @param {String/RegExp} value Either a string that the field
11991      * should start with or a RegExp to test against the field
11992      * @param {Boolean} anyMatch True to match any part not just the beginning
11993      * @return {MixedCollection} Returns an Roo.util.MixedCollection of the matched records
11994      */
11995     query : function(property, value, anyMatch){
11996         var fn = this.createFilterFn(property, value, anyMatch);
11997         return fn ? this.queryBy(fn) : this.data.clone();
11998     },
11999
12000     /**
12001      * Query by a function. The specified function will be called with each
12002      * record in this data source. If the function returns true the record is included
12003      * in the results.
12004      * @param {Function} fn The function to be called, it will receive 2 args (record, id)
12005      * @param {Object} scope (optional) The scope of the function (defaults to this)
12006       @return {MixedCollection} Returns an Roo.util.MixedCollection of the matched records
12007      **/
12008     queryBy : function(fn, scope){
12009         var data = this.snapshot || this.data;
12010         return data.filterBy(fn, scope||this);
12011     },
12012
12013     /**
12014      * Collects unique values for a particular dataIndex from this store.
12015      * @param {String} dataIndex The property to collect
12016      * @param {Boolean} allowNull (optional) Pass true to allow null, undefined or empty string values
12017      * @param {Boolean} bypassFilter (optional) Pass true to collect from all records, even ones which are filtered
12018      * @return {Array} An array of the unique values
12019      **/
12020     collect : function(dataIndex, allowNull, bypassFilter){
12021         var d = (bypassFilter === true && this.snapshot) ?
12022                 this.snapshot.items : this.data.items;
12023         var v, sv, r = [], l = {};
12024         for(var i = 0, len = d.length; i < len; i++){
12025             v = d[i].data[dataIndex];
12026             sv = String(v);
12027             if((allowNull || !Roo.isEmpty(v)) && !l[sv]){
12028                 l[sv] = true;
12029                 r[r.length] = v;
12030             }
12031         }
12032         return r;
12033     },
12034
12035     /**
12036      * Revert to a view of the Record cache with no filtering applied.
12037      * @param {Boolean} suppressEvent If true the filter is cleared silently without notifying listeners
12038      */
12039     clearFilter : function(suppressEvent){
12040         if(this.snapshot && this.snapshot != this.data){
12041             this.data = this.snapshot;
12042             delete this.snapshot;
12043             if(suppressEvent !== true){
12044                 this.fireEvent("datachanged", this);
12045             }
12046         }
12047     },
12048
12049     // private
12050     afterEdit : function(record){
12051         if(this.modified.indexOf(record) == -1){
12052             this.modified.push(record);
12053         }
12054         this.fireEvent("update", this, record, Roo.data.Record.EDIT);
12055     },
12056     
12057     // private
12058     afterReject : function(record){
12059         this.modified.remove(record);
12060         this.fireEvent("update", this, record, Roo.data.Record.REJECT);
12061     },
12062
12063     // private
12064     afterCommit : function(record){
12065         this.modified.remove(record);
12066         this.fireEvent("update", this, record, Roo.data.Record.COMMIT);
12067     },
12068
12069     /**
12070      * Commit all Records with outstanding changes. To handle updates for changes, subscribe to the
12071      * Store's "update" event, and perform updating when the third parameter is Roo.data.Record.COMMIT.
12072      */
12073     commitChanges : function(){
12074         var m = this.modified.slice(0);
12075         this.modified = [];
12076         for(var i = 0, len = m.length; i < len; i++){
12077             m[i].commit();
12078         }
12079     },
12080
12081     /**
12082      * Cancel outstanding changes on all changed records.
12083      */
12084     rejectChanges : function(){
12085         var m = this.modified.slice(0);
12086         this.modified = [];
12087         for(var i = 0, len = m.length; i < len; i++){
12088             m[i].reject();
12089         }
12090     },
12091
12092     onMetaChange : function(meta, rtype, o){
12093         this.recordType = rtype;
12094         this.fields = rtype.prototype.fields;
12095         delete this.snapshot;
12096         this.sortInfo = meta.sortInfo || this.sortInfo;
12097         this.modified = [];
12098         this.fireEvent('metachange', this, this.reader.meta);
12099     },
12100     
12101     moveIndex : function(data, type)
12102     {
12103         var index = this.indexOf(data);
12104         
12105         var newIndex = index + type;
12106         
12107         this.remove(data);
12108         
12109         this.insert(newIndex, data);
12110         
12111     }
12112 });/*
12113  * Based on:
12114  * Ext JS Library 1.1.1
12115  * Copyright(c) 2006-2007, Ext JS, LLC.
12116  *
12117  * Originally Released Under LGPL - original licence link has changed is not relivant.
12118  *
12119  * Fork - LGPL
12120  * <script type="text/javascript">
12121  */
12122
12123 /**
12124  * @class Roo.data.SimpleStore
12125  * @extends Roo.data.Store
12126  * Small helper class to make creating Stores from Array data easier.
12127  * @cfg {Number} id The array index of the record id. Leave blank to auto generate ids.
12128  * @cfg {Array} fields An array of field definition objects, or field name strings.
12129  * @cfg {Array} data The multi-dimensional array of data
12130  * @constructor
12131  * @param {Object} config
12132  */
12133 Roo.data.SimpleStore = function(config){
12134     Roo.data.SimpleStore.superclass.constructor.call(this, {
12135         isLocal : true,
12136         reader: new Roo.data.ArrayReader({
12137                 id: config.id
12138             },
12139             Roo.data.Record.create(config.fields)
12140         ),
12141         proxy : new Roo.data.MemoryProxy(config.data)
12142     });
12143     this.load();
12144 };
12145 Roo.extend(Roo.data.SimpleStore, Roo.data.Store);/*
12146  * Based on:
12147  * Ext JS Library 1.1.1
12148  * Copyright(c) 2006-2007, Ext JS, LLC.
12149  *
12150  * Originally Released Under LGPL - original licence link has changed is not relivant.
12151  *
12152  * Fork - LGPL
12153  * <script type="text/javascript">
12154  */
12155
12156 /**
12157 /**
12158  * @extends Roo.data.Store
12159  * @class Roo.data.JsonStore
12160  * Small helper class to make creating Stores for JSON data easier. <br/>
12161 <pre><code>
12162 var store = new Roo.data.JsonStore({
12163     url: 'get-images.php',
12164     root: 'images',
12165     fields: ['name', 'url', {name:'size', type: 'float'}, {name:'lastmod', type:'date'}]
12166 });
12167 </code></pre>
12168  * <b>Note: Although they are not listed, this class inherits all of the config options of Store,
12169  * JsonReader and HttpProxy (unless inline data is provided).</b>
12170  * @cfg {Array} fields An array of field definition objects, or field name strings.
12171  * @constructor
12172  * @param {Object} config
12173  */
12174 Roo.data.JsonStore = function(c){
12175     Roo.data.JsonStore.superclass.constructor.call(this, Roo.apply(c, {
12176         proxy: !c.data ? new Roo.data.HttpProxy({url: c.url}) : undefined,
12177         reader: new Roo.data.JsonReader(c, c.fields)
12178     }));
12179 };
12180 Roo.extend(Roo.data.JsonStore, Roo.data.Store);/*
12181  * Based on:
12182  * Ext JS Library 1.1.1
12183  * Copyright(c) 2006-2007, Ext JS, LLC.
12184  *
12185  * Originally Released Under LGPL - original licence link has changed is not relivant.
12186  *
12187  * Fork - LGPL
12188  * <script type="text/javascript">
12189  */
12190
12191  
12192 Roo.data.Field = function(config){
12193     if(typeof config == "string"){
12194         config = {name: config};
12195     }
12196     Roo.apply(this, config);
12197     
12198     if(!this.type){
12199         this.type = "auto";
12200     }
12201     
12202     var st = Roo.data.SortTypes;
12203     // named sortTypes are supported, here we look them up
12204     if(typeof this.sortType == "string"){
12205         this.sortType = st[this.sortType];
12206     }
12207     
12208     // set default sortType for strings and dates
12209     if(!this.sortType){
12210         switch(this.type){
12211             case "string":
12212                 this.sortType = st.asUCString;
12213                 break;
12214             case "date":
12215                 this.sortType = st.asDate;
12216                 break;
12217             default:
12218                 this.sortType = st.none;
12219         }
12220     }
12221
12222     // define once
12223     var stripRe = /[\$,%]/g;
12224
12225     // prebuilt conversion function for this field, instead of
12226     // switching every time we're reading a value
12227     if(!this.convert){
12228         var cv, dateFormat = this.dateFormat;
12229         switch(this.type){
12230             case "":
12231             case "auto":
12232             case undefined:
12233                 cv = function(v){ return v; };
12234                 break;
12235             case "string":
12236                 cv = function(v){ return (v === undefined || v === null) ? '' : String(v); };
12237                 break;
12238             case "int":
12239                 cv = function(v){
12240                     return v !== undefined && v !== null && v !== '' ?
12241                            parseInt(String(v).replace(stripRe, ""), 10) : '';
12242                     };
12243                 break;
12244             case "float":
12245                 cv = function(v){
12246                     return v !== undefined && v !== null && v !== '' ?
12247                            parseFloat(String(v).replace(stripRe, ""), 10) : ''; 
12248                     };
12249                 break;
12250             case "bool":
12251             case "boolean":
12252                 cv = function(v){ return v === true || v === "true" || v == 1; };
12253                 break;
12254             case "date":
12255                 cv = function(v){
12256                     if(!v){
12257                         return '';
12258                     }
12259                     if(v instanceof Date){
12260                         return v;
12261                     }
12262                     if(dateFormat){
12263                         if(dateFormat == "timestamp"){
12264                             return new Date(v*1000);
12265                         }
12266                         return Date.parseDate(v, dateFormat);
12267                     }
12268                     var parsed = Date.parse(v);
12269                     return parsed ? new Date(parsed) : null;
12270                 };
12271              break;
12272             
12273         }
12274         this.convert = cv;
12275     }
12276 };
12277
12278 Roo.data.Field.prototype = {
12279     dateFormat: null,
12280     defaultValue: "",
12281     mapping: null,
12282     sortType : null,
12283     sortDir : "ASC"
12284 };/*
12285  * Based on:
12286  * Ext JS Library 1.1.1
12287  * Copyright(c) 2006-2007, Ext JS, LLC.
12288  *
12289  * Originally Released Under LGPL - original licence link has changed is not relivant.
12290  *
12291  * Fork - LGPL
12292  * <script type="text/javascript">
12293  */
12294  
12295 // Base class for reading structured data from a data source.  This class is intended to be
12296 // extended (see ArrayReader, JsonReader and XmlReader) and should not be created directly.
12297
12298 /**
12299  * @class Roo.data.DataReader
12300  * Base class for reading structured data from a data source.  This class is intended to be
12301  * extended (see {Roo.data.ArrayReader}, {Roo.data.JsonReader} and {Roo.data.XmlReader}) and should not be created directly.
12302  */
12303
12304 Roo.data.DataReader = function(meta, recordType){
12305     
12306     this.meta = meta;
12307     
12308     this.recordType = recordType instanceof Array ? 
12309         Roo.data.Record.create(recordType) : recordType;
12310 };
12311
12312 Roo.data.DataReader.prototype = {
12313      /**
12314      * Create an empty record
12315      * @param {Object} data (optional) - overlay some values
12316      * @return {Roo.data.Record} record created.
12317      */
12318     newRow :  function(d) {
12319         var da =  {};
12320         this.recordType.prototype.fields.each(function(c) {
12321             switch( c.type) {
12322                 case 'int' : da[c.name] = 0; break;
12323                 case 'date' : da[c.name] = new Date(); break;
12324                 case 'float' : da[c.name] = 0.0; break;
12325                 case 'boolean' : da[c.name] = false; break;
12326                 default : da[c.name] = ""; break;
12327             }
12328             
12329         });
12330         return new this.recordType(Roo.apply(da, d));
12331     }
12332     
12333 };/*
12334  * Based on:
12335  * Ext JS Library 1.1.1
12336  * Copyright(c) 2006-2007, Ext JS, LLC.
12337  *
12338  * Originally Released Under LGPL - original licence link has changed is not relivant.
12339  *
12340  * Fork - LGPL
12341  * <script type="text/javascript">
12342  */
12343
12344 /**
12345  * @class Roo.data.DataProxy
12346  * @extends Roo.data.Observable
12347  * This class is an abstract base class for implementations which provide retrieval of
12348  * unformatted data objects.<br>
12349  * <p>
12350  * DataProxy implementations are usually used in conjunction with an implementation of Roo.data.DataReader
12351  * (of the appropriate type which knows how to parse the data object) to provide a block of
12352  * {@link Roo.data.Records} to an {@link Roo.data.Store}.<br>
12353  * <p>
12354  * Custom implementations must implement the load method as described in
12355  * {@link Roo.data.HttpProxy#load}.
12356  */
12357 Roo.data.DataProxy = function(){
12358     this.addEvents({
12359         /**
12360          * @event beforeload
12361          * Fires before a network request is made to retrieve a data object.
12362          * @param {Object} This DataProxy object.
12363          * @param {Object} params The params parameter to the load function.
12364          */
12365         beforeload : true,
12366         /**
12367          * @event load
12368          * Fires before the load method's callback is called.
12369          * @param {Object} This DataProxy object.
12370          * @param {Object} o The data object.
12371          * @param {Object} arg The callback argument object passed to the load function.
12372          */
12373         load : true,
12374         /**
12375          * @event loadexception
12376          * Fires if an Exception occurs during data retrieval.
12377          * @param {Object} This DataProxy object.
12378          * @param {Object} o The data object.
12379          * @param {Object} arg The callback argument object passed to the load function.
12380          * @param {Object} e The Exception.
12381          */
12382         loadexception : true
12383     });
12384     Roo.data.DataProxy.superclass.constructor.call(this);
12385 };
12386
12387 Roo.extend(Roo.data.DataProxy, Roo.util.Observable);
12388
12389     /**
12390      * @cfg {void} listeners (Not available) Constructor blocks listeners from being set
12391      */
12392 /*
12393  * Based on:
12394  * Ext JS Library 1.1.1
12395  * Copyright(c) 2006-2007, Ext JS, LLC.
12396  *
12397  * Originally Released Under LGPL - original licence link has changed is not relivant.
12398  *
12399  * Fork - LGPL
12400  * <script type="text/javascript">
12401  */
12402 /**
12403  * @class Roo.data.MemoryProxy
12404  * An implementation of Roo.data.DataProxy that simply passes the data specified in its constructor
12405  * to the Reader when its load method is called.
12406  * @constructor
12407  * @param {Object} data The data object which the Reader uses to construct a block of Roo.data.Records.
12408  */
12409 Roo.data.MemoryProxy = function(data){
12410     if (data.data) {
12411         data = data.data;
12412     }
12413     Roo.data.MemoryProxy.superclass.constructor.call(this);
12414     this.data = data;
12415 };
12416
12417 Roo.extend(Roo.data.MemoryProxy, Roo.data.DataProxy, {
12418     
12419     /**
12420      * Load data from the requested source (in this case an in-memory
12421      * data object passed to the constructor), read the data object into
12422      * a block of Roo.data.Records using the passed Roo.data.DataReader implementation, and
12423      * process that block using the passed callback.
12424      * @param {Object} params This parameter is not used by the MemoryProxy class.
12425      * @param {Roo.data.DataReader} reader The Reader object which converts the data
12426      * object into a block of Roo.data.Records.
12427      * @param {Function} callback The function into which to pass the block of Roo.data.records.
12428      * The function must be passed <ul>
12429      * <li>The Record block object</li>
12430      * <li>The "arg" argument from the load function</li>
12431      * <li>A boolean success indicator</li>
12432      * </ul>
12433      * @param {Object} scope The scope in which to call the callback
12434      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
12435      */
12436     load : function(params, reader, callback, scope, arg){
12437         params = params || {};
12438         var result;
12439         try {
12440             result = reader.readRecords(params.data ? params.data :this.data);
12441         }catch(e){
12442             this.fireEvent("loadexception", this, arg, null, e);
12443             callback.call(scope, null, arg, false);
12444             return;
12445         }
12446         callback.call(scope, result, arg, true);
12447     },
12448     
12449     // private
12450     update : function(params, records){
12451         
12452     }
12453 });/*
12454  * Based on:
12455  * Ext JS Library 1.1.1
12456  * Copyright(c) 2006-2007, Ext JS, LLC.
12457  *
12458  * Originally Released Under LGPL - original licence link has changed is not relivant.
12459  *
12460  * Fork - LGPL
12461  * <script type="text/javascript">
12462  */
12463 /**
12464  * @class Roo.data.HttpProxy
12465  * @extends Roo.data.DataProxy
12466  * An implementation of {@link Roo.data.DataProxy} that reads a data object from an {@link Roo.data.Connection} object
12467  * configured to reference a certain URL.<br><br>
12468  * <p>
12469  * <em>Note that this class cannot be used to retrieve data from a domain other than the domain
12470  * from which the running page was served.<br><br>
12471  * <p>
12472  * For cross-domain access to remote data, use an {@link Roo.data.ScriptTagProxy}.</em><br><br>
12473  * <p>
12474  * Be aware that to enable the browser to parse an XML document, the server must set
12475  * the Content-Type header in the HTTP response to "text/xml".
12476  * @constructor
12477  * @param {Object} conn Connection config options to add to each request (e.g. {url: 'foo.php'} or
12478  * an {@link Roo.data.Connection} object.  If a Connection config is passed, the singleton {@link Roo.Ajax} object
12479  * will be used to make the request.
12480  */
12481 Roo.data.HttpProxy = function(conn){
12482     Roo.data.HttpProxy.superclass.constructor.call(this);
12483     // is conn a conn config or a real conn?
12484     this.conn = conn;
12485     this.useAjax = !conn || !conn.events;
12486   
12487 };
12488
12489 Roo.extend(Roo.data.HttpProxy, Roo.data.DataProxy, {
12490     // thse are take from connection...
12491     
12492     /**
12493      * @cfg {String} url (Optional) The default URL to be used for requests to the server. (defaults to undefined)
12494      */
12495     /**
12496      * @cfg {Object} extraParams (Optional) An object containing properties which are used as
12497      * extra parameters to each request made by this object. (defaults to undefined)
12498      */
12499     /**
12500      * @cfg {Object} defaultHeaders (Optional) An object containing request headers which are added
12501      *  to each request made by this object. (defaults to undefined)
12502      */
12503     /**
12504      * @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)
12505      */
12506     /**
12507      * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
12508      */
12509      /**
12510      * @cfg {Boolean} autoAbort (Optional) Whether this request should abort any pending requests. (defaults to false)
12511      * @type Boolean
12512      */
12513   
12514
12515     /**
12516      * @cfg {Boolean} disableCaching (Optional) True to add a unique cache-buster param to GET requests. (defaults to true)
12517      * @type Boolean
12518      */
12519     /**
12520      * Return the {@link Roo.data.Connection} object being used by this Proxy.
12521      * @return {Connection} The Connection object. This object may be used to subscribe to events on
12522      * a finer-grained basis than the DataProxy events.
12523      */
12524     getConnection : function(){
12525         return this.useAjax ? Roo.Ajax : this.conn;
12526     },
12527
12528     /**
12529      * Load data from the configured {@link Roo.data.Connection}, read the data object into
12530      * a block of Roo.data.Records using the passed {@link Roo.data.DataReader} implementation, and
12531      * process that block using the passed callback.
12532      * @param {Object} params An object containing properties which are to be used as HTTP parameters
12533      * for the request to the remote server.
12534      * @param {Roo.data.DataReader} reader The Reader object which converts the data
12535      * object into a block of Roo.data.Records.
12536      * @param {Function} callback The function into which to pass the block of Roo.data.Records.
12537      * The function must be passed <ul>
12538      * <li>The Record block object</li>
12539      * <li>The "arg" argument from the load function</li>
12540      * <li>A boolean success indicator</li>
12541      * </ul>
12542      * @param {Object} scope The scope in which to call the callback
12543      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
12544      */
12545     load : function(params, reader, callback, scope, arg){
12546         if(this.fireEvent("beforeload", this, params) !== false){
12547             var  o = {
12548                 params : params || {},
12549                 request: {
12550                     callback : callback,
12551                     scope : scope,
12552                     arg : arg
12553                 },
12554                 reader: reader,
12555                 callback : this.loadResponse,
12556                 scope: this
12557             };
12558             if(this.useAjax){
12559                 Roo.applyIf(o, this.conn);
12560                 if(this.activeRequest){
12561                     Roo.Ajax.abort(this.activeRequest);
12562                 }
12563                 this.activeRequest = Roo.Ajax.request(o);
12564             }else{
12565                 this.conn.request(o);
12566             }
12567         }else{
12568             callback.call(scope||this, null, arg, false);
12569         }
12570     },
12571
12572     // private
12573     loadResponse : function(o, success, response){
12574         delete this.activeRequest;
12575         if(!success){
12576             this.fireEvent("loadexception", this, o, response);
12577             o.request.callback.call(o.request.scope, null, o.request.arg, false);
12578             return;
12579         }
12580         var result;
12581         try {
12582             result = o.reader.read(response);
12583         }catch(e){
12584             this.fireEvent("loadexception", this, o, response, e);
12585             o.request.callback.call(o.request.scope, null, o.request.arg, false);
12586             return;
12587         }
12588         
12589         this.fireEvent("load", this, o, o.request.arg);
12590         o.request.callback.call(o.request.scope, result, o.request.arg, true);
12591     },
12592
12593     // private
12594     update : function(dataSet){
12595
12596     },
12597
12598     // private
12599     updateResponse : function(dataSet){
12600
12601     }
12602 });/*
12603  * Based on:
12604  * Ext JS Library 1.1.1
12605  * Copyright(c) 2006-2007, Ext JS, LLC.
12606  *
12607  * Originally Released Under LGPL - original licence link has changed is not relivant.
12608  *
12609  * Fork - LGPL
12610  * <script type="text/javascript">
12611  */
12612
12613 /**
12614  * @class Roo.data.ScriptTagProxy
12615  * An implementation of Roo.data.DataProxy that reads a data object from a URL which may be in a domain
12616  * other than the originating domain of the running page.<br><br>
12617  * <p>
12618  * <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
12619  * of the running page, you must use this class, rather than DataProxy.</em><br><br>
12620  * <p>
12621  * The content passed back from a server resource requested by a ScriptTagProxy is executable JavaScript
12622  * source code that is used as the source inside a &lt;script> tag.<br><br>
12623  * <p>
12624  * In order for the browser to process the returned data, the server must wrap the data object
12625  * with a call to a callback function, the name of which is passed as a parameter by the ScriptTagProxy.
12626  * Below is a Java example for a servlet which returns data for either a ScriptTagProxy, or an HttpProxy
12627  * depending on whether the callback name was passed:
12628  * <p>
12629  * <pre><code>
12630 boolean scriptTag = false;
12631 String cb = request.getParameter("callback");
12632 if (cb != null) {
12633     scriptTag = true;
12634     response.setContentType("text/javascript");
12635 } else {
12636     response.setContentType("application/x-json");
12637 }
12638 Writer out = response.getWriter();
12639 if (scriptTag) {
12640     out.write(cb + "(");
12641 }
12642 out.print(dataBlock.toJsonString());
12643 if (scriptTag) {
12644     out.write(");");
12645 }
12646 </pre></code>
12647  *
12648  * @constructor
12649  * @param {Object} config A configuration object.
12650  */
12651 Roo.data.ScriptTagProxy = function(config){
12652     Roo.data.ScriptTagProxy.superclass.constructor.call(this);
12653     Roo.apply(this, config);
12654     this.head = document.getElementsByTagName("head")[0];
12655 };
12656
12657 Roo.data.ScriptTagProxy.TRANS_ID = 1000;
12658
12659 Roo.extend(Roo.data.ScriptTagProxy, Roo.data.DataProxy, {
12660     /**
12661      * @cfg {String} url The URL from which to request the data object.
12662      */
12663     /**
12664      * @cfg {Number} timeout (Optional) The number of milliseconds to wait for a response. Defaults to 30 seconds.
12665      */
12666     timeout : 30000,
12667     /**
12668      * @cfg {String} callbackParam (Optional) The name of the parameter to pass to the server which tells
12669      * the server the name of the callback function set up by the load call to process the returned data object.
12670      * Defaults to "callback".<p>The server-side processing must read this parameter value, and generate
12671      * javascript output which calls this named function passing the data object as its only parameter.
12672      */
12673     callbackParam : "callback",
12674     /**
12675      *  @cfg {Boolean} nocache (Optional) Defaults to true. Disable cacheing by adding a unique parameter
12676      * name to the request.
12677      */
12678     nocache : true,
12679
12680     /**
12681      * Load data from the configured URL, read the data object into
12682      * a block of Roo.data.Records using the passed Roo.data.DataReader implementation, and
12683      * process that block using the passed callback.
12684      * @param {Object} params An object containing properties which are to be used as HTTP parameters
12685      * for the request to the remote server.
12686      * @param {Roo.data.DataReader} reader The Reader object which converts the data
12687      * object into a block of Roo.data.Records.
12688      * @param {Function} callback The function into which to pass the block of Roo.data.Records.
12689      * The function must be passed <ul>
12690      * <li>The Record block object</li>
12691      * <li>The "arg" argument from the load function</li>
12692      * <li>A boolean success indicator</li>
12693      * </ul>
12694      * @param {Object} scope The scope in which to call the callback
12695      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
12696      */
12697     load : function(params, reader, callback, scope, arg){
12698         if(this.fireEvent("beforeload", this, params) !== false){
12699
12700             var p = Roo.urlEncode(Roo.apply(params, this.extraParams));
12701
12702             var url = this.url;
12703             url += (url.indexOf("?") != -1 ? "&" : "?") + p;
12704             if(this.nocache){
12705                 url += "&_dc=" + (new Date().getTime());
12706             }
12707             var transId = ++Roo.data.ScriptTagProxy.TRANS_ID;
12708             var trans = {
12709                 id : transId,
12710                 cb : "stcCallback"+transId,
12711                 scriptId : "stcScript"+transId,
12712                 params : params,
12713                 arg : arg,
12714                 url : url,
12715                 callback : callback,
12716                 scope : scope,
12717                 reader : reader
12718             };
12719             var conn = this;
12720
12721             window[trans.cb] = function(o){
12722                 conn.handleResponse(o, trans);
12723             };
12724
12725             url += String.format("&{0}={1}", this.callbackParam, trans.cb);
12726
12727             if(this.autoAbort !== false){
12728                 this.abort();
12729             }
12730
12731             trans.timeoutId = this.handleFailure.defer(this.timeout, this, [trans]);
12732
12733             var script = document.createElement("script");
12734             script.setAttribute("src", url);
12735             script.setAttribute("type", "text/javascript");
12736             script.setAttribute("id", trans.scriptId);
12737             this.head.appendChild(script);
12738
12739             this.trans = trans;
12740         }else{
12741             callback.call(scope||this, null, arg, false);
12742         }
12743     },
12744
12745     // private
12746     isLoading : function(){
12747         return this.trans ? true : false;
12748     },
12749
12750     /**
12751      * Abort the current server request.
12752      */
12753     abort : function(){
12754         if(this.isLoading()){
12755             this.destroyTrans(this.trans);
12756         }
12757     },
12758
12759     // private
12760     destroyTrans : function(trans, isLoaded){
12761         this.head.removeChild(document.getElementById(trans.scriptId));
12762         clearTimeout(trans.timeoutId);
12763         if(isLoaded){
12764             window[trans.cb] = undefined;
12765             try{
12766                 delete window[trans.cb];
12767             }catch(e){}
12768         }else{
12769             // if hasn't been loaded, wait for load to remove it to prevent script error
12770             window[trans.cb] = function(){
12771                 window[trans.cb] = undefined;
12772                 try{
12773                     delete window[trans.cb];
12774                 }catch(e){}
12775             };
12776         }
12777     },
12778
12779     // private
12780     handleResponse : function(o, trans){
12781         this.trans = false;
12782         this.destroyTrans(trans, true);
12783         var result;
12784         try {
12785             result = trans.reader.readRecords(o);
12786         }catch(e){
12787             this.fireEvent("loadexception", this, o, trans.arg, e);
12788             trans.callback.call(trans.scope||window, null, trans.arg, false);
12789             return;
12790         }
12791         this.fireEvent("load", this, o, trans.arg);
12792         trans.callback.call(trans.scope||window, result, trans.arg, true);
12793     },
12794
12795     // private
12796     handleFailure : function(trans){
12797         this.trans = false;
12798         this.destroyTrans(trans, false);
12799         this.fireEvent("loadexception", this, null, trans.arg);
12800         trans.callback.call(trans.scope||window, null, trans.arg, false);
12801     }
12802 });/*
12803  * Based on:
12804  * Ext JS Library 1.1.1
12805  * Copyright(c) 2006-2007, Ext JS, LLC.
12806  *
12807  * Originally Released Under LGPL - original licence link has changed is not relivant.
12808  *
12809  * Fork - LGPL
12810  * <script type="text/javascript">
12811  */
12812
12813 /**
12814  * @class Roo.data.JsonReader
12815  * @extends Roo.data.DataReader
12816  * Data reader class to create an Array of Roo.data.Record objects from a JSON response
12817  * based on mappings in a provided Roo.data.Record constructor.
12818  * 
12819  * The default behaviour of a store is to send ?_requestMeta=1, unless the class has recieved 'metaData' property
12820  * in the reply previously. 
12821  * 
12822  * <p>
12823  * Example code:
12824  * <pre><code>
12825 var RecordDef = Roo.data.Record.create([
12826     {name: 'name', mapping: 'name'},     // "mapping" property not needed if it's the same as "name"
12827     {name: 'occupation'}                 // This field will use "occupation" as the mapping.
12828 ]);
12829 var myReader = new Roo.data.JsonReader({
12830     totalProperty: "results",    // The property which contains the total dataset size (optional)
12831     root: "rows",                // The property which contains an Array of row objects
12832     id: "id"                     // The property within each row object that provides an ID for the record (optional)
12833 }, RecordDef);
12834 </code></pre>
12835  * <p>
12836  * This would consume a JSON file like this:
12837  * <pre><code>
12838 { 'results': 2, 'rows': [
12839     { 'id': 1, 'name': 'Bill', occupation: 'Gardener' },
12840     { 'id': 2, 'name': 'Ben', occupation: 'Horticulturalist' } ]
12841 }
12842 </code></pre>
12843  * @cfg {String} totalProperty Name of the property from which to retrieve the total number of records
12844  * in the dataset. This is only needed if the whole dataset is not passed in one go, but is being
12845  * paged from the remote server.
12846  * @cfg {String} successProperty Name of the property from which to retrieve the success attribute used by forms.
12847  * @cfg {String} root name of the property which contains the Array of row objects.
12848  * @cfg {String} id Name of the property within a row object that contains a record identifier value.
12849  * @cfg {Array} fields Array of field definition objects
12850  * @constructor
12851  * Create a new JsonReader
12852  * @param {Object} meta Metadata configuration options
12853  * @param {Object} recordType Either an Array of field definition objects,
12854  * or an {@link Roo.data.Record} object created using {@link Roo.data.Record#create}.
12855  */
12856 Roo.data.JsonReader = function(meta, recordType){
12857     
12858     meta = meta || {};
12859     // set some defaults:
12860     Roo.applyIf(meta, {
12861         totalProperty: 'total',
12862         successProperty : 'success',
12863         root : 'data',
12864         id : 'id'
12865     });
12866     
12867     Roo.data.JsonReader.superclass.constructor.call(this, meta, recordType||meta.fields);
12868 };
12869 Roo.extend(Roo.data.JsonReader, Roo.data.DataReader, {
12870     
12871     /**
12872      * @prop {Boolean} metaFromRemote  - if the meta data was loaded from the remote source.
12873      * Used by Store query builder to append _requestMeta to params.
12874      * 
12875      */
12876     metaFromRemote : false,
12877     /**
12878      * This method is only used by a DataProxy which has retrieved data from a remote server.
12879      * @param {Object} response The XHR object which contains the JSON data in its responseText.
12880      * @return {Object} data A data block which is used by an Roo.data.Store object as
12881      * a cache of Roo.data.Records.
12882      */
12883     read : function(response){
12884         var json = response.responseText;
12885        
12886         var o = /* eval:var:o */ eval("("+json+")");
12887         if(!o) {
12888             throw {message: "JsonReader.read: Json object not found"};
12889         }
12890         
12891         if(o.metaData){
12892             
12893             delete this.ef;
12894             this.metaFromRemote = true;
12895             this.meta = o.metaData;
12896             this.recordType = Roo.data.Record.create(o.metaData.fields);
12897             this.onMetaChange(this.meta, this.recordType, o);
12898         }
12899         return this.readRecords(o);
12900     },
12901
12902     // private function a store will implement
12903     onMetaChange : function(meta, recordType, o){
12904
12905     },
12906
12907     /**
12908          * @ignore
12909          */
12910     simpleAccess: function(obj, subsc) {
12911         return obj[subsc];
12912     },
12913
12914         /**
12915          * @ignore
12916          */
12917     getJsonAccessor: function(){
12918         var re = /[\[\.]/;
12919         return function(expr) {
12920             try {
12921                 return(re.test(expr))
12922                     ? new Function("obj", "return obj." + expr)
12923                     : function(obj){
12924                         return obj[expr];
12925                     };
12926             } catch(e){}
12927             return Roo.emptyFn;
12928         };
12929     }(),
12930
12931     /**
12932      * Create a data block containing Roo.data.Records from an XML document.
12933      * @param {Object} o An object which contains an Array of row objects in the property specified
12934      * in the config as 'root, and optionally a property, specified in the config as 'totalProperty'
12935      * which contains the total size of the dataset.
12936      * @return {Object} data A data block which is used by an Roo.data.Store object as
12937      * a cache of Roo.data.Records.
12938      */
12939     readRecords : function(o){
12940         /**
12941          * After any data loads, the raw JSON data is available for further custom processing.
12942          * @type Object
12943          */
12944         this.o = o;
12945         var s = this.meta, Record = this.recordType,
12946             f = Record ? Record.prototype.fields : null, fi = f ? f.items : [], fl = f ? f.length : 0;
12947
12948 //      Generate extraction functions for the totalProperty, the root, the id, and for each field
12949         if (!this.ef) {
12950             if(s.totalProperty) {
12951                     this.getTotal = this.getJsonAccessor(s.totalProperty);
12952                 }
12953                 if(s.successProperty) {
12954                     this.getSuccess = this.getJsonAccessor(s.successProperty);
12955                 }
12956                 this.getRoot = s.root ? this.getJsonAccessor(s.root) : function(p){return p;};
12957                 if (s.id) {
12958                         var g = this.getJsonAccessor(s.id);
12959                         this.getId = function(rec) {
12960                                 var r = g(rec);  
12961                                 return (r === undefined || r === "") ? null : r;
12962                         };
12963                 } else {
12964                         this.getId = function(){return null;};
12965                 }
12966             this.ef = [];
12967             for(var jj = 0; jj < fl; jj++){
12968                 f = fi[jj];
12969                 var map = (f.mapping !== undefined && f.mapping !== null) ? f.mapping : f.name;
12970                 this.ef[jj] = this.getJsonAccessor(map);
12971             }
12972         }
12973
12974         var root = this.getRoot(o), c = root.length, totalRecords = c, success = true;
12975         if(s.totalProperty){
12976             var vt = parseInt(this.getTotal(o), 10);
12977             if(!isNaN(vt)){
12978                 totalRecords = vt;
12979             }
12980         }
12981         if(s.successProperty){
12982             var vs = this.getSuccess(o);
12983             if(vs === false || vs === 'false'){
12984                 success = false;
12985             }
12986         }
12987         var records = [];
12988         for(var i = 0; i < c; i++){
12989                 var n = root[i];
12990             var values = {};
12991             var id = this.getId(n);
12992             for(var j = 0; j < fl; j++){
12993                 f = fi[j];
12994             var v = this.ef[j](n);
12995             if (!f.convert) {
12996                 Roo.log('missing convert for ' + f.name);
12997                 Roo.log(f);
12998                 continue;
12999             }
13000             values[f.name] = f.convert((v !== undefined) ? v : f.defaultValue);
13001             }
13002             var record = new Record(values, id);
13003             record.json = n;
13004             records[i] = record;
13005         }
13006         return {
13007             raw : o,
13008             success : success,
13009             records : records,
13010             totalRecords : totalRecords
13011         };
13012     }
13013 });/*
13014  * Based on:
13015  * Ext JS Library 1.1.1
13016  * Copyright(c) 2006-2007, Ext JS, LLC.
13017  *
13018  * Originally Released Under LGPL - original licence link has changed is not relivant.
13019  *
13020  * Fork - LGPL
13021  * <script type="text/javascript">
13022  */
13023
13024 /**
13025  * @class Roo.data.ArrayReader
13026  * @extends Roo.data.DataReader
13027  * Data reader class to create an Array of Roo.data.Record objects from an Array.
13028  * Each element of that Array represents a row of data fields. The
13029  * fields are pulled into a Record object using as a subscript, the <em>mapping</em> property
13030  * of the field definition if it exists, or the field's ordinal position in the definition.<br>
13031  * <p>
13032  * Example code:.
13033  * <pre><code>
13034 var RecordDef = Roo.data.Record.create([
13035     {name: 'name', mapping: 1},         // "mapping" only needed if an "id" field is present which
13036     {name: 'occupation', mapping: 2}    // precludes using the ordinal position as the index.
13037 ]);
13038 var myReader = new Roo.data.ArrayReader({
13039     id: 0                     // The subscript within row Array that provides an ID for the Record (optional)
13040 }, RecordDef);
13041 </code></pre>
13042  * <p>
13043  * This would consume an Array like this:
13044  * <pre><code>
13045 [ [1, 'Bill', 'Gardener'], [2, 'Ben', 'Horticulturalist'] ]
13046   </code></pre>
13047  
13048  * @constructor
13049  * Create a new JsonReader
13050  * @param {Object} meta Metadata configuration options.
13051  * @param {Object|Array} recordType Either an Array of field definition objects
13052  * 
13053  * @cfg {Array} fields Array of field definition objects
13054  * @cfg {String} id Name of the property within a row object that contains a record identifier value.
13055  * as specified to {@link Roo.data.Record#create},
13056  * or an {@link Roo.data.Record} object
13057  *
13058  * 
13059  * created using {@link Roo.data.Record#create}.
13060  */
13061 Roo.data.ArrayReader = function(meta, recordType){
13062     
13063      
13064     Roo.data.ArrayReader.superclass.constructor.call(this, meta, recordType||meta.fields);
13065 };
13066
13067 Roo.extend(Roo.data.ArrayReader, Roo.data.JsonReader, {
13068     /**
13069      * Create a data block containing Roo.data.Records from an XML document.
13070      * @param {Object} o An Array of row objects which represents the dataset.
13071      * @return {Object} A data block which is used by an {@link Roo.data.Store} object as
13072      * a cache of Roo.data.Records.
13073      */
13074     readRecords : function(o){
13075         var sid = this.meta ? this.meta.id : null;
13076         var recordType = this.recordType, fields = recordType.prototype.fields;
13077         var records = [];
13078         var root = o;
13079             for(var i = 0; i < root.length; i++){
13080                     var n = root[i];
13081                 var values = {};
13082                 var id = ((sid || sid === 0) && n[sid] !== undefined && n[sid] !== "" ? n[sid] : null);
13083                 for(var j = 0, jlen = fields.length; j < jlen; j++){
13084                 var f = fields.items[j];
13085                 var k = f.mapping !== undefined && f.mapping !== null ? f.mapping : j;
13086                 var v = n[k] !== undefined ? n[k] : f.defaultValue;
13087                 v = f.convert(v);
13088                 values[f.name] = v;
13089             }
13090                 var record = new recordType(values, id);
13091                 record.json = n;
13092                 records[records.length] = record;
13093             }
13094             return {
13095                 records : records,
13096                 totalRecords : records.length
13097             };
13098     }
13099 });/*
13100  * - LGPL
13101  * * 
13102  */
13103
13104 /**
13105  * @class Roo.bootstrap.ComboBox
13106  * @extends Roo.bootstrap.TriggerField
13107  * A combobox control with support for autocomplete, remote-loading, paging and many other features.
13108  * @cfg {Boolean} append (true|false) default false
13109  * @cfg {Boolean} autoFocus (true|false) auto focus the first item, default true
13110  * @cfg {Boolean} tickable ComboBox with tickable selections (true|false), default false
13111  * @cfg {Boolean} triggerList trigger show the list or not (true|false) default true
13112  * @cfg {Boolean} showToggleBtn show toggle button or not (true|false) default true
13113  * @cfg {String} btnPosition set the position of the trigger button (left | right) default right
13114  * @cfg {Boolean} animate default true
13115  * @cfg {Boolean} emptyResultText only for touch device
13116  * @cfg {String} triggerText multiple combobox trigger button text default 'Select'
13117  * @cfg {String} emptyTitle default ''
13118  * @constructor
13119  * Create a new ComboBox.
13120  * @param {Object} config Configuration options
13121  */
13122 Roo.bootstrap.ComboBox = function(config){
13123     Roo.bootstrap.ComboBox.superclass.constructor.call(this, config);
13124     this.addEvents({
13125         /**
13126          * @event expand
13127          * Fires when the dropdown list is expanded
13128         * @param {Roo.bootstrap.ComboBox} combo This combo box
13129         */
13130         'expand' : true,
13131         /**
13132          * @event collapse
13133          * Fires when the dropdown list is collapsed
13134         * @param {Roo.bootstrap.ComboBox} combo This combo box
13135         */
13136         'collapse' : true,
13137         /**
13138          * @event beforeselect
13139          * Fires before a list item is selected. Return false to cancel the selection.
13140         * @param {Roo.bootstrap.ComboBox} combo This combo box
13141         * @param {Roo.data.Record} record The data record returned from the underlying store
13142         * @param {Number} index The index of the selected item in the dropdown list
13143         */
13144         'beforeselect' : true,
13145         /**
13146          * @event select
13147          * Fires when a list item is selected
13148         * @param {Roo.bootstrap.ComboBox} combo This combo box
13149         * @param {Roo.data.Record} record The data record returned from the underlying store (or false on clear)
13150         * @param {Number} index The index of the selected item in the dropdown list
13151         */
13152         'select' : true,
13153         /**
13154          * @event beforequery
13155          * Fires before all queries are processed. Return false to cancel the query or set cancel to true.
13156          * The event object passed has these properties:
13157         * @param {Roo.bootstrap.ComboBox} combo This combo box
13158         * @param {String} query The query
13159         * @param {Boolean} forceAll true to force "all" query
13160         * @param {Boolean} cancel true to cancel the query
13161         * @param {Object} e The query event object
13162         */
13163         'beforequery': true,
13164          /**
13165          * @event add
13166          * Fires when the 'add' icon is pressed (add a listener to enable add button)
13167         * @param {Roo.bootstrap.ComboBox} combo This combo box
13168         */
13169         'add' : true,
13170         /**
13171          * @event edit
13172          * Fires when the 'edit' icon is pressed (add a listener to enable add button)
13173         * @param {Roo.bootstrap.ComboBox} combo This combo box
13174         * @param {Roo.data.Record|false} record The data record returned from the underlying store (or false on nothing selected)
13175         */
13176         'edit' : true,
13177         /**
13178          * @event remove
13179          * Fires when the remove value from the combobox array
13180         * @param {Roo.bootstrap.ComboBox} combo This combo box
13181         */
13182         'remove' : true,
13183         /**
13184          * @event afterremove
13185          * Fires when the remove value from the combobox array
13186         * @param {Roo.bootstrap.ComboBox} combo This combo box
13187         */
13188         'afterremove' : true,
13189         /**
13190          * @event specialfilter
13191          * Fires when specialfilter
13192             * @param {Roo.bootstrap.ComboBox} combo This combo box
13193             */
13194         'specialfilter' : true,
13195         /**
13196          * @event tick
13197          * Fires when tick the element
13198             * @param {Roo.bootstrap.ComboBox} combo This combo box
13199             */
13200         'tick' : true,
13201         /**
13202          * @event touchviewdisplay
13203          * Fires when touch view require special display (default is using displayField)
13204             * @param {Roo.bootstrap.ComboBox} combo This combo box
13205             * @param {Object} cfg set html .
13206             */
13207         'touchviewdisplay' : true
13208         
13209     });
13210     
13211     this.item = [];
13212     this.tickItems = [];
13213     
13214     this.selectedIndex = -1;
13215     if(this.mode == 'local'){
13216         if(config.queryDelay === undefined){
13217             this.queryDelay = 10;
13218         }
13219         if(config.minChars === undefined){
13220             this.minChars = 0;
13221         }
13222     }
13223 };
13224
13225 Roo.extend(Roo.bootstrap.ComboBox, Roo.bootstrap.TriggerField, {
13226      
13227     /**
13228      * @cfg {Boolean} lazyRender True to prevent the ComboBox from rendering until requested (should always be used when
13229      * rendering into an Roo.Editor, defaults to false)
13230      */
13231     /**
13232      * @cfg {Boolean/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to:
13233      * {tag: "input", type: "text", size: "24", autocomplete: "off"})
13234      */
13235     /**
13236      * @cfg {Roo.data.Store} store The data store to which this combo is bound (defaults to undefined)
13237      */
13238     /**
13239      * @cfg {String} title If supplied, a header element is created containing this text and added into the top of
13240      * the dropdown list (defaults to undefined, with no header element)
13241      */
13242
13243      /**
13244      * @cfg {String/Roo.Template} tpl The template to use to render the output
13245      */
13246      
13247      /**
13248      * @cfg {Number} listWidth The width in pixels of the dropdown list (defaults to the width of the ComboBox field)
13249      */
13250     listWidth: undefined,
13251     /**
13252      * @cfg {String} displayField The underlying data field name to bind to this CombBox (defaults to undefined if
13253      * mode = 'remote' or 'text' if mode = 'local')
13254      */
13255     displayField: undefined,
13256     
13257     /**
13258      * @cfg {String} valueField The underlying data value name to bind to this CombBox (defaults to undefined if
13259      * mode = 'remote' or 'value' if mode = 'local'). 
13260      * Note: use of a valueField requires the user make a selection
13261      * in order for a value to be mapped.
13262      */
13263     valueField: undefined,
13264     /**
13265      * @cfg {String} modalTitle The title of the dialog that pops up on mobile views.
13266      */
13267     modalTitle : '',
13268     
13269     /**
13270      * @cfg {String} hiddenName If specified, a hidden form field with this name is dynamically generated to store the
13271      * field's data value (defaults to the underlying DOM element's name)
13272      */
13273     hiddenName: undefined,
13274     /**
13275      * @cfg {String} listClass CSS class to apply to the dropdown list element (defaults to '')
13276      */
13277     listClass: '',
13278     /**
13279      * @cfg {String} selectedClass CSS class to apply to the selected item in the dropdown list (defaults to 'x-combo-selected')
13280      */
13281     selectedClass: 'active',
13282     
13283     /**
13284      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
13285      */
13286     shadow:'sides',
13287     /**
13288      * @cfg {String} listAlign A valid anchor position value. See {@link Roo.Element#alignTo} for details on supported
13289      * anchor positions (defaults to 'tl-bl')
13290      */
13291     listAlign: 'tl-bl?',
13292     /**
13293      * @cfg {Number} maxHeight The maximum height in pixels of the dropdown list before scrollbars are shown (defaults to 300)
13294      */
13295     maxHeight: 300,
13296     /**
13297      * @cfg {String} triggerAction The action to execute when the trigger field is activated.  Use 'all' to run the
13298      * query specified by the allQuery config option (defaults to 'query')
13299      */
13300     triggerAction: 'query',
13301     /**
13302      * @cfg {Number} minChars The minimum number of characters the user must type before autocomplete and typeahead activate
13303      * (defaults to 4, does not apply if editable = false)
13304      */
13305     minChars : 4,
13306     /**
13307      * @cfg {Boolean} typeAhead True to populate and autoselect the remainder of the text being typed after a configurable
13308      * delay (typeAheadDelay) if it matches a known value (defaults to false)
13309      */
13310     typeAhead: false,
13311     /**
13312      * @cfg {Number} queryDelay The length of time in milliseconds to delay between the start of typing and sending the
13313      * query to filter the dropdown list (defaults to 500 if mode = 'remote' or 10 if mode = 'local')
13314      */
13315     queryDelay: 500,
13316     /**
13317      * @cfg {Number} pageSize If greater than 0, a paging toolbar is displayed in the footer of the dropdown list and the
13318      * filter queries will execute with page start and limit parameters.  Only applies when mode = 'remote' (defaults to 0)
13319      */
13320     pageSize: 0,
13321     /**
13322      * @cfg {Boolean} selectOnFocus True to select any existing text in the field immediately on focus.  Only applies
13323      * when editable = true (defaults to false)
13324      */
13325     selectOnFocus:false,
13326     /**
13327      * @cfg {String} queryParam Name of the query as it will be passed on the querystring (defaults to 'query')
13328      */
13329     queryParam: 'query',
13330     /**
13331      * @cfg {String} loadingText The text to display in the dropdown list while data is loading.  Only applies
13332      * when mode = 'remote' (defaults to 'Loading...')
13333      */
13334     loadingText: 'Loading...',
13335     /**
13336      * @cfg {Boolean} resizable True to add a resize handle to the bottom of the dropdown list (defaults to false)
13337      */
13338     resizable: false,
13339     /**
13340      * @cfg {Number} handleHeight The height in pixels of the dropdown list resize handle if resizable = true (defaults to 8)
13341      */
13342     handleHeight : 8,
13343     /**
13344      * @cfg {Boolean} editable False to prevent the user from typing text directly into the field, just like a
13345      * traditional select (defaults to true)
13346      */
13347     editable: true,
13348     /**
13349      * @cfg {String} allQuery The text query to send to the server to return all records for the list with no filtering (defaults to '')
13350      */
13351     allQuery: '',
13352     /**
13353      * @cfg {String} mode Set to 'local' if the ComboBox loads local data (defaults to 'remote' which loads from the server)
13354      */
13355     mode: 'remote',
13356     /**
13357      * @cfg {Number} minListWidth The minimum width of the dropdown list in pixels (defaults to 70, will be ignored if
13358      * listWidth has a higher value)
13359      */
13360     minListWidth : 70,
13361     /**
13362      * @cfg {Boolean} forceSelection True to restrict the selected value to one of the values in the list, false to
13363      * allow the user to set arbitrary text into the field (defaults to false)
13364      */
13365     forceSelection:false,
13366     /**
13367      * @cfg {Number} typeAheadDelay The length of time in milliseconds to wait until the typeahead text is displayed
13368      * if typeAhead = true (defaults to 250)
13369      */
13370     typeAheadDelay : 250,
13371     /**
13372      * @cfg {String} valueNotFoundText When using a name/value combo, if the value passed to setValue is not found in
13373      * the store, valueNotFoundText will be displayed as the field text if defined (defaults to undefined)
13374      */
13375     valueNotFoundText : undefined,
13376     /**
13377      * @cfg {Boolean} blockFocus Prevents all focus calls, so it can work with things like HTML edtor bar
13378      */
13379     blockFocus : false,
13380     
13381     /**
13382      * @cfg {Boolean} disableClear Disable showing of clear button.
13383      */
13384     disableClear : false,
13385     /**
13386      * @cfg {Boolean} alwaysQuery  Disable caching of results, and always send query
13387      */
13388     alwaysQuery : false,
13389     
13390     /**
13391      * @cfg {Boolean} multiple  (true|false) ComboBobArray, default false
13392      */
13393     multiple : false,
13394     
13395     /**
13396      * @cfg {String} invalidClass DEPRICATED - uses BS4 is-valid now
13397      */
13398     invalidClass : "has-warning",
13399     
13400     /**
13401      * @cfg {String} validClass DEPRICATED - uses BS4 is-valid now
13402      */
13403     validClass : "has-success",
13404     
13405     /**
13406      * @cfg {Boolean} specialFilter (true|false) special filter default false
13407      */
13408     specialFilter : false,
13409     
13410     /**
13411      * @cfg {Boolean} mobileTouchView (true|false) show mobile touch view when using a mobile default true
13412      */
13413     mobileTouchView : true,
13414     
13415     /**
13416      * @cfg {Boolean} useNativeIOS (true|false) render it as classic select for ios, not support dynamic load data (default false)
13417      */
13418     useNativeIOS : false,
13419     
13420     /**
13421      * @cfg {Boolean} mobile_restrict_height (true|false) restrict height for touch view
13422      */
13423     mobile_restrict_height : false,
13424     
13425     ios_options : false,
13426     
13427     //private
13428     addicon : false,
13429     editicon: false,
13430     
13431     page: 0,
13432     hasQuery: false,
13433     append: false,
13434     loadNext: false,
13435     autoFocus : true,
13436     tickable : false,
13437     btnPosition : 'right',
13438     triggerList : true,
13439     showToggleBtn : true,
13440     animate : true,
13441     emptyResultText: 'Empty',
13442     triggerText : 'Select',
13443     emptyTitle : '',
13444     
13445     // element that contains real text value.. (when hidden is used..)
13446     
13447     getAutoCreate : function()
13448     {   
13449         var cfg = false;
13450         //render
13451         /*
13452          * Render classic select for iso
13453          */
13454         
13455         if(Roo.isIOS && this.useNativeIOS){
13456             cfg = this.getAutoCreateNativeIOS();
13457             return cfg;
13458         }
13459         
13460         /*
13461          * Touch Devices
13462          */
13463         
13464         if(Roo.isTouch && this.mobileTouchView){
13465             cfg = this.getAutoCreateTouchView();
13466             return cfg;;
13467         }
13468         
13469         /*
13470          *  Normal ComboBox
13471          */
13472         if(!this.tickable){
13473             cfg = Roo.bootstrap.ComboBox.superclass.getAutoCreate.call(this);
13474             return cfg;
13475         }
13476         
13477         /*
13478          *  ComboBox with tickable selections
13479          */
13480              
13481         var align = this.labelAlign || this.parentLabelAlign();
13482         
13483         cfg = {
13484             cls : 'form-group roo-combobox-tickable' //input-group
13485         };
13486         
13487         var btn_text_select = '';
13488         var btn_text_done = '';
13489         var btn_text_cancel = '';
13490         
13491         if (this.btn_text_show) {
13492             btn_text_select = 'Select';
13493             btn_text_done = 'Done';
13494             btn_text_cancel = 'Cancel'; 
13495         }
13496         
13497         var buttons = {
13498             tag : 'div',
13499             cls : 'tickable-buttons',
13500             cn : [
13501                 {
13502                     tag : 'button',
13503                     type : 'button',
13504                     cls : 'btn btn-link btn-edit pull-' + this.btnPosition,
13505                     //html : this.triggerText
13506                     html: btn_text_select
13507                 },
13508                 {
13509                     tag : 'button',
13510                     type : 'button',
13511                     name : 'ok',
13512                     cls : 'btn btn-link btn-ok pull-' + this.btnPosition,
13513                     //html : 'Done'
13514                     html: btn_text_done
13515                 },
13516                 {
13517                     tag : 'button',
13518                     type : 'button',
13519                     name : 'cancel',
13520                     cls : 'btn btn-link btn-cancel pull-' + this.btnPosition,
13521                     //html : 'Cancel'
13522                     html: btn_text_cancel
13523                 }
13524             ]
13525         };
13526         
13527         if(this.editable){
13528             buttons.cn.unshift({
13529                 tag: 'input',
13530                 cls: 'roo-select2-search-field-input'
13531             });
13532         }
13533         
13534         var _this = this;
13535         
13536         Roo.each(buttons.cn, function(c){
13537             if (_this.size) {
13538                 c.cls += ' btn-' + _this.size;
13539             }
13540
13541             if (_this.disabled) {
13542                 c.disabled = true;
13543             }
13544         });
13545         
13546         var box = {
13547             tag: 'div',
13548             style : 'display: contents',
13549             cn: [
13550                 {
13551                     tag: 'input',
13552                     type : 'hidden',
13553                     cls: 'form-hidden-field'
13554                 },
13555                 {
13556                     tag: 'ul',
13557                     cls: 'roo-select2-choices',
13558                     cn:[
13559                         {
13560                             tag: 'li',
13561                             cls: 'roo-select2-search-field',
13562                             cn: [
13563                                 buttons
13564                             ]
13565                         }
13566                     ]
13567                 }
13568             ]
13569         };
13570         
13571         var combobox = {
13572             cls: 'roo-select2-container input-group roo-select2-container-multi',
13573             cn: [
13574                 
13575                 box
13576 //                {
13577 //                    tag: 'ul',
13578 //                    cls: 'typeahead typeahead-long dropdown-menu',
13579 //                    style: 'display:none; max-height:' + this.maxHeight + 'px;'
13580 //                }
13581             ]
13582         };
13583         
13584         if(this.hasFeedback && !this.allowBlank){
13585             
13586             var feedback = {
13587                 tag: 'span',
13588                 cls: 'glyphicon form-control-feedback'
13589             };
13590
13591             combobox.cn.push(feedback);
13592         }
13593         
13594         var indicator = {
13595             tag : 'i',
13596             cls : 'roo-required-indicator ' + (this.indicatorpos == 'right'  ? 'right' : 'left') +'-indicator text-danger fa fa-lg fa-star',
13597             tooltip : 'This field is required'
13598         };
13599         if (Roo.bootstrap.version == 4) {
13600             indicator = {
13601                 tag : 'i',
13602                 style : 'display:none'
13603             };
13604         }
13605         if (align ==='left' && this.fieldLabel.length) {
13606             
13607             cfg.cls += ' roo-form-group-label-left'  + (Roo.bootstrap.version == 4 ? ' row' : '');
13608             
13609             cfg.cn = [
13610                 indicator,
13611                 {
13612                     tag: 'label',
13613                     'for' :  id,
13614                     cls : 'control-label col-form-label',
13615                     html : this.fieldLabel
13616
13617                 },
13618                 {
13619                     cls : "", 
13620                     cn: [
13621                         combobox
13622                     ]
13623                 }
13624
13625             ];
13626             
13627             var labelCfg = cfg.cn[1];
13628             var contentCfg = cfg.cn[2];
13629             
13630
13631             if(this.indicatorpos == 'right'){
13632                 
13633                 cfg.cn = [
13634                     {
13635                         tag: 'label',
13636                         'for' :  id,
13637                         cls : 'control-label col-form-label',
13638                         cn : [
13639                             {
13640                                 tag : 'span',
13641                                 html : this.fieldLabel
13642                             },
13643                             indicator
13644                         ]
13645                     },
13646                     {
13647                         cls : "",
13648                         cn: [
13649                             combobox
13650                         ]
13651                     }
13652
13653                 ];
13654                 
13655                 
13656                 
13657                 labelCfg = cfg.cn[0];
13658                 contentCfg = cfg.cn[1];
13659             
13660             }
13661             
13662             if(this.labelWidth > 12){
13663                 labelCfg.style = "width: " + this.labelWidth + 'px';
13664             }
13665             
13666             if(this.labelWidth < 13 && this.labelmd == 0){
13667                 this.labelmd = this.labelWidth;
13668             }
13669             
13670             if(this.labellg > 0){
13671                 labelCfg.cls += ' col-lg-' + this.labellg;
13672                 contentCfg.cls += ' col-lg-' + (12 - this.labellg);
13673             }
13674             
13675             if(this.labelmd > 0){
13676                 labelCfg.cls += ' col-md-' + this.labelmd;
13677                 contentCfg.cls += ' col-md-' + (12 - this.labelmd);
13678             }
13679             
13680             if(this.labelsm > 0){
13681                 labelCfg.cls += ' col-sm-' + this.labelsm;
13682                 contentCfg.cls += ' col-sm-' + (12 - this.labelsm);
13683             }
13684             
13685             if(this.labelxs > 0){
13686                 labelCfg.cls += ' col-xs-' + this.labelxs;
13687                 contentCfg.cls += ' col-xs-' + (12 - this.labelxs);
13688             }
13689                 
13690                 
13691         } else if ( this.fieldLabel.length) {
13692 //                Roo.log(" label");
13693                  cfg.cn = [
13694                    indicator,
13695                     {
13696                         tag: 'label',
13697                         //cls : 'input-group-addon',
13698                         html : this.fieldLabel
13699                     },
13700                     combobox
13701                 ];
13702                 
13703                 if(this.indicatorpos == 'right'){
13704                     cfg.cn = [
13705                         {
13706                             tag: 'label',
13707                             //cls : 'input-group-addon',
13708                             html : this.fieldLabel
13709                         },
13710                         indicator,
13711                         combobox
13712                     ];
13713                     
13714                 }
13715
13716         } else {
13717             
13718 //                Roo.log(" no label && no align");
13719                 cfg = combobox
13720                      
13721                 
13722         }
13723          
13724         var settings=this;
13725         ['xs','sm','md','lg'].map(function(size){
13726             if (settings[size]) {
13727                 cfg.cls += ' col-' + size + '-' + settings[size];
13728             }
13729         });
13730         
13731         return cfg;
13732         
13733     },
13734     
13735     _initEventsCalled : false,
13736     
13737     // private
13738     initEvents: function()
13739     {   
13740         if (this._initEventsCalled) { // as we call render... prevent looping...
13741             return;
13742         }
13743         this._initEventsCalled = true;
13744         
13745         if (!this.store) {
13746             throw "can not find store for combo";
13747         }
13748         
13749         this.indicator = this.indicatorEl();
13750         
13751         this.store = Roo.factory(this.store, Roo.data);
13752         this.store.parent = this;
13753         
13754         // if we are building from html. then this element is so complex, that we can not really
13755         // use the rendered HTML.
13756         // so we have to trash and replace the previous code.
13757         if (Roo.XComponent.build_from_html) {
13758             // remove this element....
13759             var e = this.el.dom, k=0;
13760             while (e ) { e = e.previousSibling;  ++k;}
13761
13762             this.el.remove();
13763             
13764             this.el=false;
13765             this.rendered = false;
13766             
13767             this.render(this.parent().getChildContainer(true), k);
13768         }
13769         
13770         if(Roo.isIOS && this.useNativeIOS){
13771             this.initIOSView();
13772             return;
13773         }
13774         
13775         /*
13776          * Touch Devices
13777          */
13778         
13779         if(Roo.isTouch && this.mobileTouchView){
13780             this.initTouchView();
13781             return;
13782         }
13783         
13784         if(this.tickable){
13785             this.initTickableEvents();
13786             return;
13787         }
13788         
13789         Roo.bootstrap.ComboBox.superclass.initEvents.call(this);
13790         
13791         if(this.hiddenName){
13792             
13793             this.hiddenField = this.el.select('input.form-hidden-field',true).first();
13794             
13795             this.hiddenField.dom.value =
13796                 this.hiddenValue !== undefined ? this.hiddenValue :
13797                 this.value !== undefined ? this.value : '';
13798
13799             // prevent input submission
13800             this.el.dom.removeAttribute('name');
13801             this.hiddenField.dom.setAttribute('name', this.hiddenName);
13802              
13803              
13804         }
13805         //if(Roo.isGecko){
13806         //    this.el.dom.setAttribute('autocomplete', 'off');
13807         //}
13808         
13809         var cls = 'x-combo-list';
13810         
13811         //this.list = new Roo.Layer({
13812         //    shadow: this.shadow, cls: [cls, this.listClass].join(' '), constrain:false
13813         //});
13814         
13815         var _this = this;
13816         
13817         (function(){
13818             var lw = _this.listWidth || Math.max(_this.inputEl().getWidth(), _this.minListWidth);
13819             _this.list.setWidth(lw);
13820         }).defer(100);
13821         
13822         this.list.on('mouseover', this.onViewOver, this);
13823         this.list.on('mousemove', this.onViewMove, this);
13824         this.list.on('scroll', this.onViewScroll, this);
13825         
13826         /*
13827         this.list.swallowEvent('mousewheel');
13828         this.assetHeight = 0;
13829
13830         if(this.title){
13831             this.header = this.list.createChild({cls:cls+'-hd', html: this.title});
13832             this.assetHeight += this.header.getHeight();
13833         }
13834
13835         this.innerList = this.list.createChild({cls:cls+'-inner'});
13836         this.innerList.on('mouseover', this.onViewOver, this);
13837         this.innerList.on('mousemove', this.onViewMove, this);
13838         this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
13839         
13840         if(this.allowBlank && !this.pageSize && !this.disableClear){
13841             this.footer = this.list.createChild({cls:cls+'-ft'});
13842             this.pageTb = new Roo.Toolbar(this.footer);
13843            
13844         }
13845         if(this.pageSize){
13846             this.footer = this.list.createChild({cls:cls+'-ft'});
13847             this.pageTb = new Roo.PagingToolbar(this.footer, this.store,
13848                     {pageSize: this.pageSize});
13849             
13850         }
13851         
13852         if (this.pageTb && this.allowBlank && !this.disableClear) {
13853             var _this = this;
13854             this.pageTb.add(new Roo.Toolbar.Fill(), {
13855                 cls: 'x-btn-icon x-btn-clear',
13856                 text: '&#160;',
13857                 handler: function()
13858                 {
13859                     _this.collapse();
13860                     _this.clearValue();
13861                     _this.onSelect(false, -1);
13862                 }
13863             });
13864         }
13865         if (this.footer) {
13866             this.assetHeight += this.footer.getHeight();
13867         }
13868         */
13869             
13870         if(!this.tpl){
13871             this.tpl = Roo.bootstrap.version == 4 ?
13872                 '<a class="dropdown-item" href="#">{' + this.displayField + '}</a>' :  // 4 does not need <li> and it get's really confisued.
13873                 '<li><a class="dropdown-item" href="#">{' + this.displayField + '}</a></li>';
13874         }
13875
13876         this.view = new Roo.View(this.list, this.tpl, {
13877             singleSelect:true, store: this.store, selectedClass: this.selectedClass
13878         });
13879         //this.view.wrapEl.setDisplayed(false);
13880         this.view.on('click', this.onViewClick, this);
13881         
13882         
13883         this.store.on('beforeload', this.onBeforeLoad, this);
13884         this.store.on('load', this.onLoad, this);
13885         this.store.on('loadexception', this.onLoadException, this);
13886         /*
13887         if(this.resizable){
13888             this.resizer = new Roo.Resizable(this.list,  {
13889                pinned:true, handles:'se'
13890             });
13891             this.resizer.on('resize', function(r, w, h){
13892                 this.maxHeight = h-this.handleHeight-this.list.getFrameWidth('tb')-this.assetHeight;
13893                 this.listWidth = w;
13894                 this.innerList.setWidth(w - this.list.getFrameWidth('lr'));
13895                 this.restrictHeight();
13896             }, this);
13897             this[this.pageSize?'footer':'innerList'].setStyle('margin-bottom', this.handleHeight+'px');
13898         }
13899         */
13900         if(!this.editable){
13901             this.editable = true;
13902             this.setEditable(false);
13903         }
13904         
13905         /*
13906         
13907         if (typeof(this.events.add.listeners) != 'undefined') {
13908             
13909             this.addicon = this.wrap.createChild(
13910                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-add' });  
13911        
13912             this.addicon.on('click', function(e) {
13913                 this.fireEvent('add', this);
13914             }, this);
13915         }
13916         if (typeof(this.events.edit.listeners) != 'undefined') {
13917             
13918             this.editicon = this.wrap.createChild(
13919                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-edit' });  
13920             if (this.addicon) {
13921                 this.editicon.setStyle('margin-left', '40px');
13922             }
13923             this.editicon.on('click', function(e) {
13924                 
13925                 // we fire even  if inothing is selected..
13926                 this.fireEvent('edit', this, this.lastData );
13927                 
13928             }, this);
13929         }
13930         */
13931         
13932         this.keyNav = new Roo.KeyNav(this.inputEl(), {
13933             "up" : function(e){
13934                 this.inKeyMode = true;
13935                 this.selectPrev();
13936             },
13937
13938             "down" : function(e){
13939                 if(!this.isExpanded()){
13940                     this.onTriggerClick();
13941                 }else{
13942                     this.inKeyMode = true;
13943                     this.selectNext();
13944                 }
13945             },
13946
13947             "enter" : function(e){
13948 //                this.onViewClick();
13949                 //return true;
13950                 this.collapse();
13951                 
13952                 if(this.fireEvent("specialkey", this, e)){
13953                     this.onViewClick(false);
13954                 }
13955                 
13956                 return true;
13957             },
13958
13959             "esc" : function(e){
13960                 this.collapse();
13961             },
13962
13963             "tab" : function(e){
13964                 this.collapse();
13965                 
13966                 if(this.fireEvent("specialkey", this, e)){
13967                     this.onViewClick(false);
13968                 }
13969                 
13970                 return true;
13971             },
13972
13973             scope : this,
13974
13975             doRelay : function(foo, bar, hname){
13976                 if(hname == 'down' || this.scope.isExpanded()){
13977                    return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
13978                 }
13979                 return true;
13980             },
13981
13982             forceKeyDown: true
13983         });
13984         
13985         
13986         this.queryDelay = Math.max(this.queryDelay || 10,
13987                 this.mode == 'local' ? 10 : 250);
13988         
13989         
13990         this.dqTask = new Roo.util.DelayedTask(this.initQuery, this);
13991         
13992         if(this.typeAhead){
13993             this.taTask = new Roo.util.DelayedTask(this.onTypeAhead, this);
13994         }
13995         if(this.editable !== false){
13996             this.inputEl().on("keyup", this.onKeyUp, this);
13997         }
13998         if(this.forceSelection){
13999             this.inputEl().on('blur', this.doForce, this);
14000         }
14001         
14002         if(this.multiple){
14003             this.choices = this.el.select('ul.roo-select2-choices', true).first();
14004             this.searchField = this.el.select('ul li.roo-select2-search-field', true).first();
14005         }
14006     },
14007     
14008     initTickableEvents: function()
14009     {   
14010         this.createList();
14011         
14012         if(this.hiddenName){
14013             
14014             this.hiddenField = this.el.select('input.form-hidden-field',true).first();
14015             
14016             this.hiddenField.dom.value =
14017                 this.hiddenValue !== undefined ? this.hiddenValue :
14018                 this.value !== undefined ? this.value : '';
14019
14020             // prevent input submission
14021             this.el.dom.removeAttribute('name');
14022             this.hiddenField.dom.setAttribute('name', this.hiddenName);
14023              
14024              
14025         }
14026         
14027 //        this.list = this.el.select('ul.dropdown-menu',true).first();
14028         
14029         this.choices = this.el.select('ul.roo-select2-choices', true).first();
14030         this.searchField = this.el.select('ul li.roo-select2-search-field', true).first();
14031         if(this.triggerList){
14032             this.searchField.on("click", this.onSearchFieldClick, this, {preventDefault:true});
14033         }
14034          
14035         this.trigger = this.el.select('.tickable-buttons > .btn-edit', true).first();
14036         this.trigger.on("click", this.onTickableTriggerClick, this, {preventDefault:true});
14037         
14038         this.okBtn = this.el.select('.tickable-buttons > .btn-ok', true).first();
14039         this.cancelBtn = this.el.select('.tickable-buttons > .btn-cancel', true).first();
14040         
14041         this.okBtn.on('click', this.onTickableFooterButtonClick, this, this.okBtn);
14042         this.cancelBtn.on('click', this.onTickableFooterButtonClick, this, this.cancelBtn);
14043         
14044         this.trigger.setVisibilityMode(Roo.Element.DISPLAY);
14045         this.okBtn.setVisibilityMode(Roo.Element.DISPLAY);
14046         this.cancelBtn.setVisibilityMode(Roo.Element.DISPLAY);
14047         
14048         this.okBtn.hide();
14049         this.cancelBtn.hide();
14050         
14051         var _this = this;
14052         
14053         (function(){
14054             var lw = _this.listWidth || Math.max(_this.inputEl().getWidth(), _this.minListWidth);
14055             _this.list.setWidth(lw);
14056         }).defer(100);
14057         
14058         this.list.on('mouseover', this.onViewOver, this);
14059         this.list.on('mousemove', this.onViewMove, this);
14060         
14061         this.list.on('scroll', this.onViewScroll, this);
14062         
14063         if(!this.tpl){
14064             this.tpl = '<li class="roo-select2-result"><div class="checkbox"><input id="{roo-id}"' + 
14065                 'type="checkbox" {roo-data-checked}><label for="{roo-id}"><b>{' + this.displayField + '}</b></label></div></li>';
14066         }
14067
14068         this.view = new Roo.View(this.list, this.tpl, {
14069             singleSelect:true,
14070             tickable:true,
14071             parent:this,
14072             store: this.store,
14073             selectedClass: this.selectedClass
14074         });
14075         
14076         //this.view.wrapEl.setDisplayed(false);
14077         this.view.on('click', this.onViewClick, this);
14078         
14079         
14080         
14081         this.store.on('beforeload', this.onBeforeLoad, this);
14082         this.store.on('load', this.onLoad, this);
14083         this.store.on('loadexception', this.onLoadException, this);
14084         
14085         if(this.editable){
14086             this.keyNav = new Roo.KeyNav(this.tickableInputEl(), {
14087                 "up" : function(e){
14088                     this.inKeyMode = true;
14089                     this.selectPrev();
14090                 },
14091
14092                 "down" : function(e){
14093                     this.inKeyMode = true;
14094                     this.selectNext();
14095                 },
14096
14097                 "enter" : function(e){
14098                     if(this.fireEvent("specialkey", this, e)){
14099                         this.onViewClick(false);
14100                     }
14101                     
14102                     return true;
14103                 },
14104
14105                 "esc" : function(e){
14106                     this.onTickableFooterButtonClick(e, false, false);
14107                 },
14108
14109                 "tab" : function(e){
14110                     this.fireEvent("specialkey", this, e);
14111                     
14112                     this.onTickableFooterButtonClick(e, false, false);
14113                     
14114                     return true;
14115                 },
14116
14117                 scope : this,
14118
14119                 doRelay : function(e, fn, key){
14120                     if(this.scope.isExpanded()){
14121                        return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
14122                     }
14123                     return true;
14124                 },
14125
14126                 forceKeyDown: true
14127             });
14128         }
14129         
14130         this.queryDelay = Math.max(this.queryDelay || 10,
14131                 this.mode == 'local' ? 10 : 250);
14132         
14133         
14134         this.dqTask = new Roo.util.DelayedTask(this.initQuery, this);
14135         
14136         if(this.typeAhead){
14137             this.taTask = new Roo.util.DelayedTask(this.onTypeAhead, this);
14138         }
14139         
14140         if(this.editable !== false){
14141             this.tickableInputEl().on("keyup", this.onKeyUp, this);
14142         }
14143         
14144         this.indicator = this.indicatorEl();
14145         
14146         if(this.indicator){
14147             this.indicator.setVisibilityMode(Roo.Element.DISPLAY);
14148             this.indicator.hide();
14149         }
14150         
14151     },
14152
14153     onDestroy : function(){
14154         if(this.view){
14155             this.view.setStore(null);
14156             this.view.el.removeAllListeners();
14157             this.view.el.remove();
14158             this.view.purgeListeners();
14159         }
14160         if(this.list){
14161             this.list.dom.innerHTML  = '';
14162         }
14163         
14164         if(this.store){
14165             this.store.un('beforeload', this.onBeforeLoad, this);
14166             this.store.un('load', this.onLoad, this);
14167             this.store.un('loadexception', this.onLoadException, this);
14168         }
14169         Roo.bootstrap.ComboBox.superclass.onDestroy.call(this);
14170     },
14171
14172     // private
14173     fireKey : function(e){
14174         if(e.isNavKeyPress() && !this.list.isVisible()){
14175             this.fireEvent("specialkey", this, e);
14176         }
14177     },
14178
14179     // private
14180     onResize: function(w, h){
14181 //        Roo.bootstrap.ComboBox.superclass.onResize.apply(this, arguments);
14182 //        
14183 //        if(typeof w != 'number'){
14184 //            // we do not handle it!?!?
14185 //            return;
14186 //        }
14187 //        var tw = this.trigger.getWidth();
14188 //       // tw += this.addicon ? this.addicon.getWidth() : 0;
14189 //       // tw += this.editicon ? this.editicon.getWidth() : 0;
14190 //        var x = w - tw;
14191 //        this.inputEl().setWidth( this.adjustWidth('input', x));
14192 //            
14193 //        //this.trigger.setStyle('left', x+'px');
14194 //        
14195 //        if(this.list && this.listWidth === undefined){
14196 //            var lw = Math.max(x + this.trigger.getWidth(), this.minListWidth);
14197 //            this.list.setWidth(lw);
14198 //            this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
14199 //        }
14200         
14201     
14202         
14203     },
14204
14205     /**
14206      * Allow or prevent the user from directly editing the field text.  If false is passed,
14207      * the user will only be able to select from the items defined in the dropdown list.  This method
14208      * is the runtime equivalent of setting the 'editable' config option at config time.
14209      * @param {Boolean} value True to allow the user to directly edit the field text
14210      */
14211     setEditable : function(value){
14212         if(value == this.editable){
14213             return;
14214         }
14215         this.editable = value;
14216         if(!value){
14217             this.inputEl().dom.setAttribute('readOnly', true);
14218             this.inputEl().on('mousedown', this.onTriggerClick,  this);
14219             this.inputEl().addClass('x-combo-noedit');
14220         }else{
14221             this.inputEl().dom.setAttribute('readOnly', false);
14222             this.inputEl().un('mousedown', this.onTriggerClick,  this);
14223             this.inputEl().removeClass('x-combo-noedit');
14224         }
14225     },
14226
14227     // private
14228     
14229     onBeforeLoad : function(combo,opts){
14230         if(!this.hasFocus){
14231             return;
14232         }
14233          if (!opts.add) {
14234             this.list.dom.innerHTML = '<li class="loading-indicator">'+(this.loadingText||'loading')+'</li>' ;
14235          }
14236         this.restrictHeight();
14237         this.selectedIndex = -1;
14238     },
14239
14240     // private
14241     onLoad : function(){
14242         
14243         this.hasQuery = false;
14244         
14245         if(!this.hasFocus){
14246             return;
14247         }
14248         
14249         if(typeof(this.loading) !== 'undefined' && this.loading !== null){
14250             this.loading.hide();
14251         }
14252         
14253         if(this.store.getCount() > 0){
14254             
14255             this.expand();
14256             this.restrictHeight();
14257             if(this.lastQuery == this.allQuery){
14258                 if(this.editable && !this.tickable){
14259                     this.inputEl().dom.select();
14260                 }
14261                 
14262                 if(
14263                     !this.selectByValue(this.value, true) &&
14264                     this.autoFocus && 
14265                     (
14266                         !this.store.lastOptions ||
14267                         typeof(this.store.lastOptions.add) == 'undefined' || 
14268                         this.store.lastOptions.add != true
14269                     )
14270                 ){
14271                     this.select(0, true);
14272                 }
14273             }else{
14274                 if(this.autoFocus){
14275                     this.selectNext();
14276                 }
14277                 if(this.typeAhead && this.lastKey != Roo.EventObject.BACKSPACE && this.lastKey != Roo.EventObject.DELETE){
14278                     this.taTask.delay(this.typeAheadDelay);
14279                 }
14280             }
14281         }else{
14282             this.onEmptyResults();
14283         }
14284         
14285         //this.el.focus();
14286     },
14287     // private
14288     onLoadException : function()
14289     {
14290         this.hasQuery = false;
14291         
14292         if(typeof(this.loading) !== 'undefined' && this.loading !== null){
14293             this.loading.hide();
14294         }
14295         
14296         if(this.tickable && this.editable){
14297             return;
14298         }
14299         
14300         this.collapse();
14301         // only causes errors at present
14302         //Roo.log(this.store.reader.jsonData);
14303         //if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
14304             // fixme
14305             //Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
14306         //}
14307         
14308         
14309     },
14310     // private
14311     onTypeAhead : function(){
14312         if(this.store.getCount() > 0){
14313             var r = this.store.getAt(0);
14314             var newValue = r.data[this.displayField];
14315             var len = newValue.length;
14316             var selStart = this.getRawValue().length;
14317             
14318             if(selStart != len){
14319                 this.setRawValue(newValue);
14320                 this.selectText(selStart, newValue.length);
14321             }
14322         }
14323     },
14324
14325     // private
14326     onSelect : function(record, index){
14327         
14328         if(this.fireEvent('beforeselect', this, record, index) !== false){
14329         
14330             this.setFromData(index > -1 ? record.data : false);
14331             
14332             this.collapse();
14333             this.fireEvent('select', this, record, index);
14334         }
14335     },
14336
14337     /**
14338      * Returns the currently selected field value or empty string if no value is set.
14339      * @return {String} value The selected value
14340      */
14341     getValue : function()
14342     {
14343         if(Roo.isIOS && this.useNativeIOS){
14344             return this.ios_options[this.inputEl().dom.selectedIndex].data[this.valueField];
14345         }
14346         
14347         if(this.multiple){
14348             return (this.hiddenField) ? this.hiddenField.dom.value : this.value;
14349         }
14350         
14351         if(this.valueField){
14352             return typeof this.value != 'undefined' ? this.value : '';
14353         }else{
14354             return Roo.bootstrap.ComboBox.superclass.getValue.call(this);
14355         }
14356     },
14357     
14358     getRawValue : function()
14359     {
14360         if(Roo.isIOS && this.useNativeIOS){
14361             return this.ios_options[this.inputEl().dom.selectedIndex].data[this.displayField];
14362         }
14363         
14364         var v = this.inputEl().getValue();
14365         
14366         return v;
14367     },
14368
14369     /**
14370      * Clears any text/value currently set in the field
14371      */
14372     clearValue : function(){
14373         
14374         if(this.hiddenField){
14375             this.hiddenField.dom.value = '';
14376         }
14377         this.value = '';
14378         this.setRawValue('');
14379         this.lastSelectionText = '';
14380         this.lastData = false;
14381         
14382         var close = this.closeTriggerEl();
14383         
14384         if(close){
14385             close.hide();
14386         }
14387         
14388         this.validate();
14389         
14390     },
14391
14392     /**
14393      * Sets the specified value into the field.  If the value finds a match, the corresponding record text
14394      * will be displayed in the field.  If the value does not match the data value of an existing item,
14395      * and the valueNotFoundText config option is defined, it will be displayed as the default field text.
14396      * Otherwise the field will be blank (although the value will still be set).
14397      * @param {String} value The value to match
14398      */
14399     setValue : function(v)
14400     {
14401         if(Roo.isIOS && this.useNativeIOS){
14402             this.setIOSValue(v);
14403             return;
14404         }
14405         
14406         if(this.multiple){
14407             this.syncValue();
14408             return;
14409         }
14410         
14411         var text = v;
14412         if(this.valueField){
14413             var r = this.findRecord(this.valueField, v);
14414             if(r){
14415                 text = r.data[this.displayField];
14416             }else if(this.valueNotFoundText !== undefined){
14417                 text = this.valueNotFoundText;
14418             }
14419         }
14420         this.lastSelectionText = text;
14421         if(this.hiddenField){
14422             this.hiddenField.dom.value = v;
14423         }
14424         Roo.bootstrap.ComboBox.superclass.setValue.call(this, text);
14425         this.value = v;
14426         
14427         var close = this.closeTriggerEl();
14428         
14429         if(close){
14430             (v && (v.length || v * 1 > 0)) ? close.show() : close.hide();
14431         }
14432         
14433         this.validate();
14434     },
14435     /**
14436      * @property {Object} the last set data for the element
14437      */
14438     
14439     lastData : false,
14440     /**
14441      * Sets the value of the field based on a object which is related to the record format for the store.
14442      * @param {Object} value the value to set as. or false on reset?
14443      */
14444     setFromData : function(o){
14445         
14446         if(this.multiple){
14447             this.addItem(o);
14448             return;
14449         }
14450             
14451         var dv = ''; // display value
14452         var vv = ''; // value value..
14453         this.lastData = o;
14454         if (this.displayField) {
14455             dv = !o || typeof(o[this.displayField]) == 'undefined' ? '' : o[this.displayField];
14456         } else {
14457             // this is an error condition!!!
14458             Roo.log('no  displayField value set for '+ (this.name ? this.name : this.id));
14459         }
14460         
14461         if(this.valueField){
14462             vv = !o || typeof(o[this.valueField]) == 'undefined' ? dv : o[this.valueField];
14463         }
14464         
14465         var close = this.closeTriggerEl();
14466         
14467         if(close){
14468             if(dv.length || vv * 1 > 0){
14469                 close.show() ;
14470                 this.blockFocus=true;
14471             } else {
14472                 close.hide();
14473             }             
14474         }
14475         
14476         if(this.hiddenField){
14477             this.hiddenField.dom.value = vv;
14478             
14479             this.lastSelectionText = dv;
14480             Roo.bootstrap.ComboBox.superclass.setValue.call(this, dv);
14481             this.value = vv;
14482             return;
14483         }
14484         // no hidden field.. - we store the value in 'value', but still display
14485         // display field!!!!
14486         this.lastSelectionText = dv;
14487         Roo.bootstrap.ComboBox.superclass.setValue.call(this, dv);
14488         this.value = vv;
14489         
14490         
14491         
14492     },
14493     // private
14494     reset : function(){
14495         // overridden so that last data is reset..
14496         
14497         if(this.multiple){
14498             this.clearItem();
14499             return;
14500         }
14501         
14502         this.setValue(this.originalValue);
14503         //this.clearInvalid();
14504         this.lastData = false;
14505         if (this.view) {
14506             this.view.clearSelections();
14507         }
14508         
14509         this.validate();
14510     },
14511     // private
14512     findRecord : function(prop, value){
14513         var record;
14514         if(this.store.getCount() > 0){
14515             this.store.each(function(r){
14516                 if(r.data[prop] == value){
14517                     record = r;
14518                     return false;
14519                 }
14520                 return true;
14521             });
14522         }
14523         return record;
14524     },
14525     
14526     getName: function()
14527     {
14528         // returns hidden if it's set..
14529         if (!this.rendered) {return ''};
14530         return !this.hiddenName && this.inputEl().dom.name  ? this.inputEl().dom.name : (this.hiddenName || '');
14531         
14532     },
14533     // private
14534     onViewMove : function(e, t){
14535         this.inKeyMode = false;
14536     },
14537
14538     // private
14539     onViewOver : function(e, t){
14540         if(this.inKeyMode){ // prevent key nav and mouse over conflicts
14541             return;
14542         }
14543         var item = this.view.findItemFromChild(t);
14544         
14545         if(item){
14546             var index = this.view.indexOf(item);
14547             this.select(index, false);
14548         }
14549     },
14550
14551     // private
14552     onViewClick : function(view, doFocus, el, e)
14553     {
14554         var index = this.view.getSelectedIndexes()[0];
14555         
14556         var r = this.store.getAt(index);
14557         
14558         if(this.tickable){
14559             
14560             if(typeof(e) != 'undefined' && e.getTarget().nodeName.toLowerCase() != 'input'){
14561                 return;
14562             }
14563             
14564             var rm = false;
14565             var _this = this;
14566             
14567             Roo.each(this.tickItems, function(v,k){
14568                 
14569                 if(typeof(v) != 'undefined' && v[_this.valueField] == r.data[_this.valueField]){
14570                     Roo.log(v);
14571                     _this.tickItems.splice(k, 1);
14572                     
14573                     if(typeof(e) == 'undefined' && view == false){
14574                         Roo.get(_this.view.getNodes(index, index)[0]).select('input', true).first().dom.checked = false;
14575                     }
14576                     
14577                     rm = true;
14578                     return;
14579                 }
14580             });
14581             
14582             if(rm){
14583                 return;
14584             }
14585             
14586             if(this.fireEvent('tick', this, r, index, Roo.get(_this.view.getNodes(index, index)[0]).select('input', true).first().dom.checked) !== false){
14587                 this.tickItems.push(r.data);
14588             }
14589             
14590             if(typeof(e) == 'undefined' && view == false){
14591                 Roo.get(_this.view.getNodes(index, index)[0]).select('input', true).first().dom.checked = true;
14592             }
14593                     
14594             return;
14595         }
14596         
14597         if(r){
14598             this.onSelect(r, index);
14599         }
14600         if(doFocus !== false && !this.blockFocus){
14601             this.inputEl().focus();
14602         }
14603     },
14604
14605     // private
14606     restrictHeight : function(){
14607         //this.innerList.dom.style.height = '';
14608         //var inner = this.innerList.dom;
14609         //var h = Math.max(inner.clientHeight, inner.offsetHeight, inner.scrollHeight);
14610         //this.innerList.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
14611         //this.list.beginUpdate();
14612         //this.list.setHeight(this.innerList.getHeight()+this.list.getFrameWidth('tb')+(this.resizable?this.handleHeight:0)+this.assetHeight);
14613         this.list.alignTo(this.inputEl(), this.listAlign);
14614         this.list.alignTo(this.inputEl(), this.listAlign);
14615         //this.list.endUpdate();
14616     },
14617
14618     // private
14619     onEmptyResults : function(){
14620         
14621         if(this.tickable && this.editable){
14622             this.hasFocus = false;
14623             this.restrictHeight();
14624             return;
14625         }
14626         
14627         this.collapse();
14628     },
14629
14630     /**
14631      * Returns true if the dropdown list is expanded, else false.
14632      */
14633     isExpanded : function(){
14634         return this.list.isVisible();
14635     },
14636
14637     /**
14638      * Select an item in the dropdown list by its data value. This function does NOT cause the select event to fire.
14639      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
14640      * @param {String} value The data value of the item to select
14641      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
14642      * selected item if it is not currently in view (defaults to true)
14643      * @return {Boolean} True if the value matched an item in the list, else false
14644      */
14645     selectByValue : function(v, scrollIntoView){
14646         if(v !== undefined && v !== null){
14647             var r = this.findRecord(this.valueField || this.displayField, v);
14648             if(r){
14649                 this.select(this.store.indexOf(r), scrollIntoView);
14650                 return true;
14651             }
14652         }
14653         return false;
14654     },
14655
14656     /**
14657      * Select an item in the dropdown list by its numeric index in the list. This function does NOT cause the select event to fire.
14658      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
14659      * @param {Number} index The zero-based index of the list item to select
14660      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
14661      * selected item if it is not currently in view (defaults to true)
14662      */
14663     select : function(index, scrollIntoView){
14664         this.selectedIndex = index;
14665         this.view.select(index);
14666         if(scrollIntoView !== false){
14667             var el = this.view.getNode(index);
14668             /*
14669              * el && !this.multiple && !this.tickable // not sure why we disable multiple before..
14670              */
14671             if(el){
14672                 this.list.scrollChildIntoView(el, false);
14673             }
14674         }
14675     },
14676
14677     // private
14678     selectNext : function(){
14679         var ct = this.store.getCount();
14680         if(ct > 0){
14681             if(this.selectedIndex == -1){
14682                 this.select(0);
14683             }else if(this.selectedIndex < ct-1){
14684                 this.select(this.selectedIndex+1);
14685             }
14686         }
14687     },
14688
14689     // private
14690     selectPrev : function(){
14691         var ct = this.store.getCount();
14692         if(ct > 0){
14693             if(this.selectedIndex == -1){
14694                 this.select(0);
14695             }else if(this.selectedIndex != 0){
14696                 this.select(this.selectedIndex-1);
14697             }
14698         }
14699     },
14700
14701     // private
14702     onKeyUp : function(e){
14703         if(this.editable !== false && !e.isSpecialKey()){
14704             this.lastKey = e.getKey();
14705             this.dqTask.delay(this.queryDelay);
14706         }
14707     },
14708
14709     // private
14710     validateBlur : function(){
14711         return !this.list || !this.list.isVisible();   
14712     },
14713
14714     // private
14715     initQuery : function(){
14716         
14717         var v = this.getRawValue();
14718         
14719         if(this.tickable && this.editable){
14720             v = this.tickableInputEl().getValue();
14721         }
14722         
14723         this.doQuery(v);
14724     },
14725
14726     // private
14727     doForce : function(){
14728         if(this.inputEl().dom.value.length > 0){
14729             this.inputEl().dom.value =
14730                 this.lastSelectionText === undefined ? '' : this.lastSelectionText;
14731              
14732         }
14733     },
14734
14735     /**
14736      * Execute a query to filter the dropdown list.  Fires the beforequery event prior to performing the
14737      * query allowing the query action to be canceled if needed.
14738      * @param {String} query The SQL query to execute
14739      * @param {Boolean} forceAll True to force the query to execute even if there are currently fewer characters
14740      * in the field than the minimum specified by the minChars config option.  It also clears any filter previously
14741      * saved in the current store (defaults to false)
14742      */
14743     doQuery : function(q, forceAll){
14744         
14745         if(q === undefined || q === null){
14746             q = '';
14747         }
14748         var qe = {
14749             query: q,
14750             forceAll: forceAll,
14751             combo: this,
14752             cancel:false
14753         };
14754         if(this.fireEvent('beforequery', qe)===false || qe.cancel){
14755             return false;
14756         }
14757         q = qe.query;
14758         
14759         forceAll = qe.forceAll;
14760         if(forceAll === true || (q.length >= this.minChars)){
14761             
14762             this.hasQuery = true;
14763             
14764             if(this.lastQuery != q || this.alwaysQuery){
14765                 this.lastQuery = q;
14766                 if(this.mode == 'local'){
14767                     this.selectedIndex = -1;
14768                     if(forceAll){
14769                         this.store.clearFilter();
14770                     }else{
14771                         
14772                         if(this.specialFilter){
14773                             this.fireEvent('specialfilter', this);
14774                             this.onLoad();
14775                             return;
14776                         }
14777                         
14778                         this.store.filter(this.displayField, q);
14779                     }
14780                     
14781                     this.store.fireEvent("datachanged", this.store);
14782                     
14783                     this.onLoad();
14784                     
14785                     
14786                 }else{
14787                     
14788                     this.store.baseParams[this.queryParam] = q;
14789                     
14790                     var options = {params : this.getParams(q)};
14791                     
14792                     if(this.loadNext){
14793                         options.add = true;
14794                         options.params.start = this.page * this.pageSize;
14795                     }
14796                     
14797                     this.store.load(options);
14798                     
14799                     /*
14800                      *  this code will make the page width larger, at the beginning, the list not align correctly, 
14801                      *  we should expand the list on onLoad
14802                      *  so command out it
14803                      */
14804 //                    this.expand();
14805                 }
14806             }else{
14807                 this.selectedIndex = -1;
14808                 this.onLoad();   
14809             }
14810         }
14811         
14812         this.loadNext = false;
14813     },
14814     
14815     // private
14816     getParams : function(q){
14817         var p = {};
14818         //p[this.queryParam] = q;
14819         
14820         if(this.pageSize){
14821             p.start = 0;
14822             p.limit = this.pageSize;
14823         }
14824         return p;
14825     },
14826
14827     /**
14828      * Hides the dropdown list if it is currently expanded. Fires the 'collapse' event on completion.
14829      */
14830     collapse : function(){
14831         if(!this.isExpanded()){
14832             return;
14833         }
14834         
14835         this.list.hide();
14836         
14837         this.hasFocus = false;
14838         
14839         if(this.tickable){
14840             this.okBtn.hide();
14841             this.cancelBtn.hide();
14842             this.trigger.show();
14843             
14844             if(this.editable){
14845                 this.tickableInputEl().dom.value = '';
14846                 this.tickableInputEl().blur();
14847             }
14848             
14849         }
14850         
14851         Roo.get(document).un('mousedown', this.collapseIf, this);
14852         Roo.get(document).un('mousewheel', this.collapseIf, this);
14853         if (!this.editable) {
14854             Roo.get(document).un('keydown', this.listKeyPress, this);
14855         }
14856         this.fireEvent('collapse', this);
14857         
14858         this.validate();
14859     },
14860
14861     // private
14862     collapseIf : function(e){
14863         var in_combo  = e.within(this.el);
14864         var in_list =  e.within(this.list);
14865         var is_list = (Roo.get(e.getTarget()).id == this.list.id) ? true : false;
14866         
14867         if (in_combo || in_list || is_list) {
14868             //e.stopPropagation();
14869             return;
14870         }
14871         
14872         if(this.tickable){
14873             this.onTickableFooterButtonClick(e, false, false);
14874         }
14875
14876         this.collapse();
14877         
14878     },
14879
14880     /**
14881      * Expands the dropdown list if it is currently hidden. Fires the 'expand' event on completion.
14882      */
14883     expand : function(){
14884        
14885         if(this.isExpanded() || !this.hasFocus){
14886             return;
14887         }
14888         
14889         var lw = this.listWidth || Math.max(this.inputEl().getWidth(), this.minListWidth);
14890         this.list.setWidth(lw);
14891         
14892         Roo.log('expand');
14893         
14894         this.list.show();
14895         
14896         this.restrictHeight();
14897         
14898         if(this.tickable){
14899             
14900             this.tickItems = Roo.apply([], this.item);
14901             
14902             this.okBtn.show();
14903             this.cancelBtn.show();
14904             this.trigger.hide();
14905             
14906             if(this.editable){
14907                 this.tickableInputEl().focus();
14908             }
14909             
14910         }
14911         
14912         Roo.get(document).on('mousedown', this.collapseIf, this);
14913         Roo.get(document).on('mousewheel', this.collapseIf, this);
14914         if (!this.editable) {
14915             Roo.get(document).on('keydown', this.listKeyPress, this);
14916         }
14917         
14918         this.fireEvent('expand', this);
14919     },
14920
14921     // private
14922     // Implements the default empty TriggerField.onTriggerClick function
14923     onTriggerClick : function(e)
14924     {
14925         Roo.log('trigger click');
14926         
14927         if(this.disabled || !this.triggerList){
14928             return;
14929         }
14930         
14931         this.page = 0;
14932         this.loadNext = false;
14933         
14934         if(this.isExpanded()){
14935             this.collapse();
14936             if (!this.blockFocus) {
14937                 this.inputEl().focus();
14938             }
14939             
14940         }else {
14941             this.hasFocus = true;
14942             if(this.triggerAction == 'all') {
14943                 this.doQuery(this.allQuery, true);
14944             } else {
14945                 this.doQuery(this.getRawValue());
14946             }
14947             if (!this.blockFocus) {
14948                 this.inputEl().focus();
14949             }
14950         }
14951     },
14952     
14953     onTickableTriggerClick : function(e)
14954     {
14955         if(this.disabled){
14956             return;
14957         }
14958         
14959         this.page = 0;
14960         this.loadNext = false;
14961         this.hasFocus = true;
14962         
14963         if(this.triggerAction == 'all') {
14964             this.doQuery(this.allQuery, true);
14965         } else {
14966             this.doQuery(this.getRawValue());
14967         }
14968     },
14969     
14970     onSearchFieldClick : function(e)
14971     {
14972         if(this.hasFocus && !this.disabled && e.getTarget().nodeName.toLowerCase() != 'button'){
14973             this.onTickableFooterButtonClick(e, false, false);
14974             return;
14975         }
14976         
14977         if(this.hasFocus || this.disabled || e.getTarget().nodeName.toLowerCase() == 'button'){
14978             return;
14979         }
14980         
14981         this.page = 0;
14982         this.loadNext = false;
14983         this.hasFocus = true;
14984         
14985         if(this.triggerAction == 'all') {
14986             this.doQuery(this.allQuery, true);
14987         } else {
14988             this.doQuery(this.getRawValue());
14989         }
14990     },
14991     
14992     listKeyPress : function(e)
14993     {
14994         //Roo.log('listkeypress');
14995         // scroll to first matching element based on key pres..
14996         if (e.isSpecialKey()) {
14997             return false;
14998         }
14999         var k = String.fromCharCode(e.getKey()).toUpperCase();
15000         //Roo.log(k);
15001         var match  = false;
15002         var csel = this.view.getSelectedNodes();
15003         var cselitem = false;
15004         if (csel.length) {
15005             var ix = this.view.indexOf(csel[0]);
15006             cselitem  = this.store.getAt(ix);
15007             if (!cselitem.get(this.displayField) || cselitem.get(this.displayField).substring(0,1).toUpperCase() != k) {
15008                 cselitem = false;
15009             }
15010             
15011         }
15012         
15013         this.store.each(function(v) { 
15014             if (cselitem) {
15015                 // start at existing selection.
15016                 if (cselitem.id == v.id) {
15017                     cselitem = false;
15018                 }
15019                 return true;
15020             }
15021                 
15022             if (v.get(this.displayField) && v.get(this.displayField).substring(0,1).toUpperCase() == k) {
15023                 match = this.store.indexOf(v);
15024                 return false;
15025             }
15026             return true;
15027         }, this);
15028         
15029         if (match === false) {
15030             return true; // no more action?
15031         }
15032         // scroll to?
15033         this.view.select(match);
15034         var sn = Roo.get(this.view.getSelectedNodes()[0]);
15035         sn.scrollIntoView(sn.dom.parentNode, false);
15036     },
15037     
15038     onViewScroll : function(e, t){
15039         
15040         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){
15041             return;
15042         }
15043         
15044         this.hasQuery = true;
15045         
15046         this.loading = this.list.select('.loading', true).first();
15047         
15048         if(this.loading === null){
15049             this.list.createChild({
15050                 tag: 'div',
15051                 cls: 'loading roo-select2-more-results roo-select2-active',
15052                 html: 'Loading more results...'
15053             });
15054             
15055             this.loading = this.list.select('.loading', true).first();
15056             
15057             this.loading.setVisibilityMode(Roo.Element.DISPLAY);
15058             
15059             this.loading.hide();
15060         }
15061         
15062         this.loading.show();
15063         
15064         var _combo = this;
15065         
15066         this.page++;
15067         this.loadNext = true;
15068         
15069         (function() { _combo.doQuery(_combo.allQuery, true); }).defer(500);
15070         
15071         return;
15072     },
15073     
15074     addItem : function(o)
15075     {   
15076         var dv = ''; // display value
15077         
15078         if (this.displayField) {
15079             dv = !o || typeof(o[this.displayField]) == 'undefined' ? '' : o[this.displayField];
15080         } else {
15081             // this is an error condition!!!
15082             Roo.log('no  displayField value set for '+ (this.name ? this.name : this.id));
15083         }
15084         
15085         if(!dv.length){
15086             return;
15087         }
15088         
15089         var choice = this.choices.createChild({
15090             tag: 'li',
15091             cls: 'roo-select2-search-choice',
15092             cn: [
15093                 {
15094                     tag: 'div',
15095                     html: dv
15096                 },
15097                 {
15098                     tag: 'a',
15099                     href: '#',
15100                     cls: 'roo-select2-search-choice-close fa fa-times',
15101                     tabindex: '-1'
15102                 }
15103             ]
15104             
15105         }, this.searchField);
15106         
15107         var close = choice.select('a.roo-select2-search-choice-close', true).first();
15108         
15109         close.on('click', this.onRemoveItem, this, { item : choice, data : o} );
15110         
15111         this.item.push(o);
15112         
15113         this.lastData = o;
15114         
15115         this.syncValue();
15116         
15117         this.inputEl().dom.value = '';
15118         
15119         this.validate();
15120     },
15121     
15122     onRemoveItem : function(e, _self, o)
15123     {
15124         e.preventDefault();
15125         
15126         this.lastItem = Roo.apply([], this.item);
15127         
15128         var index = this.item.indexOf(o.data) * 1;
15129         
15130         if( index < 0){
15131             Roo.log('not this item?!');
15132             return;
15133         }
15134         
15135         this.item.splice(index, 1);
15136         o.item.remove();
15137         
15138         this.syncValue();
15139         
15140         this.fireEvent('remove', this, e);
15141         
15142         this.validate();
15143         
15144     },
15145     
15146     syncValue : function()
15147     {
15148         if(!this.item.length){
15149             this.clearValue();
15150             return;
15151         }
15152             
15153         var value = [];
15154         var _this = this;
15155         Roo.each(this.item, function(i){
15156             if(_this.valueField){
15157                 value.push(i[_this.valueField]);
15158                 return;
15159             }
15160
15161             value.push(i);
15162         });
15163
15164         this.value = value.join(',');
15165
15166         if(this.hiddenField){
15167             this.hiddenField.dom.value = this.value;
15168         }
15169         
15170         this.store.fireEvent("datachanged", this.store);
15171         
15172         this.validate();
15173     },
15174     
15175     clearItem : function()
15176     {
15177         if(!this.multiple){
15178             return;
15179         }
15180         
15181         this.item = [];
15182         
15183         Roo.each(this.choices.select('>li.roo-select2-search-choice', true).elements, function(c){
15184            c.remove();
15185         });
15186         
15187         this.syncValue();
15188         
15189         this.validate();
15190         
15191         if(this.tickable && !Roo.isTouch){
15192             this.view.refresh();
15193         }
15194     },
15195     
15196     inputEl: function ()
15197     {
15198         if(Roo.isIOS && this.useNativeIOS){
15199             return this.el.select('select.roo-ios-select', true).first();
15200         }
15201         
15202         if(Roo.isTouch && this.mobileTouchView){
15203             return this.el.select('input.form-control',true).first();
15204         }
15205         
15206         if(this.tickable){
15207             return this.searchField;
15208         }
15209         
15210         return this.el.select('input.form-control',true).first();
15211     },
15212     
15213     onTickableFooterButtonClick : function(e, btn, el)
15214     {
15215         e.preventDefault();
15216         
15217         this.lastItem = Roo.apply([], this.item);
15218         
15219         if(btn && btn.name == 'cancel'){
15220             this.tickItems = Roo.apply([], this.item);
15221             this.collapse();
15222             return;
15223         }
15224         
15225         this.clearItem();
15226         
15227         var _this = this;
15228         
15229         Roo.each(this.tickItems, function(o){
15230             _this.addItem(o);
15231         });
15232         
15233         this.collapse();
15234         
15235     },
15236     
15237     validate : function()
15238     {
15239         if(this.getVisibilityEl().hasClass('hidden')){
15240             return true;
15241         }
15242         
15243         var v = this.getRawValue();
15244         
15245         if(this.multiple){
15246             v = this.getValue();
15247         }
15248         
15249         if(this.disabled || this.allowBlank || v.length){
15250             this.markValid();
15251             return true;
15252         }
15253         
15254         this.markInvalid();
15255         return false;
15256     },
15257     
15258     tickableInputEl : function()
15259     {
15260         if(!this.tickable || !this.editable){
15261             return this.inputEl();
15262         }
15263         
15264         return this.inputEl().select('.roo-select2-search-field-input', true).first();
15265     },
15266     
15267     
15268     getAutoCreateTouchView : function()
15269     {
15270         var id = Roo.id();
15271         
15272         var cfg = {
15273             cls: 'form-group' //input-group
15274         };
15275         
15276         var input =  {
15277             tag: 'input',
15278             id : id,
15279             type : this.inputType,
15280             cls : 'form-control x-combo-noedit',
15281             autocomplete: 'new-password',
15282             placeholder : this.placeholder || '',
15283             readonly : true
15284         };
15285         
15286         if (this.name) {
15287             input.name = this.name;
15288         }
15289         
15290         if (this.size) {
15291             input.cls += ' input-' + this.size;
15292         }
15293         
15294         if (this.disabled) {
15295             input.disabled = true;
15296         }
15297         
15298         var inputblock = {
15299             cls : '',
15300             cn : [
15301                 input
15302             ]
15303         };
15304         
15305         if(this.before){
15306             inputblock.cls += ' input-group';
15307             
15308             inputblock.cn.unshift({
15309                 tag :'span',
15310                 cls : 'input-group-addon input-group-prepend input-group-text',
15311                 html : this.before
15312             });
15313         }
15314         
15315         if(this.removable && !this.multiple){
15316             inputblock.cls += ' roo-removable';
15317             
15318             inputblock.cn.push({
15319                 tag: 'button',
15320                 html : 'x',
15321                 cls : 'roo-combo-removable-btn close'
15322             });
15323         }
15324
15325         if(this.hasFeedback && !this.allowBlank){
15326             
15327             inputblock.cls += ' has-feedback';
15328             
15329             inputblock.cn.push({
15330                 tag: 'span',
15331                 cls: 'glyphicon form-control-feedback'
15332             });
15333             
15334         }
15335         
15336         if (this.after) {
15337             
15338             inputblock.cls += (this.before) ? '' : ' input-group';
15339             
15340             inputblock.cn.push({
15341                 tag :'span',
15342                 cls : 'input-group-addon input-group-append input-group-text',
15343                 html : this.after
15344             });
15345         }
15346
15347         
15348         var ibwrap = inputblock;
15349         
15350         if(this.multiple){
15351             ibwrap = {
15352                 tag: 'ul',
15353                 cls: 'roo-select2-choices',
15354                 cn:[
15355                     {
15356                         tag: 'li',
15357                         cls: 'roo-select2-search-field',
15358                         cn: [
15359
15360                             inputblock
15361                         ]
15362                     }
15363                 ]
15364             };
15365         
15366             
15367         }
15368         
15369         var combobox = {
15370             cls: 'roo-select2-container input-group roo-touchview-combobox ',
15371             cn: [
15372                 {
15373                     tag: 'input',
15374                     type : 'hidden',
15375                     cls: 'form-hidden-field'
15376                 },
15377                 ibwrap
15378             ]
15379         };
15380         
15381         if(!this.multiple && this.showToggleBtn){
15382             
15383             var caret = {
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                     Roo.bootstrap.version == 3 ? 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         if (!node) {
23153             this.cleanWord(this.doc.body);
23154             return;
23155         }
23156         
23157         if(
23158                 node.nodeName == 'SPAN' &&
23159                 !node.hasAttributes() &&
23160                 node.childNodes.length == 1 &&
23161                 node.firstChild.nodeName == "#text"
23162         ) {
23163             console.log('run!!!!!');
23164             var textNode = node.firstChild;
23165             console.log(textNode);
23166             node.parentNode.insertBefore(textNode, node);
23167             node.parentNode.removeChild(node);
23168         }
23169         
23170         if (node.nodeName == "#text") {
23171             // clean up silly Windows -- stuff?
23172             return; 
23173         }
23174         if (node.nodeName == "#comment") {
23175             node.parentNode.removeChild(node);
23176             // clean up silly Windows -- stuff?
23177             return; 
23178         }
23179         
23180         if (node.tagName.toLowerCase().match(/^(style|script|applet|embed|noframes|noscript)$/)) {
23181             node.parentNode.removeChild(node);
23182             return;
23183         }
23184         
23185         // remove - but keep children..
23186         if (node.tagName.toLowerCase().match(/^(meta|link|\\?xml:|st1:|o:|font)/)) {
23187             while (node.childNodes.length) {
23188                 var cn = node.childNodes[0];
23189                 node.removeChild(cn);
23190                 node.parentNode.insertBefore(cn, node);
23191             }
23192             node.parentNode.removeChild(node);
23193             this.iterateChildren(node, this.cleanWord);
23194             return;
23195         }
23196         // clean styles
23197         if (node.className.length) {
23198             
23199             var cn = node.className.split(/\W+/);
23200             var cna = [];
23201             Roo.each(cn, function(cls) {
23202                 if (cls.match(/Mso[a-zA-Z]+/)) {
23203                     return;
23204                 }
23205                 cna.push(cls);
23206             });
23207             node.className = cna.length ? cna.join(' ') : '';
23208             if (!cna.length) {
23209                 node.removeAttribute("class");
23210             }
23211         }
23212         
23213         if (node.hasAttribute("lang")) {
23214             node.removeAttribute("lang");
23215         }
23216         
23217         if (node.hasAttribute("style")) {
23218             
23219             var styles = node.getAttribute("style").split(";");
23220             var nstyle = [];
23221             Roo.each(styles, function(s) {
23222                 if (!s.match(/:/)) {
23223                     return;
23224                 }
23225                 var kv = s.split(":");
23226                 if (kv[0].match(/^(mso-|line|font|background|margin|padding|color)/)) {
23227                     return;
23228                 }
23229                 // what ever is left... we allow.
23230                 nstyle.push(s);
23231             });
23232             node.setAttribute("style", nstyle.length ? nstyle.join(';') : '');
23233             if (!nstyle.length) {
23234                 node.removeAttribute('style');
23235             }
23236         }
23237         this.iterateChildren(node, this.cleanWord);
23238         
23239         
23240         
23241     },
23242     /**
23243      * iterateChildren of a Node, calling fn each time, using this as the scole..
23244      * @param {DomNode} node node to iterate children of.
23245      * @param {Function} fn method of this class to call on each item.
23246      */
23247     iterateChildren : function(node, fn)
23248     {
23249         if (!node.childNodes.length) {
23250                 return;
23251         }
23252         for (var i = node.childNodes.length-1; i > -1 ; i--) {
23253            fn.call(this, node.childNodes[i])
23254         }
23255     },
23256     
23257     
23258     /**
23259      * cleanTableWidths.
23260      *
23261      * Quite often pasting from word etc.. results in tables with column and widths.
23262      * This does not work well on fluid HTML layouts - like emails. - so this code should hunt an destroy them..
23263      *
23264      */
23265     cleanTableWidths : function(node)
23266     {
23267          
23268          
23269         if (!node) {
23270             this.cleanTableWidths(this.doc.body);
23271             return;
23272         }
23273         
23274         // ignore list...
23275         if (node.nodeName == "#text" || node.nodeName == "#comment") {
23276             return; 
23277         }
23278         Roo.log(node.tagName);
23279         if (!node.tagName.toLowerCase().match(/^(table|td|tr)$/)) {
23280             this.iterateChildren(node, this.cleanTableWidths);
23281             return;
23282         }
23283         if (node.hasAttribute('width')) {
23284             node.removeAttribute('width');
23285         }
23286         
23287          
23288         if (node.hasAttribute("style")) {
23289             // pretty basic...
23290             
23291             var styles = node.getAttribute("style").split(";");
23292             var nstyle = [];
23293             Roo.each(styles, function(s) {
23294                 if (!s.match(/:/)) {
23295                     return;
23296                 }
23297                 var kv = s.split(":");
23298                 if (kv[0].match(/^\s*(width|min-width)\s*$/)) {
23299                     return;
23300                 }
23301                 // what ever is left... we allow.
23302                 nstyle.push(s);
23303             });
23304             node.setAttribute("style", nstyle.length ? nstyle.join(';') : '');
23305             if (!nstyle.length) {
23306                 node.removeAttribute('style');
23307             }
23308         }
23309         
23310         this.iterateChildren(node, this.cleanTableWidths);
23311         
23312         
23313     },
23314     
23315     
23316     
23317     
23318     domToHTML : function(currentElement, depth, nopadtext) {
23319         
23320         depth = depth || 0;
23321         nopadtext = nopadtext || false;
23322     
23323         if (!currentElement) {
23324             return this.domToHTML(this.doc.body);
23325         }
23326         
23327         //Roo.log(currentElement);
23328         var j;
23329         var allText = false;
23330         var nodeName = currentElement.nodeName;
23331         var tagName = Roo.util.Format.htmlEncode(currentElement.tagName);
23332         
23333         if  (nodeName == '#text') {
23334             
23335             return nopadtext ? currentElement.nodeValue : currentElement.nodeValue.trim();
23336         }
23337         
23338         
23339         var ret = '';
23340         if (nodeName != 'BODY') {
23341              
23342             var i = 0;
23343             // Prints the node tagName, such as <A>, <IMG>, etc
23344             if (tagName) {
23345                 var attr = [];
23346                 for(i = 0; i < currentElement.attributes.length;i++) {
23347                     // quoting?
23348                     var aname = currentElement.attributes.item(i).name;
23349                     if (!currentElement.attributes.item(i).value.length) {
23350                         continue;
23351                     }
23352                     attr.push(aname + '="' + Roo.util.Format.htmlEncode(currentElement.attributes.item(i).value) + '"' );
23353                 }
23354                 
23355                 ret = "<"+currentElement.tagName+ ( attr.length ? (' ' + attr.join(' ') ) : '') + ">";
23356             } 
23357             else {
23358                 
23359                 // eack
23360             }
23361         } else {
23362             tagName = false;
23363         }
23364         if (['IMG', 'BR', 'HR', 'INPUT'].indexOf(tagName) > -1) {
23365             return ret;
23366         }
23367         if (['PRE', 'TEXTAREA', 'TD', 'A', 'SPAN'].indexOf(tagName) > -1) { // or code?
23368             nopadtext = true;
23369         }
23370         
23371         
23372         // Traverse the tree
23373         i = 0;
23374         var currentElementChild = currentElement.childNodes.item(i);
23375         var allText = true;
23376         var innerHTML  = '';
23377         lastnode = '';
23378         while (currentElementChild) {
23379             // Formatting code (indent the tree so it looks nice on the screen)
23380             var nopad = nopadtext;
23381             if (lastnode == 'SPAN') {
23382                 nopad  = true;
23383             }
23384             // text
23385             if  (currentElementChild.nodeName == '#text') {
23386                 var toadd = Roo.util.Format.htmlEncode(currentElementChild.nodeValue);
23387                 toadd = nopadtext ? toadd : toadd.trim();
23388                 if (!nopad && toadd.length > 80) {
23389                     innerHTML  += "\n" + (new Array( depth + 1 )).join( "  "  );
23390                 }
23391                 innerHTML  += toadd;
23392                 
23393                 i++;
23394                 currentElementChild = currentElement.childNodes.item(i);
23395                 lastNode = '';
23396                 continue;
23397             }
23398             allText = false;
23399             
23400             innerHTML  += nopad ? '' : "\n" + (new Array( depth + 1 )).join( "  "  );
23401                 
23402             // Recursively traverse the tree structure of the child node
23403             innerHTML   += this.domToHTML(currentElementChild, depth+1, nopadtext);
23404             lastnode = currentElementChild.nodeName;
23405             i++;
23406             currentElementChild=currentElement.childNodes.item(i);
23407         }
23408         
23409         ret += innerHTML;
23410         
23411         if (!allText) {
23412                 // The remaining code is mostly for formatting the tree
23413             ret+= nopadtext ? '' : "\n" + (new Array( depth  )).join( "  "  );
23414         }
23415         
23416         
23417         if (tagName) {
23418             ret+= "</"+tagName+">";
23419         }
23420         return ret;
23421         
23422     },
23423         
23424     applyBlacklists : function()
23425     {
23426         var w = typeof(this.owner.white) != 'undefined' && this.owner.white ? this.owner.white  : [];
23427         var b = typeof(this.owner.black) != 'undefined' && this.owner.black ? this.owner.black :  [];
23428         
23429         this.white = [];
23430         this.black = [];
23431         Roo.each(Roo.HtmlEditorCore.white, function(tag) {
23432             if (b.indexOf(tag) > -1) {
23433                 return;
23434             }
23435             this.white.push(tag);
23436             
23437         }, this);
23438         
23439         Roo.each(w, function(tag) {
23440             if (b.indexOf(tag) > -1) {
23441                 return;
23442             }
23443             if (this.white.indexOf(tag) > -1) {
23444                 return;
23445             }
23446             this.white.push(tag);
23447             
23448         }, this);
23449         
23450         
23451         Roo.each(Roo.HtmlEditorCore.black, function(tag) {
23452             if (w.indexOf(tag) > -1) {
23453                 return;
23454             }
23455             this.black.push(tag);
23456             
23457         }, this);
23458         
23459         Roo.each(b, function(tag) {
23460             if (w.indexOf(tag) > -1) {
23461                 return;
23462             }
23463             if (this.black.indexOf(tag) > -1) {
23464                 return;
23465             }
23466             this.black.push(tag);
23467             
23468         }, this);
23469         
23470         
23471         w = typeof(this.owner.cwhite) != 'undefined' && this.owner.cwhite ? this.owner.cwhite  : [];
23472         b = typeof(this.owner.cblack) != 'undefined' && this.owner.cblack ? this.owner.cblack :  [];
23473         
23474         this.cwhite = [];
23475         this.cblack = [];
23476         Roo.each(Roo.HtmlEditorCore.cwhite, function(tag) {
23477             if (b.indexOf(tag) > -1) {
23478                 return;
23479             }
23480             this.cwhite.push(tag);
23481             
23482         }, this);
23483         
23484         Roo.each(w, function(tag) {
23485             if (b.indexOf(tag) > -1) {
23486                 return;
23487             }
23488             if (this.cwhite.indexOf(tag) > -1) {
23489                 return;
23490             }
23491             this.cwhite.push(tag);
23492             
23493         }, this);
23494         
23495         
23496         Roo.each(Roo.HtmlEditorCore.cblack, function(tag) {
23497             if (w.indexOf(tag) > -1) {
23498                 return;
23499             }
23500             this.cblack.push(tag);
23501             
23502         }, this);
23503         
23504         Roo.each(b, function(tag) {
23505             if (w.indexOf(tag) > -1) {
23506                 return;
23507             }
23508             if (this.cblack.indexOf(tag) > -1) {
23509                 return;
23510             }
23511             this.cblack.push(tag);
23512             
23513         }, this);
23514     },
23515     
23516     setStylesheets : function(stylesheets)
23517     {
23518         if(typeof(stylesheets) == 'string'){
23519             Roo.get(this.iframe.contentDocument.head).createChild({
23520                 tag : 'link',
23521                 rel : 'stylesheet',
23522                 type : 'text/css',
23523                 href : stylesheets
23524             });
23525             
23526             return;
23527         }
23528         var _this = this;
23529      
23530         Roo.each(stylesheets, function(s) {
23531             if(!s.length){
23532                 return;
23533             }
23534             
23535             Roo.get(_this.iframe.contentDocument.head).createChild({
23536                 tag : 'link',
23537                 rel : 'stylesheet',
23538                 type : 'text/css',
23539                 href : s
23540             });
23541         });
23542
23543         
23544     },
23545     
23546     removeStylesheets : function()
23547     {
23548         var _this = this;
23549         
23550         Roo.each(Roo.get(_this.iframe.contentDocument.head).select('link[rel=stylesheet]', true).elements, function(s){
23551             s.remove();
23552         });
23553     },
23554     
23555     setStyle : function(style)
23556     {
23557         Roo.get(this.iframe.contentDocument.head).createChild({
23558             tag : 'style',
23559             type : 'text/css',
23560             html : style
23561         });
23562
23563         return;
23564     }
23565     
23566     // hide stuff that is not compatible
23567     /**
23568      * @event blur
23569      * @hide
23570      */
23571     /**
23572      * @event change
23573      * @hide
23574      */
23575     /**
23576      * @event focus
23577      * @hide
23578      */
23579     /**
23580      * @event specialkey
23581      * @hide
23582      */
23583     /**
23584      * @cfg {String} fieldClass @hide
23585      */
23586     /**
23587      * @cfg {String} focusClass @hide
23588      */
23589     /**
23590      * @cfg {String} autoCreate @hide
23591      */
23592     /**
23593      * @cfg {String} inputType @hide
23594      */
23595     /**
23596      * @cfg {String} invalidClass @hide
23597      */
23598     /**
23599      * @cfg {String} invalidText @hide
23600      */
23601     /**
23602      * @cfg {String} msgFx @hide
23603      */
23604     /**
23605      * @cfg {String} validateOnBlur @hide
23606      */
23607 });
23608
23609 Roo.HtmlEditorCore.white = [
23610         'area', 'br', 'img', 'input', 'hr', 'wbr',
23611         
23612        'address', 'blockquote', 'center', 'dd',      'dir',       'div', 
23613        'dl',      'dt',         'h1',     'h2',      'h3',        'h4', 
23614        'h5',      'h6',         'hr',     'isindex', 'listing',   'marquee', 
23615        'menu',    'multicol',   'ol',     'p',       'plaintext', 'pre', 
23616        'table',   'ul',         'xmp', 
23617        
23618        'caption', 'col', 'colgroup', 'tbody', 'td', 'tfoot', 'th', 
23619       'thead',   'tr', 
23620      
23621       'dir', 'menu', 'ol', 'ul', 'dl',
23622        
23623       'embed',  'object'
23624 ];
23625
23626
23627 Roo.HtmlEditorCore.black = [
23628     //    'embed',  'object', // enable - backend responsiblity to clean thiese
23629         'applet', // 
23630         'base',   'basefont', 'bgsound', 'blink',  'body', 
23631         'frame',  'frameset', 'head',    'html',   'ilayer', 
23632         'iframe', 'layer',  'link',     'meta',    'object',   
23633         'script', 'style' ,'title',  'xml' // clean later..
23634 ];
23635 Roo.HtmlEditorCore.clean = [
23636     'script', 'style', 'title', 'xml'
23637 ];
23638 Roo.HtmlEditorCore.remove = [
23639     'font'
23640 ];
23641 // attributes..
23642
23643 Roo.HtmlEditorCore.ablack = [
23644     'on'
23645 ];
23646     
23647 Roo.HtmlEditorCore.aclean = [ 
23648     'action', 'background', 'codebase', 'dynsrc', 'href', 'lowsrc' 
23649 ];
23650
23651 // protocols..
23652 Roo.HtmlEditorCore.pwhite= [
23653         'http',  'https',  'mailto'
23654 ];
23655
23656 // white listed style attributes.
23657 Roo.HtmlEditorCore.cwhite= [
23658       //  'text-align', /// default is to allow most things..
23659       
23660          
23661 //        'font-size'//??
23662 ];
23663
23664 // black listed style attributes.
23665 Roo.HtmlEditorCore.cblack= [
23666       //  'font-size' -- this can be set by the project 
23667 ];
23668
23669
23670 Roo.HtmlEditorCore.swapCodes   =[ 
23671     [    8211, "--" ], 
23672     [    8212, "--" ], 
23673     [    8216,  "'" ],  
23674     [    8217, "'" ],  
23675     [    8220, '"' ],  
23676     [    8221, '"' ],  
23677     [    8226, "*" ],  
23678     [    8230, "..." ]
23679 ]; 
23680
23681     /*
23682  * - LGPL
23683  *
23684  * HtmlEditor
23685  * 
23686  */
23687
23688 /**
23689  * @class Roo.bootstrap.HtmlEditor
23690  * @extends Roo.bootstrap.TextArea
23691  * Bootstrap HtmlEditor class
23692
23693  * @constructor
23694  * Create a new HtmlEditor
23695  * @param {Object} config The config object
23696  */
23697
23698 Roo.bootstrap.HtmlEditor = function(config){
23699     Roo.bootstrap.HtmlEditor.superclass.constructor.call(this, config);
23700     if (!this.toolbars) {
23701         this.toolbars = [];
23702     }
23703     
23704     this.editorcore = new Roo.HtmlEditorCore(Roo.apply({ owner : this} , config));
23705     this.addEvents({
23706             /**
23707              * @event initialize
23708              * Fires when the editor is fully initialized (including the iframe)
23709              * @param {HtmlEditor} this
23710              */
23711             initialize: true,
23712             /**
23713              * @event activate
23714              * Fires when the editor is first receives the focus. Any insertion must wait
23715              * until after this event.
23716              * @param {HtmlEditor} this
23717              */
23718             activate: true,
23719              /**
23720              * @event beforesync
23721              * Fires before the textarea is updated with content from the editor iframe. Return false
23722              * to cancel the sync.
23723              * @param {HtmlEditor} this
23724              * @param {String} html
23725              */
23726             beforesync: true,
23727              /**
23728              * @event beforepush
23729              * Fires before the iframe editor is updated with content from the textarea. Return false
23730              * to cancel the push.
23731              * @param {HtmlEditor} this
23732              * @param {String} html
23733              */
23734             beforepush: true,
23735              /**
23736              * @event sync
23737              * Fires when the textarea is updated with content from the editor iframe.
23738              * @param {HtmlEditor} this
23739              * @param {String} html
23740              */
23741             sync: true,
23742              /**
23743              * @event push
23744              * Fires when the iframe editor is updated with content from the textarea.
23745              * @param {HtmlEditor} this
23746              * @param {String} html
23747              */
23748             push: true,
23749              /**
23750              * @event editmodechange
23751              * Fires when the editor switches edit modes
23752              * @param {HtmlEditor} this
23753              * @param {Boolean} sourceEdit True if source edit, false if standard editing.
23754              */
23755             editmodechange: true,
23756             /**
23757              * @event editorevent
23758              * Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks.
23759              * @param {HtmlEditor} this
23760              */
23761             editorevent: true,
23762             /**
23763              * @event firstfocus
23764              * Fires when on first focus - needed by toolbars..
23765              * @param {HtmlEditor} this
23766              */
23767             firstfocus: true,
23768             /**
23769              * @event autosave
23770              * Auto save the htmlEditor value as a file into Events
23771              * @param {HtmlEditor} this
23772              */
23773             autosave: true,
23774             /**
23775              * @event savedpreview
23776              * preview the saved version of htmlEditor
23777              * @param {HtmlEditor} this
23778              */
23779             savedpreview: true
23780         });
23781 };
23782
23783
23784 Roo.extend(Roo.bootstrap.HtmlEditor, Roo.bootstrap.TextArea,  {
23785     
23786     
23787       /**
23788      * @cfg {Array} toolbars Array of toolbars. - defaults to just the Standard one
23789      */
23790     toolbars : false,
23791     
23792      /**
23793     * @cfg {Array} buttons Array of toolbar's buttons. - defaults to empty
23794     */
23795     btns : [],
23796    
23797      /**
23798      * @cfg {String} resizable  's' or 'se' or 'e' - wrapps the element in a
23799      *                        Roo.resizable.
23800      */
23801     resizable : false,
23802      /**
23803      * @cfg {Number} height (in pixels)
23804      */   
23805     height: 300,
23806    /**
23807      * @cfg {Number} width (in pixels)
23808      */   
23809     width: false,
23810     
23811     /**
23812      * @cfg {Array} stylesheets url of stylesheets. set to [] to disable stylesheets.
23813      * 
23814      */
23815     stylesheets: false,
23816     
23817     // id of frame..
23818     frameId: false,
23819     
23820     // private properties
23821     validationEvent : false,
23822     deferHeight: true,
23823     initialized : false,
23824     activated : false,
23825     
23826     onFocus : Roo.emptyFn,
23827     iframePad:3,
23828     hideMode:'offsets',
23829     
23830     tbContainer : false,
23831     
23832     bodyCls : '',
23833     
23834     toolbarContainer :function() {
23835         return this.wrap.select('.x-html-editor-tb',true).first();
23836     },
23837
23838     /**
23839      * Protected method that will not generally be called directly. It
23840      * is called when the editor creates its toolbar. Override this method if you need to
23841      * add custom toolbar buttons.
23842      * @param {HtmlEditor} editor
23843      */
23844     createToolbar : function(){
23845         Roo.log('renewing');
23846         Roo.log("create toolbars");
23847         
23848         this.toolbars = [ new Roo.bootstrap.htmleditor.ToolbarStandard({editor: this} ) ];
23849         this.toolbars[0].render(this.toolbarContainer());
23850         
23851         return;
23852         
23853 //        if (!editor.toolbars || !editor.toolbars.length) {
23854 //            editor.toolbars = [ new Roo.bootstrap.HtmlEditor.ToolbarStandard() ]; // can be empty?
23855 //        }
23856 //        
23857 //        for (var i =0 ; i < editor.toolbars.length;i++) {
23858 //            editor.toolbars[i] = Roo.factory(
23859 //                    typeof(editor.toolbars[i]) == 'string' ?
23860 //                        { xtype: editor.toolbars[i]} : editor.toolbars[i],
23861 //                Roo.bootstrap.HtmlEditor);
23862 //            editor.toolbars[i].init(editor);
23863 //        }
23864     },
23865
23866      
23867     // private
23868     onRender : function(ct, position)
23869     {
23870        // Roo.log("Call onRender: " + this.xtype);
23871         var _t = this;
23872         Roo.bootstrap.HtmlEditor.superclass.onRender.call(this, ct, position);
23873       
23874         this.wrap = this.inputEl().wrap({
23875             cls:'x-html-editor-wrap', cn:{cls:'x-html-editor-tb'}
23876         });
23877         
23878         this.editorcore.onRender(ct, position);
23879          
23880         if (this.resizable) {
23881             this.resizeEl = new Roo.Resizable(this.wrap, {
23882                 pinned : true,
23883                 wrap: true,
23884                 dynamic : true,
23885                 minHeight : this.height,
23886                 height: this.height,
23887                 handles : this.resizable,
23888                 width: this.width,
23889                 listeners : {
23890                     resize : function(r, w, h) {
23891                         _t.onResize(w,h); // -something
23892                     }
23893                 }
23894             });
23895             
23896         }
23897         this.createToolbar(this);
23898        
23899         
23900         if(!this.width && this.resizable){
23901             this.setSize(this.wrap.getSize());
23902         }
23903         if (this.resizeEl) {
23904             this.resizeEl.resizeTo.defer(100, this.resizeEl,[ this.width,this.height ] );
23905             // should trigger onReize..
23906         }
23907         
23908     },
23909
23910     // private
23911     onResize : function(w, h)
23912     {
23913         Roo.log('resize: ' +w + ',' + h );
23914         Roo.bootstrap.HtmlEditor.superclass.onResize.apply(this, arguments);
23915         var ew = false;
23916         var eh = false;
23917         
23918         if(this.inputEl() ){
23919             if(typeof w == 'number'){
23920                 var aw = w - this.wrap.getFrameWidth('lr');
23921                 this.inputEl().setWidth(this.adjustWidth('textarea', aw));
23922                 ew = aw;
23923             }
23924             if(typeof h == 'number'){
23925                  var tbh = -11;  // fixme it needs to tool bar size!
23926                 for (var i =0; i < this.toolbars.length;i++) {
23927                     // fixme - ask toolbars for heights?
23928                     tbh += this.toolbars[i].el.getHeight();
23929                     //if (this.toolbars[i].footer) {
23930                     //    tbh += this.toolbars[i].footer.el.getHeight();
23931                     //}
23932                 }
23933               
23934                 
23935                 
23936                 
23937                 
23938                 var ah = h - this.wrap.getFrameWidth('tb') - tbh;// this.tb.el.getHeight();
23939                 ah -= 5; // knock a few pixes off for look..
23940                 this.inputEl().setHeight(this.adjustWidth('textarea', ah));
23941                 var eh = ah;
23942             }
23943         }
23944         Roo.log('onResize:' + [w,h,ew,eh].join(',') );
23945         this.editorcore.onResize(ew,eh);
23946         
23947     },
23948
23949     /**
23950      * Toggles the editor between standard and source edit mode.
23951      * @param {Boolean} sourceEdit (optional) True for source edit, false for standard
23952      */
23953     toggleSourceEdit : function(sourceEditMode)
23954     {
23955         this.editorcore.toggleSourceEdit(sourceEditMode);
23956         
23957         if(this.editorcore.sourceEditMode){
23958             Roo.log('editor - showing textarea');
23959             
23960 //            Roo.log('in');
23961 //            Roo.log(this.syncValue());
23962             this.syncValue();
23963             this.inputEl().removeClass(['hide', 'x-hidden']);
23964             this.inputEl().dom.removeAttribute('tabIndex');
23965             this.inputEl().focus();
23966         }else{
23967             Roo.log('editor - hiding textarea');
23968 //            Roo.log('out')
23969 //            Roo.log(this.pushValue()); 
23970             this.pushValue();
23971             
23972             this.inputEl().addClass(['hide', 'x-hidden']);
23973             this.inputEl().dom.setAttribute('tabIndex', -1);
23974             //this.deferFocus();
23975         }
23976          
23977         if(this.resizable){
23978             this.setSize(this.wrap.getSize());
23979         }
23980         
23981         this.fireEvent('editmodechange', this, this.editorcore.sourceEditMode);
23982     },
23983  
23984     // private (for BoxComponent)
23985     adjustSize : Roo.BoxComponent.prototype.adjustSize,
23986
23987     // private (for BoxComponent)
23988     getResizeEl : function(){
23989         return this.wrap;
23990     },
23991
23992     // private (for BoxComponent)
23993     getPositionEl : function(){
23994         return this.wrap;
23995     },
23996
23997     // private
23998     initEvents : function(){
23999         this.originalValue = this.getValue();
24000     },
24001
24002 //    /**
24003 //     * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
24004 //     * @method
24005 //     */
24006 //    markInvalid : Roo.emptyFn,
24007 //    /**
24008 //     * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
24009 //     * @method
24010 //     */
24011 //    clearInvalid : Roo.emptyFn,
24012
24013     setValue : function(v){
24014         Roo.bootstrap.HtmlEditor.superclass.setValue.call(this, v);
24015         this.editorcore.pushValue();
24016     },
24017
24018      
24019     // private
24020     deferFocus : function(){
24021         this.focus.defer(10, this);
24022     },
24023
24024     // doc'ed in Field
24025     focus : function(){
24026         this.editorcore.focus();
24027         
24028     },
24029       
24030
24031     // private
24032     onDestroy : function(){
24033         
24034         
24035         
24036         if(this.rendered){
24037             
24038             for (var i =0; i < this.toolbars.length;i++) {
24039                 // fixme - ask toolbars for heights?
24040                 this.toolbars[i].onDestroy();
24041             }
24042             
24043             this.wrap.dom.innerHTML = '';
24044             this.wrap.remove();
24045         }
24046     },
24047
24048     // private
24049     onFirstFocus : function(){
24050         //Roo.log("onFirstFocus");
24051         this.editorcore.onFirstFocus();
24052          for (var i =0; i < this.toolbars.length;i++) {
24053             this.toolbars[i].onFirstFocus();
24054         }
24055         
24056     },
24057     
24058     // private
24059     syncValue : function()
24060     {   
24061         this.editorcore.syncValue();
24062     },
24063     
24064     pushValue : function()
24065     {   
24066         this.editorcore.pushValue();
24067     }
24068      
24069     
24070     // hide stuff that is not compatible
24071     /**
24072      * @event blur
24073      * @hide
24074      */
24075     /**
24076      * @event change
24077      * @hide
24078      */
24079     /**
24080      * @event focus
24081      * @hide
24082      */
24083     /**
24084      * @event specialkey
24085      * @hide
24086      */
24087     /**
24088      * @cfg {String} fieldClass @hide
24089      */
24090     /**
24091      * @cfg {String} focusClass @hide
24092      */
24093     /**
24094      * @cfg {String} autoCreate @hide
24095      */
24096     /**
24097      * @cfg {String} inputType @hide
24098      */
24099      
24100     /**
24101      * @cfg {String} invalidText @hide
24102      */
24103     /**
24104      * @cfg {String} msgFx @hide
24105      */
24106     /**
24107      * @cfg {String} validateOnBlur @hide
24108      */
24109 });
24110  
24111     
24112    
24113    
24114    
24115       
24116 Roo.namespace('Roo.bootstrap.htmleditor');
24117 /**
24118  * @class Roo.bootstrap.HtmlEditorToolbar1
24119  * Basic Toolbar
24120  * 
24121  * @example
24122  * Usage:
24123  *
24124  new Roo.bootstrap.HtmlEditor({
24125     ....
24126     toolbars : [
24127         new Roo.bootstrap.HtmlEditorToolbar1({
24128             disable : { fonts: 1 , format: 1, ..., ... , ...],
24129             btns : [ .... ]
24130         })
24131     }
24132      
24133  * 
24134  * @cfg {Object} disable List of elements to disable..
24135  * @cfg {Array} btns List of additional buttons.
24136  * 
24137  * 
24138  * NEEDS Extra CSS? 
24139  * .x-html-editor-tb .x-edit-none .x-btn-text { background: none; }
24140  */
24141  
24142 Roo.bootstrap.htmleditor.ToolbarStandard = function(config)
24143 {
24144     
24145     Roo.apply(this, config);
24146     
24147     // default disabled, based on 'good practice'..
24148     this.disable = this.disable || {};
24149     Roo.applyIf(this.disable, {
24150         fontSize : true,
24151         colors : true,
24152         specialElements : true
24153     });
24154     Roo.bootstrap.htmleditor.ToolbarStandard.superclass.constructor.call(this, config);
24155     
24156     this.editor = config.editor;
24157     this.editorcore = config.editor.editorcore;
24158     
24159     this.buttons   = new Roo.util.MixedCollection(false, function(o) { return o.cmd; });
24160     
24161     //Roo.form.HtmlEditorToolbar1.superclass.constructor.call(this, editor.wrap.dom.firstChild, [], config);
24162     // dont call parent... till later.
24163 }
24164 Roo.extend(Roo.bootstrap.htmleditor.ToolbarStandard, Roo.bootstrap.NavSimplebar,  {
24165      
24166     bar : true,
24167     
24168     editor : false,
24169     editorcore : false,
24170     
24171     
24172     formats : [
24173         "p" ,  
24174         "h1","h2","h3","h4","h5","h6", 
24175         "pre", "code", 
24176         "abbr", "acronym", "address", "cite", "samp", "var",
24177         'div','span'
24178     ],
24179     
24180     onRender : function(ct, position)
24181     {
24182        // Roo.log("Call onRender: " + this.xtype);
24183         
24184        Roo.bootstrap.htmleditor.ToolbarStandard.superclass.onRender.call(this, ct, position);
24185        Roo.log(this.el);
24186        this.el.dom.style.marginBottom = '0';
24187        var _this = this;
24188        var editorcore = this.editorcore;
24189        var editor= this.editor;
24190        
24191        var children = [];
24192        var btn = function(id,cmd , toggle, handler, html){
24193        
24194             var  event = toggle ? 'toggle' : 'click';
24195        
24196             var a = {
24197                 size : 'sm',
24198                 xtype: 'Button',
24199                 xns: Roo.bootstrap,
24200                 //glyphicon : id,
24201                 fa: id,
24202                 cmd : id || cmd,
24203                 enableToggle:toggle !== false,
24204                 html : html || '',
24205                 pressed : toggle ? false : null,
24206                 listeners : {}
24207             };
24208             a.listeners[toggle ? 'toggle' : 'click'] = function() {
24209                 handler ? handler.call(_this,this) :_this.onBtnClick.call(_this, cmd ||  id);
24210             };
24211             children.push(a);
24212             return a;
24213        }
24214        
24215     //    var cb_box = function...
24216         
24217         var style = {
24218                 xtype: 'Button',
24219                 size : 'sm',
24220                 xns: Roo.bootstrap,
24221                 fa : 'font',
24222                 //html : 'submit'
24223                 menu : {
24224                     xtype: 'Menu',
24225                     xns: Roo.bootstrap,
24226                     items:  []
24227                 }
24228         };
24229         Roo.each(this.formats, function(f) {
24230             style.menu.items.push({
24231                 xtype :'MenuItem',
24232                 xns: Roo.bootstrap,
24233                 html : '<'+ f+' style="margin:2px">'+f +'</'+ f+'>',
24234                 tagname : f,
24235                 listeners : {
24236                     click : function()
24237                     {
24238                         editorcore.insertTag(this.tagname);
24239                         editor.focus();
24240                     }
24241                 }
24242                 
24243             });
24244         });
24245         children.push(style);   
24246         
24247         btn('bold',false,true);
24248         btn('italic',false,true);
24249         btn('align-left', 'justifyleft',true);
24250         btn('align-center', 'justifycenter',true);
24251         btn('align-right' , 'justifyright',true);
24252         btn('link', false, false, function(btn) {
24253             //Roo.log("create link?");
24254             var url = prompt(this.createLinkText, this.defaultLinkValue);
24255             if(url && url != 'http:/'+'/'){
24256                 this.editorcore.relayCmd('createlink', url);
24257             }
24258         }),
24259         btn('list','insertunorderedlist',true);
24260         btn('pencil', false,true, function(btn){
24261                 Roo.log(this);
24262                 this.toggleSourceEdit(btn.pressed);
24263         });
24264         
24265         if (this.editor.btns.length > 0) {
24266             for (var i = 0; i<this.editor.btns.length; i++) {
24267                 children.push(this.editor.btns[i]);
24268             }
24269         }
24270         
24271         /*
24272         var cog = {
24273                 xtype: 'Button',
24274                 size : 'sm',
24275                 xns: Roo.bootstrap,
24276                 glyphicon : 'cog',
24277                 //html : 'submit'
24278                 menu : {
24279                     xtype: 'Menu',
24280                     xns: Roo.bootstrap,
24281                     items:  []
24282                 }
24283         };
24284         
24285         cog.menu.items.push({
24286             xtype :'MenuItem',
24287             xns: Roo.bootstrap,
24288             html : Clean styles,
24289             tagname : f,
24290             listeners : {
24291                 click : function()
24292                 {
24293                     editorcore.insertTag(this.tagname);
24294                     editor.focus();
24295                 }
24296             }
24297             
24298         });
24299        */
24300         
24301          
24302        this.xtype = 'NavSimplebar';
24303         
24304         for(var i=0;i< children.length;i++) {
24305             
24306             this.buttons.add(this.addxtypeChild(children[i]));
24307             
24308         }
24309         
24310         editor.on('editorevent', this.updateToolbar, this);
24311     },
24312     onBtnClick : function(id)
24313     {
24314        this.editorcore.relayCmd(id);
24315        this.editorcore.focus();
24316     },
24317     
24318     /**
24319      * Protected method that will not generally be called directly. It triggers
24320      * a toolbar update by reading the markup state of the current selection in the editor.
24321      */
24322     updateToolbar: function(){
24323
24324         if(!this.editorcore.activated){
24325             this.editor.onFirstFocus(); // is this neeed?
24326             return;
24327         }
24328
24329         var btns = this.buttons; 
24330         var doc = this.editorcore.doc;
24331         btns.get('bold').setActive(doc.queryCommandState('bold'));
24332         btns.get('italic').setActive(doc.queryCommandState('italic'));
24333         //btns.get('underline').setActive(doc.queryCommandState('underline'));
24334         
24335         btns.get('align-left').setActive(doc.queryCommandState('justifyleft'));
24336         btns.get('align-center').setActive(doc.queryCommandState('justifycenter'));
24337         btns.get('align-right').setActive(doc.queryCommandState('justifyright'));
24338         
24339         //btns[frameId + '-insertorderedlist').setActive(doc.queryCommandState('insertorderedlist'));
24340         btns.get('list').setActive(doc.queryCommandState('insertunorderedlist'));
24341          /*
24342         
24343         var ans = this.editorcore.getAllAncestors();
24344         if (this.formatCombo) {
24345             
24346             
24347             var store = this.formatCombo.store;
24348             this.formatCombo.setValue("");
24349             for (var i =0; i < ans.length;i++) {
24350                 if (ans[i] && store.query('tag',ans[i].tagName.toLowerCase(), false).length) {
24351                     // select it..
24352                     this.formatCombo.setValue(ans[i].tagName.toLowerCase());
24353                     break;
24354                 }
24355             }
24356         }
24357         
24358         
24359         
24360         // hides menus... - so this cant be on a menu...
24361         Roo.bootstrap.MenuMgr.hideAll();
24362         */
24363         Roo.bootstrap.MenuMgr.hideAll();
24364         //this.editorsyncValue();
24365     },
24366     onFirstFocus: function() {
24367         this.buttons.each(function(item){
24368            item.enable();
24369         });
24370     },
24371     toggleSourceEdit : function(sourceEditMode){
24372         
24373           
24374         if(sourceEditMode){
24375             Roo.log("disabling buttons");
24376            this.buttons.each( function(item){
24377                 if(item.cmd != 'pencil'){
24378                     item.disable();
24379                 }
24380             });
24381           
24382         }else{
24383             Roo.log("enabling buttons");
24384             if(this.editorcore.initialized){
24385                 this.buttons.each( function(item){
24386                     item.enable();
24387                 });
24388             }
24389             
24390         }
24391         Roo.log("calling toggole on editor");
24392         // tell the editor that it's been pressed..
24393         this.editor.toggleSourceEdit(sourceEditMode);
24394        
24395     }
24396 });
24397
24398
24399
24400
24401
24402 /**
24403  * @class Roo.bootstrap.Table.AbstractSelectionModel
24404  * @extends Roo.util.Observable
24405  * Abstract base class for grid SelectionModels.  It provides the interface that should be
24406  * implemented by descendant classes.  This class should not be directly instantiated.
24407  * @constructor
24408  */
24409 Roo.bootstrap.Table.AbstractSelectionModel = function(){
24410     this.locked = false;
24411     Roo.bootstrap.Table.AbstractSelectionModel.superclass.constructor.call(this);
24412 };
24413
24414
24415 Roo.extend(Roo.bootstrap.Table.AbstractSelectionModel, Roo.util.Observable,  {
24416     /** @ignore Called by the grid automatically. Do not call directly. */
24417     init : function(grid){
24418         this.grid = grid;
24419         this.initEvents();
24420     },
24421
24422     /**
24423      * Locks the selections.
24424      */
24425     lock : function(){
24426         this.locked = true;
24427     },
24428
24429     /**
24430      * Unlocks the selections.
24431      */
24432     unlock : function(){
24433         this.locked = false;
24434     },
24435
24436     /**
24437      * Returns true if the selections are locked.
24438      * @return {Boolean}
24439      */
24440     isLocked : function(){
24441         return this.locked;
24442     }
24443 });
24444 /**
24445  * @extends Roo.bootstrap.Table.AbstractSelectionModel
24446  * @class Roo.bootstrap.Table.RowSelectionModel
24447  * The default SelectionModel used by {@link Roo.bootstrap.Table}.
24448  * It supports multiple selections and keyboard selection/navigation. 
24449  * @constructor
24450  * @param {Object} config
24451  */
24452
24453 Roo.bootstrap.Table.RowSelectionModel = function(config){
24454     Roo.apply(this, config);
24455     this.selections = new Roo.util.MixedCollection(false, function(o){
24456         return o.id;
24457     });
24458
24459     this.last = false;
24460     this.lastActive = false;
24461
24462     this.addEvents({
24463         /**
24464              * @event selectionchange
24465              * Fires when the selection changes
24466              * @param {SelectionModel} this
24467              */
24468             "selectionchange" : true,
24469         /**
24470              * @event afterselectionchange
24471              * Fires after the selection changes (eg. by key press or clicking)
24472              * @param {SelectionModel} this
24473              */
24474             "afterselectionchange" : true,
24475         /**
24476              * @event beforerowselect
24477              * Fires when a row is selected being selected, return false to cancel.
24478              * @param {SelectionModel} this
24479              * @param {Number} rowIndex The selected index
24480              * @param {Boolean} keepExisting False if other selections will be cleared
24481              */
24482             "beforerowselect" : true,
24483         /**
24484              * @event rowselect
24485              * Fires when a row is selected.
24486              * @param {SelectionModel} this
24487              * @param {Number} rowIndex The selected index
24488              * @param {Roo.data.Record} r The record
24489              */
24490             "rowselect" : true,
24491         /**
24492              * @event rowdeselect
24493              * Fires when a row is deselected.
24494              * @param {SelectionModel} this
24495              * @param {Number} rowIndex The selected index
24496              */
24497         "rowdeselect" : true
24498     });
24499     Roo.bootstrap.Table.RowSelectionModel.superclass.constructor.call(this);
24500     this.locked = false;
24501  };
24502
24503 Roo.extend(Roo.bootstrap.Table.RowSelectionModel, Roo.bootstrap.Table.AbstractSelectionModel,  {
24504     /**
24505      * @cfg {Boolean} singleSelect
24506      * True to allow selection of only one row at a time (defaults to false)
24507      */
24508     singleSelect : false,
24509
24510     // private
24511     initEvents : function()
24512     {
24513
24514         //if(!this.grid.enableDragDrop && !this.grid.enableDrag){
24515         //    this.growclickrid.on("mousedown", this.handleMouseDown, this);
24516         //}else{ // allow click to work like normal
24517          //   this.grid.on("rowclick", this.handleDragableRowClick, this);
24518         //}
24519         //this.grid.on("rowdblclick", this.handleMouseDBClick, this);
24520         this.grid.on("rowclick", this.handleMouseDown, this);
24521         
24522         this.rowNav = new Roo.KeyNav(this.grid.getGridEl(), {
24523             "up" : function(e){
24524                 if(!e.shiftKey){
24525                     this.selectPrevious(e.shiftKey);
24526                 }else if(this.last !== false && this.lastActive !== false){
24527                     var last = this.last;
24528                     this.selectRange(this.last,  this.lastActive-1);
24529                     this.grid.getView().focusRow(this.lastActive);
24530                     if(last !== false){
24531                         this.last = last;
24532                     }
24533                 }else{
24534                     this.selectFirstRow();
24535                 }
24536                 this.fireEvent("afterselectionchange", this);
24537             },
24538             "down" : function(e){
24539                 if(!e.shiftKey){
24540                     this.selectNext(e.shiftKey);
24541                 }else if(this.last !== false && this.lastActive !== false){
24542                     var last = this.last;
24543                     this.selectRange(this.last,  this.lastActive+1);
24544                     this.grid.getView().focusRow(this.lastActive);
24545                     if(last !== false){
24546                         this.last = last;
24547                     }
24548                 }else{
24549                     this.selectFirstRow();
24550                 }
24551                 this.fireEvent("afterselectionchange", this);
24552             },
24553             scope: this
24554         });
24555         this.grid.store.on('load', function(){
24556             this.selections.clear();
24557         },this);
24558         /*
24559         var view = this.grid.view;
24560         view.on("refresh", this.onRefresh, this);
24561         view.on("rowupdated", this.onRowUpdated, this);
24562         view.on("rowremoved", this.onRemove, this);
24563         */
24564     },
24565
24566     // private
24567     onRefresh : function()
24568     {
24569         var ds = this.grid.store, i, v = this.grid.view;
24570         var s = this.selections;
24571         s.each(function(r){
24572             if((i = ds.indexOfId(r.id)) != -1){
24573                 v.onRowSelect(i);
24574             }else{
24575                 s.remove(r);
24576             }
24577         });
24578     },
24579
24580     // private
24581     onRemove : function(v, index, r){
24582         this.selections.remove(r);
24583     },
24584
24585     // private
24586     onRowUpdated : function(v, index, r){
24587         if(this.isSelected(r)){
24588             v.onRowSelect(index);
24589         }
24590     },
24591
24592     /**
24593      * Select records.
24594      * @param {Array} records The records to select
24595      * @param {Boolean} keepExisting (optional) True to keep existing selections
24596      */
24597     selectRecords : function(records, keepExisting)
24598     {
24599         if(!keepExisting){
24600             this.clearSelections();
24601         }
24602             var ds = this.grid.store;
24603         for(var i = 0, len = records.length; i < len; i++){
24604             this.selectRow(ds.indexOf(records[i]), true);
24605         }
24606     },
24607
24608     /**
24609      * Gets the number of selected rows.
24610      * @return {Number}
24611      */
24612     getCount : function(){
24613         return this.selections.length;
24614     },
24615
24616     /**
24617      * Selects the first row in the grid.
24618      */
24619     selectFirstRow : function(){
24620         this.selectRow(0);
24621     },
24622
24623     /**
24624      * Select the last row.
24625      * @param {Boolean} keepExisting (optional) True to keep existing selections
24626      */
24627     selectLastRow : function(keepExisting){
24628         //this.selectRow(this.grid.dataSource.getCount() - 1, keepExisting);
24629         this.selectRow(this.grid.store.getCount() - 1, keepExisting);
24630     },
24631
24632     /**
24633      * Selects the row immediately following the last selected row.
24634      * @param {Boolean} keepExisting (optional) True to keep existing selections
24635      */
24636     selectNext : function(keepExisting)
24637     {
24638             if(this.last !== false && (this.last+1) < this.grid.store.getCount()){
24639             this.selectRow(this.last+1, keepExisting);
24640             this.grid.getView().focusRow(this.last);
24641         }
24642     },
24643
24644     /**
24645      * Selects the row that precedes the last selected row.
24646      * @param {Boolean} keepExisting (optional) True to keep existing selections
24647      */
24648     selectPrevious : function(keepExisting){
24649         if(this.last){
24650             this.selectRow(this.last-1, keepExisting);
24651             this.grid.getView().focusRow(this.last);
24652         }
24653     },
24654
24655     /**
24656      * Returns the selected records
24657      * @return {Array} Array of selected records
24658      */
24659     getSelections : function(){
24660         return [].concat(this.selections.items);
24661     },
24662
24663     /**
24664      * Returns the first selected record.
24665      * @return {Record}
24666      */
24667     getSelected : function(){
24668         return this.selections.itemAt(0);
24669     },
24670
24671
24672     /**
24673      * Clears all selections.
24674      */
24675     clearSelections : function(fast)
24676     {
24677         if(this.locked) {
24678             return;
24679         }
24680         if(fast !== true){
24681                 var ds = this.grid.store;
24682             var s = this.selections;
24683             s.each(function(r){
24684                 this.deselectRow(ds.indexOfId(r.id));
24685             }, this);
24686             s.clear();
24687         }else{
24688             this.selections.clear();
24689         }
24690         this.last = false;
24691     },
24692
24693
24694     /**
24695      * Selects all rows.
24696      */
24697     selectAll : function(){
24698         if(this.locked) {
24699             return;
24700         }
24701         this.selections.clear();
24702         for(var i = 0, len = this.grid.store.getCount(); i < len; i++){
24703             this.selectRow(i, true);
24704         }
24705     },
24706
24707     /**
24708      * Returns True if there is a selection.
24709      * @return {Boolean}
24710      */
24711     hasSelection : function(){
24712         return this.selections.length > 0;
24713     },
24714
24715     /**
24716      * Returns True if the specified row is selected.
24717      * @param {Number/Record} record The record or index of the record to check
24718      * @return {Boolean}
24719      */
24720     isSelected : function(index){
24721             var r = typeof index == "number" ? this.grid.store.getAt(index) : index;
24722         return (r && this.selections.key(r.id) ? true : false);
24723     },
24724
24725     /**
24726      * Returns True if the specified record id is selected.
24727      * @param {String} id The id of record to check
24728      * @return {Boolean}
24729      */
24730     isIdSelected : function(id){
24731         return (this.selections.key(id) ? true : false);
24732     },
24733
24734
24735     // private
24736     handleMouseDBClick : function(e, t){
24737         
24738     },
24739     // private
24740     handleMouseDown : function(e, t)
24741     {
24742             var rowIndex = this.grid.headerShow  ? t.dom.rowIndex - 1 : t.dom.rowIndex ; // first row is header???
24743         if(this.isLocked() || rowIndex < 0 ){
24744             return;
24745         };
24746         if(e.shiftKey && this.last !== false){
24747             var last = this.last;
24748             this.selectRange(last, rowIndex, e.ctrlKey);
24749             this.last = last; // reset the last
24750             t.focus();
24751     
24752         }else{
24753             var isSelected = this.isSelected(rowIndex);
24754             //Roo.log("select row:" + rowIndex);
24755             if(isSelected){
24756                 this.deselectRow(rowIndex);
24757             } else {
24758                         this.selectRow(rowIndex, true);
24759             }
24760     
24761             /*
24762                 if(e.button !== 0 && isSelected){
24763                 alert('rowIndex 2: ' + rowIndex);
24764                     view.focusRow(rowIndex);
24765                 }else if(e.ctrlKey && isSelected){
24766                     this.deselectRow(rowIndex);
24767                 }else if(!isSelected){
24768                     this.selectRow(rowIndex, e.button === 0 && (e.ctrlKey || e.shiftKey));
24769                     view.focusRow(rowIndex);
24770                 }
24771             */
24772         }
24773         this.fireEvent("afterselectionchange", this);
24774     },
24775     // private
24776     handleDragableRowClick :  function(grid, rowIndex, e) 
24777     {
24778         if(e.button === 0 && !e.shiftKey && !e.ctrlKey) {
24779             this.selectRow(rowIndex, false);
24780             grid.view.focusRow(rowIndex);
24781              this.fireEvent("afterselectionchange", this);
24782         }
24783     },
24784     
24785     /**
24786      * Selects multiple rows.
24787      * @param {Array} rows Array of the indexes of the row to select
24788      * @param {Boolean} keepExisting (optional) True to keep existing selections
24789      */
24790     selectRows : function(rows, keepExisting){
24791         if(!keepExisting){
24792             this.clearSelections();
24793         }
24794         for(var i = 0, len = rows.length; i < len; i++){
24795             this.selectRow(rows[i], true);
24796         }
24797     },
24798
24799     /**
24800      * Selects a range of rows. All rows in between startRow and endRow are also selected.
24801      * @param {Number} startRow The index of the first row in the range
24802      * @param {Number} endRow The index of the last row in the range
24803      * @param {Boolean} keepExisting (optional) True to retain existing selections
24804      */
24805     selectRange : function(startRow, endRow, keepExisting){
24806         if(this.locked) {
24807             return;
24808         }
24809         if(!keepExisting){
24810             this.clearSelections();
24811         }
24812         if(startRow <= endRow){
24813             for(var i = startRow; i <= endRow; i++){
24814                 this.selectRow(i, true);
24815             }
24816         }else{
24817             for(var i = startRow; i >= endRow; i--){
24818                 this.selectRow(i, true);
24819             }
24820         }
24821     },
24822
24823     /**
24824      * Deselects a range of rows. All rows in between startRow and endRow are also deselected.
24825      * @param {Number} startRow The index of the first row in the range
24826      * @param {Number} endRow The index of the last row in the range
24827      */
24828     deselectRange : function(startRow, endRow, preventViewNotify){
24829         if(this.locked) {
24830             return;
24831         }
24832         for(var i = startRow; i <= endRow; i++){
24833             this.deselectRow(i, preventViewNotify);
24834         }
24835     },
24836
24837     /**
24838      * Selects a row.
24839      * @param {Number} row The index of the row to select
24840      * @param {Boolean} keepExisting (optional) True to keep existing selections
24841      */
24842     selectRow : function(index, keepExisting, preventViewNotify)
24843     {
24844             if(this.locked || (index < 0 || index > this.grid.store.getCount())) {
24845             return;
24846         }
24847         if(this.fireEvent("beforerowselect", this, index, keepExisting) !== false){
24848             if(!keepExisting || this.singleSelect){
24849                 this.clearSelections();
24850             }
24851             
24852             var r = this.grid.store.getAt(index);
24853             //console.log('selectRow - record id :' + r.id);
24854             
24855             this.selections.add(r);
24856             this.last = this.lastActive = index;
24857             if(!preventViewNotify){
24858                 var proxy = new Roo.Element(
24859                                 this.grid.getRowDom(index)
24860                 );
24861                 proxy.addClass('bg-info info');
24862             }
24863             this.fireEvent("rowselect", this, index, r);
24864             this.fireEvent("selectionchange", this);
24865         }
24866     },
24867
24868     /**
24869      * Deselects a row.
24870      * @param {Number} row The index of the row to deselect
24871      */
24872     deselectRow : function(index, preventViewNotify)
24873     {
24874         if(this.locked) {
24875             return;
24876         }
24877         if(this.last == index){
24878             this.last = false;
24879         }
24880         if(this.lastActive == index){
24881             this.lastActive = false;
24882         }
24883         
24884         var r = this.grid.store.getAt(index);
24885         if (!r) {
24886             return;
24887         }
24888         
24889         this.selections.remove(r);
24890         //.console.log('deselectRow - record id :' + r.id);
24891         if(!preventViewNotify){
24892         
24893             var proxy = new Roo.Element(
24894                 this.grid.getRowDom(index)
24895             );
24896             proxy.removeClass('bg-info info');
24897         }
24898         this.fireEvent("rowdeselect", this, index);
24899         this.fireEvent("selectionchange", this);
24900     },
24901
24902     // private
24903     restoreLast : function(){
24904         if(this._last){
24905             this.last = this._last;
24906         }
24907     },
24908
24909     // private
24910     acceptsNav : function(row, col, cm){
24911         return !cm.isHidden(col) && cm.isCellEditable(col, row);
24912     },
24913
24914     // private
24915     onEditorKey : function(field, e){
24916         var k = e.getKey(), newCell, g = this.grid, ed = g.activeEditor;
24917         if(k == e.TAB){
24918             e.stopEvent();
24919             ed.completeEdit();
24920             if(e.shiftKey){
24921                 newCell = g.walkCells(ed.row, ed.col-1, -1, this.acceptsNav, this);
24922             }else{
24923                 newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
24924             }
24925         }else if(k == e.ENTER && !e.ctrlKey){
24926             e.stopEvent();
24927             ed.completeEdit();
24928             if(e.shiftKey){
24929                 newCell = g.walkCells(ed.row-1, ed.col, -1, this.acceptsNav, this);
24930             }else{
24931                 newCell = g.walkCells(ed.row+1, ed.col, 1, this.acceptsNav, this);
24932             }
24933         }else if(k == e.ESC){
24934             ed.cancelEdit();
24935         }
24936         if(newCell){
24937             g.startEditing(newCell[0], newCell[1]);
24938         }
24939     }
24940 });
24941 /*
24942  * Based on:
24943  * Ext JS Library 1.1.1
24944  * Copyright(c) 2006-2007, Ext JS, LLC.
24945  *
24946  * Originally Released Under LGPL - original licence link has changed is not relivant.
24947  *
24948  * Fork - LGPL
24949  * <script type="text/javascript">
24950  */
24951  
24952 /**
24953  * @class Roo.bootstrap.PagingToolbar
24954  * @extends Roo.bootstrap.NavSimplebar
24955  * A specialized toolbar that is bound to a {@link Roo.data.Store} and provides automatic paging controls.
24956  * @constructor
24957  * Create a new PagingToolbar
24958  * @param {Object} config The config object
24959  * @param {Roo.data.Store} store
24960  */
24961 Roo.bootstrap.PagingToolbar = function(config)
24962 {
24963     // old args format still supported... - xtype is prefered..
24964         // created from xtype...
24965     
24966     this.ds = config.dataSource;
24967     
24968     if (config.store && !this.ds) {
24969         this.store= Roo.factory(config.store, Roo.data);
24970         this.ds = this.store;
24971         this.ds.xmodule = this.xmodule || false;
24972     }
24973     
24974     this.toolbarItems = [];
24975     if (config.items) {
24976         this.toolbarItems = config.items;
24977     }
24978     
24979     Roo.bootstrap.PagingToolbar.superclass.constructor.call(this, config);
24980     
24981     this.cursor = 0;
24982     
24983     if (this.ds) { 
24984         this.bind(this.ds);
24985     }
24986     
24987     if (Roo.bootstrap.version == 4) {
24988         this.navgroup = new Roo.bootstrap.ButtonGroup({ cls: 'pagination' });
24989     } else {
24990         this.navgroup = new Roo.bootstrap.NavGroup({ cls: 'pagination' });
24991     }
24992     
24993 };
24994
24995 Roo.extend(Roo.bootstrap.PagingToolbar, Roo.bootstrap.NavSimplebar, {
24996     /**
24997      * @cfg {Roo.data.Store} dataSource
24998      * The underlying data store providing the paged data
24999      */
25000     /**
25001      * @cfg {String/HTMLElement/Element} container
25002      * container The id or element that will contain the toolbar
25003      */
25004     /**
25005      * @cfg {Boolean} displayInfo
25006      * True to display the displayMsg (defaults to false)
25007      */
25008     /**
25009      * @cfg {Number} pageSize
25010      * The number of records to display per page (defaults to 20)
25011      */
25012     pageSize: 20,
25013     /**
25014      * @cfg {String} displayMsg
25015      * The paging status message to display (defaults to "Displaying {start} - {end} of {total}")
25016      */
25017     displayMsg : 'Displaying {0} - {1} of {2}',
25018     /**
25019      * @cfg {String} emptyMsg
25020      * The message to display when no records are found (defaults to "No data to display")
25021      */
25022     emptyMsg : 'No data to display',
25023     /**
25024      * Customizable piece of the default paging text (defaults to "Page")
25025      * @type String
25026      */
25027     beforePageText : "Page",
25028     /**
25029      * Customizable piece of the default paging text (defaults to "of %0")
25030      * @type String
25031      */
25032     afterPageText : "of {0}",
25033     /**
25034      * Customizable piece of the default paging text (defaults to "First Page")
25035      * @type String
25036      */
25037     firstText : "First Page",
25038     /**
25039      * Customizable piece of the default paging text (defaults to "Previous Page")
25040      * @type String
25041      */
25042     prevText : "Previous Page",
25043     /**
25044      * Customizable piece of the default paging text (defaults to "Next Page")
25045      * @type String
25046      */
25047     nextText : "Next Page",
25048     /**
25049      * Customizable piece of the default paging text (defaults to "Last Page")
25050      * @type String
25051      */
25052     lastText : "Last Page",
25053     /**
25054      * Customizable piece of the default paging text (defaults to "Refresh")
25055      * @type String
25056      */
25057     refreshText : "Refresh",
25058
25059     buttons : false,
25060     // private
25061     onRender : function(ct, position) 
25062     {
25063         Roo.bootstrap.PagingToolbar.superclass.onRender.call(this, ct, position);
25064         this.navgroup.parentId = this.id;
25065         this.navgroup.onRender(this.el, null);
25066         // add the buttons to the navgroup
25067         
25068         if(this.displayInfo){
25069             this.el.select('ul.navbar-nav',true).first().createChild({cls:'x-paging-info'});
25070             this.displayEl = this.el.select('.x-paging-info', true).first();
25071 //            var navel = this.navgroup.addItem( { tagtype : 'span', html : '', cls : 'x-paging-info', preventDefault : true } );
25072 //            this.displayEl = navel.el.select('span',true).first();
25073         }
25074         
25075         var _this = this;
25076         
25077         if(this.buttons){
25078             Roo.each(_this.buttons, function(e){ // this might need to use render????
25079                Roo.factory(e).render(_this.el);
25080             });
25081         }
25082             
25083         Roo.each(_this.toolbarItems, function(e) {
25084             _this.navgroup.addItem(e);
25085         });
25086         
25087         
25088         this.first = this.navgroup.addItem({
25089             tooltip: this.firstText,
25090             cls: "prev btn-outline-secondary",
25091             html : ' <i class="fa fa-step-backward"></i>',
25092             disabled: true,
25093             preventDefault: true,
25094             listeners : { click : this.onClick.createDelegate(this, ["first"]) }
25095         });
25096         
25097         this.prev =  this.navgroup.addItem({
25098             tooltip: this.prevText,
25099             cls: "prev btn-outline-secondary",
25100             html : ' <i class="fa fa-backward"></i>',
25101             disabled: true,
25102             preventDefault: true,
25103             listeners : { click :  this.onClick.createDelegate(this, ["prev"]) }
25104         });
25105     //this.addSeparator();
25106         
25107         
25108         var field = this.navgroup.addItem( {
25109             tagtype : 'span',
25110             cls : 'x-paging-position  btn-outline-secondary',
25111              disabled: true,
25112             html : this.beforePageText  +
25113                 '<input type="text" size="3" value="1" class="x-grid-page-number">' +
25114                 '<span class="x-paging-after">' +  String.format(this.afterPageText, 1) + '</span>'
25115          } ); //?? escaped?
25116         
25117         this.field = field.el.select('input', true).first();
25118         this.field.on("keydown", this.onPagingKeydown, this);
25119         this.field.on("focus", function(){this.dom.select();});
25120     
25121     
25122         this.afterTextEl =  field.el.select('.x-paging-after',true).first();
25123         //this.field.setHeight(18);
25124         //this.addSeparator();
25125         this.next = this.navgroup.addItem({
25126             tooltip: this.nextText,
25127             cls: "next btn-outline-secondary",
25128             html : ' <i class="fa fa-forward"></i>',
25129             disabled: true,
25130             preventDefault: true,
25131             listeners : { click :  this.onClick.createDelegate(this, ["next"]) }
25132         });
25133         this.last = this.navgroup.addItem({
25134             tooltip: this.lastText,
25135             html : ' <i class="fa fa-step-forward"></i>',
25136             cls: "next btn-outline-secondary",
25137             disabled: true,
25138             preventDefault: true,
25139             listeners : { click :  this.onClick.createDelegate(this, ["last"]) }
25140         });
25141     //this.addSeparator();
25142         this.loading = this.navgroup.addItem({
25143             tooltip: this.refreshText,
25144             cls: "btn-outline-secondary",
25145             html : ' <i class="fa fa-refresh"></i>',
25146             preventDefault: true,
25147             listeners : { click : this.onClick.createDelegate(this, ["refresh"]) }
25148         });
25149         
25150     },
25151
25152     // private
25153     updateInfo : function(){
25154         if(this.displayEl){
25155             var count = (typeof(this.getCount) == 'undefined') ? this.ds.getCount() : this.getCount();
25156             var msg = count == 0 ?
25157                 this.emptyMsg :
25158                 String.format(
25159                     this.displayMsg,
25160                     this.cursor+1, this.cursor+count, this.ds.getTotalCount()    
25161                 );
25162             this.displayEl.update(msg);
25163         }
25164     },
25165
25166     // private
25167     onLoad : function(ds, r, o)
25168     {
25169         this.cursor = o.params.start ? o.params.start : 0;
25170         
25171         var d = this.getPageData(),
25172             ap = d.activePage,
25173             ps = d.pages;
25174         
25175         
25176         this.afterTextEl.dom.innerHTML = String.format(this.afterPageText, d.pages);
25177         this.field.dom.value = ap;
25178         this.first.setDisabled(ap == 1);
25179         this.prev.setDisabled(ap == 1);
25180         this.next.setDisabled(ap == ps);
25181         this.last.setDisabled(ap == ps);
25182         this.loading.enable();
25183         this.updateInfo();
25184     },
25185
25186     // private
25187     getPageData : function(){
25188         var total = this.ds.getTotalCount();
25189         return {
25190             total : total,
25191             activePage : Math.ceil((this.cursor+this.pageSize)/this.pageSize),
25192             pages :  total < this.pageSize ? 1 : Math.ceil(total/this.pageSize)
25193         };
25194     },
25195
25196     // private
25197     onLoadError : function(){
25198         this.loading.enable();
25199     },
25200
25201     // private
25202     onPagingKeydown : function(e){
25203         var k = e.getKey();
25204         var d = this.getPageData();
25205         if(k == e.RETURN){
25206             var v = this.field.dom.value, pageNum;
25207             if(!v || isNaN(pageNum = parseInt(v, 10))){
25208                 this.field.dom.value = d.activePage;
25209                 return;
25210             }
25211             pageNum = Math.min(Math.max(1, pageNum), d.pages) - 1;
25212             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
25213             e.stopEvent();
25214         }
25215         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))
25216         {
25217           var pageNum = (k == e.HOME || (k == e.DOWN && e.ctrlKey) || (k == e.LEFT && e.ctrlKey) || (k == e.PAGEDOWN && e.ctrlKey)) ? 1 : d.pages;
25218           this.field.dom.value = pageNum;
25219           this.ds.load({params:{start: (pageNum - 1) * this.pageSize, limit: this.pageSize}});
25220           e.stopEvent();
25221         }
25222         else if(k == e.UP || k == e.RIGHT || k == e.PAGEUP || k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN)
25223         {
25224           var v = this.field.dom.value, pageNum; 
25225           var increment = (e.shiftKey) ? 10 : 1;
25226           if(k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN) {
25227                 increment *= -1;
25228           }
25229           if(!v || isNaN(pageNum = parseInt(v, 10))) {
25230             this.field.dom.value = d.activePage;
25231             return;
25232           }
25233           else if(parseInt(v, 10) + increment >= 1 & parseInt(v, 10) + increment <= d.pages)
25234           {
25235             this.field.dom.value = parseInt(v, 10) + increment;
25236             pageNum = Math.min(Math.max(1, pageNum + increment), d.pages) - 1;
25237             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
25238           }
25239           e.stopEvent();
25240         }
25241     },
25242
25243     // private
25244     beforeLoad : function(){
25245         if(this.loading){
25246             this.loading.disable();
25247         }
25248     },
25249
25250     // private
25251     onClick : function(which){
25252         
25253         var ds = this.ds;
25254         if (!ds) {
25255             return;
25256         }
25257         
25258         switch(which){
25259             case "first":
25260                 ds.load({params:{start: 0, limit: this.pageSize}});
25261             break;
25262             case "prev":
25263                 ds.load({params:{start: Math.max(0, this.cursor-this.pageSize), limit: this.pageSize}});
25264             break;
25265             case "next":
25266                 ds.load({params:{start: this.cursor+this.pageSize, limit: this.pageSize}});
25267             break;
25268             case "last":
25269                 var total = ds.getTotalCount();
25270                 var extra = total % this.pageSize;
25271                 var lastStart = extra ? (total - extra) : total-this.pageSize;
25272                 ds.load({params:{start: lastStart, limit: this.pageSize}});
25273             break;
25274             case "refresh":
25275                 ds.load({params:{start: this.cursor, limit: this.pageSize}});
25276             break;
25277         }
25278     },
25279
25280     /**
25281      * Unbinds the paging toolbar from the specified {@link Roo.data.Store}
25282      * @param {Roo.data.Store} store The data store to unbind
25283      */
25284     unbind : function(ds){
25285         ds.un("beforeload", this.beforeLoad, this);
25286         ds.un("load", this.onLoad, this);
25287         ds.un("loadexception", this.onLoadError, this);
25288         ds.un("remove", this.updateInfo, this);
25289         ds.un("add", this.updateInfo, this);
25290         this.ds = undefined;
25291     },
25292
25293     /**
25294      * Binds the paging toolbar to the specified {@link Roo.data.Store}
25295      * @param {Roo.data.Store} store The data store to bind
25296      */
25297     bind : function(ds){
25298         ds.on("beforeload", this.beforeLoad, this);
25299         ds.on("load", this.onLoad, this);
25300         ds.on("loadexception", this.onLoadError, this);
25301         ds.on("remove", this.updateInfo, this);
25302         ds.on("add", this.updateInfo, this);
25303         this.ds = ds;
25304     }
25305 });/*
25306  * - LGPL
25307  *
25308  * element
25309  * 
25310  */
25311
25312 /**
25313  * @class Roo.bootstrap.MessageBar
25314  * @extends Roo.bootstrap.Component
25315  * Bootstrap MessageBar class
25316  * @cfg {String} html contents of the MessageBar
25317  * @cfg {String} weight (info | success | warning | danger) default info
25318  * @cfg {String} beforeClass insert the bar before the given class
25319  * @cfg {Boolean} closable (true | false) default false
25320  * @cfg {Boolean} fixed (true | false) default false, fix the bar at the top
25321  * 
25322  * @constructor
25323  * Create a new Element
25324  * @param {Object} config The config object
25325  */
25326
25327 Roo.bootstrap.MessageBar = function(config){
25328     Roo.bootstrap.MessageBar.superclass.constructor.call(this, config);
25329 };
25330
25331 Roo.extend(Roo.bootstrap.MessageBar, Roo.bootstrap.Component,  {
25332     
25333     html: '',
25334     weight: 'info',
25335     closable: false,
25336     fixed: false,
25337     beforeClass: 'bootstrap-sticky-wrap',
25338     
25339     getAutoCreate : function(){
25340         
25341         var cfg = {
25342             tag: 'div',
25343             cls: 'alert alert-dismissable alert-' + this.weight,
25344             cn: [
25345                 {
25346                     tag: 'span',
25347                     cls: 'message',
25348                     html: this.html || ''
25349                 }
25350             ]
25351         };
25352         
25353         if(this.fixed){
25354             cfg.cls += ' alert-messages-fixed';
25355         }
25356         
25357         if(this.closable){
25358             cfg.cn.push({
25359                 tag: 'button',
25360                 cls: 'close',
25361                 html: 'x'
25362             });
25363         }
25364         
25365         return cfg;
25366     },
25367     
25368     onRender : function(ct, position)
25369     {
25370         Roo.bootstrap.Component.superclass.onRender.call(this, ct, position);
25371         
25372         if(!this.el){
25373             var cfg = Roo.apply({},  this.getAutoCreate());
25374             cfg.id = Roo.id();
25375             
25376             if (this.cls) {
25377                 cfg.cls += ' ' + this.cls;
25378             }
25379             if (this.style) {
25380                 cfg.style = this.style;
25381             }
25382             this.el = Roo.get(document.body).createChild(cfg, Roo.select('.'+this.beforeClass, true).first());
25383             
25384             this.el.setVisibilityMode(Roo.Element.DISPLAY);
25385         }
25386         
25387         this.el.select('>button.close').on('click', this.hide, this);
25388         
25389     },
25390     
25391     show : function()
25392     {
25393         if (!this.rendered) {
25394             this.render();
25395         }
25396         
25397         this.el.show();
25398         
25399         this.fireEvent('show', this);
25400         
25401     },
25402     
25403     hide : function()
25404     {
25405         if (!this.rendered) {
25406             this.render();
25407         }
25408         
25409         this.el.hide();
25410         
25411         this.fireEvent('hide', this);
25412     },
25413     
25414     update : function()
25415     {
25416 //        var e = this.el.dom.firstChild;
25417 //        
25418 //        if(this.closable){
25419 //            e = e.nextSibling;
25420 //        }
25421 //        
25422 //        e.data = this.html || '';
25423
25424         this.el.select('>.message', true).first().dom.innerHTML = this.html || '';
25425     }
25426    
25427 });
25428
25429  
25430
25431      /*
25432  * - LGPL
25433  *
25434  * Graph
25435  * 
25436  */
25437
25438
25439 /**
25440  * @class Roo.bootstrap.Graph
25441  * @extends Roo.bootstrap.Component
25442  * Bootstrap Graph class
25443 > Prameters
25444  -sm {number} sm 4
25445  -md {number} md 5
25446  @cfg {String} graphtype  bar | vbar | pie
25447  @cfg {number} g_x coodinator | centre x (pie)
25448  @cfg {number} g_y coodinator | centre y (pie)
25449  @cfg {number} g_r radius (pie)
25450  @cfg {number} g_height height of the chart (respected by all elements in the set)
25451  @cfg {number} g_width width of the chart (respected by all elements in the set)
25452  @cfg {Object} title The title of the chart
25453     
25454  -{Array}  values
25455  -opts (object) options for the chart 
25456      o {
25457      o type (string) type of endings of the bar. Default: 'square'. Other options are: 'round', 'sharp', 'soft'.
25458      o gutter (number)(string) default '20%' (WHAT DOES IT DO?)
25459      o vgutter (number)
25460      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.
25461      o stacked (boolean) whether or not to tread values as in a stacked bar chart
25462      o to
25463      o stretch (boolean)
25464      o }
25465  -opts (object) options for the pie
25466      o{
25467      o cut
25468      o startAngle (number)
25469      o endAngle (number)
25470      } 
25471  *
25472  * @constructor
25473  * Create a new Input
25474  * @param {Object} config The config object
25475  */
25476
25477 Roo.bootstrap.Graph = function(config){
25478     Roo.bootstrap.Graph.superclass.constructor.call(this, config);
25479     
25480     this.addEvents({
25481         // img events
25482         /**
25483          * @event click
25484          * The img click event for the img.
25485          * @param {Roo.EventObject} e
25486          */
25487         "click" : true
25488     });
25489 };
25490
25491 Roo.extend(Roo.bootstrap.Graph, Roo.bootstrap.Component,  {
25492     
25493     sm: 4,
25494     md: 5,
25495     graphtype: 'bar',
25496     g_height: 250,
25497     g_width: 400,
25498     g_x: 50,
25499     g_y: 50,
25500     g_r: 30,
25501     opts:{
25502         //g_colors: this.colors,
25503         g_type: 'soft',
25504         g_gutter: '20%'
25505
25506     },
25507     title : false,
25508
25509     getAutoCreate : function(){
25510         
25511         var cfg = {
25512             tag: 'div',
25513             html : null
25514         };
25515         
25516         
25517         return  cfg;
25518     },
25519
25520     onRender : function(ct,position){
25521         
25522         
25523         Roo.bootstrap.Graph.superclass.onRender.call(this,ct,position);
25524         
25525         if (typeof(Raphael) == 'undefined') {
25526             Roo.bootstrap.MessageBox.alert("Error","Raphael is not availabe");
25527             return;
25528         }
25529         
25530         this.raphael = Raphael(this.el.dom);
25531         
25532                     // data1 = [[55, 20, 13, 32, 5, 1, 2, 10], [10, 2, 1, 5, 32, 13, 20, 55], [12, 20, 30]],
25533                     // data2 = [[55, 20, 13, 32, 5, 1, 2, 10], [10, 2, 1, 5, 32, 13, 20, 55], [12, 20, 30]],
25534                     // data3 = [[55, 20, 13, 32, 5, 1, 2, 10], [10, 2, 1, 5, 32, 13, 20, 55], [12, 20, 30]],
25535                     // txtattr = { font: "12px 'Fontin Sans', Fontin-Sans, sans-serif" };
25536                 /*
25537                 r.text(160, 10, "Single Series Chart").attr(txtattr);
25538                 r.text(480, 10, "Multiline Series Chart").attr(txtattr);
25539                 r.text(160, 250, "Multiple Series Stacked Chart").attr(txtattr);
25540                 r.text(480, 250, 'Multiline Series Stacked Vertical Chart. Type "round"').attr(txtattr);
25541                 
25542                 r.barchart(10, 10, 300, 220, [[55, 20, 13, 32, 5, 1, 2, 10]], 0, {type: "sharp"});
25543                 r.barchart(330, 10, 300, 220, data1);
25544                 r.barchart(10, 250, 300, 220, data2, {stacked: true});
25545                 r.barchart(330, 250, 300, 220, data3, {stacked: true, type: "round"});
25546                 */
25547                 
25548                 // var xdata = [55, 20, 13, 32, 5, 1, 2, 10,5 , 10];
25549                 // r.barchart(30, 30, 560, 250,  xdata, {
25550                 //    labels : [55, 20, 13, 32, 5, 1, 2, 10,5 , 10],
25551                 //     axis : "0 0 1 1",
25552                 //     axisxlabels :  xdata
25553                 //     //yvalues : cols,
25554                    
25555                 // });
25556 //        var xdata = [55, 20, 13, 32, 5, 1, 2, 10,5 , 10];
25557 //        
25558 //        this.load(null,xdata,{
25559 //                axis : "0 0 1 1",
25560 //                axisxlabels :  xdata
25561 //                });
25562
25563     },
25564
25565     load : function(graphtype,xdata,opts)
25566     {
25567         this.raphael.clear();
25568         if(!graphtype) {
25569             graphtype = this.graphtype;
25570         }
25571         if(!opts){
25572             opts = this.opts;
25573         }
25574         var r = this.raphael,
25575             fin = function () {
25576                 this.flag = r.popup(this.bar.x, this.bar.y, this.bar.value || "0").insertBefore(this);
25577             },
25578             fout = function () {
25579                 this.flag.animate({opacity: 0}, 300, function () {this.remove();});
25580             },
25581             pfin = function() {
25582                 this.sector.stop();
25583                 this.sector.scale(1.1, 1.1, this.cx, this.cy);
25584
25585                 if (this.label) {
25586                     this.label[0].stop();
25587                     this.label[0].attr({ r: 7.5 });
25588                     this.label[1].attr({ "font-weight": 800 });
25589                 }
25590             },
25591             pfout = function() {
25592                 this.sector.animate({ transform: 's1 1 ' + this.cx + ' ' + this.cy }, 500, "bounce");
25593
25594                 if (this.label) {
25595                     this.label[0].animate({ r: 5 }, 500, "bounce");
25596                     this.label[1].attr({ "font-weight": 400 });
25597                 }
25598             };
25599
25600         switch(graphtype){
25601             case 'bar':
25602                 this.raphael.barchart(this.g_x,this.g_y,this.g_width,this.g_height,xdata,opts).hover(fin,fout);
25603                 break;
25604             case 'hbar':
25605                 this.raphael.hbarchart(this.g_x,this.g_y,this.g_width,this.g_height,xdata,opts).hover(fin,fout);
25606                 break;
25607             case 'pie':
25608 //                opts = { legend: ["%% - Enterprise Users", "% - ddd","Chrome Users"], legendpos: "west", 
25609 //                href: ["http://raphaeljs.com", "http://g.raphaeljs.com"]};
25610 //            
25611                 this.raphael.piechart(this.g_x,this.g_y,this.g_r,xdata,opts).hover(pfin, pfout);
25612                 
25613                 break;
25614
25615         }
25616         
25617         if(this.title){
25618             this.raphael.text(this.title.x, this.title.y, this.title.text).attr(this.title.attr);
25619         }
25620         
25621     },
25622     
25623     setTitle: function(o)
25624     {
25625         this.title = o;
25626     },
25627     
25628     initEvents: function() {
25629         
25630         if(!this.href){
25631             this.el.on('click', this.onClick, this);
25632         }
25633     },
25634     
25635     onClick : function(e)
25636     {
25637         Roo.log('img onclick');
25638         this.fireEvent('click', this, e);
25639     }
25640    
25641 });
25642
25643  
25644 /*
25645  * - LGPL
25646  *
25647  * numberBox
25648  * 
25649  */
25650 Roo.bootstrap.dash = Roo.bootstrap.dash || {};
25651
25652 /**
25653  * @class Roo.bootstrap.dash.NumberBox
25654  * @extends Roo.bootstrap.Component
25655  * Bootstrap NumberBox class
25656  * @cfg {String} headline Box headline
25657  * @cfg {String} content Box content
25658  * @cfg {String} icon Box icon
25659  * @cfg {String} footer Footer text
25660  * @cfg {String} fhref Footer href
25661  * 
25662  * @constructor
25663  * Create a new NumberBox
25664  * @param {Object} config The config object
25665  */
25666
25667
25668 Roo.bootstrap.dash.NumberBox = function(config){
25669     Roo.bootstrap.dash.NumberBox.superclass.constructor.call(this, config);
25670     
25671 };
25672
25673 Roo.extend(Roo.bootstrap.dash.NumberBox, Roo.bootstrap.Component,  {
25674     
25675     headline : '',
25676     content : '',
25677     icon : '',
25678     footer : '',
25679     fhref : '',
25680     ficon : '',
25681     
25682     getAutoCreate : function(){
25683         
25684         var cfg = {
25685             tag : 'div',
25686             cls : 'small-box ',
25687             cn : [
25688                 {
25689                     tag : 'div',
25690                     cls : 'inner',
25691                     cn :[
25692                         {
25693                             tag : 'h3',
25694                             cls : 'roo-headline',
25695                             html : this.headline
25696                         },
25697                         {
25698                             tag : 'p',
25699                             cls : 'roo-content',
25700                             html : this.content
25701                         }
25702                     ]
25703                 }
25704             ]
25705         };
25706         
25707         if(this.icon){
25708             cfg.cn.push({
25709                 tag : 'div',
25710                 cls : 'icon',
25711                 cn :[
25712                     {
25713                         tag : 'i',
25714                         cls : 'ion ' + this.icon
25715                     }
25716                 ]
25717             });
25718         }
25719         
25720         if(this.footer){
25721             var footer = {
25722                 tag : 'a',
25723                 cls : 'small-box-footer',
25724                 href : this.fhref || '#',
25725                 html : this.footer
25726             };
25727             
25728             cfg.cn.push(footer);
25729             
25730         }
25731         
25732         return  cfg;
25733     },
25734
25735     onRender : function(ct,position){
25736         Roo.bootstrap.dash.NumberBox.superclass.onRender.call(this,ct,position);
25737
25738
25739        
25740                 
25741     },
25742
25743     setHeadline: function (value)
25744     {
25745         this.el.select('.roo-headline',true).first().dom.innerHTML = value;
25746     },
25747     
25748     setFooter: function (value, href)
25749     {
25750         this.el.select('a.small-box-footer',true).first().dom.innerHTML = value;
25751         
25752         if(href){
25753             this.el.select('a.small-box-footer',true).first().attr('href', href);
25754         }
25755         
25756     },
25757
25758     setContent: function (value)
25759     {
25760         this.el.select('.roo-content',true).first().dom.innerHTML = value;
25761     },
25762
25763     initEvents: function() 
25764     {   
25765         
25766     }
25767     
25768 });
25769
25770  
25771 /*
25772  * - LGPL
25773  *
25774  * TabBox
25775  * 
25776  */
25777 Roo.bootstrap.dash = Roo.bootstrap.dash || {};
25778
25779 /**
25780  * @class Roo.bootstrap.dash.TabBox
25781  * @extends Roo.bootstrap.Component
25782  * Bootstrap TabBox class
25783  * @cfg {String} title Title of the TabBox
25784  * @cfg {String} icon Icon of the TabBox
25785  * @cfg {Boolean} showtabs (true|false) show the tabs default true
25786  * @cfg {Boolean} tabScrollable (true|false) tab scrollable when mobile view default false
25787  * 
25788  * @constructor
25789  * Create a new TabBox
25790  * @param {Object} config The config object
25791  */
25792
25793
25794 Roo.bootstrap.dash.TabBox = function(config){
25795     Roo.bootstrap.dash.TabBox.superclass.constructor.call(this, config);
25796     this.addEvents({
25797         // raw events
25798         /**
25799          * @event addpane
25800          * When a pane is added
25801          * @param {Roo.bootstrap.dash.TabPane} pane
25802          */
25803         "addpane" : true,
25804         /**
25805          * @event activatepane
25806          * When a pane is activated
25807          * @param {Roo.bootstrap.dash.TabPane} pane
25808          */
25809         "activatepane" : true
25810         
25811          
25812     });
25813     
25814     this.panes = [];
25815 };
25816
25817 Roo.extend(Roo.bootstrap.dash.TabBox, Roo.bootstrap.Component,  {
25818
25819     title : '',
25820     icon : false,
25821     showtabs : true,
25822     tabScrollable : false,
25823     
25824     getChildContainer : function()
25825     {
25826         return this.el.select('.tab-content', true).first();
25827     },
25828     
25829     getAutoCreate : function(){
25830         
25831         var header = {
25832             tag: 'li',
25833             cls: 'pull-left header',
25834             html: this.title,
25835             cn : []
25836         };
25837         
25838         if(this.icon){
25839             header.cn.push({
25840                 tag: 'i',
25841                 cls: 'fa ' + this.icon
25842             });
25843         }
25844         
25845         var h = {
25846             tag: 'ul',
25847             cls: 'nav nav-tabs pull-right',
25848             cn: [
25849                 header
25850             ]
25851         };
25852         
25853         if(this.tabScrollable){
25854             h = {
25855                 tag: 'div',
25856                 cls: 'tab-header',
25857                 cn: [
25858                     {
25859                         tag: 'ul',
25860                         cls: 'nav nav-tabs pull-right',
25861                         cn: [
25862                             header
25863                         ]
25864                     }
25865                 ]
25866             };
25867         }
25868         
25869         var cfg = {
25870             tag: 'div',
25871             cls: 'nav-tabs-custom',
25872             cn: [
25873                 h,
25874                 {
25875                     tag: 'div',
25876                     cls: 'tab-content no-padding',
25877                     cn: []
25878                 }
25879             ]
25880         };
25881
25882         return  cfg;
25883     },
25884     initEvents : function()
25885     {
25886         //Roo.log('add add pane handler');
25887         this.on('addpane', this.onAddPane, this);
25888     },
25889      /**
25890      * Updates the box title
25891      * @param {String} html to set the title to.
25892      */
25893     setTitle : function(value)
25894     {
25895         this.el.select('.nav-tabs .header', true).first().dom.innerHTML = value;
25896     },
25897     onAddPane : function(pane)
25898     {
25899         this.panes.push(pane);
25900         //Roo.log('addpane');
25901         //Roo.log(pane);
25902         // tabs are rendere left to right..
25903         if(!this.showtabs){
25904             return;
25905         }
25906         
25907         var ctr = this.el.select('.nav-tabs', true).first();
25908          
25909          
25910         var existing = ctr.select('.nav-tab',true);
25911         var qty = existing.getCount();;
25912         
25913         
25914         var tab = ctr.createChild({
25915             tag : 'li',
25916             cls : 'nav-tab' + (qty ? '' : ' active'),
25917             cn : [
25918                 {
25919                     tag : 'a',
25920                     href:'#',
25921                     html : pane.title
25922                 }
25923             ]
25924         }, qty ? existing.first().dom : ctr.select('.header', true).first().dom );
25925         pane.tab = tab;
25926         
25927         tab.on('click', this.onTabClick.createDelegate(this, [pane], true));
25928         if (!qty) {
25929             pane.el.addClass('active');
25930         }
25931         
25932                 
25933     },
25934     onTabClick : function(ev,un,ob,pane)
25935     {
25936         //Roo.log('tab - prev default');
25937         ev.preventDefault();
25938         
25939         
25940         this.el.select('.nav-tabs li.nav-tab', true).removeClass('active');
25941         pane.tab.addClass('active');
25942         //Roo.log(pane.title);
25943         this.getChildContainer().select('.tab-pane',true).removeClass('active');
25944         // technically we should have a deactivate event.. but maybe add later.
25945         // and it should not de-activate the selected tab...
25946         this.fireEvent('activatepane', pane);
25947         pane.el.addClass('active');
25948         pane.fireEvent('activate');
25949         
25950         
25951     },
25952     
25953     getActivePane : function()
25954     {
25955         var r = false;
25956         Roo.each(this.panes, function(p) {
25957             if(p.el.hasClass('active')){
25958                 r = p;
25959                 return false;
25960             }
25961             
25962             return;
25963         });
25964         
25965         return r;
25966     }
25967     
25968     
25969 });
25970
25971  
25972 /*
25973  * - LGPL
25974  *
25975  * Tab pane
25976  * 
25977  */
25978 Roo.bootstrap.dash = Roo.bootstrap.dash || {};
25979 /**
25980  * @class Roo.bootstrap.TabPane
25981  * @extends Roo.bootstrap.Component
25982  * Bootstrap TabPane class
25983  * @cfg {Boolean} active (false | true) Default false
25984  * @cfg {String} title title of panel
25985
25986  * 
25987  * @constructor
25988  * Create a new TabPane
25989  * @param {Object} config The config object
25990  */
25991
25992 Roo.bootstrap.dash.TabPane = function(config){
25993     Roo.bootstrap.dash.TabPane.superclass.constructor.call(this, config);
25994     
25995     this.addEvents({
25996         // raw events
25997         /**
25998          * @event activate
25999          * When a pane is activated
26000          * @param {Roo.bootstrap.dash.TabPane} pane
26001          */
26002         "activate" : true
26003          
26004     });
26005 };
26006
26007 Roo.extend(Roo.bootstrap.dash.TabPane, Roo.bootstrap.Component,  {
26008     
26009     active : false,
26010     title : '',
26011     
26012     // the tabBox that this is attached to.
26013     tab : false,
26014      
26015     getAutoCreate : function() 
26016     {
26017         var cfg = {
26018             tag: 'div',
26019             cls: 'tab-pane'
26020         };
26021         
26022         if(this.active){
26023             cfg.cls += ' active';
26024         }
26025         
26026         return cfg;
26027     },
26028     initEvents  : function()
26029     {
26030         //Roo.log('trigger add pane handler');
26031         this.parent().fireEvent('addpane', this)
26032     },
26033     
26034      /**
26035      * Updates the tab title 
26036      * @param {String} html to set the title to.
26037      */
26038     setTitle: function(str)
26039     {
26040         if (!this.tab) {
26041             return;
26042         }
26043         this.title = str;
26044         this.tab.select('a', true).first().dom.innerHTML = str;
26045         
26046     }
26047     
26048     
26049     
26050 });
26051
26052  
26053
26054
26055  /*
26056  * - LGPL
26057  *
26058  * menu
26059  * 
26060  */
26061 Roo.bootstrap.menu = Roo.bootstrap.menu || {};
26062
26063 /**
26064  * @class Roo.bootstrap.menu.Menu
26065  * @extends Roo.bootstrap.Component
26066  * Bootstrap Menu class - container for Menu
26067  * @cfg {String} html Text of the menu
26068  * @cfg {String} weight (default | primary | success | info | warning | danger | inverse)
26069  * @cfg {String} icon Font awesome icon
26070  * @cfg {String} pos Menu align to (top | bottom) default bottom
26071  * 
26072  * 
26073  * @constructor
26074  * Create a new Menu
26075  * @param {Object} config The config object
26076  */
26077
26078
26079 Roo.bootstrap.menu.Menu = function(config){
26080     Roo.bootstrap.menu.Menu.superclass.constructor.call(this, config);
26081     
26082     this.addEvents({
26083         /**
26084          * @event beforeshow
26085          * Fires before this menu is displayed
26086          * @param {Roo.bootstrap.menu.Menu} this
26087          */
26088         beforeshow : true,
26089         /**
26090          * @event beforehide
26091          * Fires before this menu is hidden
26092          * @param {Roo.bootstrap.menu.Menu} this
26093          */
26094         beforehide : true,
26095         /**
26096          * @event show
26097          * Fires after this menu is displayed
26098          * @param {Roo.bootstrap.menu.Menu} this
26099          */
26100         show : true,
26101         /**
26102          * @event hide
26103          * Fires after this menu is hidden
26104          * @param {Roo.bootstrap.menu.Menu} this
26105          */
26106         hide : true,
26107         /**
26108          * @event click
26109          * Fires when this menu is clicked (or when the enter key is pressed while it is active)
26110          * @param {Roo.bootstrap.menu.Menu} this
26111          * @param {Roo.EventObject} e
26112          */
26113         click : true
26114     });
26115     
26116 };
26117
26118 Roo.extend(Roo.bootstrap.menu.Menu, Roo.bootstrap.Component,  {
26119     
26120     submenu : false,
26121     html : '',
26122     weight : 'default',
26123     icon : false,
26124     pos : 'bottom',
26125     
26126     
26127     getChildContainer : function() {
26128         if(this.isSubMenu){
26129             return this.el;
26130         }
26131         
26132         return this.el.select('ul.dropdown-menu', true).first();  
26133     },
26134     
26135     getAutoCreate : function()
26136     {
26137         var text = [
26138             {
26139                 tag : 'span',
26140                 cls : 'roo-menu-text',
26141                 html : this.html
26142             }
26143         ];
26144         
26145         if(this.icon){
26146             text.unshift({
26147                 tag : 'i',
26148                 cls : 'fa ' + this.icon
26149             })
26150         }
26151         
26152         
26153         var cfg = {
26154             tag : 'div',
26155             cls : 'btn-group',
26156             cn : [
26157                 {
26158                     tag : 'button',
26159                     cls : 'dropdown-button btn btn-' + this.weight,
26160                     cn : text
26161                 },
26162                 {
26163                     tag : 'button',
26164                     cls : 'dropdown-toggle btn btn-' + this.weight,
26165                     cn : [
26166                         {
26167                             tag : 'span',
26168                             cls : 'caret'
26169                         }
26170                     ]
26171                 },
26172                 {
26173                     tag : 'ul',
26174                     cls : 'dropdown-menu'
26175                 }
26176             ]
26177             
26178         };
26179         
26180         if(this.pos == 'top'){
26181             cfg.cls += ' dropup';
26182         }
26183         
26184         if(this.isSubMenu){
26185             cfg = {
26186                 tag : 'ul',
26187                 cls : 'dropdown-menu'
26188             }
26189         }
26190         
26191         return cfg;
26192     },
26193     
26194     onRender : function(ct, position)
26195     {
26196         this.isSubMenu = ct.hasClass('dropdown-submenu');
26197         
26198         Roo.bootstrap.menu.Menu.superclass.onRender.call(this, ct, position);
26199     },
26200     
26201     initEvents : function() 
26202     {
26203         if(this.isSubMenu){
26204             return;
26205         }
26206         
26207         this.hidden = true;
26208         
26209         this.triggerEl = this.el.select('button.dropdown-toggle', true).first();
26210         this.triggerEl.on('click', this.onTriggerPress, this);
26211         
26212         this.buttonEl = this.el.select('button.dropdown-button', true).first();
26213         this.buttonEl.on('click', this.onClick, this);
26214         
26215     },
26216     
26217     list : function()
26218     {
26219         if(this.isSubMenu){
26220             return this.el;
26221         }
26222         
26223         return this.el.select('ul.dropdown-menu', true).first();
26224     },
26225     
26226     onClick : function(e)
26227     {
26228         this.fireEvent("click", this, e);
26229     },
26230     
26231     onTriggerPress  : function(e)
26232     {   
26233         if (this.isVisible()) {
26234             this.hide();
26235         } else {
26236             this.show();
26237         }
26238     },
26239     
26240     isVisible : function(){
26241         return !this.hidden;
26242     },
26243     
26244     show : function()
26245     {
26246         this.fireEvent("beforeshow", this);
26247         
26248         this.hidden = false;
26249         this.el.addClass('open');
26250         
26251         Roo.get(document).on("mouseup", this.onMouseUp, this);
26252         
26253         this.fireEvent("show", this);
26254         
26255         
26256     },
26257     
26258     hide : function()
26259     {
26260         this.fireEvent("beforehide", this);
26261         
26262         this.hidden = true;
26263         this.el.removeClass('open');
26264         
26265         Roo.get(document).un("mouseup", this.onMouseUp);
26266         
26267         this.fireEvent("hide", this);
26268     },
26269     
26270     onMouseUp : function()
26271     {
26272         this.hide();
26273     }
26274     
26275 });
26276
26277  
26278  /*
26279  * - LGPL
26280  *
26281  * menu item
26282  * 
26283  */
26284 Roo.bootstrap.menu = Roo.bootstrap.menu || {};
26285
26286 /**
26287  * @class Roo.bootstrap.menu.Item
26288  * @extends Roo.bootstrap.Component
26289  * Bootstrap MenuItem class
26290  * @cfg {Boolean} submenu (true | false) default false
26291  * @cfg {String} html text of the item
26292  * @cfg {String} href the link
26293  * @cfg {Boolean} disable (true | false) default false
26294  * @cfg {Boolean} preventDefault (true | false) default true
26295  * @cfg {String} icon Font awesome icon
26296  * @cfg {String} pos Submenu align to (left | right) default right 
26297  * 
26298  * 
26299  * @constructor
26300  * Create a new Item
26301  * @param {Object} config The config object
26302  */
26303
26304
26305 Roo.bootstrap.menu.Item = function(config){
26306     Roo.bootstrap.menu.Item.superclass.constructor.call(this, config);
26307     this.addEvents({
26308         /**
26309          * @event mouseover
26310          * Fires when the mouse is hovering over this menu
26311          * @param {Roo.bootstrap.menu.Item} this
26312          * @param {Roo.EventObject} e
26313          */
26314         mouseover : true,
26315         /**
26316          * @event mouseout
26317          * Fires when the mouse exits this menu
26318          * @param {Roo.bootstrap.menu.Item} this
26319          * @param {Roo.EventObject} e
26320          */
26321         mouseout : true,
26322         // raw events
26323         /**
26324          * @event click
26325          * The raw click event for the entire grid.
26326          * @param {Roo.EventObject} e
26327          */
26328         click : true
26329     });
26330 };
26331
26332 Roo.extend(Roo.bootstrap.menu.Item, Roo.bootstrap.Component,  {
26333     
26334     submenu : false,
26335     href : '',
26336     html : '',
26337     preventDefault: true,
26338     disable : false,
26339     icon : false,
26340     pos : 'right',
26341     
26342     getAutoCreate : function()
26343     {
26344         var text = [
26345             {
26346                 tag : 'span',
26347                 cls : 'roo-menu-item-text',
26348                 html : this.html
26349             }
26350         ];
26351         
26352         if(this.icon){
26353             text.unshift({
26354                 tag : 'i',
26355                 cls : 'fa ' + this.icon
26356             })
26357         }
26358         
26359         var cfg = {
26360             tag : 'li',
26361             cn : [
26362                 {
26363                     tag : 'a',
26364                     href : this.href || '#',
26365                     cn : text
26366                 }
26367             ]
26368         };
26369         
26370         if(this.disable){
26371             cfg.cls = (typeof(cfg.cls) == 'undefined') ? 'disabled' : (cfg.cls + ' disabled');
26372         }
26373         
26374         if(this.submenu){
26375             cfg.cls = (typeof(cfg.cls) == 'undefined') ? 'dropdown-submenu' : (cfg.cls + ' dropdown-submenu');
26376             
26377             if(this.pos == 'left'){
26378                 cfg.cls = (typeof(cfg.cls) == 'undefined') ? 'pull-left' : (cfg.cls + ' pull-left');
26379             }
26380         }
26381         
26382         return cfg;
26383     },
26384     
26385     initEvents : function() 
26386     {
26387         this.el.on('mouseover', this.onMouseOver, this);
26388         this.el.on('mouseout', this.onMouseOut, this);
26389         
26390         this.el.select('a', true).first().on('click', this.onClick, this);
26391         
26392     },
26393     
26394     onClick : function(e)
26395     {
26396         if(this.preventDefault){
26397             e.preventDefault();
26398         }
26399         
26400         this.fireEvent("click", this, e);
26401     },
26402     
26403     onMouseOver : function(e)
26404     {
26405         if(this.submenu && this.pos == 'left'){
26406             this.el.select('ul.dropdown-menu', true).first().setLeft(this.el.select('ul.dropdown-menu', true).first().getWidth() * -1);
26407         }
26408         
26409         this.fireEvent("mouseover", this, e);
26410     },
26411     
26412     onMouseOut : function(e)
26413     {
26414         this.fireEvent("mouseout", this, e);
26415     }
26416 });
26417
26418  
26419
26420  /*
26421  * - LGPL
26422  *
26423  * menu separator
26424  * 
26425  */
26426 Roo.bootstrap.menu = Roo.bootstrap.menu || {};
26427
26428 /**
26429  * @class Roo.bootstrap.menu.Separator
26430  * @extends Roo.bootstrap.Component
26431  * Bootstrap Separator class
26432  * 
26433  * @constructor
26434  * Create a new Separator
26435  * @param {Object} config The config object
26436  */
26437
26438
26439 Roo.bootstrap.menu.Separator = function(config){
26440     Roo.bootstrap.menu.Separator.superclass.constructor.call(this, config);
26441 };
26442
26443 Roo.extend(Roo.bootstrap.menu.Separator, Roo.bootstrap.Component,  {
26444     
26445     getAutoCreate : function(){
26446         var cfg = {
26447             tag : 'li',
26448             cls: 'divider'
26449         };
26450         
26451         return cfg;
26452     }
26453    
26454 });
26455
26456  
26457
26458  /*
26459  * - LGPL
26460  *
26461  * Tooltip
26462  * 
26463  */
26464
26465 /**
26466  * @class Roo.bootstrap.Tooltip
26467  * Bootstrap Tooltip class
26468  * This is basic at present - all componets support it by default, however they should add tooltipEl() method
26469  * to determine which dom element triggers the tooltip.
26470  * 
26471  * It needs to add support for additional attributes like tooltip-position
26472  * 
26473  * @constructor
26474  * Create a new Toolti
26475  * @param {Object} config The config object
26476  */
26477
26478 Roo.bootstrap.Tooltip = function(config){
26479     Roo.bootstrap.Tooltip.superclass.constructor.call(this, config);
26480     
26481     this.alignment = Roo.bootstrap.Tooltip.alignment;
26482     
26483     if(typeof(config) != 'undefined' && typeof(config.alignment) != 'undefined'){
26484         this.alignment = config.alignment;
26485     }
26486     
26487 };
26488
26489 Roo.apply(Roo.bootstrap.Tooltip, {
26490     /**
26491      * @function init initialize tooltip monitoring.
26492      * @static
26493      */
26494     currentEl : false,
26495     currentTip : false,
26496     currentRegion : false,
26497     
26498     //  init : delay?
26499     
26500     init : function()
26501     {
26502         Roo.get(document).on('mouseover', this.enter ,this);
26503         Roo.get(document).on('mouseout', this.leave, this);
26504          
26505         
26506         this.currentTip = new Roo.bootstrap.Tooltip();
26507     },
26508     
26509     enter : function(ev)
26510     {
26511         var dom = ev.getTarget();
26512         
26513         //Roo.log(['enter',dom]);
26514         var el = Roo.fly(dom);
26515         if (this.currentEl) {
26516             //Roo.log(dom);
26517             //Roo.log(this.currentEl);
26518             //Roo.log(this.currentEl.contains(dom));
26519             if (this.currentEl == el) {
26520                 return;
26521             }
26522             if (dom != this.currentEl.dom && this.currentEl.contains(dom)) {
26523                 return;
26524             }
26525
26526         }
26527         
26528         if (this.currentTip.el) {
26529             this.currentTip.el.setVisibilityMode(Roo.Element.DISPLAY).hide(); // force hiding...
26530         }    
26531         //Roo.log(ev);
26532         
26533         if(!el || el.dom == document){
26534             return;
26535         }
26536         
26537         var bindEl = el;
26538         
26539         // you can not look for children, as if el is the body.. then everythign is the child..
26540         if (!el.attr('tooltip')) { //
26541             if (!el.select("[tooltip]").elements.length) {
26542                 return;
26543             }
26544             // is the mouse over this child...?
26545             bindEl = el.select("[tooltip]").first();
26546             var xy = ev.getXY();
26547             if (!bindEl.getRegion().contains( { top : xy[1] ,right : xy[0] , bottom : xy[1], left : xy[0]})) {
26548                 //Roo.log("not in region.");
26549                 return;
26550             }
26551             //Roo.log("child element over..");
26552             
26553         }
26554         this.currentEl = bindEl;
26555         this.currentTip.bind(bindEl);
26556         this.currentRegion = Roo.lib.Region.getRegion(dom);
26557         this.currentTip.enter();
26558         
26559     },
26560     leave : function(ev)
26561     {
26562         var dom = ev.getTarget();
26563         //Roo.log(['leave',dom]);
26564         if (!this.currentEl) {
26565             return;
26566         }
26567         
26568         
26569         if (dom != this.currentEl.dom) {
26570             return;
26571         }
26572         var xy = ev.getXY();
26573         if (this.currentRegion.contains( new Roo.lib.Region( xy[1], xy[0] ,xy[1], xy[0]  ))) {
26574             return;
26575         }
26576         // only activate leave if mouse cursor is outside... bounding box..
26577         
26578         
26579         
26580         
26581         if (this.currentTip) {
26582             this.currentTip.leave();
26583         }
26584         //Roo.log('clear currentEl');
26585         this.currentEl = false;
26586         
26587         
26588     },
26589     alignment : {
26590         'left' : ['r-l', [-2,0], 'right'],
26591         'right' : ['l-r', [2,0], 'left'],
26592         'bottom' : ['t-b', [0,2], 'top'],
26593         'top' : [ 'b-t', [0,-2], 'bottom']
26594     }
26595     
26596 });
26597
26598
26599 Roo.extend(Roo.bootstrap.Tooltip, Roo.bootstrap.Component,  {
26600     
26601     
26602     bindEl : false,
26603     
26604     delay : null, // can be { show : 300 , hide: 500}
26605     
26606     timeout : null,
26607     
26608     hoverState : null, //???
26609     
26610     placement : 'bottom', 
26611     
26612     alignment : false,
26613     
26614     getAutoCreate : function(){
26615     
26616         var cfg = {
26617            cls : 'tooltip',
26618            role : 'tooltip',
26619            cn : [
26620                 {
26621                     cls : 'tooltip-arrow'
26622                 },
26623                 {
26624                     cls : 'tooltip-inner'
26625                 }
26626            ]
26627         };
26628         
26629         return cfg;
26630     },
26631     bind : function(el)
26632     {
26633         this.bindEl = el;
26634     },
26635       
26636     
26637     enter : function () {
26638        
26639         if (this.timeout != null) {
26640             clearTimeout(this.timeout);
26641         }
26642         
26643         this.hoverState = 'in';
26644          //Roo.log("enter - show");
26645         if (!this.delay || !this.delay.show) {
26646             this.show();
26647             return;
26648         }
26649         var _t = this;
26650         this.timeout = setTimeout(function () {
26651             if (_t.hoverState == 'in') {
26652                 _t.show();
26653             }
26654         }, this.delay.show);
26655     },
26656     leave : function()
26657     {
26658         clearTimeout(this.timeout);
26659     
26660         this.hoverState = 'out';
26661          if (!this.delay || !this.delay.hide) {
26662             this.hide();
26663             return;
26664         }
26665        
26666         var _t = this;
26667         this.timeout = setTimeout(function () {
26668             //Roo.log("leave - timeout");
26669             
26670             if (_t.hoverState == 'out') {
26671                 _t.hide();
26672                 Roo.bootstrap.Tooltip.currentEl = false;
26673             }
26674         }, delay);
26675     },
26676     
26677     show : function (msg)
26678     {
26679         if (!this.el) {
26680             this.render(document.body);
26681         }
26682         // set content.
26683         //Roo.log([this.bindEl, this.bindEl.attr('tooltip')]);
26684         
26685         var tip = msg || this.bindEl.attr('tooltip') || this.bindEl.select("[tooltip]").first().attr('tooltip');
26686         
26687         this.el.select('.tooltip-inner',true).first().dom.innerHTML = tip;
26688         
26689         this.el.removeClass(['fade','top','bottom', 'left', 'right','in']);
26690         
26691         var placement = typeof this.placement == 'function' ?
26692             this.placement.call(this, this.el, on_el) :
26693             this.placement;
26694             
26695         var autoToken = /\s?auto?\s?/i;
26696         var autoPlace = autoToken.test(placement);
26697         if (autoPlace) {
26698             placement = placement.replace(autoToken, '') || 'top';
26699         }
26700         
26701         //this.el.detach()
26702         //this.el.setXY([0,0]);
26703         this.el.show();
26704         //this.el.dom.style.display='block';
26705         
26706         //this.el.appendTo(on_el);
26707         
26708         var p = this.getPosition();
26709         var box = this.el.getBox();
26710         
26711         if (autoPlace) {
26712             // fixme..
26713         }
26714         
26715         var align = this.alignment[placement];
26716         
26717         var xy = this.el.getAlignToXY(this.bindEl, align[0], align[1]);
26718         
26719         if(placement == 'top' || placement == 'bottom'){
26720             if(xy[0] < 0){
26721                 placement = 'right';
26722             }
26723             
26724             if(xy[0] + this.el.getWidth() > Roo.lib.Dom.getViewWidth()){
26725                 placement = 'left';
26726             }
26727             
26728             var scroll = Roo.select('body', true).first().getScroll();
26729             
26730             if(xy[1] > Roo.lib.Dom.getViewHeight() + scroll.top - this.el.getHeight()){
26731                 placement = 'top';
26732             }
26733             
26734             align = this.alignment[placement];
26735         }
26736         
26737         this.el.alignTo(this.bindEl, align[0],align[1]);
26738         //var arrow = this.el.select('.arrow',true).first();
26739         //arrow.set(align[2], 
26740         
26741         this.el.addClass(placement);
26742         
26743         this.el.addClass('in fade');
26744         
26745         this.hoverState = null;
26746         
26747         if (this.el.hasClass('fade')) {
26748             // fade it?
26749         }
26750         
26751     },
26752     hide : function()
26753     {
26754          
26755         if (!this.el) {
26756             return;
26757         }
26758         //this.el.setXY([0,0]);
26759         this.el.removeClass('in');
26760         //this.el.hide();
26761         
26762     }
26763     
26764 });
26765  
26766
26767  /*
26768  * - LGPL
26769  *
26770  * Location Picker
26771  * 
26772  */
26773
26774 /**
26775  * @class Roo.bootstrap.LocationPicker
26776  * @extends Roo.bootstrap.Component
26777  * Bootstrap LocationPicker class
26778  * @cfg {Number} latitude Position when init default 0
26779  * @cfg {Number} longitude Position when init default 0
26780  * @cfg {Number} zoom default 15
26781  * @cfg {String} mapTypeId default google.maps.MapTypeId.ROADMAP
26782  * @cfg {Boolean} mapTypeControl default false
26783  * @cfg {Boolean} disableDoubleClickZoom default false
26784  * @cfg {Boolean} scrollwheel default true
26785  * @cfg {Boolean} streetViewControl default false
26786  * @cfg {Number} radius default 0
26787  * @cfg {String} locationName
26788  * @cfg {Boolean} draggable default true
26789  * @cfg {Boolean} enableAutocomplete default false
26790  * @cfg {Boolean} enableReverseGeocode default true
26791  * @cfg {String} markerTitle
26792  * 
26793  * @constructor
26794  * Create a new LocationPicker
26795  * @param {Object} config The config object
26796  */
26797
26798
26799 Roo.bootstrap.LocationPicker = function(config){
26800     
26801     Roo.bootstrap.LocationPicker.superclass.constructor.call(this, config);
26802     
26803     this.addEvents({
26804         /**
26805          * @event initial
26806          * Fires when the picker initialized.
26807          * @param {Roo.bootstrap.LocationPicker} this
26808          * @param {Google Location} location
26809          */
26810         initial : true,
26811         /**
26812          * @event positionchanged
26813          * Fires when the picker position changed.
26814          * @param {Roo.bootstrap.LocationPicker} this
26815          * @param {Google Location} location
26816          */
26817         positionchanged : true,
26818         /**
26819          * @event resize
26820          * Fires when the map resize.
26821          * @param {Roo.bootstrap.LocationPicker} this
26822          */
26823         resize : true,
26824         /**
26825          * @event show
26826          * Fires when the map show.
26827          * @param {Roo.bootstrap.LocationPicker} this
26828          */
26829         show : true,
26830         /**
26831          * @event hide
26832          * Fires when the map hide.
26833          * @param {Roo.bootstrap.LocationPicker} this
26834          */
26835         hide : true,
26836         /**
26837          * @event mapClick
26838          * Fires when click the map.
26839          * @param {Roo.bootstrap.LocationPicker} this
26840          * @param {Map event} e
26841          */
26842         mapClick : true,
26843         /**
26844          * @event mapRightClick
26845          * Fires when right click the map.
26846          * @param {Roo.bootstrap.LocationPicker} this
26847          * @param {Map event} e
26848          */
26849         mapRightClick : true,
26850         /**
26851          * @event markerClick
26852          * Fires when click the marker.
26853          * @param {Roo.bootstrap.LocationPicker} this
26854          * @param {Map event} e
26855          */
26856         markerClick : true,
26857         /**
26858          * @event markerRightClick
26859          * Fires when right click the marker.
26860          * @param {Roo.bootstrap.LocationPicker} this
26861          * @param {Map event} e
26862          */
26863         markerRightClick : true,
26864         /**
26865          * @event OverlayViewDraw
26866          * Fires when OverlayView Draw
26867          * @param {Roo.bootstrap.LocationPicker} this
26868          */
26869         OverlayViewDraw : true,
26870         /**
26871          * @event OverlayViewOnAdd
26872          * Fires when OverlayView Draw
26873          * @param {Roo.bootstrap.LocationPicker} this
26874          */
26875         OverlayViewOnAdd : true,
26876         /**
26877          * @event OverlayViewOnRemove
26878          * Fires when OverlayView Draw
26879          * @param {Roo.bootstrap.LocationPicker} this
26880          */
26881         OverlayViewOnRemove : true,
26882         /**
26883          * @event OverlayViewShow
26884          * Fires when OverlayView Draw
26885          * @param {Roo.bootstrap.LocationPicker} this
26886          * @param {Pixel} cpx
26887          */
26888         OverlayViewShow : true,
26889         /**
26890          * @event OverlayViewHide
26891          * Fires when OverlayView Draw
26892          * @param {Roo.bootstrap.LocationPicker} this
26893          */
26894         OverlayViewHide : true,
26895         /**
26896          * @event loadexception
26897          * Fires when load google lib failed.
26898          * @param {Roo.bootstrap.LocationPicker} this
26899          */
26900         loadexception : true
26901     });
26902         
26903 };
26904
26905 Roo.extend(Roo.bootstrap.LocationPicker, Roo.bootstrap.Component,  {
26906     
26907     gMapContext: false,
26908     
26909     latitude: 0,
26910     longitude: 0,
26911     zoom: 15,
26912     mapTypeId: false,
26913     mapTypeControl: false,
26914     disableDoubleClickZoom: false,
26915     scrollwheel: true,
26916     streetViewControl: false,
26917     radius: 0,
26918     locationName: '',
26919     draggable: true,
26920     enableAutocomplete: false,
26921     enableReverseGeocode: true,
26922     markerTitle: '',
26923     
26924     getAutoCreate: function()
26925     {
26926
26927         var cfg = {
26928             tag: 'div',
26929             cls: 'roo-location-picker'
26930         };
26931         
26932         return cfg
26933     },
26934     
26935     initEvents: function(ct, position)
26936     {       
26937         if(!this.el.getWidth() || this.isApplied()){
26938             return;
26939         }
26940         
26941         this.el.setVisibilityMode(Roo.Element.DISPLAY);
26942         
26943         this.initial();
26944     },
26945     
26946     initial: function()
26947     {
26948         if(typeof(google) == 'undefined' || typeof(google.maps) == 'undefined'){
26949             this.fireEvent('loadexception', this);
26950             return;
26951         }
26952         
26953         if(!this.mapTypeId){
26954             this.mapTypeId = google.maps.MapTypeId.ROADMAP;
26955         }
26956         
26957         this.gMapContext = this.GMapContext();
26958         
26959         this.initOverlayView();
26960         
26961         this.OverlayView = new Roo.bootstrap.LocationPicker.OverlayView(this.gMapContext.map);
26962         
26963         var _this = this;
26964                 
26965         google.maps.event.addListener(this.gMapContext.marker, "dragend", function(event) {
26966             _this.setPosition(_this.gMapContext.marker.position);
26967         });
26968         
26969         google.maps.event.addListener(this.gMapContext.map, 'click', function(event){
26970             _this.fireEvent('mapClick', this, event);
26971             
26972         });
26973
26974         google.maps.event.addListener(this.gMapContext.map, 'rightclick', function(event){
26975             _this.fireEvent('mapRightClick', this, event);
26976             
26977         });
26978         
26979         google.maps.event.addListener(this.gMapContext.marker, 'click', function(event){
26980             _this.fireEvent('markerClick', this, event);
26981             
26982         });
26983
26984         google.maps.event.addListener(this.gMapContext.marker, 'rightclick', function(event){
26985             _this.fireEvent('markerRightClick', this, event);
26986             
26987         });
26988         
26989         this.setPosition(this.gMapContext.location);
26990         
26991         this.fireEvent('initial', this, this.gMapContext.location);
26992     },
26993     
26994     initOverlayView: function()
26995     {
26996         var _this = this;
26997         
26998         Roo.bootstrap.LocationPicker.OverlayView.prototype = Roo.apply(new google.maps.OverlayView(), {
26999             
27000             draw: function()
27001             {
27002                 _this.fireEvent('OverlayViewDraw', _this);
27003             },
27004             
27005             onAdd: function()
27006             {
27007                 _this.fireEvent('OverlayViewOnAdd', _this);
27008             },
27009             
27010             onRemove: function()
27011             {
27012                 _this.fireEvent('OverlayViewOnRemove', _this);
27013             },
27014             
27015             show: function(cpx)
27016             {
27017                 _this.fireEvent('OverlayViewShow', _this, cpx);
27018             },
27019             
27020             hide: function()
27021             {
27022                 _this.fireEvent('OverlayViewHide', _this);
27023             }
27024             
27025         });
27026     },
27027     
27028     fromLatLngToContainerPixel: function(event)
27029     {
27030         return this.OverlayView.getProjection().fromLatLngToContainerPixel(event.latLng);
27031     },
27032     
27033     isApplied: function() 
27034     {
27035         return this.getGmapContext() == false ? false : true;
27036     },
27037     
27038     getGmapContext: function() 
27039     {
27040         return (typeof(this.gMapContext) == 'undefined') ? false : this.gMapContext;
27041     },
27042     
27043     GMapContext: function() 
27044     {
27045         var position = new google.maps.LatLng(this.latitude, this.longitude);
27046         
27047         var _map = new google.maps.Map(this.el.dom, {
27048             center: position,
27049             zoom: this.zoom,
27050             mapTypeId: this.mapTypeId,
27051             mapTypeControl: this.mapTypeControl,
27052             disableDoubleClickZoom: this.disableDoubleClickZoom,
27053             scrollwheel: this.scrollwheel,
27054             streetViewControl: this.streetViewControl,
27055             locationName: this.locationName,
27056             draggable: this.draggable,
27057             enableAutocomplete: this.enableAutocomplete,
27058             enableReverseGeocode: this.enableReverseGeocode
27059         });
27060         
27061         var _marker = new google.maps.Marker({
27062             position: position,
27063             map: _map,
27064             title: this.markerTitle,
27065             draggable: this.draggable
27066         });
27067         
27068         return {
27069             map: _map,
27070             marker: _marker,
27071             circle: null,
27072             location: position,
27073             radius: this.radius,
27074             locationName: this.locationName,
27075             addressComponents: {
27076                 formatted_address: null,
27077                 addressLine1: null,
27078                 addressLine2: null,
27079                 streetName: null,
27080                 streetNumber: null,
27081                 city: null,
27082                 district: null,
27083                 state: null,
27084                 stateOrProvince: null
27085             },
27086             settings: this,
27087             domContainer: this.el.dom,
27088             geodecoder: new google.maps.Geocoder()
27089         };
27090     },
27091     
27092     drawCircle: function(center, radius, options) 
27093     {
27094         if (this.gMapContext.circle != null) {
27095             this.gMapContext.circle.setMap(null);
27096         }
27097         if (radius > 0) {
27098             radius *= 1;
27099             options = Roo.apply({}, options, {
27100                 strokeColor: "#0000FF",
27101                 strokeOpacity: .35,
27102                 strokeWeight: 2,
27103                 fillColor: "#0000FF",
27104                 fillOpacity: .2
27105             });
27106             
27107             options.map = this.gMapContext.map;
27108             options.radius = radius;
27109             options.center = center;
27110             this.gMapContext.circle = new google.maps.Circle(options);
27111             return this.gMapContext.circle;
27112         }
27113         
27114         return null;
27115     },
27116     
27117     setPosition: function(location) 
27118     {
27119         this.gMapContext.location = location;
27120         this.gMapContext.marker.setPosition(location);
27121         this.gMapContext.map.panTo(location);
27122         this.drawCircle(location, this.gMapContext.radius, {});
27123         
27124         var _this = this;
27125         
27126         if (this.gMapContext.settings.enableReverseGeocode) {
27127             this.gMapContext.geodecoder.geocode({
27128                 latLng: this.gMapContext.location
27129             }, function(results, status) {
27130                 
27131                 if (status == google.maps.GeocoderStatus.OK && results.length > 0) {
27132                     _this.gMapContext.locationName = results[0].formatted_address;
27133                     _this.gMapContext.addressComponents = _this.address_component_from_google_geocode(results[0].address_components);
27134                     
27135                     _this.fireEvent('positionchanged', this, location);
27136                 }
27137             });
27138             
27139             return;
27140         }
27141         
27142         this.fireEvent('positionchanged', this, location);
27143     },
27144     
27145     resize: function()
27146     {
27147         google.maps.event.trigger(this.gMapContext.map, "resize");
27148         
27149         this.gMapContext.map.setCenter(this.gMapContext.marker.position);
27150         
27151         this.fireEvent('resize', this);
27152     },
27153     
27154     setPositionByLatLng: function(latitude, longitude)
27155     {
27156         this.setPosition(new google.maps.LatLng(latitude, longitude));
27157     },
27158     
27159     getCurrentPosition: function() 
27160     {
27161         return {
27162             latitude: this.gMapContext.location.lat(),
27163             longitude: this.gMapContext.location.lng()
27164         };
27165     },
27166     
27167     getAddressName: function() 
27168     {
27169         return this.gMapContext.locationName;
27170     },
27171     
27172     getAddressComponents: function() 
27173     {
27174         return this.gMapContext.addressComponents;
27175     },
27176     
27177     address_component_from_google_geocode: function(address_components) 
27178     {
27179         var result = {};
27180         
27181         for (var i = 0; i < address_components.length; i++) {
27182             var component = address_components[i];
27183             if (component.types.indexOf("postal_code") >= 0) {
27184                 result.postalCode = component.short_name;
27185             } else if (component.types.indexOf("street_number") >= 0) {
27186                 result.streetNumber = component.short_name;
27187             } else if (component.types.indexOf("route") >= 0) {
27188                 result.streetName = component.short_name;
27189             } else if (component.types.indexOf("neighborhood") >= 0) {
27190                 result.city = component.short_name;
27191             } else if (component.types.indexOf("locality") >= 0) {
27192                 result.city = component.short_name;
27193             } else if (component.types.indexOf("sublocality") >= 0) {
27194                 result.district = component.short_name;
27195             } else if (component.types.indexOf("administrative_area_level_1") >= 0) {
27196                 result.stateOrProvince = component.short_name;
27197             } else if (component.types.indexOf("country") >= 0) {
27198                 result.country = component.short_name;
27199             }
27200         }
27201         
27202         result.addressLine1 = [ result.streetNumber, result.streetName ].join(" ").trim();
27203         result.addressLine2 = "";
27204         return result;
27205     },
27206     
27207     setZoomLevel: function(zoom)
27208     {
27209         this.gMapContext.map.setZoom(zoom);
27210     },
27211     
27212     show: function()
27213     {
27214         if(!this.el){
27215             return;
27216         }
27217         
27218         this.el.show();
27219         
27220         this.resize();
27221         
27222         this.fireEvent('show', this);
27223     },
27224     
27225     hide: function()
27226     {
27227         if(!this.el){
27228             return;
27229         }
27230         
27231         this.el.hide();
27232         
27233         this.fireEvent('hide', this);
27234     }
27235     
27236 });
27237
27238 Roo.apply(Roo.bootstrap.LocationPicker, {
27239     
27240     OverlayView : function(map, options)
27241     {
27242         options = options || {};
27243         
27244         this.setMap(map);
27245     }
27246     
27247     
27248 });/**
27249  * @class Roo.bootstrap.Alert
27250  * @extends Roo.bootstrap.Component
27251  * Bootstrap Alert class - shows an alert area box
27252  * eg
27253  * <div class="alert alert-danger" role="alert"><span class="fa fa-exclamation-triangle"></span><span class="sr-only">Error:</span>
27254   Enter a valid email address
27255 </div>
27256  * @licence LGPL
27257  * @cfg {String} title The title of alert
27258  * @cfg {String} html The content of alert
27259  * @cfg {String} weight (  success | info | warning | danger )
27260  * @cfg {String} faicon font-awesomeicon
27261  * 
27262  * @constructor
27263  * Create a new alert
27264  * @param {Object} config The config object
27265  */
27266
27267
27268 Roo.bootstrap.Alert = function(config){
27269     Roo.bootstrap.Alert.superclass.constructor.call(this, config);
27270     
27271 };
27272
27273 Roo.extend(Roo.bootstrap.Alert, Roo.bootstrap.Component,  {
27274     
27275     title: '',
27276     html: '',
27277     weight: false,
27278     faicon: false,
27279     
27280     getAutoCreate : function()
27281     {
27282         
27283         var cfg = {
27284             tag : 'div',
27285             cls : 'alert',
27286             cn : [
27287                 {
27288                     tag : 'i',
27289                     cls : 'roo-alert-icon'
27290                     
27291                 },
27292                 {
27293                     tag : 'b',
27294                     cls : 'roo-alert-title',
27295                     html : this.title
27296                 },
27297                 {
27298                     tag : 'span',
27299                     cls : 'roo-alert-text',
27300                     html : this.html
27301                 }
27302             ]
27303         };
27304         
27305         if(this.faicon){
27306             cfg.cn[0].cls += ' fa ' + this.faicon;
27307         }
27308         
27309         if(this.weight){
27310             cfg.cls += ' alert-' + this.weight;
27311         }
27312         
27313         return cfg;
27314     },
27315     
27316     initEvents: function() 
27317     {
27318         this.el.setVisibilityMode(Roo.Element.DISPLAY);
27319     },
27320     
27321     setTitle : function(str)
27322     {
27323         this.el.select('.roo-alert-title',true).first().dom.innerHTML = str;
27324     },
27325     
27326     setText : function(str)
27327     {
27328         this.el.select('.roo-alert-text',true).first().dom.innerHTML = str;
27329     },
27330     
27331     setWeight : function(weight)
27332     {
27333         if(this.weight){
27334             this.el.select('.alert',true).first().removeClass('alert-' + this.weight);
27335         }
27336         
27337         this.weight = weight;
27338         
27339         this.el.select('.alert',true).first().addClass('alert-' + this.weight);
27340     },
27341     
27342     setIcon : function(icon)
27343     {
27344         if(this.faicon){
27345             this.el.select('.roo-alert-icon',true).first().removeClass(['fa', 'fa-' + this.faicon]);
27346         }
27347         
27348         this.faicon = icon;
27349         
27350         this.el.select('.roo-alert-icon',true).first().addClass(['fa', 'fa-' + this.faicon]);
27351     },
27352     
27353     hide: function() 
27354     {
27355         this.el.hide();   
27356     },
27357     
27358     show: function() 
27359     {  
27360         this.el.show();   
27361     }
27362     
27363 });
27364
27365  
27366 /*
27367 * Licence: LGPL
27368 */
27369
27370 /**
27371  * @class Roo.bootstrap.UploadCropbox
27372  * @extends Roo.bootstrap.Component
27373  * Bootstrap UploadCropbox class
27374  * @cfg {String} emptyText show when image has been loaded
27375  * @cfg {String} rotateNotify show when image too small to rotate
27376  * @cfg {Number} errorTimeout default 3000
27377  * @cfg {Number} minWidth default 300
27378  * @cfg {Number} minHeight default 300
27379  * @cfg {Array} buttons default ['rotateLeft', 'pictureBtn', 'rotateRight']
27380  * @cfg {Boolean} isDocument (true|false) default false
27381  * @cfg {String} url action url
27382  * @cfg {String} paramName default 'imageUpload'
27383  * @cfg {String} method default POST
27384  * @cfg {Boolean} loadMask (true|false) default true
27385  * @cfg {Boolean} loadingText default 'Loading...'
27386  * 
27387  * @constructor
27388  * Create a new UploadCropbox
27389  * @param {Object} config The config object
27390  */
27391
27392 Roo.bootstrap.UploadCropbox = function(config){
27393     Roo.bootstrap.UploadCropbox.superclass.constructor.call(this, config);
27394     
27395     this.addEvents({
27396         /**
27397          * @event beforeselectfile
27398          * Fire before select file
27399          * @param {Roo.bootstrap.UploadCropbox} this
27400          */
27401         "beforeselectfile" : true,
27402         /**
27403          * @event initial
27404          * Fire after initEvent
27405          * @param {Roo.bootstrap.UploadCropbox} this
27406          */
27407         "initial" : true,
27408         /**
27409          * @event crop
27410          * Fire after initEvent
27411          * @param {Roo.bootstrap.UploadCropbox} this
27412          * @param {String} data
27413          */
27414         "crop" : true,
27415         /**
27416          * @event prepare
27417          * Fire when preparing the file data
27418          * @param {Roo.bootstrap.UploadCropbox} this
27419          * @param {Object} file
27420          */
27421         "prepare" : true,
27422         /**
27423          * @event exception
27424          * Fire when get exception
27425          * @param {Roo.bootstrap.UploadCropbox} this
27426          * @param {XMLHttpRequest} xhr
27427          */
27428         "exception" : true,
27429         /**
27430          * @event beforeloadcanvas
27431          * Fire before load the canvas
27432          * @param {Roo.bootstrap.UploadCropbox} this
27433          * @param {String} src
27434          */
27435         "beforeloadcanvas" : true,
27436         /**
27437          * @event trash
27438          * Fire when trash image
27439          * @param {Roo.bootstrap.UploadCropbox} this
27440          */
27441         "trash" : true,
27442         /**
27443          * @event download
27444          * Fire when download the image
27445          * @param {Roo.bootstrap.UploadCropbox} this
27446          */
27447         "download" : true,
27448         /**
27449          * @event footerbuttonclick
27450          * Fire when footerbuttonclick
27451          * @param {Roo.bootstrap.UploadCropbox} this
27452          * @param {String} type
27453          */
27454         "footerbuttonclick" : true,
27455         /**
27456          * @event resize
27457          * Fire when resize
27458          * @param {Roo.bootstrap.UploadCropbox} this
27459          */
27460         "resize" : true,
27461         /**
27462          * @event rotate
27463          * Fire when rotate the image
27464          * @param {Roo.bootstrap.UploadCropbox} this
27465          * @param {String} pos
27466          */
27467         "rotate" : true,
27468         /**
27469          * @event inspect
27470          * Fire when inspect the file
27471          * @param {Roo.bootstrap.UploadCropbox} this
27472          * @param {Object} file
27473          */
27474         "inspect" : true,
27475         /**
27476          * @event upload
27477          * Fire when xhr upload the file
27478          * @param {Roo.bootstrap.UploadCropbox} this
27479          * @param {Object} data
27480          */
27481         "upload" : true,
27482         /**
27483          * @event arrange
27484          * Fire when arrange the file data
27485          * @param {Roo.bootstrap.UploadCropbox} this
27486          * @param {Object} formData
27487          */
27488         "arrange" : true
27489     });
27490     
27491     this.buttons = this.buttons || Roo.bootstrap.UploadCropbox.footer.STANDARD;
27492 };
27493
27494 Roo.extend(Roo.bootstrap.UploadCropbox, Roo.bootstrap.Component,  {
27495     
27496     emptyText : 'Click to upload image',
27497     rotateNotify : 'Image is too small to rotate',
27498     errorTimeout : 3000,
27499     scale : 0,
27500     baseScale : 1,
27501     rotate : 0,
27502     dragable : false,
27503     pinching : false,
27504     mouseX : 0,
27505     mouseY : 0,
27506     cropData : false,
27507     minWidth : 300,
27508     minHeight : 300,
27509     file : false,
27510     exif : {},
27511     baseRotate : 1,
27512     cropType : 'image/jpeg',
27513     buttons : false,
27514     canvasLoaded : false,
27515     isDocument : false,
27516     method : 'POST',
27517     paramName : 'imageUpload',
27518     loadMask : true,
27519     loadingText : 'Loading...',
27520     maskEl : false,
27521     
27522     getAutoCreate : function()
27523     {
27524         var cfg = {
27525             tag : 'div',
27526             cls : 'roo-upload-cropbox',
27527             cn : [
27528                 {
27529                     tag : 'input',
27530                     cls : 'roo-upload-cropbox-selector',
27531                     type : 'file'
27532                 },
27533                 {
27534                     tag : 'div',
27535                     cls : 'roo-upload-cropbox-body',
27536                     style : 'cursor:pointer',
27537                     cn : [
27538                         {
27539                             tag : 'div',
27540                             cls : 'roo-upload-cropbox-preview'
27541                         },
27542                         {
27543                             tag : 'div',
27544                             cls : 'roo-upload-cropbox-thumb'
27545                         },
27546                         {
27547                             tag : 'div',
27548                             cls : 'roo-upload-cropbox-empty-notify',
27549                             html : this.emptyText
27550                         },
27551                         {
27552                             tag : 'div',
27553                             cls : 'roo-upload-cropbox-error-notify alert alert-danger',
27554                             html : this.rotateNotify
27555                         }
27556                     ]
27557                 },
27558                 {
27559                     tag : 'div',
27560                     cls : 'roo-upload-cropbox-footer',
27561                     cn : {
27562                         tag : 'div',
27563                         cls : 'btn-group btn-group-justified roo-upload-cropbox-btn-group',
27564                         cn : []
27565                     }
27566                 }
27567             ]
27568         };
27569         
27570         return cfg;
27571     },
27572     
27573     onRender : function(ct, position)
27574     {
27575         Roo.bootstrap.UploadCropbox.superclass.onRender.call(this, ct, position);
27576         
27577         if (this.buttons.length) {
27578             
27579             Roo.each(this.buttons, function(bb) {
27580                 
27581                 var btn = this.el.select('.roo-upload-cropbox-footer div.roo-upload-cropbox-btn-group').first().createChild(bb);
27582                 
27583                 btn.on('click', this.onFooterButtonClick.createDelegate(this, [bb.action], true));
27584                 
27585             }, this);
27586         }
27587         
27588         if(this.loadMask){
27589             this.maskEl = this.el;
27590         }
27591     },
27592     
27593     initEvents : function()
27594     {
27595         this.urlAPI = (window.createObjectURL && window) || 
27596                                 (window.URL && URL.revokeObjectURL && URL) || 
27597                                 (window.webkitURL && webkitURL);
27598                         
27599         this.bodyEl = this.el.select('.roo-upload-cropbox-body', true).first();
27600         this.bodyEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
27601         
27602         this.selectorEl = this.el.select('.roo-upload-cropbox-selector', true).first();
27603         this.selectorEl.hide();
27604         
27605         this.previewEl = this.el.select('.roo-upload-cropbox-preview', true).first();
27606         this.previewEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
27607         
27608         this.thumbEl = this.el.select('.roo-upload-cropbox-thumb', true).first();
27609         this.thumbEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
27610         this.thumbEl.hide();
27611         
27612         this.notifyEl = this.el.select('.roo-upload-cropbox-empty-notify', true).first();
27613         this.notifyEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
27614         
27615         this.errorEl = this.el.select('.roo-upload-cropbox-error-notify', true).first();
27616         this.errorEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
27617         this.errorEl.hide();
27618         
27619         this.footerEl = this.el.select('.roo-upload-cropbox-footer', true).first();
27620         this.footerEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
27621         this.footerEl.hide();
27622         
27623         this.setThumbBoxSize();
27624         
27625         this.bind();
27626         
27627         this.resize();
27628         
27629         this.fireEvent('initial', this);
27630     },
27631
27632     bind : function()
27633     {
27634         var _this = this;
27635         
27636         window.addEventListener("resize", function() { _this.resize(); } );
27637         
27638         this.bodyEl.on('click', this.beforeSelectFile, this);
27639         
27640         if(Roo.isTouch){
27641             this.bodyEl.on('touchstart', this.onTouchStart, this);
27642             this.bodyEl.on('touchmove', this.onTouchMove, this);
27643             this.bodyEl.on('touchend', this.onTouchEnd, this);
27644         }
27645         
27646         if(!Roo.isTouch){
27647             this.bodyEl.on('mousedown', this.onMouseDown, this);
27648             this.bodyEl.on('mousemove', this.onMouseMove, this);
27649             var mousewheel = (/Firefox/i.test(navigator.userAgent))? 'DOMMouseScroll' : 'mousewheel';
27650             this.bodyEl.on(mousewheel, this.onMouseWheel, this);
27651             Roo.get(document).on('mouseup', this.onMouseUp, this);
27652         }
27653         
27654         this.selectorEl.on('change', this.onFileSelected, this);
27655     },
27656     
27657     reset : function()
27658     {    
27659         this.scale = 0;
27660         this.baseScale = 1;
27661         this.rotate = 0;
27662         this.baseRotate = 1;
27663         this.dragable = false;
27664         this.pinching = false;
27665         this.mouseX = 0;
27666         this.mouseY = 0;
27667         this.cropData = false;
27668         this.notifyEl.dom.innerHTML = this.emptyText;
27669         
27670         this.selectorEl.dom.value = '';
27671         
27672     },
27673     
27674     resize : function()
27675     {
27676         if(this.fireEvent('resize', this) != false){
27677             this.setThumbBoxPosition();
27678             this.setCanvasPosition();
27679         }
27680     },
27681     
27682     onFooterButtonClick : function(e, el, o, type)
27683     {
27684         switch (type) {
27685             case 'rotate-left' :
27686                 this.onRotateLeft(e);
27687                 break;
27688             case 'rotate-right' :
27689                 this.onRotateRight(e);
27690                 break;
27691             case 'picture' :
27692                 this.beforeSelectFile(e);
27693                 break;
27694             case 'trash' :
27695                 this.trash(e);
27696                 break;
27697             case 'crop' :
27698                 this.crop(e);
27699                 break;
27700             case 'download' :
27701                 this.download(e);
27702                 break;
27703             default :
27704                 break;
27705         }
27706         
27707         this.fireEvent('footerbuttonclick', this, type);
27708     },
27709     
27710     beforeSelectFile : function(e)
27711     {
27712         e.preventDefault();
27713         
27714         if(this.fireEvent('beforeselectfile', this) != false){
27715             this.selectorEl.dom.click();
27716         }
27717     },
27718     
27719     onFileSelected : function(e)
27720     {
27721         e.preventDefault();
27722         
27723         if(typeof(this.selectorEl.dom.files) == 'undefined' || !this.selectorEl.dom.files.length){
27724             return;
27725         }
27726         
27727         var file = this.selectorEl.dom.files[0];
27728         
27729         if(this.fireEvent('inspect', this, file) != false){
27730             this.prepare(file);
27731         }
27732         
27733     },
27734     
27735     trash : function(e)
27736     {
27737         this.fireEvent('trash', this);
27738     },
27739     
27740     download : function(e)
27741     {
27742         this.fireEvent('download', this);
27743     },
27744     
27745     loadCanvas : function(src)
27746     {   
27747         if(this.fireEvent('beforeloadcanvas', this, src) != false){
27748             
27749             this.reset();
27750             
27751             this.imageEl = document.createElement('img');
27752             
27753             var _this = this;
27754             
27755             this.imageEl.addEventListener("load", function(){ _this.onLoadCanvas(); });
27756             
27757             this.imageEl.src = src;
27758         }
27759     },
27760     
27761     onLoadCanvas : function()
27762     {   
27763         this.imageEl.OriginWidth = this.imageEl.naturalWidth || this.imageEl.width;
27764         this.imageEl.OriginHeight = this.imageEl.naturalHeight || this.imageEl.height;
27765         
27766         this.bodyEl.un('click', this.beforeSelectFile, this);
27767         
27768         this.notifyEl.hide();
27769         this.thumbEl.show();
27770         this.footerEl.show();
27771         
27772         this.baseRotateLevel();
27773         
27774         if(this.isDocument){
27775             this.setThumbBoxSize();
27776         }
27777         
27778         this.setThumbBoxPosition();
27779         
27780         this.baseScaleLevel();
27781         
27782         this.draw();
27783         
27784         this.resize();
27785         
27786         this.canvasLoaded = true;
27787         
27788         if(this.loadMask){
27789             this.maskEl.unmask();
27790         }
27791         
27792     },
27793     
27794     setCanvasPosition : function()
27795     {   
27796         if(!this.canvasEl){
27797             return;
27798         }
27799         
27800         var pw = Math.ceil((this.bodyEl.getWidth() - this.canvasEl.width) / 2);
27801         var ph = Math.ceil((this.bodyEl.getHeight() - this.canvasEl.height) / 2);
27802         
27803         this.previewEl.setLeft(pw);
27804         this.previewEl.setTop(ph);
27805         
27806     },
27807     
27808     onMouseDown : function(e)
27809     {   
27810         e.stopEvent();
27811         
27812         this.dragable = true;
27813         this.pinching = false;
27814         
27815         if(this.isDocument && (this.canvasEl.width < this.thumbEl.getWidth() || this.canvasEl.height < this.thumbEl.getHeight())){
27816             this.dragable = false;
27817             return;
27818         }
27819         
27820         this.mouseX = Roo.isTouch ? e.browserEvent.touches[0].pageX : e.getPageX();
27821         this.mouseY = Roo.isTouch ? e.browserEvent.touches[0].pageY : e.getPageY();
27822         
27823     },
27824     
27825     onMouseMove : function(e)
27826     {   
27827         e.stopEvent();
27828         
27829         if(!this.canvasLoaded){
27830             return;
27831         }
27832         
27833         if (!this.dragable){
27834             return;
27835         }
27836         
27837         var minX = Math.ceil(this.thumbEl.getLeft(true));
27838         var minY = Math.ceil(this.thumbEl.getTop(true));
27839         
27840         var maxX = Math.ceil(minX + this.thumbEl.getWidth() - this.canvasEl.width);
27841         var maxY = Math.ceil(minY + this.thumbEl.getHeight() - this.canvasEl.height);
27842         
27843         var x = Roo.isTouch ? e.browserEvent.touches[0].pageX : e.getPageX();
27844         var y = Roo.isTouch ? e.browserEvent.touches[0].pageY : e.getPageY();
27845         
27846         x = x - this.mouseX;
27847         y = y - this.mouseY;
27848         
27849         var bgX = Math.ceil(x + this.previewEl.getLeft(true));
27850         var bgY = Math.ceil(y + this.previewEl.getTop(true));
27851         
27852         bgX = (minX < bgX) ? minX : ((maxX > bgX) ? maxX : bgX);
27853         bgY = (minY < bgY) ? minY : ((maxY > bgY) ? maxY : bgY);
27854         
27855         this.previewEl.setLeft(bgX);
27856         this.previewEl.setTop(bgY);
27857         
27858         this.mouseX = Roo.isTouch ? e.browserEvent.touches[0].pageX : e.getPageX();
27859         this.mouseY = Roo.isTouch ? e.browserEvent.touches[0].pageY : e.getPageY();
27860     },
27861     
27862     onMouseUp : function(e)
27863     {   
27864         e.stopEvent();
27865         
27866         this.dragable = false;
27867     },
27868     
27869     onMouseWheel : function(e)
27870     {   
27871         e.stopEvent();
27872         
27873         this.startScale = this.scale;
27874         
27875         this.scale = (e.getWheelDelta() == 1) ? (this.scale + 1) : (this.scale - 1);
27876         
27877         if(!this.zoomable()){
27878             this.scale = this.startScale;
27879             return;
27880         }
27881         
27882         this.draw();
27883         
27884         return;
27885     },
27886     
27887     zoomable : function()
27888     {
27889         var minScale = this.thumbEl.getWidth() / this.minWidth;
27890         
27891         if(this.minWidth < this.minHeight){
27892             minScale = this.thumbEl.getHeight() / this.minHeight;
27893         }
27894         
27895         var width = Math.ceil(this.imageEl.OriginWidth * this.getScaleLevel() / minScale);
27896         var height = Math.ceil(this.imageEl.OriginHeight * this.getScaleLevel() / minScale);
27897         
27898         if(
27899                 this.isDocument &&
27900                 (this.rotate == 0 || this.rotate == 180) && 
27901                 (
27902                     width > this.imageEl.OriginWidth || 
27903                     height > this.imageEl.OriginHeight ||
27904                     (width < this.minWidth && height < this.minHeight)
27905                 )
27906         ){
27907             return false;
27908         }
27909         
27910         if(
27911                 this.isDocument &&
27912                 (this.rotate == 90 || this.rotate == 270) && 
27913                 (
27914                     width > this.imageEl.OriginWidth || 
27915                     height > this.imageEl.OriginHeight ||
27916                     (width < this.minHeight && height < this.minWidth)
27917                 )
27918         ){
27919             return false;
27920         }
27921         
27922         if(
27923                 !this.isDocument &&
27924                 (this.rotate == 0 || this.rotate == 180) && 
27925                 (
27926                     width < this.minWidth || 
27927                     width > this.imageEl.OriginWidth || 
27928                     height < this.minHeight || 
27929                     height > this.imageEl.OriginHeight
27930                 )
27931         ){
27932             return false;
27933         }
27934         
27935         if(
27936                 !this.isDocument &&
27937                 (this.rotate == 90 || this.rotate == 270) && 
27938                 (
27939                     width < this.minHeight || 
27940                     width > this.imageEl.OriginWidth || 
27941                     height < this.minWidth || 
27942                     height > this.imageEl.OriginHeight
27943                 )
27944         ){
27945             return false;
27946         }
27947         
27948         return true;
27949         
27950     },
27951     
27952     onRotateLeft : function(e)
27953     {   
27954         if(!this.isDocument && (this.canvasEl.height < this.thumbEl.getWidth() || this.canvasEl.width < this.thumbEl.getHeight())){
27955             
27956             var minScale = this.thumbEl.getWidth() / this.minWidth;
27957             
27958             var bw = Math.ceil(this.canvasEl.width / this.getScaleLevel());
27959             var bh = Math.ceil(this.canvasEl.height / this.getScaleLevel());
27960             
27961             this.startScale = this.scale;
27962             
27963             while (this.getScaleLevel() < minScale){
27964             
27965                 this.scale = this.scale + 1;
27966                 
27967                 if(!this.zoomable()){
27968                     break;
27969                 }
27970                 
27971                 if(
27972                         Math.ceil(bw * this.getScaleLevel()) < this.thumbEl.getHeight() ||
27973                         Math.ceil(bh * this.getScaleLevel()) < this.thumbEl.getWidth()
27974                 ){
27975                     continue;
27976                 }
27977                 
27978                 this.rotate = (this.rotate < 90) ? 270 : this.rotate - 90;
27979
27980                 this.draw();
27981                 
27982                 return;
27983             }
27984             
27985             this.scale = this.startScale;
27986             
27987             this.onRotateFail();
27988             
27989             return false;
27990         }
27991         
27992         this.rotate = (this.rotate < 90) ? 270 : this.rotate - 90;
27993
27994         if(this.isDocument){
27995             this.setThumbBoxSize();
27996             this.setThumbBoxPosition();
27997             this.setCanvasPosition();
27998         }
27999         
28000         this.draw();
28001         
28002         this.fireEvent('rotate', this, 'left');
28003         
28004     },
28005     
28006     onRotateRight : function(e)
28007     {
28008         if(!this.isDocument && (this.canvasEl.height < this.thumbEl.getWidth() || this.canvasEl.width < this.thumbEl.getHeight())){
28009             
28010             var minScale = this.thumbEl.getWidth() / this.minWidth;
28011         
28012             var bw = Math.ceil(this.canvasEl.width / this.getScaleLevel());
28013             var bh = Math.ceil(this.canvasEl.height / this.getScaleLevel());
28014             
28015             this.startScale = this.scale;
28016             
28017             while (this.getScaleLevel() < minScale){
28018             
28019                 this.scale = this.scale + 1;
28020                 
28021                 if(!this.zoomable()){
28022                     break;
28023                 }
28024                 
28025                 if(
28026                         Math.ceil(bw * this.getScaleLevel()) < this.thumbEl.getHeight() ||
28027                         Math.ceil(bh * this.getScaleLevel()) < this.thumbEl.getWidth()
28028                 ){
28029                     continue;
28030                 }
28031                 
28032                 this.rotate = (this.rotate > 180) ? 0 : this.rotate + 90;
28033
28034                 this.draw();
28035                 
28036                 return;
28037             }
28038             
28039             this.scale = this.startScale;
28040             
28041             this.onRotateFail();
28042             
28043             return false;
28044         }
28045         
28046         this.rotate = (this.rotate > 180) ? 0 : this.rotate + 90;
28047
28048         if(this.isDocument){
28049             this.setThumbBoxSize();
28050             this.setThumbBoxPosition();
28051             this.setCanvasPosition();
28052         }
28053         
28054         this.draw();
28055         
28056         this.fireEvent('rotate', this, 'right');
28057     },
28058     
28059     onRotateFail : function()
28060     {
28061         this.errorEl.show(true);
28062         
28063         var _this = this;
28064         
28065         (function() { _this.errorEl.hide(true); }).defer(this.errorTimeout);
28066     },
28067     
28068     draw : function()
28069     {
28070         this.previewEl.dom.innerHTML = '';
28071         
28072         var canvasEl = document.createElement("canvas");
28073         
28074         var contextEl = canvasEl.getContext("2d");
28075         
28076         canvasEl.width = this.imageEl.OriginWidth * this.getScaleLevel();
28077         canvasEl.height = this.imageEl.OriginWidth * this.getScaleLevel();
28078         var center = this.imageEl.OriginWidth / 2;
28079         
28080         if(this.imageEl.OriginWidth < this.imageEl.OriginHeight){
28081             canvasEl.width = this.imageEl.OriginHeight * this.getScaleLevel();
28082             canvasEl.height = this.imageEl.OriginHeight * this.getScaleLevel();
28083             center = this.imageEl.OriginHeight / 2;
28084         }
28085         
28086         contextEl.scale(this.getScaleLevel(), this.getScaleLevel());
28087         
28088         contextEl.translate(center, center);
28089         contextEl.rotate(this.rotate * Math.PI / 180);
28090
28091         contextEl.drawImage(this.imageEl, 0, 0, this.imageEl.OriginWidth, this.imageEl.OriginHeight, center * -1, center * -1, this.imageEl.OriginWidth, this.imageEl.OriginHeight);
28092         
28093         this.canvasEl = document.createElement("canvas");
28094         
28095         this.contextEl = this.canvasEl.getContext("2d");
28096         
28097         switch (this.rotate) {
28098             case 0 :
28099                 
28100                 this.canvasEl.width = this.imageEl.OriginWidth * this.getScaleLevel();
28101                 this.canvasEl.height = this.imageEl.OriginHeight * this.getScaleLevel();
28102                 
28103                 this.contextEl.drawImage(canvasEl, 0, 0, this.canvasEl.width, this.canvasEl.height, 0, 0, this.canvasEl.width, this.canvasEl.height);
28104                 
28105                 break;
28106             case 90 : 
28107                 
28108                 this.canvasEl.width = this.imageEl.OriginHeight * this.getScaleLevel();
28109                 this.canvasEl.height = this.imageEl.OriginWidth * this.getScaleLevel();
28110                 
28111                 if(this.imageEl.OriginWidth > this.imageEl.OriginHeight){
28112                     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);
28113                     break;
28114                 }
28115                 
28116                 this.contextEl.drawImage(canvasEl, 0, 0, this.canvasEl.width, this.canvasEl.height, 0, 0, this.canvasEl.width, this.canvasEl.height);
28117                 
28118                 break;
28119             case 180 :
28120                 
28121                 this.canvasEl.width = this.imageEl.OriginWidth * this.getScaleLevel();
28122                 this.canvasEl.height = this.imageEl.OriginHeight * this.getScaleLevel();
28123                 
28124                 if(this.imageEl.OriginWidth > this.imageEl.OriginHeight){
28125                     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);
28126                     break;
28127                 }
28128                 
28129                 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);
28130                 
28131                 break;
28132             case 270 :
28133                 
28134                 this.canvasEl.width = this.imageEl.OriginHeight * this.getScaleLevel();
28135                 this.canvasEl.height = this.imageEl.OriginWidth * this.getScaleLevel();
28136         
28137                 if(this.imageEl.OriginWidth > this.imageEl.OriginHeight){
28138                     this.contextEl.drawImage(canvasEl, 0, 0, this.canvasEl.width, this.canvasEl.height, 0, 0, this.canvasEl.width, this.canvasEl.height);
28139                     break;
28140                 }
28141                 
28142                 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);
28143                 
28144                 break;
28145             default : 
28146                 break;
28147         }
28148         
28149         this.previewEl.appendChild(this.canvasEl);
28150         
28151         this.setCanvasPosition();
28152     },
28153     
28154     crop : function()
28155     {
28156         if(!this.canvasLoaded){
28157             return;
28158         }
28159         
28160         var imageCanvas = document.createElement("canvas");
28161         
28162         var imageContext = imageCanvas.getContext("2d");
28163         
28164         imageCanvas.width = (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? this.imageEl.OriginWidth : this.imageEl.OriginHeight;
28165         imageCanvas.height = (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? this.imageEl.OriginWidth : this.imageEl.OriginHeight;
28166         
28167         var center = imageCanvas.width / 2;
28168         
28169         imageContext.translate(center, center);
28170         
28171         imageContext.rotate(this.rotate * Math.PI / 180);
28172         
28173         imageContext.drawImage(this.imageEl, 0, 0, this.imageEl.OriginWidth, this.imageEl.OriginHeight, center * -1, center * -1, this.imageEl.OriginWidth, this.imageEl.OriginHeight);
28174         
28175         var canvas = document.createElement("canvas");
28176         
28177         var context = canvas.getContext("2d");
28178                 
28179         canvas.width = this.minWidth;
28180         canvas.height = this.minHeight;
28181
28182         switch (this.rotate) {
28183             case 0 :
28184                 
28185                 var width = (this.thumbEl.getWidth() / this.getScaleLevel() > this.imageEl.OriginWidth) ? this.imageEl.OriginWidth : (this.thumbEl.getWidth() / this.getScaleLevel());
28186                 var height = (this.thumbEl.getHeight() / this.getScaleLevel() > this.imageEl.OriginHeight) ? this.imageEl.OriginHeight : (this.thumbEl.getHeight() / this.getScaleLevel());
28187                 
28188                 var x = (this.thumbEl.getLeft(true) > this.previewEl.getLeft(true)) ? 0 : ((this.previewEl.getLeft(true) - this.thumbEl.getLeft(true)) / this.getScaleLevel());
28189                 var y = (this.thumbEl.getTop(true) > this.previewEl.getTop(true)) ? 0 : ((this.previewEl.getTop(true) - this.thumbEl.getTop(true)) / this.getScaleLevel());
28190                 
28191                 var targetWidth = this.minWidth - 2 * x;
28192                 var targetHeight = this.minHeight - 2 * y;
28193                 
28194                 var scale = 1;
28195                 
28196                 if((x == 0 && y == 0) || (x == 0 && y > 0)){
28197                     scale = targetWidth / width;
28198                 }
28199                 
28200                 if(x > 0 && y == 0){
28201                     scale = targetHeight / height;
28202                 }
28203                 
28204                 if(x > 0 && y > 0){
28205                     scale = targetWidth / width;
28206                     
28207                     if(width < height){
28208                         scale = targetHeight / height;
28209                     }
28210                 }
28211                 
28212                 context.scale(scale, scale);
28213                 
28214                 var sx = Math.min(this.canvasEl.width - this.thumbEl.getWidth(), this.thumbEl.getLeft(true) - this.previewEl.getLeft(true));
28215                 var sy = Math.min(this.canvasEl.height - this.thumbEl.getHeight(), this.thumbEl.getTop(true) - this.previewEl.getTop(true));
28216
28217                 sx = sx < 0 ? 0 : (sx / this.getScaleLevel());
28218                 sy = sy < 0 ? 0 : (sy / this.getScaleLevel());
28219
28220                 context.drawImage(imageCanvas, sx, sy, width, height, x, y, width, height);
28221                 
28222                 break;
28223             case 90 : 
28224                 
28225                 var width = (this.thumbEl.getWidth() / this.getScaleLevel() > this.imageEl.OriginHeight) ? this.imageEl.OriginHeight : (this.thumbEl.getWidth() / this.getScaleLevel());
28226                 var height = (this.thumbEl.getHeight() / this.getScaleLevel() > this.imageEl.OriginWidth) ? this.imageEl.OriginWidth : (this.thumbEl.getHeight() / this.getScaleLevel());
28227                 
28228                 var x = (this.thumbEl.getLeft(true) > this.previewEl.getLeft(true)) ? 0 : ((this.previewEl.getLeft(true) - this.thumbEl.getLeft(true)) / this.getScaleLevel());
28229                 var y = (this.thumbEl.getTop(true) > this.previewEl.getTop(true)) ? 0 : ((this.previewEl.getTop(true) - this.thumbEl.getTop(true)) / this.getScaleLevel());
28230                 
28231                 var targetWidth = this.minWidth - 2 * x;
28232                 var targetHeight = this.minHeight - 2 * y;
28233                 
28234                 var scale = 1;
28235                 
28236                 if((x == 0 && y == 0) || (x == 0 && y > 0)){
28237                     scale = targetWidth / width;
28238                 }
28239                 
28240                 if(x > 0 && y == 0){
28241                     scale = targetHeight / height;
28242                 }
28243                 
28244                 if(x > 0 && y > 0){
28245                     scale = targetWidth / width;
28246                     
28247                     if(width < height){
28248                         scale = targetHeight / height;
28249                     }
28250                 }
28251                 
28252                 context.scale(scale, scale);
28253                 
28254                 var sx = Math.min(this.canvasEl.width - this.thumbEl.getWidth(), this.thumbEl.getLeft(true) - this.previewEl.getLeft(true));
28255                 var sy = Math.min(this.canvasEl.height - this.thumbEl.getHeight(), this.thumbEl.getTop(true) - this.previewEl.getTop(true));
28256
28257                 sx = sx < 0 ? 0 : (sx / this.getScaleLevel());
28258                 sy = sy < 0 ? 0 : (sy / this.getScaleLevel());
28259                 
28260                 sx += (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? Math.abs(this.imageEl.OriginWidth - this.imageEl.OriginHeight) : 0;
28261                 
28262                 context.drawImage(imageCanvas, sx, sy, width, height, x, y, width, height);
28263                 
28264                 break;
28265             case 180 :
28266                 
28267                 var width = (this.thumbEl.getWidth() / this.getScaleLevel() > this.imageEl.OriginWidth) ? this.imageEl.OriginWidth : (this.thumbEl.getWidth() / this.getScaleLevel());
28268                 var height = (this.thumbEl.getHeight() / this.getScaleLevel() > this.imageEl.OriginHeight) ? this.imageEl.OriginHeight : (this.thumbEl.getHeight() / this.getScaleLevel());
28269                 
28270                 var x = (this.thumbEl.getLeft(true) > this.previewEl.getLeft(true)) ? 0 : ((this.previewEl.getLeft(true) - this.thumbEl.getLeft(true)) / this.getScaleLevel());
28271                 var y = (this.thumbEl.getTop(true) > this.previewEl.getTop(true)) ? 0 : ((this.previewEl.getTop(true) - this.thumbEl.getTop(true)) / this.getScaleLevel());
28272                 
28273                 var targetWidth = this.minWidth - 2 * x;
28274                 var targetHeight = this.minHeight - 2 * y;
28275                 
28276                 var scale = 1;
28277                 
28278                 if((x == 0 && y == 0) || (x == 0 && y > 0)){
28279                     scale = targetWidth / width;
28280                 }
28281                 
28282                 if(x > 0 && y == 0){
28283                     scale = targetHeight / height;
28284                 }
28285                 
28286                 if(x > 0 && y > 0){
28287                     scale = targetWidth / width;
28288                     
28289                     if(width < height){
28290                         scale = targetHeight / height;
28291                     }
28292                 }
28293                 
28294                 context.scale(scale, scale);
28295                 
28296                 var sx = Math.min(this.canvasEl.width - this.thumbEl.getWidth(), this.thumbEl.getLeft(true) - this.previewEl.getLeft(true));
28297                 var sy = Math.min(this.canvasEl.height - this.thumbEl.getHeight(), this.thumbEl.getTop(true) - this.previewEl.getTop(true));
28298
28299                 sx = sx < 0 ? 0 : (sx / this.getScaleLevel());
28300                 sy = sy < 0 ? 0 : (sy / this.getScaleLevel());
28301
28302                 sx += (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? 0 : Math.abs(this.imageEl.OriginWidth - this.imageEl.OriginHeight);
28303                 sy += (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? Math.abs(this.imageEl.OriginWidth - this.imageEl.OriginHeight) : 0;
28304                 
28305                 context.drawImage(imageCanvas, sx, sy, width, height, x, y, width, height);
28306                 
28307                 break;
28308             case 270 :
28309                 
28310                 var width = (this.thumbEl.getWidth() / this.getScaleLevel() > this.imageEl.OriginHeight) ? this.imageEl.OriginHeight : (this.thumbEl.getWidth() / this.getScaleLevel());
28311                 var height = (this.thumbEl.getHeight() / this.getScaleLevel() > this.imageEl.OriginWidth) ? this.imageEl.OriginWidth : (this.thumbEl.getHeight() / this.getScaleLevel());
28312                 
28313                 var x = (this.thumbEl.getLeft(true) > this.previewEl.getLeft(true)) ? 0 : ((this.previewEl.getLeft(true) - this.thumbEl.getLeft(true)) / this.getScaleLevel());
28314                 var y = (this.thumbEl.getTop(true) > this.previewEl.getTop(true)) ? 0 : ((this.previewEl.getTop(true) - this.thumbEl.getTop(true)) / this.getScaleLevel());
28315                 
28316                 var targetWidth = this.minWidth - 2 * x;
28317                 var targetHeight = this.minHeight - 2 * y;
28318                 
28319                 var scale = 1;
28320                 
28321                 if((x == 0 && y == 0) || (x == 0 && y > 0)){
28322                     scale = targetWidth / width;
28323                 }
28324                 
28325                 if(x > 0 && y == 0){
28326                     scale = targetHeight / height;
28327                 }
28328                 
28329                 if(x > 0 && y > 0){
28330                     scale = targetWidth / width;
28331                     
28332                     if(width < height){
28333                         scale = targetHeight / height;
28334                     }
28335                 }
28336                 
28337                 context.scale(scale, scale);
28338                 
28339                 var sx = Math.min(this.canvasEl.width - this.thumbEl.getWidth(), this.thumbEl.getLeft(true) - this.previewEl.getLeft(true));
28340                 var sy = Math.min(this.canvasEl.height - this.thumbEl.getHeight(), this.thumbEl.getTop(true) - this.previewEl.getTop(true));
28341
28342                 sx = sx < 0 ? 0 : (sx / this.getScaleLevel());
28343                 sy = sy < 0 ? 0 : (sy / this.getScaleLevel());
28344                 
28345                 sy += (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? 0 : Math.abs(this.imageEl.OriginWidth - this.imageEl.OriginHeight);
28346                 
28347                 context.drawImage(imageCanvas, sx, sy, width, height, x, y, width, height);
28348                 
28349                 break;
28350             default : 
28351                 break;
28352         }
28353         
28354         this.cropData = canvas.toDataURL(this.cropType);
28355         
28356         if(this.fireEvent('crop', this, this.cropData) !== false){
28357             this.process(this.file, this.cropData);
28358         }
28359         
28360         return;
28361         
28362     },
28363     
28364     setThumbBoxSize : function()
28365     {
28366         var width, height;
28367         
28368         if(this.isDocument && typeof(this.imageEl) != 'undefined'){
28369             width = (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? Math.max(this.minWidth, this.minHeight) : Math.min(this.minWidth, this.minHeight);
28370             height = (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? Math.min(this.minWidth, this.minHeight) : Math.max(this.minWidth, this.minHeight);
28371             
28372             this.minWidth = width;
28373             this.minHeight = height;
28374             
28375             if(this.rotate == 90 || this.rotate == 270){
28376                 this.minWidth = height;
28377                 this.minHeight = width;
28378             }
28379         }
28380         
28381         height = 300;
28382         width = Math.ceil(this.minWidth * height / this.minHeight);
28383         
28384         if(this.minWidth > this.minHeight){
28385             width = 300;
28386             height = Math.ceil(this.minHeight * width / this.minWidth);
28387         }
28388         
28389         this.thumbEl.setStyle({
28390             width : width + 'px',
28391             height : height + 'px'
28392         });
28393
28394         return;
28395             
28396     },
28397     
28398     setThumbBoxPosition : function()
28399     {
28400         var x = Math.ceil((this.bodyEl.getWidth() - this.thumbEl.getWidth()) / 2 );
28401         var y = Math.ceil((this.bodyEl.getHeight() - this.thumbEl.getHeight()) / 2);
28402         
28403         this.thumbEl.setLeft(x);
28404         this.thumbEl.setTop(y);
28405         
28406     },
28407     
28408     baseRotateLevel : function()
28409     {
28410         this.baseRotate = 1;
28411         
28412         if(
28413                 typeof(this.exif) != 'undefined' &&
28414                 typeof(this.exif[Roo.bootstrap.UploadCropbox['tags']['Orientation']]) != 'undefined' &&
28415                 [1, 3, 6, 8].indexOf(this.exif[Roo.bootstrap.UploadCropbox['tags']['Orientation']]) != -1
28416         ){
28417             this.baseRotate = this.exif[Roo.bootstrap.UploadCropbox['tags']['Orientation']];
28418         }
28419         
28420         this.rotate = Roo.bootstrap.UploadCropbox['Orientation'][this.baseRotate];
28421         
28422     },
28423     
28424     baseScaleLevel : function()
28425     {
28426         var width, height;
28427         
28428         if(this.isDocument){
28429             
28430             if(this.baseRotate == 6 || this.baseRotate == 8){
28431             
28432                 height = this.thumbEl.getHeight();
28433                 this.baseScale = height / this.imageEl.OriginWidth;
28434
28435                 if(this.imageEl.OriginHeight * this.baseScale > this.thumbEl.getWidth()){
28436                     width = this.thumbEl.getWidth();
28437                     this.baseScale = width / this.imageEl.OriginHeight;
28438                 }
28439
28440                 return;
28441             }
28442
28443             height = this.thumbEl.getHeight();
28444             this.baseScale = height / this.imageEl.OriginHeight;
28445
28446             if(this.imageEl.OriginWidth * this.baseScale > this.thumbEl.getWidth()){
28447                 width = this.thumbEl.getWidth();
28448                 this.baseScale = width / this.imageEl.OriginWidth;
28449             }
28450
28451             return;
28452         }
28453         
28454         if(this.baseRotate == 6 || this.baseRotate == 8){
28455             
28456             width = this.thumbEl.getHeight();
28457             this.baseScale = width / this.imageEl.OriginHeight;
28458             
28459             if(this.imageEl.OriginHeight * this.baseScale < this.thumbEl.getWidth()){
28460                 height = this.thumbEl.getWidth();
28461                 this.baseScale = height / this.imageEl.OriginHeight;
28462             }
28463             
28464             if(this.imageEl.OriginWidth > this.imageEl.OriginHeight){
28465                 height = this.thumbEl.getWidth();
28466                 this.baseScale = height / this.imageEl.OriginHeight;
28467                 
28468                 if(this.imageEl.OriginWidth * this.baseScale < this.thumbEl.getHeight()){
28469                     width = this.thumbEl.getHeight();
28470                     this.baseScale = width / this.imageEl.OriginWidth;
28471                 }
28472             }
28473             
28474             return;
28475         }
28476         
28477         width = this.thumbEl.getWidth();
28478         this.baseScale = width / this.imageEl.OriginWidth;
28479         
28480         if(this.imageEl.OriginHeight * this.baseScale < this.thumbEl.getHeight()){
28481             height = this.thumbEl.getHeight();
28482             this.baseScale = height / this.imageEl.OriginHeight;
28483         }
28484         
28485         if(this.imageEl.OriginWidth > this.imageEl.OriginHeight){
28486             
28487             height = this.thumbEl.getHeight();
28488             this.baseScale = height / this.imageEl.OriginHeight;
28489             
28490             if(this.imageEl.OriginWidth * this.baseScale < this.thumbEl.getWidth()){
28491                 width = this.thumbEl.getWidth();
28492                 this.baseScale = width / this.imageEl.OriginWidth;
28493             }
28494             
28495         }
28496         
28497         return;
28498     },
28499     
28500     getScaleLevel : function()
28501     {
28502         return this.baseScale * Math.pow(1.1, this.scale);
28503     },
28504     
28505     onTouchStart : function(e)
28506     {
28507         if(!this.canvasLoaded){
28508             this.beforeSelectFile(e);
28509             return;
28510         }
28511         
28512         var touches = e.browserEvent.touches;
28513         
28514         if(!touches){
28515             return;
28516         }
28517         
28518         if(touches.length == 1){
28519             this.onMouseDown(e);
28520             return;
28521         }
28522         
28523         if(touches.length != 2){
28524             return;
28525         }
28526         
28527         var coords = [];
28528         
28529         for(var i = 0, finger; finger = touches[i]; i++){
28530             coords.push(finger.pageX, finger.pageY);
28531         }
28532         
28533         var x = Math.pow(coords[0] - coords[2], 2);
28534         var y = Math.pow(coords[1] - coords[3], 2);
28535         
28536         this.startDistance = Math.sqrt(x + y);
28537         
28538         this.startScale = this.scale;
28539         
28540         this.pinching = true;
28541         this.dragable = false;
28542         
28543     },
28544     
28545     onTouchMove : function(e)
28546     {
28547         if(!this.pinching && !this.dragable){
28548             return;
28549         }
28550         
28551         var touches = e.browserEvent.touches;
28552         
28553         if(!touches){
28554             return;
28555         }
28556         
28557         if(this.dragable){
28558             this.onMouseMove(e);
28559             return;
28560         }
28561         
28562         var coords = [];
28563         
28564         for(var i = 0, finger; finger = touches[i]; i++){
28565             coords.push(finger.pageX, finger.pageY);
28566         }
28567         
28568         var x = Math.pow(coords[0] - coords[2], 2);
28569         var y = Math.pow(coords[1] - coords[3], 2);
28570         
28571         this.endDistance = Math.sqrt(x + y);
28572         
28573         this.scale = this.startScale + Math.floor(Math.log(this.endDistance / this.startDistance) / Math.log(1.1));
28574         
28575         if(!this.zoomable()){
28576             this.scale = this.startScale;
28577             return;
28578         }
28579         
28580         this.draw();
28581         
28582     },
28583     
28584     onTouchEnd : function(e)
28585     {
28586         this.pinching = false;
28587         this.dragable = false;
28588         
28589     },
28590     
28591     process : function(file, crop)
28592     {
28593         if(this.loadMask){
28594             this.maskEl.mask(this.loadingText);
28595         }
28596         
28597         this.xhr = new XMLHttpRequest();
28598         
28599         file.xhr = this.xhr;
28600
28601         this.xhr.open(this.method, this.url, true);
28602         
28603         var headers = {
28604             "Accept": "application/json",
28605             "Cache-Control": "no-cache",
28606             "X-Requested-With": "XMLHttpRequest"
28607         };
28608         
28609         for (var headerName in headers) {
28610             var headerValue = headers[headerName];
28611             if (headerValue) {
28612                 this.xhr.setRequestHeader(headerName, headerValue);
28613             }
28614         }
28615         
28616         var _this = this;
28617         
28618         this.xhr.onload = function()
28619         {
28620             _this.xhrOnLoad(_this.xhr);
28621         }
28622         
28623         this.xhr.onerror = function()
28624         {
28625             _this.xhrOnError(_this.xhr);
28626         }
28627         
28628         var formData = new FormData();
28629
28630         formData.append('returnHTML', 'NO');
28631         
28632         if(crop){
28633             formData.append('crop', crop);
28634         }
28635         
28636         if(typeof(file) != 'undefined' && (typeof(file.id) == 'undefined' || file.id * 1 < 1)){
28637             formData.append(this.paramName, file, file.name);
28638         }
28639         
28640         if(typeof(file.filename) != 'undefined'){
28641             formData.append('filename', file.filename);
28642         }
28643         
28644         if(typeof(file.mimetype) != 'undefined'){
28645             formData.append('mimetype', file.mimetype);
28646         }
28647         
28648         if(this.fireEvent('arrange', this, formData) != false){
28649             this.xhr.send(formData);
28650         };
28651     },
28652     
28653     xhrOnLoad : function(xhr)
28654     {
28655         if(this.loadMask){
28656             this.maskEl.unmask();
28657         }
28658         
28659         if (xhr.readyState !== 4) {
28660             this.fireEvent('exception', this, xhr);
28661             return;
28662         }
28663
28664         var response = Roo.decode(xhr.responseText);
28665         
28666         if(!response.success){
28667             this.fireEvent('exception', this, xhr);
28668             return;
28669         }
28670         
28671         var response = Roo.decode(xhr.responseText);
28672         
28673         this.fireEvent('upload', this, response);
28674         
28675     },
28676     
28677     xhrOnError : function()
28678     {
28679         if(this.loadMask){
28680             this.maskEl.unmask();
28681         }
28682         
28683         Roo.log('xhr on error');
28684         
28685         var response = Roo.decode(xhr.responseText);
28686           
28687         Roo.log(response);
28688         
28689     },
28690     
28691     prepare : function(file)
28692     {   
28693         if(this.loadMask){
28694             this.maskEl.mask(this.loadingText);
28695         }
28696         
28697         this.file = false;
28698         this.exif = {};
28699         
28700         if(typeof(file) === 'string'){
28701             this.loadCanvas(file);
28702             return;
28703         }
28704         
28705         if(!file || !this.urlAPI){
28706             return;
28707         }
28708         
28709         this.file = file;
28710         this.cropType = file.type;
28711         
28712         var _this = this;
28713         
28714         if(this.fireEvent('prepare', this, this.file) != false){
28715             
28716             var reader = new FileReader();
28717             
28718             reader.onload = function (e) {
28719                 if (e.target.error) {
28720                     Roo.log(e.target.error);
28721                     return;
28722                 }
28723                 
28724                 var buffer = e.target.result,
28725                     dataView = new DataView(buffer),
28726                     offset = 2,
28727                     maxOffset = dataView.byteLength - 4,
28728                     markerBytes,
28729                     markerLength;
28730                 
28731                 if (dataView.getUint16(0) === 0xffd8) {
28732                     while (offset < maxOffset) {
28733                         markerBytes = dataView.getUint16(offset);
28734                         
28735                         if ((markerBytes >= 0xffe0 && markerBytes <= 0xffef) || markerBytes === 0xfffe) {
28736                             markerLength = dataView.getUint16(offset + 2) + 2;
28737                             if (offset + markerLength > dataView.byteLength) {
28738                                 Roo.log('Invalid meta data: Invalid segment size.');
28739                                 break;
28740                             }
28741                             
28742                             if(markerBytes == 0xffe1){
28743                                 _this.parseExifData(
28744                                     dataView,
28745                                     offset,
28746                                     markerLength
28747                                 );
28748                             }
28749                             
28750                             offset += markerLength;
28751                             
28752                             continue;
28753                         }
28754                         
28755                         break;
28756                     }
28757                     
28758                 }
28759                 
28760                 var url = _this.urlAPI.createObjectURL(_this.file);
28761                 
28762                 _this.loadCanvas(url);
28763                 
28764                 return;
28765             }
28766             
28767             reader.readAsArrayBuffer(this.file);
28768             
28769         }
28770         
28771     },
28772     
28773     parseExifData : function(dataView, offset, length)
28774     {
28775         var tiffOffset = offset + 10,
28776             littleEndian,
28777             dirOffset;
28778     
28779         if (dataView.getUint32(offset + 4) !== 0x45786966) {
28780             // No Exif data, might be XMP data instead
28781             return;
28782         }
28783         
28784         // Check for the ASCII code for "Exif" (0x45786966):
28785         if (dataView.getUint32(offset + 4) !== 0x45786966) {
28786             // No Exif data, might be XMP data instead
28787             return;
28788         }
28789         if (tiffOffset + 8 > dataView.byteLength) {
28790             Roo.log('Invalid Exif data: Invalid segment size.');
28791             return;
28792         }
28793         // Check for the two null bytes:
28794         if (dataView.getUint16(offset + 8) !== 0x0000) {
28795             Roo.log('Invalid Exif data: Missing byte alignment offset.');
28796             return;
28797         }
28798         // Check the byte alignment:
28799         switch (dataView.getUint16(tiffOffset)) {
28800         case 0x4949:
28801             littleEndian = true;
28802             break;
28803         case 0x4D4D:
28804             littleEndian = false;
28805             break;
28806         default:
28807             Roo.log('Invalid Exif data: Invalid byte alignment marker.');
28808             return;
28809         }
28810         // Check for the TIFF tag marker (0x002A):
28811         if (dataView.getUint16(tiffOffset + 2, littleEndian) !== 0x002A) {
28812             Roo.log('Invalid Exif data: Missing TIFF marker.');
28813             return;
28814         }
28815         // Retrieve the directory offset bytes, usually 0x00000008 or 8 decimal:
28816         dirOffset = dataView.getUint32(tiffOffset + 4, littleEndian);
28817         
28818         this.parseExifTags(
28819             dataView,
28820             tiffOffset,
28821             tiffOffset + dirOffset,
28822             littleEndian
28823         );
28824     },
28825     
28826     parseExifTags : function(dataView, tiffOffset, dirOffset, littleEndian)
28827     {
28828         var tagsNumber,
28829             dirEndOffset,
28830             i;
28831         if (dirOffset + 6 > dataView.byteLength) {
28832             Roo.log('Invalid Exif data: Invalid directory offset.');
28833             return;
28834         }
28835         tagsNumber = dataView.getUint16(dirOffset, littleEndian);
28836         dirEndOffset = dirOffset + 2 + 12 * tagsNumber;
28837         if (dirEndOffset + 4 > dataView.byteLength) {
28838             Roo.log('Invalid Exif data: Invalid directory size.');
28839             return;
28840         }
28841         for (i = 0; i < tagsNumber; i += 1) {
28842             this.parseExifTag(
28843                 dataView,
28844                 tiffOffset,
28845                 dirOffset + 2 + 12 * i, // tag offset
28846                 littleEndian
28847             );
28848         }
28849         // Return the offset to the next directory:
28850         return dataView.getUint32(dirEndOffset, littleEndian);
28851     },
28852     
28853     parseExifTag : function (dataView, tiffOffset, offset, littleEndian) 
28854     {
28855         var tag = dataView.getUint16(offset, littleEndian);
28856         
28857         this.exif[tag] = this.getExifValue(
28858             dataView,
28859             tiffOffset,
28860             offset,
28861             dataView.getUint16(offset + 2, littleEndian), // tag type
28862             dataView.getUint32(offset + 4, littleEndian), // tag length
28863             littleEndian
28864         );
28865     },
28866     
28867     getExifValue : function (dataView, tiffOffset, offset, type, length, littleEndian)
28868     {
28869         var tagType = Roo.bootstrap.UploadCropbox.exifTagTypes[type],
28870             tagSize,
28871             dataOffset,
28872             values,
28873             i,
28874             str,
28875             c;
28876     
28877         if (!tagType) {
28878             Roo.log('Invalid Exif data: Invalid tag type.');
28879             return;
28880         }
28881         
28882         tagSize = tagType.size * length;
28883         // Determine if the value is contained in the dataOffset bytes,
28884         // or if the value at the dataOffset is a pointer to the actual data:
28885         dataOffset = tagSize > 4 ?
28886                 tiffOffset + dataView.getUint32(offset + 8, littleEndian) : (offset + 8);
28887         if (dataOffset + tagSize > dataView.byteLength) {
28888             Roo.log('Invalid Exif data: Invalid data offset.');
28889             return;
28890         }
28891         if (length === 1) {
28892             return tagType.getValue(dataView, dataOffset, littleEndian);
28893         }
28894         values = [];
28895         for (i = 0; i < length; i += 1) {
28896             values[i] = tagType.getValue(dataView, dataOffset + i * tagType.size, littleEndian);
28897         }
28898         
28899         if (tagType.ascii) {
28900             str = '';
28901             // Concatenate the chars:
28902             for (i = 0; i < values.length; i += 1) {
28903                 c = values[i];
28904                 // Ignore the terminating NULL byte(s):
28905                 if (c === '\u0000') {
28906                     break;
28907                 }
28908                 str += c;
28909             }
28910             return str;
28911         }
28912         return values;
28913     }
28914     
28915 });
28916
28917 Roo.apply(Roo.bootstrap.UploadCropbox, {
28918     tags : {
28919         'Orientation': 0x0112
28920     },
28921     
28922     Orientation: {
28923             1: 0, //'top-left',
28924 //            2: 'top-right',
28925             3: 180, //'bottom-right',
28926 //            4: 'bottom-left',
28927 //            5: 'left-top',
28928             6: 90, //'right-top',
28929 //            7: 'right-bottom',
28930             8: 270 //'left-bottom'
28931     },
28932     
28933     exifTagTypes : {
28934         // byte, 8-bit unsigned int:
28935         1: {
28936             getValue: function (dataView, dataOffset) {
28937                 return dataView.getUint8(dataOffset);
28938             },
28939             size: 1
28940         },
28941         // ascii, 8-bit byte:
28942         2: {
28943             getValue: function (dataView, dataOffset) {
28944                 return String.fromCharCode(dataView.getUint8(dataOffset));
28945             },
28946             size: 1,
28947             ascii: true
28948         },
28949         // short, 16 bit int:
28950         3: {
28951             getValue: function (dataView, dataOffset, littleEndian) {
28952                 return dataView.getUint16(dataOffset, littleEndian);
28953             },
28954             size: 2
28955         },
28956         // long, 32 bit int:
28957         4: {
28958             getValue: function (dataView, dataOffset, littleEndian) {
28959                 return dataView.getUint32(dataOffset, littleEndian);
28960             },
28961             size: 4
28962         },
28963         // rational = two long values, first is numerator, second is denominator:
28964         5: {
28965             getValue: function (dataView, dataOffset, littleEndian) {
28966                 return dataView.getUint32(dataOffset, littleEndian) /
28967                     dataView.getUint32(dataOffset + 4, littleEndian);
28968             },
28969             size: 8
28970         },
28971         // slong, 32 bit signed int:
28972         9: {
28973             getValue: function (dataView, dataOffset, littleEndian) {
28974                 return dataView.getInt32(dataOffset, littleEndian);
28975             },
28976             size: 4
28977         },
28978         // srational, two slongs, first is numerator, second is denominator:
28979         10: {
28980             getValue: function (dataView, dataOffset, littleEndian) {
28981                 return dataView.getInt32(dataOffset, littleEndian) /
28982                     dataView.getInt32(dataOffset + 4, littleEndian);
28983             },
28984             size: 8
28985         }
28986     },
28987     
28988     footer : {
28989         STANDARD : [
28990             {
28991                 tag : 'div',
28992                 cls : 'btn-group roo-upload-cropbox-rotate-left',
28993                 action : 'rotate-left',
28994                 cn : [
28995                     {
28996                         tag : 'button',
28997                         cls : 'btn btn-default',
28998                         html : '<i class="fa fa-undo"></i>'
28999                     }
29000                 ]
29001             },
29002             {
29003                 tag : 'div',
29004                 cls : 'btn-group roo-upload-cropbox-picture',
29005                 action : 'picture',
29006                 cn : [
29007                     {
29008                         tag : 'button',
29009                         cls : 'btn btn-default',
29010                         html : '<i class="fa fa-picture-o"></i>'
29011                     }
29012                 ]
29013             },
29014             {
29015                 tag : 'div',
29016                 cls : 'btn-group roo-upload-cropbox-rotate-right',
29017                 action : 'rotate-right',
29018                 cn : [
29019                     {
29020                         tag : 'button',
29021                         cls : 'btn btn-default',
29022                         html : '<i class="fa fa-repeat"></i>'
29023                     }
29024                 ]
29025             }
29026         ],
29027         DOCUMENT : [
29028             {
29029                 tag : 'div',
29030                 cls : 'btn-group roo-upload-cropbox-rotate-left',
29031                 action : 'rotate-left',
29032                 cn : [
29033                     {
29034                         tag : 'button',
29035                         cls : 'btn btn-default',
29036                         html : '<i class="fa fa-undo"></i>'
29037                     }
29038                 ]
29039             },
29040             {
29041                 tag : 'div',
29042                 cls : 'btn-group roo-upload-cropbox-download',
29043                 action : 'download',
29044                 cn : [
29045                     {
29046                         tag : 'button',
29047                         cls : 'btn btn-default',
29048                         html : '<i class="fa fa-download"></i>'
29049                     }
29050                 ]
29051             },
29052             {
29053                 tag : 'div',
29054                 cls : 'btn-group roo-upload-cropbox-crop',
29055                 action : 'crop',
29056                 cn : [
29057                     {
29058                         tag : 'button',
29059                         cls : 'btn btn-default',
29060                         html : '<i class="fa fa-crop"></i>'
29061                     }
29062                 ]
29063             },
29064             {
29065                 tag : 'div',
29066                 cls : 'btn-group roo-upload-cropbox-trash',
29067                 action : 'trash',
29068                 cn : [
29069                     {
29070                         tag : 'button',
29071                         cls : 'btn btn-default',
29072                         html : '<i class="fa fa-trash"></i>'
29073                     }
29074                 ]
29075             },
29076             {
29077                 tag : 'div',
29078                 cls : 'btn-group roo-upload-cropbox-rotate-right',
29079                 action : 'rotate-right',
29080                 cn : [
29081                     {
29082                         tag : 'button',
29083                         cls : 'btn btn-default',
29084                         html : '<i class="fa fa-repeat"></i>'
29085                     }
29086                 ]
29087             }
29088         ],
29089         ROTATOR : [
29090             {
29091                 tag : 'div',
29092                 cls : 'btn-group roo-upload-cropbox-rotate-left',
29093                 action : 'rotate-left',
29094                 cn : [
29095                     {
29096                         tag : 'button',
29097                         cls : 'btn btn-default',
29098                         html : '<i class="fa fa-undo"></i>'
29099                     }
29100                 ]
29101             },
29102             {
29103                 tag : 'div',
29104                 cls : 'btn-group roo-upload-cropbox-rotate-right',
29105                 action : 'rotate-right',
29106                 cn : [
29107                     {
29108                         tag : 'button',
29109                         cls : 'btn btn-default',
29110                         html : '<i class="fa fa-repeat"></i>'
29111                     }
29112                 ]
29113             }
29114         ]
29115     }
29116 });
29117
29118 /*
29119 * Licence: LGPL
29120 */
29121
29122 /**
29123  * @class Roo.bootstrap.DocumentManager
29124  * @extends Roo.bootstrap.Component
29125  * Bootstrap DocumentManager class
29126  * @cfg {String} paramName default 'imageUpload'
29127  * @cfg {String} toolTipName default 'filename'
29128  * @cfg {String} method default POST
29129  * @cfg {String} url action url
29130  * @cfg {Number} boxes number of boxes, 0 is no limit.. default 0
29131  * @cfg {Boolean} multiple multiple upload default true
29132  * @cfg {Number} thumbSize default 300
29133  * @cfg {String} fieldLabel
29134  * @cfg {Number} labelWidth default 4
29135  * @cfg {String} labelAlign (left|top) default left
29136  * @cfg {Boolean} editable (true|false) allow edit when upload a image default true
29137 * @cfg {Number} labellg set the width of label (1-12)
29138  * @cfg {Number} labelmd set the width of label (1-12)
29139  * @cfg {Number} labelsm set the width of label (1-12)
29140  * @cfg {Number} labelxs set the width of label (1-12)
29141  * 
29142  * @constructor
29143  * Create a new DocumentManager
29144  * @param {Object} config The config object
29145  */
29146
29147 Roo.bootstrap.DocumentManager = function(config){
29148     Roo.bootstrap.DocumentManager.superclass.constructor.call(this, config);
29149     
29150     this.files = [];
29151     this.delegates = [];
29152     
29153     this.addEvents({
29154         /**
29155          * @event initial
29156          * Fire when initial the DocumentManager
29157          * @param {Roo.bootstrap.DocumentManager} this
29158          */
29159         "initial" : true,
29160         /**
29161          * @event inspect
29162          * inspect selected file
29163          * @param {Roo.bootstrap.DocumentManager} this
29164          * @param {File} file
29165          */
29166         "inspect" : true,
29167         /**
29168          * @event exception
29169          * Fire when xhr load exception
29170          * @param {Roo.bootstrap.DocumentManager} this
29171          * @param {XMLHttpRequest} xhr
29172          */
29173         "exception" : true,
29174         /**
29175          * @event afterupload
29176          * Fire when xhr load exception
29177          * @param {Roo.bootstrap.DocumentManager} this
29178          * @param {XMLHttpRequest} xhr
29179          */
29180         "afterupload" : true,
29181         /**
29182          * @event prepare
29183          * prepare the form data
29184          * @param {Roo.bootstrap.DocumentManager} this
29185          * @param {Object} formData
29186          */
29187         "prepare" : true,
29188         /**
29189          * @event remove
29190          * Fire when remove the file
29191          * @param {Roo.bootstrap.DocumentManager} this
29192          * @param {Object} file
29193          */
29194         "remove" : true,
29195         /**
29196          * @event refresh
29197          * Fire after refresh the file
29198          * @param {Roo.bootstrap.DocumentManager} this
29199          */
29200         "refresh" : true,
29201         /**
29202          * @event click
29203          * Fire after click the image
29204          * @param {Roo.bootstrap.DocumentManager} this
29205          * @param {Object} file
29206          */
29207         "click" : true,
29208         /**
29209          * @event edit
29210          * Fire when upload a image and editable set to true
29211          * @param {Roo.bootstrap.DocumentManager} this
29212          * @param {Object} file
29213          */
29214         "edit" : true,
29215         /**
29216          * @event beforeselectfile
29217          * Fire before select file
29218          * @param {Roo.bootstrap.DocumentManager} this
29219          */
29220         "beforeselectfile" : true,
29221         /**
29222          * @event process
29223          * Fire before process file
29224          * @param {Roo.bootstrap.DocumentManager} this
29225          * @param {Object} file
29226          */
29227         "process" : true,
29228         /**
29229          * @event previewrendered
29230          * Fire when preview rendered
29231          * @param {Roo.bootstrap.DocumentManager} this
29232          * @param {Object} file
29233          */
29234         "previewrendered" : true,
29235         /**
29236          */
29237         "previewResize" : true
29238         
29239     });
29240 };
29241
29242 Roo.extend(Roo.bootstrap.DocumentManager, Roo.bootstrap.Component,  {
29243     
29244     boxes : 0,
29245     inputName : '',
29246     thumbSize : 300,
29247     multiple : true,
29248     files : false,
29249     method : 'POST',
29250     url : '',
29251     paramName : 'imageUpload',
29252     toolTipName : 'filename',
29253     fieldLabel : '',
29254     labelWidth : 4,
29255     labelAlign : 'left',
29256     editable : true,
29257     delegates : false,
29258     xhr : false, 
29259     
29260     labellg : 0,
29261     labelmd : 0,
29262     labelsm : 0,
29263     labelxs : 0,
29264     
29265     getAutoCreate : function()
29266     {   
29267         var managerWidget = {
29268             tag : 'div',
29269             cls : 'roo-document-manager',
29270             cn : [
29271                 {
29272                     tag : 'input',
29273                     cls : 'roo-document-manager-selector',
29274                     type : 'file'
29275                 },
29276                 {
29277                     tag : 'div',
29278                     cls : 'roo-document-manager-uploader',
29279                     cn : [
29280                         {
29281                             tag : 'div',
29282                             cls : 'roo-document-manager-upload-btn',
29283                             html : '<i class="fa fa-plus"></i>'
29284                         }
29285                     ]
29286                     
29287                 }
29288             ]
29289         };
29290         
29291         var content = [
29292             {
29293                 tag : 'div',
29294                 cls : 'column col-md-12',
29295                 cn : managerWidget
29296             }
29297         ];
29298         
29299         if(this.fieldLabel.length){
29300             
29301             content = [
29302                 {
29303                     tag : 'div',
29304                     cls : 'column col-md-12',
29305                     html : this.fieldLabel
29306                 },
29307                 {
29308                     tag : 'div',
29309                     cls : 'column col-md-12',
29310                     cn : managerWidget
29311                 }
29312             ];
29313
29314             if(this.labelAlign == 'left'){
29315                 content = [
29316                     {
29317                         tag : 'div',
29318                         cls : 'column',
29319                         html : this.fieldLabel
29320                     },
29321                     {
29322                         tag : 'div',
29323                         cls : 'column',
29324                         cn : managerWidget
29325                     }
29326                 ];
29327                 
29328                 if(this.labelWidth > 12){
29329                     content[0].style = "width: " + this.labelWidth + 'px';
29330                 }
29331
29332                 if(this.labelWidth < 13 && this.labelmd == 0){
29333                     this.labelmd = this.labelWidth;
29334                 }
29335
29336                 if(this.labellg > 0){
29337                     content[0].cls += ' col-lg-' + this.labellg;
29338                     content[1].cls += ' col-lg-' + (12 - this.labellg);
29339                 }
29340
29341                 if(this.labelmd > 0){
29342                     content[0].cls += ' col-md-' + this.labelmd;
29343                     content[1].cls += ' col-md-' + (12 - this.labelmd);
29344                 }
29345
29346                 if(this.labelsm > 0){
29347                     content[0].cls += ' col-sm-' + this.labelsm;
29348                     content[1].cls += ' col-sm-' + (12 - this.labelsm);
29349                 }
29350
29351                 if(this.labelxs > 0){
29352                     content[0].cls += ' col-xs-' + this.labelxs;
29353                     content[1].cls += ' col-xs-' + (12 - this.labelxs);
29354                 }
29355                 
29356             }
29357         }
29358         
29359         var cfg = {
29360             tag : 'div',
29361             cls : 'row clearfix',
29362             cn : content
29363         };
29364         
29365         return cfg;
29366         
29367     },
29368     
29369     initEvents : function()
29370     {
29371         this.managerEl = this.el.select('.roo-document-manager', true).first();
29372         this.managerEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
29373         
29374         this.selectorEl = this.el.select('.roo-document-manager-selector', true).first();
29375         this.selectorEl.hide();
29376         
29377         if(this.multiple){
29378             this.selectorEl.attr('multiple', 'multiple');
29379         }
29380         
29381         this.selectorEl.on('change', this.onFileSelected, this);
29382         
29383         this.uploader = this.el.select('.roo-document-manager-uploader', true).first();
29384         this.uploader.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
29385         
29386         this.uploader.on('click', this.onUploaderClick, this);
29387         
29388         this.renderProgressDialog();
29389         
29390         var _this = this;
29391         
29392         window.addEventListener("resize", function() { _this.refresh(); } );
29393         
29394         this.fireEvent('initial', this);
29395     },
29396     
29397     renderProgressDialog : function()
29398     {
29399         var _this = this;
29400         
29401         this.progressDialog = new Roo.bootstrap.Modal({
29402             cls : 'roo-document-manager-progress-dialog',
29403             allow_close : false,
29404             animate : false,
29405             title : '',
29406             buttons : [
29407                 {
29408                     name  :'cancel',
29409                     weight : 'danger',
29410                     html : 'Cancel'
29411                 }
29412             ], 
29413             listeners : { 
29414                 btnclick : function() {
29415                     _this.uploadCancel();
29416                     this.hide();
29417                 }
29418             }
29419         });
29420          
29421         this.progressDialog.render(Roo.get(document.body));
29422          
29423         this.progress = new Roo.bootstrap.Progress({
29424             cls : 'roo-document-manager-progress',
29425             active : true,
29426             striped : true
29427         });
29428         
29429         this.progress.render(this.progressDialog.getChildContainer());
29430         
29431         this.progressBar = new Roo.bootstrap.ProgressBar({
29432             cls : 'roo-document-manager-progress-bar',
29433             aria_valuenow : 0,
29434             aria_valuemin : 0,
29435             aria_valuemax : 12,
29436             panel : 'success'
29437         });
29438         
29439         this.progressBar.render(this.progress.getChildContainer());
29440     },
29441     
29442     onUploaderClick : function(e)
29443     {
29444         e.preventDefault();
29445      
29446         if(this.fireEvent('beforeselectfile', this) != false){
29447             this.selectorEl.dom.click();
29448         }
29449         
29450     },
29451     
29452     onFileSelected : function(e)
29453     {
29454         e.preventDefault();
29455         
29456         if(typeof(this.selectorEl.dom.files) == 'undefined' || !this.selectorEl.dom.files.length){
29457             return;
29458         }
29459         
29460         Roo.each(this.selectorEl.dom.files, function(file){
29461             if(this.fireEvent('inspect', this, file) != false){
29462                 this.files.push(file);
29463             }
29464         }, this);
29465         
29466         this.queue();
29467         
29468     },
29469     
29470     queue : function()
29471     {
29472         this.selectorEl.dom.value = '';
29473         
29474         if(!this.files || !this.files.length){
29475             return;
29476         }
29477         
29478         if(this.boxes > 0 && this.files.length > this.boxes){
29479             this.files = this.files.slice(0, this.boxes);
29480         }
29481         
29482         this.uploader.show();
29483         
29484         if(this.boxes > 0 && this.files.length > this.boxes - 1){
29485             this.uploader.hide();
29486         }
29487         
29488         var _this = this;
29489         
29490         var files = [];
29491         
29492         var docs = [];
29493         
29494         Roo.each(this.files, function(file){
29495             
29496             if(typeof(file.id) != 'undefined' && file.id * 1 > 0){
29497                 var f = this.renderPreview(file);
29498                 files.push(f);
29499                 return;
29500             }
29501             
29502             if(file.type.indexOf('image') != -1){
29503                 this.delegates.push(
29504                     (function(){
29505                         _this.process(file);
29506                     }).createDelegate(this)
29507                 );
29508         
29509                 return;
29510             }
29511             
29512             docs.push(
29513                 (function(){
29514                     _this.process(file);
29515                 }).createDelegate(this)
29516             );
29517             
29518         }, this);
29519         
29520         this.files = files;
29521         
29522         this.delegates = this.delegates.concat(docs);
29523         
29524         if(!this.delegates.length){
29525             this.refresh();
29526             return;
29527         }
29528         
29529         this.progressBar.aria_valuemax = this.delegates.length;
29530         
29531         this.arrange();
29532         
29533         return;
29534     },
29535     
29536     arrange : function()
29537     {
29538         if(!this.delegates.length){
29539             this.progressDialog.hide();
29540             this.refresh();
29541             return;
29542         }
29543         
29544         var delegate = this.delegates.shift();
29545         
29546         this.progressDialog.show();
29547         
29548         this.progressDialog.setTitle((this.progressBar.aria_valuemax - this.delegates.length) + ' / ' + this.progressBar.aria_valuemax);
29549         
29550         this.progressBar.update(this.progressBar.aria_valuemax - this.delegates.length);
29551         
29552         delegate();
29553     },
29554     
29555     refresh : function()
29556     {
29557         this.uploader.show();
29558         
29559         if(this.boxes > 0 && this.files.length > this.boxes - 1){
29560             this.uploader.hide();
29561         }
29562         
29563         Roo.isTouch ? this.closable(false) : this.closable(true);
29564         
29565         this.fireEvent('refresh', this);
29566     },
29567     
29568     onRemove : function(e, el, o)
29569     {
29570         e.preventDefault();
29571         
29572         this.fireEvent('remove', this, o);
29573         
29574     },
29575     
29576     remove : function(o)
29577     {
29578         var files = [];
29579         
29580         Roo.each(this.files, function(file){
29581             if(typeof(file.id) == 'undefined' || file.id * 1 < 1 || file.id != o.id){
29582                 files.push(file);
29583                 return;
29584             }
29585
29586             o.target.remove();
29587
29588         }, this);
29589         
29590         this.files = files;
29591         
29592         this.refresh();
29593     },
29594     
29595     clear : function()
29596     {
29597         Roo.each(this.files, function(file){
29598             if(!file.target){
29599                 return;
29600             }
29601             
29602             file.target.remove();
29603
29604         }, this);
29605         
29606         this.files = [];
29607         
29608         this.refresh();
29609     },
29610     
29611     onClick : function(e, el, o)
29612     {
29613         e.preventDefault();
29614         
29615         this.fireEvent('click', this, o);
29616         
29617     },
29618     
29619     closable : function(closable)
29620     {
29621         Roo.each(this.managerEl.select('.roo-document-manager-preview > button.close', true).elements, function(el){
29622             
29623             el.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
29624             
29625             if(closable){
29626                 el.show();
29627                 return;
29628             }
29629             
29630             el.hide();
29631             
29632         }, this);
29633     },
29634     
29635     xhrOnLoad : function(xhr)
29636     {
29637         Roo.each(this.managerEl.select('.roo-document-manager-loading', true).elements, function(el){
29638             el.remove();
29639         }, this);
29640         
29641         if (xhr.readyState !== 4) {
29642             this.arrange();
29643             this.fireEvent('exception', this, xhr);
29644             return;
29645         }
29646
29647         var response = Roo.decode(xhr.responseText);
29648         
29649         if(!response.success){
29650             this.arrange();
29651             this.fireEvent('exception', this, xhr);
29652             return;
29653         }
29654         
29655         var file = this.renderPreview(response.data);
29656         
29657         this.files.push(file);
29658         
29659         this.arrange();
29660         
29661         this.fireEvent('afterupload', this, xhr);
29662         
29663     },
29664     
29665     xhrOnError : function(xhr)
29666     {
29667         Roo.log('xhr on error');
29668         
29669         var response = Roo.decode(xhr.responseText);
29670           
29671         Roo.log(response);
29672         
29673         this.arrange();
29674     },
29675     
29676     process : function(file)
29677     {
29678         if(this.fireEvent('process', this, file) !== false){
29679             if(this.editable && file.type.indexOf('image') != -1){
29680                 this.fireEvent('edit', this, file);
29681                 return;
29682             }
29683
29684             this.uploadStart(file, false);
29685
29686             return;
29687         }
29688         
29689     },
29690     
29691     uploadStart : function(file, crop)
29692     {
29693         this.xhr = new XMLHttpRequest();
29694         
29695         if(typeof(file.id) != 'undefined' && file.id * 1 > 0){
29696             this.arrange();
29697             return;
29698         }
29699         
29700         file.xhr = this.xhr;
29701             
29702         this.managerEl.createChild({
29703             tag : 'div',
29704             cls : 'roo-document-manager-loading',
29705             cn : [
29706                 {
29707                     tag : 'div',
29708                     tooltip : file.name,
29709                     cls : 'roo-document-manager-thumb',
29710                     html : '<i class="fa fa-circle-o-notch fa-spin"></i>'
29711                 }
29712             ]
29713
29714         });
29715
29716         this.xhr.open(this.method, this.url, true);
29717         
29718         var headers = {
29719             "Accept": "application/json",
29720             "Cache-Control": "no-cache",
29721             "X-Requested-With": "XMLHttpRequest"
29722         };
29723         
29724         for (var headerName in headers) {
29725             var headerValue = headers[headerName];
29726             if (headerValue) {
29727                 this.xhr.setRequestHeader(headerName, headerValue);
29728             }
29729         }
29730         
29731         var _this = this;
29732         
29733         this.xhr.onload = function()
29734         {
29735             _this.xhrOnLoad(_this.xhr);
29736         }
29737         
29738         this.xhr.onerror = function()
29739         {
29740             _this.xhrOnError(_this.xhr);
29741         }
29742         
29743         var formData = new FormData();
29744
29745         formData.append('returnHTML', 'NO');
29746         
29747         if(crop){
29748             formData.append('crop', crop);
29749         }
29750         
29751         formData.append(this.paramName, file, file.name);
29752         
29753         var options = {
29754             file : file, 
29755             manually : false
29756         };
29757         
29758         if(this.fireEvent('prepare', this, formData, options) != false){
29759             
29760             if(options.manually){
29761                 return;
29762             }
29763             
29764             this.xhr.send(formData);
29765             return;
29766         };
29767         
29768         this.uploadCancel();
29769     },
29770     
29771     uploadCancel : function()
29772     {
29773         if (this.xhr) {
29774             this.xhr.abort();
29775         }
29776         
29777         this.delegates = [];
29778         
29779         Roo.each(this.managerEl.select('.roo-document-manager-loading', true).elements, function(el){
29780             el.remove();
29781         }, this);
29782         
29783         this.arrange();
29784     },
29785     
29786     renderPreview : function(file)
29787     {
29788         if(typeof(file.target) != 'undefined' && file.target){
29789             return file;
29790         }
29791         
29792         var img_src = encodeURI(baseURL +'/Images/Thumb/' + this.thumbSize + '/' + file.id + '/' + file.filename);
29793         
29794         var previewEl = this.managerEl.createChild({
29795             tag : 'div',
29796             cls : 'roo-document-manager-preview',
29797             cn : [
29798                 {
29799                     tag : 'div',
29800                     tooltip : file[this.toolTipName],
29801                     cls : 'roo-document-manager-thumb',
29802                     html : '<img tooltip="' + file[this.toolTipName] + '" src="' + img_src + '">'
29803                 },
29804                 {
29805                     tag : 'button',
29806                     cls : 'close',
29807                     html : '<i class="fa fa-times-circle"></i>'
29808                 }
29809             ]
29810         });
29811
29812         var close = previewEl.select('button.close', true).first();
29813
29814         close.on('click', this.onRemove, this, file);
29815
29816         file.target = previewEl;
29817
29818         var image = previewEl.select('img', true).first();
29819         
29820         var _this = this;
29821         
29822         image.dom.addEventListener("load", function(){ _this.onPreviewLoad(file, image); });
29823         
29824         image.on('click', this.onClick, this, file);
29825         
29826         this.fireEvent('previewrendered', this, file);
29827         
29828         return file;
29829         
29830     },
29831     
29832     onPreviewLoad : function(file, image)
29833     {
29834         if(typeof(file.target) == 'undefined' || !file.target){
29835             return;
29836         }
29837         
29838         var width = image.dom.naturalWidth || image.dom.width;
29839         var height = image.dom.naturalHeight || image.dom.height;
29840         
29841         if(!this.previewResize) {
29842             return;
29843         }
29844         
29845         if(width > height){
29846             file.target.addClass('wide');
29847             return;
29848         }
29849         
29850         file.target.addClass('tall');
29851         return;
29852         
29853     },
29854     
29855     uploadFromSource : function(file, crop)
29856     {
29857         this.xhr = new XMLHttpRequest();
29858         
29859         this.managerEl.createChild({
29860             tag : 'div',
29861             cls : 'roo-document-manager-loading',
29862             cn : [
29863                 {
29864                     tag : 'div',
29865                     tooltip : file.name,
29866                     cls : 'roo-document-manager-thumb',
29867                     html : '<i class="fa fa-circle-o-notch fa-spin"></i>'
29868                 }
29869             ]
29870
29871         });
29872
29873         this.xhr.open(this.method, this.url, true);
29874         
29875         var headers = {
29876             "Accept": "application/json",
29877             "Cache-Control": "no-cache",
29878             "X-Requested-With": "XMLHttpRequest"
29879         };
29880         
29881         for (var headerName in headers) {
29882             var headerValue = headers[headerName];
29883             if (headerValue) {
29884                 this.xhr.setRequestHeader(headerName, headerValue);
29885             }
29886         }
29887         
29888         var _this = this;
29889         
29890         this.xhr.onload = function()
29891         {
29892             _this.xhrOnLoad(_this.xhr);
29893         }
29894         
29895         this.xhr.onerror = function()
29896         {
29897             _this.xhrOnError(_this.xhr);
29898         }
29899         
29900         var formData = new FormData();
29901
29902         formData.append('returnHTML', 'NO');
29903         
29904         formData.append('crop', crop);
29905         
29906         if(typeof(file.filename) != 'undefined'){
29907             formData.append('filename', file.filename);
29908         }
29909         
29910         if(typeof(file.mimetype) != 'undefined'){
29911             formData.append('mimetype', file.mimetype);
29912         }
29913         
29914         Roo.log(formData);
29915         
29916         if(this.fireEvent('prepare', this, formData) != false){
29917             this.xhr.send(formData);
29918         };
29919     }
29920 });
29921
29922 /*
29923 * Licence: LGPL
29924 */
29925
29926 /**
29927  * @class Roo.bootstrap.DocumentViewer
29928  * @extends Roo.bootstrap.Component
29929  * Bootstrap DocumentViewer class
29930  * @cfg {Boolean} showDownload (true|false) show download button (default true)
29931  * @cfg {Boolean} showTrash (true|false) show trash button (default true)
29932  * 
29933  * @constructor
29934  * Create a new DocumentViewer
29935  * @param {Object} config The config object
29936  */
29937
29938 Roo.bootstrap.DocumentViewer = function(config){
29939     Roo.bootstrap.DocumentViewer.superclass.constructor.call(this, config);
29940     
29941     this.addEvents({
29942         /**
29943          * @event initial
29944          * Fire after initEvent
29945          * @param {Roo.bootstrap.DocumentViewer} this
29946          */
29947         "initial" : true,
29948         /**
29949          * @event click
29950          * Fire after click
29951          * @param {Roo.bootstrap.DocumentViewer} this
29952          */
29953         "click" : true,
29954         /**
29955          * @event download
29956          * Fire after download button
29957          * @param {Roo.bootstrap.DocumentViewer} this
29958          */
29959         "download" : true,
29960         /**
29961          * @event trash
29962          * Fire after trash button
29963          * @param {Roo.bootstrap.DocumentViewer} this
29964          */
29965         "trash" : true
29966         
29967     });
29968 };
29969
29970 Roo.extend(Roo.bootstrap.DocumentViewer, Roo.bootstrap.Component,  {
29971     
29972     showDownload : true,
29973     
29974     showTrash : true,
29975     
29976     getAutoCreate : function()
29977     {
29978         var cfg = {
29979             tag : 'div',
29980             cls : 'roo-document-viewer',
29981             cn : [
29982                 {
29983                     tag : 'div',
29984                     cls : 'roo-document-viewer-body',
29985                     cn : [
29986                         {
29987                             tag : 'div',
29988                             cls : 'roo-document-viewer-thumb',
29989                             cn : [
29990                                 {
29991                                     tag : 'img',
29992                                     cls : 'roo-document-viewer-image'
29993                                 }
29994                             ]
29995                         }
29996                     ]
29997                 },
29998                 {
29999                     tag : 'div',
30000                     cls : 'roo-document-viewer-footer',
30001                     cn : {
30002                         tag : 'div',
30003                         cls : 'btn-group btn-group-justified roo-document-viewer-btn-group',
30004                         cn : [
30005                             {
30006                                 tag : 'div',
30007                                 cls : 'btn-group roo-document-viewer-download',
30008                                 cn : [
30009                                     {
30010                                         tag : 'button',
30011                                         cls : 'btn btn-default',
30012                                         html : '<i class="fa fa-download"></i>'
30013                                     }
30014                                 ]
30015                             },
30016                             {
30017                                 tag : 'div',
30018                                 cls : 'btn-group roo-document-viewer-trash',
30019                                 cn : [
30020                                     {
30021                                         tag : 'button',
30022                                         cls : 'btn btn-default',
30023                                         html : '<i class="fa fa-trash"></i>'
30024                                     }
30025                                 ]
30026                             }
30027                         ]
30028                     }
30029                 }
30030             ]
30031         };
30032         
30033         return cfg;
30034     },
30035     
30036     initEvents : function()
30037     {
30038         this.bodyEl = this.el.select('.roo-document-viewer-body', true).first();
30039         this.bodyEl.setVisibilityMode(Roo.Element.DISPLAY);
30040         
30041         this.thumbEl = this.el.select('.roo-document-viewer-thumb', true).first();
30042         this.thumbEl.setVisibilityMode(Roo.Element.DISPLAY);
30043         
30044         this.imageEl = this.el.select('.roo-document-viewer-image', true).first();
30045         this.imageEl.setVisibilityMode(Roo.Element.DISPLAY);
30046         
30047         this.footerEl = this.el.select('.roo-document-viewer-footer', true).first();
30048         this.footerEl.setVisibilityMode(Roo.Element.DISPLAY);
30049         
30050         this.downloadBtn = this.el.select('.roo-document-viewer-download', true).first();
30051         this.downloadBtn.setVisibilityMode(Roo.Element.DISPLAY);
30052         
30053         this.trashBtn = this.el.select('.roo-document-viewer-trash', true).first();
30054         this.trashBtn.setVisibilityMode(Roo.Element.DISPLAY);
30055         
30056         this.bodyEl.on('click', this.onClick, this);
30057         this.downloadBtn.on('click', this.onDownload, this);
30058         this.trashBtn.on('click', this.onTrash, this);
30059         
30060         this.downloadBtn.hide();
30061         this.trashBtn.hide();
30062         
30063         if(this.showDownload){
30064             this.downloadBtn.show();
30065         }
30066         
30067         if(this.showTrash){
30068             this.trashBtn.show();
30069         }
30070         
30071         if(!this.showDownload && !this.showTrash) {
30072             this.footerEl.hide();
30073         }
30074         
30075     },
30076     
30077     initial : function()
30078     {
30079         this.fireEvent('initial', this);
30080         
30081     },
30082     
30083     onClick : function(e)
30084     {
30085         e.preventDefault();
30086         
30087         this.fireEvent('click', this);
30088     },
30089     
30090     onDownload : function(e)
30091     {
30092         e.preventDefault();
30093         
30094         this.fireEvent('download', this);
30095     },
30096     
30097     onTrash : function(e)
30098     {
30099         e.preventDefault();
30100         
30101         this.fireEvent('trash', this);
30102     }
30103     
30104 });
30105 /*
30106  * - LGPL
30107  *
30108  * nav progress bar
30109  * 
30110  */
30111
30112 /**
30113  * @class Roo.bootstrap.NavProgressBar
30114  * @extends Roo.bootstrap.Component
30115  * Bootstrap NavProgressBar class
30116  * 
30117  * @constructor
30118  * Create a new nav progress bar
30119  * @param {Object} config The config object
30120  */
30121
30122 Roo.bootstrap.NavProgressBar = function(config){
30123     Roo.bootstrap.NavProgressBar.superclass.constructor.call(this, config);
30124
30125     this.bullets = this.bullets || [];
30126    
30127 //    Roo.bootstrap.NavProgressBar.register(this);
30128      this.addEvents({
30129         /**
30130              * @event changed
30131              * Fires when the active item changes
30132              * @param {Roo.bootstrap.NavProgressBar} this
30133              * @param {Roo.bootstrap.NavProgressItem} selected The item selected
30134              * @param {Roo.bootstrap.NavProgressItem} prev The previously selected item 
30135          */
30136         'changed': true
30137      });
30138     
30139 };
30140
30141 Roo.extend(Roo.bootstrap.NavProgressBar, Roo.bootstrap.Component,  {
30142     
30143     bullets : [],
30144     barItems : [],
30145     
30146     getAutoCreate : function()
30147     {
30148         var cfg = Roo.apply({}, Roo.bootstrap.NavProgressBar.superclass.getAutoCreate.call(this));
30149         
30150         cfg = {
30151             tag : 'div',
30152             cls : 'roo-navigation-bar-group',
30153             cn : [
30154                 {
30155                     tag : 'div',
30156                     cls : 'roo-navigation-top-bar'
30157                 },
30158                 {
30159                     tag : 'div',
30160                     cls : 'roo-navigation-bullets-bar',
30161                     cn : [
30162                         {
30163                             tag : 'ul',
30164                             cls : 'roo-navigation-bar'
30165                         }
30166                     ]
30167                 },
30168                 
30169                 {
30170                     tag : 'div',
30171                     cls : 'roo-navigation-bottom-bar'
30172                 }
30173             ]
30174             
30175         };
30176         
30177         return cfg;
30178         
30179     },
30180     
30181     initEvents: function() 
30182     {
30183         
30184     },
30185     
30186     onRender : function(ct, position) 
30187     {
30188         Roo.bootstrap.NavProgressBar.superclass.onRender.call(this, ct, position);
30189         
30190         if(this.bullets.length){
30191             Roo.each(this.bullets, function(b){
30192                this.addItem(b);
30193             }, this);
30194         }
30195         
30196         this.format();
30197         
30198     },
30199     
30200     addItem : function(cfg)
30201     {
30202         var item = new Roo.bootstrap.NavProgressItem(cfg);
30203         
30204         item.parentId = this.id;
30205         item.render(this.el.select('.roo-navigation-bar', true).first(), null);
30206         
30207         if(cfg.html){
30208             var top = new Roo.bootstrap.Element({
30209                 tag : 'div',
30210                 cls : 'roo-navigation-bar-text'
30211             });
30212             
30213             var bottom = new Roo.bootstrap.Element({
30214                 tag : 'div',
30215                 cls : 'roo-navigation-bar-text'
30216             });
30217             
30218             top.onRender(this.el.select('.roo-navigation-top-bar', true).first(), null);
30219             bottom.onRender(this.el.select('.roo-navigation-bottom-bar', true).first(), null);
30220             
30221             var topText = new Roo.bootstrap.Element({
30222                 tag : 'span',
30223                 html : (typeof(cfg.position) != 'undefined' && cfg.position == 'top') ? cfg.html : ''
30224             });
30225             
30226             var bottomText = new Roo.bootstrap.Element({
30227                 tag : 'span',
30228                 html : (typeof(cfg.position) != 'undefined' && cfg.position == 'top') ? '' : cfg.html
30229             });
30230             
30231             topText.onRender(top.el, null);
30232             bottomText.onRender(bottom.el, null);
30233             
30234             item.topEl = top;
30235             item.bottomEl = bottom;
30236         }
30237         
30238         this.barItems.push(item);
30239         
30240         return item;
30241     },
30242     
30243     getActive : function()
30244     {
30245         var active = false;
30246         
30247         Roo.each(this.barItems, function(v){
30248             
30249             if (!v.isActive()) {
30250                 return;
30251             }
30252             
30253             active = v;
30254             return false;
30255             
30256         });
30257         
30258         return active;
30259     },
30260     
30261     setActiveItem : function(item)
30262     {
30263         var prev = false;
30264         
30265         Roo.each(this.barItems, function(v){
30266             if (v.rid == item.rid) {
30267                 return ;
30268             }
30269             
30270             if (v.isActive()) {
30271                 v.setActive(false);
30272                 prev = v;
30273             }
30274         });
30275
30276         item.setActive(true);
30277         
30278         this.fireEvent('changed', this, item, prev);
30279     },
30280     
30281     getBarItem: function(rid)
30282     {
30283         var ret = false;
30284         
30285         Roo.each(this.barItems, function(e) {
30286             if (e.rid != rid) {
30287                 return;
30288             }
30289             
30290             ret =  e;
30291             return false;
30292         });
30293         
30294         return ret;
30295     },
30296     
30297     indexOfItem : function(item)
30298     {
30299         var index = false;
30300         
30301         Roo.each(this.barItems, function(v, i){
30302             
30303             if (v.rid != item.rid) {
30304                 return;
30305             }
30306             
30307             index = i;
30308             return false
30309         });
30310         
30311         return index;
30312     },
30313     
30314     setActiveNext : function()
30315     {
30316         var i = this.indexOfItem(this.getActive());
30317         
30318         if (i > this.barItems.length) {
30319             return;
30320         }
30321         
30322         this.setActiveItem(this.barItems[i+1]);
30323     },
30324     
30325     setActivePrev : function()
30326     {
30327         var i = this.indexOfItem(this.getActive());
30328         
30329         if (i  < 1) {
30330             return;
30331         }
30332         
30333         this.setActiveItem(this.barItems[i-1]);
30334     },
30335     
30336     format : function()
30337     {
30338         if(!this.barItems.length){
30339             return;
30340         }
30341      
30342         var width = 100 / this.barItems.length;
30343         
30344         Roo.each(this.barItems, function(i){
30345             i.el.setStyle('width', width + '%');
30346             i.topEl.el.setStyle('width', width + '%');
30347             i.bottomEl.el.setStyle('width', width + '%');
30348         }, this);
30349         
30350     }
30351     
30352 });
30353 /*
30354  * - LGPL
30355  *
30356  * Nav Progress Item
30357  * 
30358  */
30359
30360 /**
30361  * @class Roo.bootstrap.NavProgressItem
30362  * @extends Roo.bootstrap.Component
30363  * Bootstrap NavProgressItem class
30364  * @cfg {String} rid the reference id
30365  * @cfg {Boolean} active (true|false) Is item active default false
30366  * @cfg {Boolean} disabled (true|false) Is item active default false
30367  * @cfg {String} html
30368  * @cfg {String} position (top|bottom) text position default bottom
30369  * @cfg {String} icon show icon instead of number
30370  * 
30371  * @constructor
30372  * Create a new NavProgressItem
30373  * @param {Object} config The config object
30374  */
30375 Roo.bootstrap.NavProgressItem = function(config){
30376     Roo.bootstrap.NavProgressItem.superclass.constructor.call(this, config);
30377     this.addEvents({
30378         // raw events
30379         /**
30380          * @event click
30381          * The raw click event for the entire grid.
30382          * @param {Roo.bootstrap.NavProgressItem} this
30383          * @param {Roo.EventObject} e
30384          */
30385         "click" : true
30386     });
30387    
30388 };
30389
30390 Roo.extend(Roo.bootstrap.NavProgressItem, Roo.bootstrap.Component,  {
30391     
30392     rid : '',
30393     active : false,
30394     disabled : false,
30395     html : '',
30396     position : 'bottom',
30397     icon : false,
30398     
30399     getAutoCreate : function()
30400     {
30401         var iconCls = 'roo-navigation-bar-item-icon';
30402         
30403         iconCls += ((this.icon) ? (' ' + this.icon) : (' step-number')) ;
30404         
30405         var cfg = {
30406             tag: 'li',
30407             cls: 'roo-navigation-bar-item',
30408             cn : [
30409                 {
30410                     tag : 'i',
30411                     cls : iconCls
30412                 }
30413             ]
30414         };
30415         
30416         if(this.active){
30417             cfg.cls += ' active';
30418         }
30419         if(this.disabled){
30420             cfg.cls += ' disabled';
30421         }
30422         
30423         return cfg;
30424     },
30425     
30426     disable : function()
30427     {
30428         this.setDisabled(true);
30429     },
30430     
30431     enable : function()
30432     {
30433         this.setDisabled(false);
30434     },
30435     
30436     initEvents: function() 
30437     {
30438         this.iconEl = this.el.select('.roo-navigation-bar-item-icon', true).first();
30439         
30440         this.iconEl.on('click', this.onClick, this);
30441     },
30442     
30443     onClick : function(e)
30444     {
30445         e.preventDefault();
30446         
30447         if(this.disabled){
30448             return;
30449         }
30450         
30451         if(this.fireEvent('click', this, e) === false){
30452             return;
30453         };
30454         
30455         this.parent().setActiveItem(this);
30456     },
30457     
30458     isActive: function () 
30459     {
30460         return this.active;
30461     },
30462     
30463     setActive : function(state)
30464     {
30465         if(this.active == state){
30466             return;
30467         }
30468         
30469         this.active = state;
30470         
30471         if (state) {
30472             this.el.addClass('active');
30473             return;
30474         }
30475         
30476         this.el.removeClass('active');
30477         
30478         return;
30479     },
30480     
30481     setDisabled : function(state)
30482     {
30483         if(this.disabled == state){
30484             return;
30485         }
30486         
30487         this.disabled = state;
30488         
30489         if (state) {
30490             this.el.addClass('disabled');
30491             return;
30492         }
30493         
30494         this.el.removeClass('disabled');
30495     },
30496     
30497     tooltipEl : function()
30498     {
30499         return this.el.select('.roo-navigation-bar-item-icon', true).first();;
30500     }
30501 });
30502  
30503
30504  /*
30505  * - LGPL
30506  *
30507  * FieldLabel
30508  * 
30509  */
30510
30511 /**
30512  * @class Roo.bootstrap.FieldLabel
30513  * @extends Roo.bootstrap.Component
30514  * Bootstrap FieldLabel class
30515  * @cfg {String} html contents of the element
30516  * @cfg {String} tag tag of the element default label
30517  * @cfg {String} cls class of the element
30518  * @cfg {String} target label target 
30519  * @cfg {Boolean} allowBlank (true|false) target allowBlank default true
30520  * @cfg {String} invalidClass DEPRICATED - BS4 uses is-invalid
30521  * @cfg {String} validClass DEPRICATED - BS4 uses is-valid
30522  * @cfg {String} iconTooltip default "This field is required"
30523  * @cfg {String} indicatorpos (left|right) default left
30524  * 
30525  * @constructor
30526  * Create a new FieldLabel
30527  * @param {Object} config The config object
30528  */
30529
30530 Roo.bootstrap.FieldLabel = function(config){
30531     Roo.bootstrap.Element.superclass.constructor.call(this, config);
30532     
30533     this.addEvents({
30534             /**
30535              * @event invalid
30536              * Fires after the field has been marked as invalid.
30537              * @param {Roo.form.FieldLabel} this
30538              * @param {String} msg The validation message
30539              */
30540             invalid : true,
30541             /**
30542              * @event valid
30543              * Fires after the field has been validated with no errors.
30544              * @param {Roo.form.FieldLabel} this
30545              */
30546             valid : true
30547         });
30548 };
30549
30550 Roo.extend(Roo.bootstrap.FieldLabel, Roo.bootstrap.Component,  {
30551     
30552     tag: 'label',
30553     cls: '',
30554     html: '',
30555     target: '',
30556     allowBlank : true,
30557     invalidClass : 'has-warning',
30558     validClass : 'has-success',
30559     iconTooltip : 'This field is required',
30560     indicatorpos : 'left',
30561     
30562     getAutoCreate : function(){
30563         
30564         var cls = "";
30565         if (!this.allowBlank) {
30566             cls  = "visible";
30567         }
30568         
30569         var cfg = {
30570             tag : this.tag,
30571             cls : 'roo-bootstrap-field-label ' + this.cls,
30572             for : this.target,
30573             cn : [
30574                 {
30575                     tag : 'i',
30576                     cls : 'roo-required-indicator left-indicator text-danger fa fa-lg fa-star ' + cls,
30577                     tooltip : this.iconTooltip
30578                 },
30579                 {
30580                     tag : 'span',
30581                     html : this.html
30582                 }
30583             ] 
30584         };
30585         
30586         if(this.indicatorpos == 'right'){
30587             var cfg = {
30588                 tag : this.tag,
30589                 cls : 'roo-bootstrap-field-label ' + this.cls,
30590                 for : this.target,
30591                 cn : [
30592                     {
30593                         tag : 'span',
30594                         html : this.html
30595                     },
30596                     {
30597                         tag : 'i',
30598                         cls : 'roo-required-indicator right-indicator text-danger fa fa-lg fa-star '+ cls,
30599                         tooltip : this.iconTooltip
30600                     }
30601                 ] 
30602             };
30603         }
30604         
30605         return cfg;
30606     },
30607     
30608     initEvents: function() 
30609     {
30610         Roo.bootstrap.Element.superclass.initEvents.call(this);
30611         
30612         this.indicator = this.indicatorEl();
30613         
30614         if(this.indicator){
30615             this.indicator.removeClass('visible');
30616             this.indicator.addClass('invisible');
30617         }
30618         
30619         Roo.bootstrap.FieldLabel.register(this);
30620     },
30621     
30622     indicatorEl : function()
30623     {
30624         var indicator = this.el.select('i.roo-required-indicator',true).first();
30625         
30626         if(!indicator){
30627             return false;
30628         }
30629         
30630         return indicator;
30631         
30632     },
30633     
30634     /**
30635      * Mark this field as valid
30636      */
30637     markValid : function()
30638     {
30639         if(this.indicator){
30640             this.indicator.removeClass('visible');
30641             this.indicator.addClass('invisible');
30642         }
30643         if (Roo.bootstrap.version == 3) {
30644             this.el.removeClass(this.invalidClass);
30645             this.el.addClass(this.validClass);
30646         } else {
30647             this.el.removeClass('is-invalid');
30648             this.el.addClass('is-valid');
30649         }
30650         
30651         
30652         this.fireEvent('valid', this);
30653     },
30654     
30655     /**
30656      * Mark this field as invalid
30657      * @param {String} msg The validation message
30658      */
30659     markInvalid : function(msg)
30660     {
30661         if(this.indicator){
30662             this.indicator.removeClass('invisible');
30663             this.indicator.addClass('visible');
30664         }
30665           if (Roo.bootstrap.version == 3) {
30666             this.el.removeClass(this.validClass);
30667             this.el.addClass(this.invalidClass);
30668         } else {
30669             this.el.removeClass('is-valid');
30670             this.el.addClass('is-invalid');
30671         }
30672         
30673         
30674         this.fireEvent('invalid', this, msg);
30675     }
30676     
30677    
30678 });
30679
30680 Roo.apply(Roo.bootstrap.FieldLabel, {
30681     
30682     groups: {},
30683     
30684      /**
30685     * register a FieldLabel Group
30686     * @param {Roo.bootstrap.FieldLabel} the FieldLabel to add
30687     */
30688     register : function(label)
30689     {
30690         if(this.groups.hasOwnProperty(label.target)){
30691             return;
30692         }
30693      
30694         this.groups[label.target] = label;
30695         
30696     },
30697     /**
30698     * fetch a FieldLabel Group based on the target
30699     * @param {string} target
30700     * @returns {Roo.bootstrap.FieldLabel} the CheckBox group
30701     */
30702     get: function(target) {
30703         if (typeof(this.groups[target]) == 'undefined') {
30704             return false;
30705         }
30706         
30707         return this.groups[target] ;
30708     }
30709 });
30710
30711  
30712
30713  /*
30714  * - LGPL
30715  *
30716  * page DateSplitField.
30717  * 
30718  */
30719
30720
30721 /**
30722  * @class Roo.bootstrap.DateSplitField
30723  * @extends Roo.bootstrap.Component
30724  * Bootstrap DateSplitField class
30725  * @cfg {string} fieldLabel - the label associated
30726  * @cfg {Number} labelWidth set the width of label (0-12)
30727  * @cfg {String} labelAlign (top|left)
30728  * @cfg {Boolean} dayAllowBlank (true|false) default false
30729  * @cfg {Boolean} monthAllowBlank (true|false) default false
30730  * @cfg {Boolean} yearAllowBlank (true|false) default false
30731  * @cfg {string} dayPlaceholder 
30732  * @cfg {string} monthPlaceholder
30733  * @cfg {string} yearPlaceholder
30734  * @cfg {string} dayFormat default 'd'
30735  * @cfg {string} monthFormat default 'm'
30736  * @cfg {string} yearFormat default 'Y'
30737  * @cfg {Number} labellg set the width of label (1-12)
30738  * @cfg {Number} labelmd set the width of label (1-12)
30739  * @cfg {Number} labelsm set the width of label (1-12)
30740  * @cfg {Number} labelxs set the width of label (1-12)
30741
30742  *     
30743  * @constructor
30744  * Create a new DateSplitField
30745  * @param {Object} config The config object
30746  */
30747
30748 Roo.bootstrap.DateSplitField = function(config){
30749     Roo.bootstrap.DateSplitField.superclass.constructor.call(this, config);
30750     
30751     this.addEvents({
30752         // raw events
30753          /**
30754          * @event years
30755          * getting the data of years
30756          * @param {Roo.bootstrap.DateSplitField} this
30757          * @param {Object} years
30758          */
30759         "years" : true,
30760         /**
30761          * @event days
30762          * getting the data of days
30763          * @param {Roo.bootstrap.DateSplitField} this
30764          * @param {Object} days
30765          */
30766         "days" : true,
30767         /**
30768          * @event invalid
30769          * Fires after the field has been marked as invalid.
30770          * @param {Roo.form.Field} this
30771          * @param {String} msg The validation message
30772          */
30773         invalid : true,
30774        /**
30775          * @event valid
30776          * Fires after the field has been validated with no errors.
30777          * @param {Roo.form.Field} this
30778          */
30779         valid : true
30780     });
30781 };
30782
30783 Roo.extend(Roo.bootstrap.DateSplitField, Roo.bootstrap.Component,  {
30784     
30785     fieldLabel : '',
30786     labelAlign : 'top',
30787     labelWidth : 3,
30788     dayAllowBlank : false,
30789     monthAllowBlank : false,
30790     yearAllowBlank : false,
30791     dayPlaceholder : '',
30792     monthPlaceholder : '',
30793     yearPlaceholder : '',
30794     dayFormat : 'd',
30795     monthFormat : 'm',
30796     yearFormat : 'Y',
30797     isFormField : true,
30798     labellg : 0,
30799     labelmd : 0,
30800     labelsm : 0,
30801     labelxs : 0,
30802     
30803     getAutoCreate : function()
30804     {
30805         var cfg = {
30806             tag : 'div',
30807             cls : 'row roo-date-split-field-group',
30808             cn : [
30809                 {
30810                     tag : 'input',
30811                     type : 'hidden',
30812                     cls : 'form-hidden-field roo-date-split-field-group-value',
30813                     name : this.name
30814                 }
30815             ]
30816         };
30817         
30818         var labelCls = 'col-md-12';
30819         var contentCls = 'col-md-4';
30820         
30821         if(this.fieldLabel){
30822             
30823             var label = {
30824                 tag : 'div',
30825                 cls : 'column roo-date-split-field-label col-md-' + ((this.labelAlign == 'top') ? '12' : this.labelWidth),
30826                 cn : [
30827                     {
30828                         tag : 'label',
30829                         html : this.fieldLabel
30830                     }
30831                 ]
30832             };
30833             
30834             if(this.labelAlign == 'left'){
30835             
30836                 if(this.labelWidth > 12){
30837                     label.style = "width: " + this.labelWidth + 'px';
30838                 }
30839
30840                 if(this.labelWidth < 13 && this.labelmd == 0){
30841                     this.labelmd = this.labelWidth;
30842                 }
30843
30844                 if(this.labellg > 0){
30845                     labelCls = ' col-lg-' + this.labellg;
30846                     contentCls = ' col-lg-' + ((12 - this.labellg) / 3);
30847                 }
30848
30849                 if(this.labelmd > 0){
30850                     labelCls = ' col-md-' + this.labelmd;
30851                     contentCls = ' col-md-' + ((12 - this.labelmd) / 3);
30852                 }
30853
30854                 if(this.labelsm > 0){
30855                     labelCls = ' col-sm-' + this.labelsm;
30856                     contentCls = ' col-sm-' + ((12 - this.labelsm) / 3);
30857                 }
30858
30859                 if(this.labelxs > 0){
30860                     labelCls = ' col-xs-' + this.labelxs;
30861                     contentCls = ' col-xs-' + ((12 - this.labelxs) / 3);
30862                 }
30863             }
30864             
30865             label.cls += ' ' + labelCls;
30866             
30867             cfg.cn.push(label);
30868         }
30869         
30870         Roo.each(['day', 'month', 'year'], function(t){
30871             cfg.cn.push({
30872                 tag : 'div',
30873                 cls : 'column roo-date-split-field-' + t + ' ' + contentCls
30874             });
30875         }, this);
30876         
30877         return cfg;
30878     },
30879     
30880     inputEl: function ()
30881     {
30882         return this.el.select('.roo-date-split-field-group-value', true).first();
30883     },
30884     
30885     onRender : function(ct, position) 
30886     {
30887         var _this = this;
30888         
30889         Roo.bootstrap.NavProgressBar.superclass.onRender.call(this, ct, position);
30890         
30891         this.inputEl = this.el.select('.roo-date-split-field-group-value', true).first();
30892         
30893         this.dayField = new Roo.bootstrap.ComboBox({
30894             allowBlank : this.dayAllowBlank,
30895             alwaysQuery : true,
30896             displayField : 'value',
30897             editable : false,
30898             fieldLabel : '',
30899             forceSelection : true,
30900             mode : 'local',
30901             placeholder : this.dayPlaceholder,
30902             selectOnFocus : true,
30903             tpl : '<div class="roo-select2-result"><b>{value}</b></div>',
30904             triggerAction : 'all',
30905             typeAhead : true,
30906             valueField : 'value',
30907             store : new Roo.data.SimpleStore({
30908                 data : (function() {    
30909                     var days = [];
30910                     _this.fireEvent('days', _this, days);
30911                     return days;
30912                 })(),
30913                 fields : [ 'value' ]
30914             }),
30915             listeners : {
30916                 select : function (_self, record, index)
30917                 {
30918                     _this.setValue(_this.getValue());
30919                 }
30920             }
30921         });
30922
30923         this.dayField.render(this.el.select('.roo-date-split-field-day', true).first(), null);
30924         
30925         this.monthField = new Roo.bootstrap.MonthField({
30926             after : '<i class=\"fa fa-calendar\"></i>',
30927             allowBlank : this.monthAllowBlank,
30928             placeholder : this.monthPlaceholder,
30929             readOnly : true,
30930             listeners : {
30931                 render : function (_self)
30932                 {
30933                     this.el.select('span.input-group-addon', true).first().on('click', function(e){
30934                         e.preventDefault();
30935                         _self.focus();
30936                     });
30937                 },
30938                 select : function (_self, oldvalue, newvalue)
30939                 {
30940                     _this.setValue(_this.getValue());
30941                 }
30942             }
30943         });
30944         
30945         this.monthField.render(this.el.select('.roo-date-split-field-month', true).first(), null);
30946         
30947         this.yearField = new Roo.bootstrap.ComboBox({
30948             allowBlank : this.yearAllowBlank,
30949             alwaysQuery : true,
30950             displayField : 'value',
30951             editable : false,
30952             fieldLabel : '',
30953             forceSelection : true,
30954             mode : 'local',
30955             placeholder : this.yearPlaceholder,
30956             selectOnFocus : true,
30957             tpl : '<div class="roo-select2-result"><b>{value}</b></div>',
30958             triggerAction : 'all',
30959             typeAhead : true,
30960             valueField : 'value',
30961             store : new Roo.data.SimpleStore({
30962                 data : (function() {
30963                     var years = [];
30964                     _this.fireEvent('years', _this, years);
30965                     return years;
30966                 })(),
30967                 fields : [ 'value' ]
30968             }),
30969             listeners : {
30970                 select : function (_self, record, index)
30971                 {
30972                     _this.setValue(_this.getValue());
30973                 }
30974             }
30975         });
30976
30977         this.yearField.render(this.el.select('.roo-date-split-field-year', true).first(), null);
30978     },
30979     
30980     setValue : function(v, format)
30981     {
30982         this.inputEl.dom.value = v;
30983         
30984         var f = format || (this.yearFormat + '-' + this.monthFormat + '-' + this.dayFormat);
30985         
30986         var d = Date.parseDate(v, f);
30987         
30988         if(!d){
30989             this.validate();
30990             return;
30991         }
30992         
30993         this.setDay(d.format(this.dayFormat));
30994         this.setMonth(d.format(this.monthFormat));
30995         this.setYear(d.format(this.yearFormat));
30996         
30997         this.validate();
30998         
30999         return;
31000     },
31001     
31002     setDay : function(v)
31003     {
31004         this.dayField.setValue(v);
31005         this.inputEl.dom.value = this.getValue();
31006         this.validate();
31007         return;
31008     },
31009     
31010     setMonth : function(v)
31011     {
31012         this.monthField.setValue(v, true);
31013         this.inputEl.dom.value = this.getValue();
31014         this.validate();
31015         return;
31016     },
31017     
31018     setYear : function(v)
31019     {
31020         this.yearField.setValue(v);
31021         this.inputEl.dom.value = this.getValue();
31022         this.validate();
31023         return;
31024     },
31025     
31026     getDay : function()
31027     {
31028         return this.dayField.getValue();
31029     },
31030     
31031     getMonth : function()
31032     {
31033         return this.monthField.getValue();
31034     },
31035     
31036     getYear : function()
31037     {
31038         return this.yearField.getValue();
31039     },
31040     
31041     getValue : function()
31042     {
31043         var f = this.yearFormat + '-' + this.monthFormat + '-' + this.dayFormat;
31044         
31045         var date = this.yearField.getValue() + '-' + this.monthField.getValue() + '-' + this.dayField.getValue();
31046         
31047         return date;
31048     },
31049     
31050     reset : function()
31051     {
31052         this.setDay('');
31053         this.setMonth('');
31054         this.setYear('');
31055         this.inputEl.dom.value = '';
31056         this.validate();
31057         return;
31058     },
31059     
31060     validate : function()
31061     {
31062         var d = this.dayField.validate();
31063         var m = this.monthField.validate();
31064         var y = this.yearField.validate();
31065         
31066         var valid = true;
31067         
31068         if(
31069                 (!this.dayAllowBlank && !d) ||
31070                 (!this.monthAllowBlank && !m) ||
31071                 (!this.yearAllowBlank && !y)
31072         ){
31073             valid = false;
31074         }
31075         
31076         if(this.dayAllowBlank && this.monthAllowBlank && this.yearAllowBlank){
31077             return valid;
31078         }
31079         
31080         if(valid){
31081             this.markValid();
31082             return valid;
31083         }
31084         
31085         this.markInvalid();
31086         
31087         return valid;
31088     },
31089     
31090     markValid : function()
31091     {
31092         
31093         var label = this.el.select('label', true).first();
31094         var icon = this.el.select('i.fa-star', true).first();
31095
31096         if(label && icon){
31097             icon.remove();
31098         }
31099         
31100         this.fireEvent('valid', this);
31101     },
31102     
31103      /**
31104      * Mark this field as invalid
31105      * @param {String} msg The validation message
31106      */
31107     markInvalid : function(msg)
31108     {
31109         
31110         var label = this.el.select('label', true).first();
31111         var icon = this.el.select('i.fa-star', true).first();
31112
31113         if(label && !icon){
31114             this.el.select('.roo-date-split-field-label', true).createChild({
31115                 tag : 'i',
31116                 cls : 'text-danger fa fa-lg fa-star',
31117                 tooltip : 'This field is required',
31118                 style : 'margin-right:5px;'
31119             }, label, true);
31120         }
31121         
31122         this.fireEvent('invalid', this, msg);
31123     },
31124     
31125     clearInvalid : function()
31126     {
31127         var label = this.el.select('label', true).first();
31128         var icon = this.el.select('i.fa-star', true).first();
31129
31130         if(label && icon){
31131             icon.remove();
31132         }
31133         
31134         this.fireEvent('valid', this);
31135     },
31136     
31137     getName: function()
31138     {
31139         return this.name;
31140     }
31141     
31142 });
31143
31144  /**
31145  *
31146  * This is based on 
31147  * http://masonry.desandro.com
31148  *
31149  * The idea is to render all the bricks based on vertical width...
31150  *
31151  * The original code extends 'outlayer' - we might need to use that....
31152  * 
31153  */
31154
31155
31156 /**
31157  * @class Roo.bootstrap.LayoutMasonry
31158  * @extends Roo.bootstrap.Component
31159  * Bootstrap Layout Masonry class
31160  * 
31161  * @constructor
31162  * Create a new Element
31163  * @param {Object} config The config object
31164  */
31165
31166 Roo.bootstrap.LayoutMasonry = function(config){
31167     
31168     Roo.bootstrap.LayoutMasonry.superclass.constructor.call(this, config);
31169     
31170     this.bricks = [];
31171     
31172     Roo.bootstrap.LayoutMasonry.register(this);
31173     
31174     this.addEvents({
31175         // raw events
31176         /**
31177          * @event layout
31178          * Fire after layout the items
31179          * @param {Roo.bootstrap.LayoutMasonry} this
31180          * @param {Roo.EventObject} e
31181          */
31182         "layout" : true
31183     });
31184     
31185 };
31186
31187 Roo.extend(Roo.bootstrap.LayoutMasonry, Roo.bootstrap.Component,  {
31188     
31189     /**
31190      * @cfg {Boolean} isLayoutInstant = no animation?
31191      */   
31192     isLayoutInstant : false, // needed?
31193    
31194     /**
31195      * @cfg {Number} boxWidth  width of the columns
31196      */   
31197     boxWidth : 450,
31198     
31199       /**
31200      * @cfg {Number} boxHeight  - 0 for square, or fix it at a certian height
31201      */   
31202     boxHeight : 0,
31203     
31204     /**
31205      * @cfg {Number} padWidth padding below box..
31206      */   
31207     padWidth : 10, 
31208     
31209     /**
31210      * @cfg {Number} gutter gutter width..
31211      */   
31212     gutter : 10,
31213     
31214      /**
31215      * @cfg {Number} maxCols maximum number of columns
31216      */   
31217     
31218     maxCols: 0,
31219     
31220     /**
31221      * @cfg {Boolean} isAutoInitial defalut true
31222      */   
31223     isAutoInitial : true, 
31224     
31225     containerWidth: 0,
31226     
31227     /**
31228      * @cfg {Boolean} isHorizontal defalut false
31229      */   
31230     isHorizontal : false, 
31231
31232     currentSize : null,
31233     
31234     tag: 'div',
31235     
31236     cls: '',
31237     
31238     bricks: null, //CompositeElement
31239     
31240     cols : 1,
31241     
31242     _isLayoutInited : false,
31243     
31244 //    isAlternative : false, // only use for vertical layout...
31245     
31246     /**
31247      * @cfg {Number} alternativePadWidth padding below box..
31248      */   
31249     alternativePadWidth : 50,
31250     
31251     selectedBrick : [],
31252     
31253     getAutoCreate : function(){
31254         
31255         var cfg = Roo.apply({}, Roo.bootstrap.LayoutMasonry.superclass.getAutoCreate.call(this));
31256         
31257         var cfg = {
31258             tag: this.tag,
31259             cls: 'blog-masonary-wrapper ' + this.cls,
31260             cn : {
31261                 cls : 'mas-boxes masonary'
31262             }
31263         };
31264         
31265         return cfg;
31266     },
31267     
31268     getChildContainer: function( )
31269     {
31270         if (this.boxesEl) {
31271             return this.boxesEl;
31272         }
31273         
31274         this.boxesEl = this.el.select('.mas-boxes').first();
31275         
31276         return this.boxesEl;
31277     },
31278     
31279     
31280     initEvents : function()
31281     {
31282         var _this = this;
31283         
31284         if(this.isAutoInitial){
31285             Roo.log('hook children rendered');
31286             this.on('childrenrendered', function() {
31287                 Roo.log('children rendered');
31288                 _this.initial();
31289             } ,this);
31290         }
31291     },
31292     
31293     initial : function()
31294     {
31295         this.selectedBrick = [];
31296         
31297         this.currentSize = this.el.getBox(true);
31298         
31299         Roo.EventManager.onWindowResize(this.resize, this); 
31300
31301         if(!this.isAutoInitial){
31302             this.layout();
31303             return;
31304         }
31305         
31306         this.layout();
31307         
31308         return;
31309         //this.layout.defer(500,this);
31310         
31311     },
31312     
31313     resize : function()
31314     {
31315         var cs = this.el.getBox(true);
31316         
31317         if (
31318                 this.currentSize.width == cs.width && 
31319                 this.currentSize.x == cs.x && 
31320                 this.currentSize.height == cs.height && 
31321                 this.currentSize.y == cs.y 
31322         ) {
31323             Roo.log("no change in with or X or Y");
31324             return;
31325         }
31326         
31327         this.currentSize = cs;
31328         
31329         this.layout();
31330         
31331     },
31332     
31333     layout : function()
31334     {   
31335         this._resetLayout();
31336         
31337         var isInstant = this.isLayoutInstant !== undefined ? this.isLayoutInstant : !this._isLayoutInited;
31338         
31339         this.layoutItems( isInstant );
31340       
31341         this._isLayoutInited = true;
31342         
31343         this.fireEvent('layout', this);
31344         
31345     },
31346     
31347     _resetLayout : function()
31348     {
31349         if(this.isHorizontal){
31350             this.horizontalMeasureColumns();
31351             return;
31352         }
31353         
31354         this.verticalMeasureColumns();
31355         
31356     },
31357     
31358     verticalMeasureColumns : function()
31359     {
31360         this.getContainerWidth();
31361         
31362 //        if(Roo.lib.Dom.getViewWidth() < 768 && this.isAlternative){
31363 //            this.colWidth = Math.floor(this.containerWidth * 0.8);
31364 //            return;
31365 //        }
31366         
31367         var boxWidth = this.boxWidth + this.padWidth;
31368         
31369         if(this.containerWidth < this.boxWidth){
31370             boxWidth = this.containerWidth
31371         }
31372         
31373         var containerWidth = this.containerWidth;
31374         
31375         var cols = Math.floor(containerWidth / boxWidth);
31376         
31377         this.cols = Math.max( cols, 1 );
31378         
31379         this.cols = this.maxCols > 0 ? Math.min( this.cols, this.maxCols ) : this.cols;
31380         
31381         var totalBoxWidth = this.cols * boxWidth - this.padWidth;
31382         
31383         var avail = Math.floor((containerWidth - totalBoxWidth) / this.cols);
31384         
31385         this.colWidth = boxWidth + avail - this.padWidth;
31386         
31387         this.unitWidth = Math.round((this.colWidth - (this.gutter * 2)) / 3);
31388         this.unitHeight = this.boxHeight > 0 ? this.boxHeight  : this.unitWidth;
31389     },
31390     
31391     horizontalMeasureColumns : function()
31392     {
31393         this.getContainerWidth();
31394         
31395         var boxWidth = this.boxWidth;
31396         
31397         if(this.containerWidth < boxWidth){
31398             boxWidth = this.containerWidth;
31399         }
31400         
31401         this.unitWidth = Math.floor((boxWidth - (this.gutter * 2)) / 3);
31402         
31403         this.el.setHeight(boxWidth);
31404         
31405     },
31406     
31407     getContainerWidth : function()
31408     {
31409         this.containerWidth = this.el.getBox(true).width;  //maybe use getComputedWidth
31410     },
31411     
31412     layoutItems : function( isInstant )
31413     {
31414         Roo.log(this.bricks);
31415         
31416         var items = Roo.apply([], this.bricks);
31417         
31418         if(this.isHorizontal){
31419             this._horizontalLayoutItems( items , isInstant );
31420             return;
31421         }
31422         
31423 //        if(Roo.lib.Dom.getViewWidth() < 768 && this.isAlternative){
31424 //            this._verticalAlternativeLayoutItems( items , isInstant );
31425 //            return;
31426 //        }
31427         
31428         this._verticalLayoutItems( items , isInstant );
31429         
31430     },
31431     
31432     _verticalLayoutItems : function ( items , isInstant)
31433     {
31434         if ( !items || !items.length ) {
31435             return;
31436         }
31437         
31438         var standard = [
31439             ['xs', 'xs', 'xs', 'tall'],
31440             ['xs', 'xs', 'tall'],
31441             ['xs', 'xs', 'sm'],
31442             ['xs', 'xs', 'xs'],
31443             ['xs', 'tall'],
31444             ['xs', 'sm'],
31445             ['xs', 'xs'],
31446             ['xs'],
31447             
31448             ['sm', 'xs', 'xs'],
31449             ['sm', 'xs'],
31450             ['sm'],
31451             
31452             ['tall', 'xs', 'xs', 'xs'],
31453             ['tall', 'xs', 'xs'],
31454             ['tall', 'xs'],
31455             ['tall']
31456             
31457         ];
31458         
31459         var queue = [];
31460         
31461         var boxes = [];
31462         
31463         var box = [];
31464         
31465         Roo.each(items, function(item, k){
31466             
31467             switch (item.size) {
31468                 // these layouts take up a full box,
31469                 case 'md' :
31470                 case 'md-left' :
31471                 case 'md-right' :
31472                 case 'wide' :
31473                     
31474                     if(box.length){
31475                         boxes.push(box);
31476                         box = [];
31477                     }
31478                     
31479                     boxes.push([item]);
31480                     
31481                     break;
31482                     
31483                 case 'xs' :
31484                 case 'sm' :
31485                 case 'tall' :
31486                     
31487                     box.push(item);
31488                     
31489                     break;
31490                 default :
31491                     break;
31492                     
31493             }
31494             
31495         }, this);
31496         
31497         if(box.length){
31498             boxes.push(box);
31499             box = [];
31500         }
31501         
31502         var filterPattern = function(box, length)
31503         {
31504             if(!box.length){
31505                 return;
31506             }
31507             
31508             var match = false;
31509             
31510             var pattern = box.slice(0, length);
31511             
31512             var format = [];
31513             
31514             Roo.each(pattern, function(i){
31515                 format.push(i.size);
31516             }, this);
31517             
31518             Roo.each(standard, function(s){
31519                 
31520                 if(String(s) != String(format)){
31521                     return;
31522                 }
31523                 
31524                 match = true;
31525                 return false;
31526                 
31527             }, this);
31528             
31529             if(!match && length == 1){
31530                 return;
31531             }
31532             
31533             if(!match){
31534                 filterPattern(box, length - 1);
31535                 return;
31536             }
31537                 
31538             queue.push(pattern);
31539
31540             box = box.slice(length, box.length);
31541
31542             filterPattern(box, 4);
31543
31544             return;
31545             
31546         }
31547         
31548         Roo.each(boxes, function(box, k){
31549             
31550             if(!box.length){
31551                 return;
31552             }
31553             
31554             if(box.length == 1){
31555                 queue.push(box);
31556                 return;
31557             }
31558             
31559             filterPattern(box, 4);
31560             
31561         }, this);
31562         
31563         this._processVerticalLayoutQueue( queue, isInstant );
31564         
31565     },
31566     
31567 //    _verticalAlternativeLayoutItems : function( items , isInstant )
31568 //    {
31569 //        if ( !items || !items.length ) {
31570 //            return;
31571 //        }
31572 //
31573 //        this._processVerticalAlternativeLayoutQueue( items, isInstant );
31574 //        
31575 //    },
31576     
31577     _horizontalLayoutItems : function ( items , isInstant)
31578     {
31579         if ( !items || !items.length || items.length < 3) {
31580             return;
31581         }
31582         
31583         items.reverse();
31584         
31585         var eItems = items.slice(0, 3);
31586         
31587         items = items.slice(3, items.length);
31588         
31589         var standard = [
31590             ['xs', 'xs', 'xs', 'wide'],
31591             ['xs', 'xs', 'wide'],
31592             ['xs', 'xs', 'sm'],
31593             ['xs', 'xs', 'xs'],
31594             ['xs', 'wide'],
31595             ['xs', 'sm'],
31596             ['xs', 'xs'],
31597             ['xs'],
31598             
31599             ['sm', 'xs', 'xs'],
31600             ['sm', 'xs'],
31601             ['sm'],
31602             
31603             ['wide', 'xs', 'xs', 'xs'],
31604             ['wide', 'xs', 'xs'],
31605             ['wide', 'xs'],
31606             ['wide'],
31607             
31608             ['wide-thin']
31609         ];
31610         
31611         var queue = [];
31612         
31613         var boxes = [];
31614         
31615         var box = [];
31616         
31617         Roo.each(items, function(item, k){
31618             
31619             switch (item.size) {
31620                 case 'md' :
31621                 case 'md-left' :
31622                 case 'md-right' :
31623                 case 'tall' :
31624                     
31625                     if(box.length){
31626                         boxes.push(box);
31627                         box = [];
31628                     }
31629                     
31630                     boxes.push([item]);
31631                     
31632                     break;
31633                     
31634                 case 'xs' :
31635                 case 'sm' :
31636                 case 'wide' :
31637                 case 'wide-thin' :
31638                     
31639                     box.push(item);
31640                     
31641                     break;
31642                 default :
31643                     break;
31644                     
31645             }
31646             
31647         }, this);
31648         
31649         if(box.length){
31650             boxes.push(box);
31651             box = [];
31652         }
31653         
31654         var filterPattern = function(box, length)
31655         {
31656             if(!box.length){
31657                 return;
31658             }
31659             
31660             var match = false;
31661             
31662             var pattern = box.slice(0, length);
31663             
31664             var format = [];
31665             
31666             Roo.each(pattern, function(i){
31667                 format.push(i.size);
31668             }, this);
31669             
31670             Roo.each(standard, function(s){
31671                 
31672                 if(String(s) != String(format)){
31673                     return;
31674                 }
31675                 
31676                 match = true;
31677                 return false;
31678                 
31679             }, this);
31680             
31681             if(!match && length == 1){
31682                 return;
31683             }
31684             
31685             if(!match){
31686                 filterPattern(box, length - 1);
31687                 return;
31688             }
31689                 
31690             queue.push(pattern);
31691
31692             box = box.slice(length, box.length);
31693
31694             filterPattern(box, 4);
31695
31696             return;
31697             
31698         }
31699         
31700         Roo.each(boxes, function(box, k){
31701             
31702             if(!box.length){
31703                 return;
31704             }
31705             
31706             if(box.length == 1){
31707                 queue.push(box);
31708                 return;
31709             }
31710             
31711             filterPattern(box, 4);
31712             
31713         }, this);
31714         
31715         
31716         var prune = [];
31717         
31718         var pos = this.el.getBox(true);
31719         
31720         var minX = pos.x;
31721         
31722         var maxX = pos.right - this.unitWidth * 3 - this.gutter * 2 - this.padWidth;
31723         
31724         var hit_end = false;
31725         
31726         Roo.each(queue, function(box){
31727             
31728             if(hit_end){
31729                 
31730                 Roo.each(box, function(b){
31731                 
31732                     b.el.setVisibilityMode(Roo.Element.DISPLAY);
31733                     b.el.hide();
31734
31735                 }, this);
31736
31737                 return;
31738             }
31739             
31740             var mx = 0;
31741             
31742             Roo.each(box, function(b){
31743                 
31744                 b.el.setVisibilityMode(Roo.Element.DISPLAY);
31745                 b.el.show();
31746
31747                 mx = Math.max(mx, b.x);
31748                 
31749             }, this);
31750             
31751             maxX = maxX - this.unitWidth * mx - this.gutter * (mx - 1) - this.padWidth;
31752             
31753             if(maxX < minX){
31754                 
31755                 Roo.each(box, function(b){
31756                 
31757                     b.el.setVisibilityMode(Roo.Element.DISPLAY);
31758                     b.el.hide();
31759                     
31760                 }, this);
31761                 
31762                 hit_end = true;
31763                 
31764                 return;
31765             }
31766             
31767             prune.push(box);
31768             
31769         }, this);
31770         
31771         this._processHorizontalLayoutQueue( prune, eItems, isInstant );
31772     },
31773     
31774     /** Sets position of item in DOM
31775     * @param {Element} item
31776     * @param {Number} x - horizontal position
31777     * @param {Number} y - vertical position
31778     * @param {Boolean} isInstant - disables transitions
31779     */
31780     _processVerticalLayoutQueue : function( queue, isInstant )
31781     {
31782         var pos = this.el.getBox(true);
31783         var x = pos.x;
31784         var y = pos.y;
31785         var maxY = [];
31786         
31787         for (var i = 0; i < this.cols; i++){
31788             maxY[i] = pos.y;
31789         }
31790         
31791         Roo.each(queue, function(box, k){
31792             
31793             var col = k % this.cols;
31794             
31795             Roo.each(box, function(b,kk){
31796                 
31797                 b.el.position('absolute');
31798                 
31799                 var width = Math.floor(this.unitWidth * b.x + (this.gutter * (b.x - 1)) + b.el.getPadding('lr'));
31800                 var height = Math.floor(this.unitHeight * b.y + (this.gutter * (b.y - 1)) + b.el.getPadding('tb'));
31801                 
31802                 if(b.size == 'md-left' || b.size == 'md-right'){
31803                     width = Math.floor(this.unitWidth * (b.x - 1) + (this.gutter * (b.x - 2)) + b.el.getPadding('lr'));
31804                     height = Math.floor(this.unitHeight * (b.y - 1) + (this.gutter * (b.y - 2)) + b.el.getPadding('tb'));
31805                 }
31806                 
31807                 b.el.setWidth(width);
31808                 b.el.setHeight(height);
31809                 // iframe?
31810                 b.el.select('iframe',true).setSize(width,height);
31811                 
31812             }, this);
31813             
31814             for (var i = 0; i < this.cols; i++){
31815                 
31816                 if(maxY[i] < maxY[col]){
31817                     col = i;
31818                     continue;
31819                 }
31820                 
31821                 col = Math.min(col, i);
31822                 
31823             }
31824             
31825             x = pos.x + col * (this.colWidth + this.padWidth);
31826             
31827             y = maxY[col];
31828             
31829             var positions = [];
31830             
31831             switch (box.length){
31832                 case 1 :
31833                     positions = this.getVerticalOneBoxColPositions(x, y, box);
31834                     break;
31835                 case 2 :
31836                     positions = this.getVerticalTwoBoxColPositions(x, y, box);
31837                     break;
31838                 case 3 :
31839                     positions = this.getVerticalThreeBoxColPositions(x, y, box);
31840                     break;
31841                 case 4 :
31842                     positions = this.getVerticalFourBoxColPositions(x, y, box);
31843                     break;
31844                 default :
31845                     break;
31846             }
31847             
31848             Roo.each(box, function(b,kk){
31849                 
31850                 b.el.setXY([positions[kk].x, positions[kk].y], isInstant ? false : true);
31851                 
31852                 var sz = b.el.getSize();
31853                 
31854                 maxY[col] = Math.max(maxY[col], positions[kk].y + sz.height + this.padWidth);
31855                 
31856             }, this);
31857             
31858         }, this);
31859         
31860         var mY = 0;
31861         
31862         for (var i = 0; i < this.cols; i++){
31863             mY = Math.max(mY, maxY[i]);
31864         }
31865         
31866         this.el.setHeight(mY - pos.y);
31867         
31868     },
31869     
31870 //    _processVerticalAlternativeLayoutQueue : function( items, isInstant )
31871 //    {
31872 //        var pos = this.el.getBox(true);
31873 //        var x = pos.x;
31874 //        var y = pos.y;
31875 //        var maxX = pos.right;
31876 //        
31877 //        var maxHeight = 0;
31878 //        
31879 //        Roo.each(items, function(item, k){
31880 //            
31881 //            var c = k % 2;
31882 //            
31883 //            item.el.position('absolute');
31884 //                
31885 //            var width = Math.floor(this.colWidth + item.el.getPadding('lr'));
31886 //
31887 //            item.el.setWidth(width);
31888 //
31889 //            var height = Math.floor(this.colWidth * item.y / item.x + item.el.getPadding('tb'));
31890 //
31891 //            item.el.setHeight(height);
31892 //            
31893 //            if(c == 0){
31894 //                item.el.setXY([x, y], isInstant ? false : true);
31895 //            } else {
31896 //                item.el.setXY([maxX - width, y], isInstant ? false : true);
31897 //            }
31898 //            
31899 //            y = y + height + this.alternativePadWidth;
31900 //            
31901 //            maxHeight = maxHeight + height + this.alternativePadWidth;
31902 //            
31903 //        }, this);
31904 //        
31905 //        this.el.setHeight(maxHeight);
31906 //        
31907 //    },
31908     
31909     _processHorizontalLayoutQueue : function( queue, eItems, isInstant )
31910     {
31911         var pos = this.el.getBox(true);
31912         
31913         var minX = pos.x;
31914         var minY = pos.y;
31915         
31916         var maxX = pos.right;
31917         
31918         this._processHorizontalEndItem(eItems, maxX, minX, minY, isInstant);
31919         
31920         var maxX = maxX - this.unitWidth * 3 - this.gutter * 2 - this.padWidth;
31921         
31922         Roo.each(queue, function(box, k){
31923             
31924             Roo.each(box, function(b, kk){
31925                 
31926                 b.el.position('absolute');
31927                 
31928                 var width = Math.floor(this.unitWidth * b.x + (this.gutter * (b.x - 1)) + b.el.getPadding('lr'));
31929                 var height = Math.floor(this.unitWidth * b.y + (this.gutter * (b.y - 1)) + b.el.getPadding('tb'));
31930                 
31931                 if(b.size == 'md-left' || b.size == 'md-right'){
31932                     width = Math.floor(this.unitWidth * (b.x - 1) + (this.gutter * (b.x - 2)) + b.el.getPadding('lr'));
31933                     height = Math.floor(this.unitWidth * (b.y - 1) + (this.gutter * (b.y - 2)) + b.el.getPadding('tb'));
31934                 }
31935                 
31936                 b.el.setWidth(width);
31937                 b.el.setHeight(height);
31938                 
31939             }, this);
31940             
31941             if(!box.length){
31942                 return;
31943             }
31944             
31945             var positions = [];
31946             
31947             switch (box.length){
31948                 case 1 :
31949                     positions = this.getHorizontalOneBoxColPositions(maxX, minY, box);
31950                     break;
31951                 case 2 :
31952                     positions = this.getHorizontalTwoBoxColPositions(maxX, minY, box);
31953                     break;
31954                 case 3 :
31955                     positions = this.getHorizontalThreeBoxColPositions(maxX, minY, box);
31956                     break;
31957                 case 4 :
31958                     positions = this.getHorizontalFourBoxColPositions(maxX, minY, box);
31959                     break;
31960                 default :
31961                     break;
31962             }
31963             
31964             Roo.each(box, function(b,kk){
31965                 
31966                 b.el.setXY([positions[kk].x, positions[kk].y], isInstant ? false : true);
31967                 
31968                 maxX = Math.min(maxX, positions[kk].x - this.padWidth);
31969                 
31970             }, this);
31971             
31972         }, this);
31973         
31974     },
31975     
31976     _processHorizontalEndItem : function(eItems, maxX, minX, minY, isInstant)
31977     {
31978         Roo.each(eItems, function(b,k){
31979             
31980             b.size = (k == 0) ? 'sm' : 'xs';
31981             b.x = (k == 0) ? 2 : 1;
31982             b.y = (k == 0) ? 2 : 1;
31983             
31984             b.el.position('absolute');
31985             
31986             var width = Math.floor(this.unitWidth * b.x + (this.gutter * (b.x - 1)) + b.el.getPadding('lr'));
31987                 
31988             b.el.setWidth(width);
31989             
31990             var height = Math.floor(this.unitWidth * b.y + (this.gutter * (b.y - 1)) + b.el.getPadding('tb'));
31991             
31992             b.el.setHeight(height);
31993             
31994         }, this);
31995
31996         var positions = [];
31997         
31998         positions.push({
31999             x : maxX - this.unitWidth * 2 - this.gutter,
32000             y : minY
32001         });
32002         
32003         positions.push({
32004             x : maxX - this.unitWidth,
32005             y : minY + (this.unitWidth + this.gutter) * 2
32006         });
32007         
32008         positions.push({
32009             x : maxX - this.unitWidth * 3 - this.gutter * 2,
32010             y : minY
32011         });
32012         
32013         Roo.each(eItems, function(b,k){
32014             
32015             b.el.setXY([positions[k].x, positions[k].y], isInstant ? false : true);
32016
32017         }, this);
32018         
32019     },
32020     
32021     getVerticalOneBoxColPositions : function(x, y, box)
32022     {
32023         var pos = [];
32024         
32025         var rand = Math.floor(Math.random() * ((4 - box[0].x)));
32026         
32027         if(box[0].size == 'md-left'){
32028             rand = 0;
32029         }
32030         
32031         if(box[0].size == 'md-right'){
32032             rand = 1;
32033         }
32034         
32035         pos.push({
32036             x : x + (this.unitWidth + this.gutter) * rand,
32037             y : y
32038         });
32039         
32040         return pos;
32041     },
32042     
32043     getVerticalTwoBoxColPositions : function(x, y, box)
32044     {
32045         var pos = [];
32046         
32047         if(box[0].size == 'xs'){
32048             
32049             pos.push({
32050                 x : x,
32051                 y : y + ((this.unitHeight + this.gutter) * Math.floor(Math.random() * box[1].y))
32052             });
32053
32054             pos.push({
32055                 x : x + (this.unitWidth + this.gutter) * (3 - box[1].x),
32056                 y : y
32057             });
32058             
32059             return pos;
32060             
32061         }
32062         
32063         pos.push({
32064             x : x,
32065             y : y
32066         });
32067
32068         pos.push({
32069             x : x + (this.unitWidth + this.gutter) * 2,
32070             y : y + ((this.unitHeight + this.gutter) * Math.floor(Math.random() * box[0].y))
32071         });
32072         
32073         return pos;
32074         
32075     },
32076     
32077     getVerticalThreeBoxColPositions : function(x, y, box)
32078     {
32079         var pos = [];
32080         
32081         if(box[0].size == 'xs' && box[1].size == 'xs' && box[2].size == 'xs'){
32082             
32083             pos.push({
32084                 x : x,
32085                 y : y
32086             });
32087
32088             pos.push({
32089                 x : x + (this.unitWidth + this.gutter) * 1,
32090                 y : y
32091             });
32092             
32093             pos.push({
32094                 x : x + (this.unitWidth + this.gutter) * 2,
32095                 y : y
32096             });
32097             
32098             return pos;
32099             
32100         }
32101         
32102         if(box[0].size == 'xs' && box[1].size == 'xs'){
32103             
32104             pos.push({
32105                 x : x,
32106                 y : y
32107             });
32108
32109             pos.push({
32110                 x : x,
32111                 y : y + ((this.unitHeight + this.gutter) * (box[2].y - 1))
32112             });
32113             
32114             pos.push({
32115                 x : x + (this.unitWidth + this.gutter) * 1,
32116                 y : y
32117             });
32118             
32119             return pos;
32120             
32121         }
32122         
32123         pos.push({
32124             x : x,
32125             y : y
32126         });
32127
32128         pos.push({
32129             x : x + (this.unitWidth + this.gutter) * 2,
32130             y : y
32131         });
32132
32133         pos.push({
32134             x : x + (this.unitWidth + this.gutter) * 2,
32135             y : y + (this.unitHeight + this.gutter) * (box[0].y - 1)
32136         });
32137             
32138         return pos;
32139         
32140     },
32141     
32142     getVerticalFourBoxColPositions : function(x, y, box)
32143     {
32144         var pos = [];
32145         
32146         if(box[0].size == 'xs'){
32147             
32148             pos.push({
32149                 x : x,
32150                 y : y
32151             });
32152
32153             pos.push({
32154                 x : x,
32155                 y : y + (this.unitHeight + this.gutter) * 1
32156             });
32157             
32158             pos.push({
32159                 x : x,
32160                 y : y + (this.unitHeight + this.gutter) * 2
32161             });
32162             
32163             pos.push({
32164                 x : x + (this.unitWidth + this.gutter) * 1,
32165                 y : y
32166             });
32167             
32168             return pos;
32169             
32170         }
32171         
32172         pos.push({
32173             x : x,
32174             y : y
32175         });
32176
32177         pos.push({
32178             x : x + (this.unitWidth + this.gutter) * 2,
32179             y : y
32180         });
32181
32182         pos.push({
32183             x : x + (this.unitHeightunitWidth + this.gutter) * 2,
32184             y : y + (this.unitHeight + this.gutter) * 1
32185         });
32186
32187         pos.push({
32188             x : x + (this.unitWidth + this.gutter) * 2,
32189             y : y + (this.unitWidth + this.gutter) * 2
32190         });
32191
32192         return pos;
32193         
32194     },
32195     
32196     getHorizontalOneBoxColPositions : function(maxX, minY, box)
32197     {
32198         var pos = [];
32199         
32200         if(box[0].size == 'md-left'){
32201             pos.push({
32202                 x : maxX - this.unitWidth * (box[0].x - 1) - this.gutter * (box[0].x - 2),
32203                 y : minY
32204             });
32205             
32206             return pos;
32207         }
32208         
32209         if(box[0].size == 'md-right'){
32210             pos.push({
32211                 x : maxX - this.unitWidth * (box[0].x - 1) - this.gutter * (box[0].x - 2),
32212                 y : minY + (this.unitWidth + this.gutter) * 1
32213             });
32214             
32215             return pos;
32216         }
32217         
32218         var rand = Math.floor(Math.random() * (4 - box[0].y));
32219         
32220         pos.push({
32221             x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
32222             y : minY + (this.unitWidth + this.gutter) * rand
32223         });
32224         
32225         return pos;
32226         
32227     },
32228     
32229     getHorizontalTwoBoxColPositions : function(maxX, minY, box)
32230     {
32231         var pos = [];
32232         
32233         if(box[0].size == 'xs'){
32234             
32235             pos.push({
32236                 x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
32237                 y : minY
32238             });
32239
32240             pos.push({
32241                 x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
32242                 y : minY + (this.unitWidth + this.gutter) * (3 - box[1].y)
32243             });
32244             
32245             return pos;
32246             
32247         }
32248         
32249         pos.push({
32250             x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
32251             y : minY
32252         });
32253
32254         pos.push({
32255             x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
32256             y : minY + (this.unitWidth + this.gutter) * 2
32257         });
32258         
32259         return pos;
32260         
32261     },
32262     
32263     getHorizontalThreeBoxColPositions : function(maxX, minY, box)
32264     {
32265         var pos = [];
32266         
32267         if(box[0].size == 'xs' && box[1].size == 'xs' && box[2].size == 'xs'){
32268             
32269             pos.push({
32270                 x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
32271                 y : minY
32272             });
32273
32274             pos.push({
32275                 x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
32276                 y : minY + (this.unitWidth + this.gutter) * 1
32277             });
32278             
32279             pos.push({
32280                 x : maxX - this.unitWidth * box[2].x - this.gutter * (box[2].x - 1),
32281                 y : minY + (this.unitWidth + this.gutter) * 2
32282             });
32283             
32284             return pos;
32285             
32286         }
32287         
32288         if(box[0].size == 'xs' && box[1].size == 'xs'){
32289             
32290             pos.push({
32291                 x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
32292                 y : minY
32293             });
32294
32295             pos.push({
32296                 x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1) - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
32297                 y : minY
32298             });
32299             
32300             pos.push({
32301                 x : maxX - this.unitWidth * box[2].x - this.gutter * (box[2].x - 1),
32302                 y : minY + (this.unitWidth + this.gutter) * 1
32303             });
32304             
32305             return pos;
32306             
32307         }
32308         
32309         pos.push({
32310             x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
32311             y : minY
32312         });
32313
32314         pos.push({
32315             x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
32316             y : minY + (this.unitWidth + this.gutter) * 2
32317         });
32318
32319         pos.push({
32320             x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1) - this.unitWidth * box[2].x - this.gutter * (box[2].x - 1),
32321             y : minY + (this.unitWidth + this.gutter) * 2
32322         });
32323             
32324         return pos;
32325         
32326     },
32327     
32328     getHorizontalFourBoxColPositions : function(maxX, minY, box)
32329     {
32330         var pos = [];
32331         
32332         if(box[0].size == 'xs'){
32333             
32334             pos.push({
32335                 x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
32336                 y : minY
32337             });
32338
32339             pos.push({
32340                 x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1) - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
32341                 y : minY
32342             });
32343             
32344             pos.push({
32345                 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),
32346                 y : minY
32347             });
32348             
32349             pos.push({
32350                 x : maxX - this.unitWidth * box[3].x - this.gutter * (box[3].x - 1),
32351                 y : minY + (this.unitWidth + this.gutter) * 1
32352             });
32353             
32354             return pos;
32355             
32356         }
32357         
32358         pos.push({
32359             x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
32360             y : minY
32361         });
32362         
32363         pos.push({
32364             x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
32365             y : minY + (this.unitWidth + this.gutter) * 2
32366         });
32367         
32368         pos.push({
32369             x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1) - this.unitWidth * box[2].x - this.gutter * (box[2].x - 1),
32370             y : minY + (this.unitWidth + this.gutter) * 2
32371         });
32372         
32373         pos.push({
32374             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),
32375             y : minY + (this.unitWidth + this.gutter) * 2
32376         });
32377
32378         return pos;
32379         
32380     },
32381     
32382     /**
32383     * remove a Masonry Brick
32384     * @param {Roo.bootstrap.MasonryBrick} the masonry brick to remove
32385     */
32386     removeBrick : function(brick_id)
32387     {
32388         if (!brick_id) {
32389             return;
32390         }
32391         
32392         for (var i = 0; i<this.bricks.length; i++) {
32393             if (this.bricks[i].id == brick_id) {
32394                 this.bricks.splice(i,1);
32395                 this.el.dom.removeChild(Roo.get(brick_id).dom);
32396                 this.initial();
32397             }
32398         }
32399     },
32400     
32401     /**
32402     * adds a Masonry Brick
32403     * @param {Roo.bootstrap.MasonryBrick} the masonry brick to add
32404     */
32405     addBrick : function(cfg)
32406     {
32407         var cn = new Roo.bootstrap.MasonryBrick(cfg);
32408         //this.register(cn);
32409         cn.parentId = this.id;
32410         cn.render(this.el);
32411         return cn;
32412     },
32413     
32414     /**
32415     * register a Masonry Brick
32416     * @param {Roo.bootstrap.MasonryBrick} the masonry brick to add
32417     */
32418     
32419     register : function(brick)
32420     {
32421         this.bricks.push(brick);
32422         brick.masonryId = this.id;
32423     },
32424     
32425     /**
32426     * clear all the Masonry Brick
32427     */
32428     clearAll : function()
32429     {
32430         this.bricks = [];
32431         //this.getChildContainer().dom.innerHTML = "";
32432         this.el.dom.innerHTML = '';
32433     },
32434     
32435     getSelected : function()
32436     {
32437         if (!this.selectedBrick) {
32438             return false;
32439         }
32440         
32441         return this.selectedBrick;
32442     }
32443 });
32444
32445 Roo.apply(Roo.bootstrap.LayoutMasonry, {
32446     
32447     groups: {},
32448      /**
32449     * register a Masonry Layout
32450     * @param {Roo.bootstrap.LayoutMasonry} the masonry layout to add
32451     */
32452     
32453     register : function(layout)
32454     {
32455         this.groups[layout.id] = layout;
32456     },
32457     /**
32458     * fetch a  Masonry Layout based on the masonry layout ID
32459     * @param {string} the masonry layout to add
32460     * @returns {Roo.bootstrap.LayoutMasonry} the masonry layout
32461     */
32462     
32463     get: function(layout_id) {
32464         if (typeof(this.groups[layout_id]) == 'undefined') {
32465             return false;
32466         }
32467         return this.groups[layout_id] ;
32468     }
32469     
32470     
32471     
32472 });
32473
32474  
32475
32476  /**
32477  *
32478  * This is based on 
32479  * http://masonry.desandro.com
32480  *
32481  * The idea is to render all the bricks based on vertical width...
32482  *
32483  * The original code extends 'outlayer' - we might need to use that....
32484  * 
32485  */
32486
32487
32488 /**
32489  * @class Roo.bootstrap.LayoutMasonryAuto
32490  * @extends Roo.bootstrap.Component
32491  * Bootstrap Layout Masonry class
32492  * 
32493  * @constructor
32494  * Create a new Element
32495  * @param {Object} config The config object
32496  */
32497
32498 Roo.bootstrap.LayoutMasonryAuto = function(config){
32499     Roo.bootstrap.LayoutMasonryAuto.superclass.constructor.call(this, config);
32500 };
32501
32502 Roo.extend(Roo.bootstrap.LayoutMasonryAuto, Roo.bootstrap.Component,  {
32503     
32504       /**
32505      * @cfg {Boolean} isFitWidth  - resize the width..
32506      */   
32507     isFitWidth : false,  // options..
32508     /**
32509      * @cfg {Boolean} isOriginLeft = left align?
32510      */   
32511     isOriginLeft : true,
32512     /**
32513      * @cfg {Boolean} isOriginTop = top align?
32514      */   
32515     isOriginTop : false,
32516     /**
32517      * @cfg {Boolean} isLayoutInstant = no animation?
32518      */   
32519     isLayoutInstant : false, // needed?
32520     /**
32521      * @cfg {Boolean} isResizingContainer = not sure if this is used..
32522      */   
32523     isResizingContainer : true,
32524     /**
32525      * @cfg {Number} columnWidth  width of the columns 
32526      */   
32527     
32528     columnWidth : 0,
32529     
32530     /**
32531      * @cfg {Number} maxCols maximum number of columns
32532      */   
32533     
32534     maxCols: 0,
32535     /**
32536      * @cfg {Number} padHeight padding below box..
32537      */   
32538     
32539     padHeight : 10, 
32540     
32541     /**
32542      * @cfg {Boolean} isAutoInitial defalut true
32543      */   
32544     
32545     isAutoInitial : true, 
32546     
32547     // private?
32548     gutter : 0,
32549     
32550     containerWidth: 0,
32551     initialColumnWidth : 0,
32552     currentSize : null,
32553     
32554     colYs : null, // array.
32555     maxY : 0,
32556     padWidth: 10,
32557     
32558     
32559     tag: 'div',
32560     cls: '',
32561     bricks: null, //CompositeElement
32562     cols : 0, // array?
32563     // element : null, // wrapped now this.el
32564     _isLayoutInited : null, 
32565     
32566     
32567     getAutoCreate : function(){
32568         
32569         var cfg = {
32570             tag: this.tag,
32571             cls: 'blog-masonary-wrapper ' + this.cls,
32572             cn : {
32573                 cls : 'mas-boxes masonary'
32574             }
32575         };
32576         
32577         return cfg;
32578     },
32579     
32580     getChildContainer: function( )
32581     {
32582         if (this.boxesEl) {
32583             return this.boxesEl;
32584         }
32585         
32586         this.boxesEl = this.el.select('.mas-boxes').first();
32587         
32588         return this.boxesEl;
32589     },
32590     
32591     
32592     initEvents : function()
32593     {
32594         var _this = this;
32595         
32596         if(this.isAutoInitial){
32597             Roo.log('hook children rendered');
32598             this.on('childrenrendered', function() {
32599                 Roo.log('children rendered');
32600                 _this.initial();
32601             } ,this);
32602         }
32603         
32604     },
32605     
32606     initial : function()
32607     {
32608         this.reloadItems();
32609
32610         this.currentSize = this.el.getBox(true);
32611
32612         /// was window resize... - let's see if this works..
32613         Roo.EventManager.onWindowResize(this.resize, this); 
32614
32615         if(!this.isAutoInitial){
32616             this.layout();
32617             return;
32618         }
32619         
32620         this.layout.defer(500,this);
32621     },
32622     
32623     reloadItems: function()
32624     {
32625         this.bricks = this.el.select('.masonry-brick', true);
32626         
32627         this.bricks.each(function(b) {
32628             //Roo.log(b.getSize());
32629             if (!b.attr('originalwidth')) {
32630                 b.attr('originalwidth',  b.getSize().width);
32631             }
32632             
32633         });
32634         
32635         Roo.log(this.bricks.elements.length);
32636     },
32637     
32638     resize : function()
32639     {
32640         Roo.log('resize');
32641         var cs = this.el.getBox(true);
32642         
32643         if (this.currentSize.width == cs.width && this.currentSize.x == cs.x ) {
32644             Roo.log("no change in with or X");
32645             return;
32646         }
32647         this.currentSize = cs;
32648         this.layout();
32649     },
32650     
32651     layout : function()
32652     {
32653          Roo.log('layout');
32654         this._resetLayout();
32655         //this._manageStamps();
32656       
32657         // don't animate first layout
32658         var isInstant = this.isLayoutInstant !== undefined ? this.isLayoutInstant : !this._isLayoutInited;
32659         this.layoutItems( isInstant );
32660       
32661         // flag for initalized
32662         this._isLayoutInited = true;
32663     },
32664     
32665     layoutItems : function( isInstant )
32666     {
32667         //var items = this._getItemsForLayout( this.items );
32668         // original code supports filtering layout items.. we just ignore it..
32669         
32670         this._layoutItems( this.bricks , isInstant );
32671       
32672         this._postLayout();
32673     },
32674     _layoutItems : function ( items , isInstant)
32675     {
32676        //this.fireEvent( 'layout', this, items );
32677     
32678
32679         if ( !items || !items.elements.length ) {
32680           // no items, emit event with empty array
32681             return;
32682         }
32683
32684         var queue = [];
32685         items.each(function(item) {
32686             Roo.log("layout item");
32687             Roo.log(item);
32688             // get x/y object from method
32689             var position = this._getItemLayoutPosition( item );
32690             // enqueue
32691             position.item = item;
32692             position.isInstant = isInstant; // || item.isLayoutInstant; << not set yet...
32693             queue.push( position );
32694         }, this);
32695       
32696         this._processLayoutQueue( queue );
32697     },
32698     /** Sets position of item in DOM
32699     * @param {Element} item
32700     * @param {Number} x - horizontal position
32701     * @param {Number} y - vertical position
32702     * @param {Boolean} isInstant - disables transitions
32703     */
32704     _processLayoutQueue : function( queue )
32705     {
32706         for ( var i=0, len = queue.length; i < len; i++ ) {
32707             var obj = queue[i];
32708             obj.item.position('absolute');
32709             obj.item.setXY([obj.x,obj.y], obj.isInstant ? false : true);
32710         }
32711     },
32712       
32713     
32714     /**
32715     * Any logic you want to do after each layout,
32716     * i.e. size the container
32717     */
32718     _postLayout : function()
32719     {
32720         this.resizeContainer();
32721     },
32722     
32723     resizeContainer : function()
32724     {
32725         if ( !this.isResizingContainer ) {
32726             return;
32727         }
32728         var size = this._getContainerSize();
32729         if ( size ) {
32730             this.el.setSize(size.width,size.height);
32731             this.boxesEl.setSize(size.width,size.height);
32732         }
32733     },
32734     
32735     
32736     
32737     _resetLayout : function()
32738     {
32739         //this.getSize();  // -- does not really do anything.. it probably applies left/right etc. to obuject but not used
32740         this.colWidth = this.el.getWidth();
32741         //this.gutter = this.el.getWidth(); 
32742         
32743         this.measureColumns();
32744
32745         // reset column Y
32746         var i = this.cols;
32747         this.colYs = [];
32748         while (i--) {
32749             this.colYs.push( 0 );
32750         }
32751     
32752         this.maxY = 0;
32753     },
32754
32755     measureColumns : function()
32756     {
32757         this.getContainerWidth();
32758       // if columnWidth is 0, default to outerWidth of first item
32759         if ( !this.columnWidth ) {
32760             var firstItem = this.bricks.first();
32761             Roo.log(firstItem);
32762             this.columnWidth  = this.containerWidth;
32763             if (firstItem && firstItem.attr('originalwidth') ) {
32764                 this.columnWidth = 1* (firstItem.attr('originalwidth') || firstItem.getWidth());
32765             }
32766             // columnWidth fall back to item of first element
32767             Roo.log("set column width?");
32768                         this.initialColumnWidth = this.columnWidth  ;
32769
32770             // if first elem has no width, default to size of container
32771             
32772         }
32773         
32774         
32775         if (this.initialColumnWidth) {
32776             this.columnWidth = this.initialColumnWidth;
32777         }
32778         
32779         
32780             
32781         // column width is fixed at the top - however if container width get's smaller we should
32782         // reduce it...
32783         
32784         // this bit calcs how man columns..
32785             
32786         var columnWidth = this.columnWidth += this.gutter;
32787       
32788         // calculate columns
32789         var containerWidth = this.containerWidth + this.gutter;
32790         
32791         var cols = (containerWidth - this.padWidth) / (columnWidth - this.padWidth);
32792         // fix rounding errors, typically with gutters
32793         var excess = columnWidth - containerWidth % columnWidth;
32794         
32795         
32796         // if overshoot is less than a pixel, round up, otherwise floor it
32797         var mathMethod = excess && excess < 1 ? 'round' : 'floor';
32798         cols = Math[ mathMethod ]( cols );
32799         this.cols = Math.max( cols, 1 );
32800         this.cols = this.maxCols > 0 ? Math.min( this.cols, this.maxCols ) : this.cols;
32801         
32802          // padding positioning..
32803         var totalColWidth = this.cols * this.columnWidth;
32804         var padavail = this.containerWidth - totalColWidth;
32805         // so for 2 columns - we need 3 'pads'
32806         
32807         var padNeeded = (1+this.cols) * this.padWidth;
32808         
32809         var padExtra = Math.floor((padavail - padNeeded) / this.cols);
32810         
32811         this.columnWidth += padExtra
32812         //this.padWidth = Math.floor(padavail /  ( this.cols));
32813         
32814         // adjust colum width so that padding is fixed??
32815         
32816         // we have 3 columns ... total = width * 3
32817         // we have X left over... that should be used by 
32818         
32819         //if (this.expandC) {
32820             
32821         //}
32822         
32823         
32824         
32825     },
32826     
32827     getContainerWidth : function()
32828     {
32829        /* // container is parent if fit width
32830         var container = this.isFitWidth ? this.element.parentNode : this.element;
32831         // check that this.size and size are there
32832         // IE8 triggers resize on body size change, so they might not be
32833         
32834         var size = getSize( container );  //FIXME
32835         this.containerWidth = size && size.innerWidth; //FIXME
32836         */
32837          
32838         this.containerWidth = this.el.getBox(true).width;  //maybe use getComputedWidth
32839         
32840     },
32841     
32842     _getItemLayoutPosition : function( item )  // what is item?
32843     {
32844         // we resize the item to our columnWidth..
32845       
32846         item.setWidth(this.columnWidth);
32847         item.autoBoxAdjust  = false;
32848         
32849         var sz = item.getSize();
32850  
32851         // how many columns does this brick span
32852         var remainder = this.containerWidth % this.columnWidth;
32853         
32854         var mathMethod = remainder && remainder < 1 ? 'round' : 'ceil';
32855         // round if off by 1 pixel, otherwise use ceil
32856         var colSpan = Math[ mathMethod ]( sz.width  / this.columnWidth );
32857         colSpan = Math.min( colSpan, this.cols );
32858         
32859         // normally this should be '1' as we dont' currently allow multi width columns..
32860         
32861         var colGroup = this._getColGroup( colSpan );
32862         // get the minimum Y value from the columns
32863         var minimumY = Math.min.apply( Math, colGroup );
32864         Roo.log([ 'setHeight',  minimumY, sz.height, setHeight ]);
32865         
32866         var shortColIndex = colGroup.indexOf(  minimumY ); // broken on ie8..?? probably...
32867          
32868         // position the brick
32869         var position = {
32870             x: this.currentSize.x + (this.padWidth /2) + ((this.columnWidth + this.padWidth )* shortColIndex),
32871             y: this.currentSize.y + minimumY + this.padHeight
32872         };
32873         
32874         Roo.log(position);
32875         // apply setHeight to necessary columns
32876         var setHeight = minimumY + sz.height + this.padHeight;
32877         //Roo.log([ 'setHeight',  minimumY, sz.height, setHeight ]);
32878         
32879         var setSpan = this.cols + 1 - colGroup.length;
32880         for ( var i = 0; i < setSpan; i++ ) {
32881           this.colYs[ shortColIndex + i ] = setHeight ;
32882         }
32883       
32884         return position;
32885     },
32886     
32887     /**
32888      * @param {Number} colSpan - number of columns the element spans
32889      * @returns {Array} colGroup
32890      */
32891     _getColGroup : function( colSpan )
32892     {
32893         if ( colSpan < 2 ) {
32894           // if brick spans only one column, use all the column Ys
32895           return this.colYs;
32896         }
32897       
32898         var colGroup = [];
32899         // how many different places could this brick fit horizontally
32900         var groupCount = this.cols + 1 - colSpan;
32901         // for each group potential horizontal position
32902         for ( var i = 0; i < groupCount; i++ ) {
32903           // make an array of colY values for that one group
32904           var groupColYs = this.colYs.slice( i, i + colSpan );
32905           // and get the max value of the array
32906           colGroup[i] = Math.max.apply( Math, groupColYs );
32907         }
32908         return colGroup;
32909     },
32910     /*
32911     _manageStamp : function( stamp )
32912     {
32913         var stampSize =  stamp.getSize();
32914         var offset = stamp.getBox();
32915         // get the columns that this stamp affects
32916         var firstX = this.isOriginLeft ? offset.x : offset.right;
32917         var lastX = firstX + stampSize.width;
32918         var firstCol = Math.floor( firstX / this.columnWidth );
32919         firstCol = Math.max( 0, firstCol );
32920         
32921         var lastCol = Math.floor( lastX / this.columnWidth );
32922         // lastCol should not go over if multiple of columnWidth #425
32923         lastCol -= lastX % this.columnWidth ? 0 : 1;
32924         lastCol = Math.min( this.cols - 1, lastCol );
32925         
32926         // set colYs to bottom of the stamp
32927         var stampMaxY = ( this.isOriginTop ? offset.y : offset.bottom ) +
32928             stampSize.height;
32929             
32930         for ( var i = firstCol; i <= lastCol; i++ ) {
32931           this.colYs[i] = Math.max( stampMaxY, this.colYs[i] );
32932         }
32933     },
32934     */
32935     
32936     _getContainerSize : function()
32937     {
32938         this.maxY = Math.max.apply( Math, this.colYs );
32939         var size = {
32940             height: this.maxY
32941         };
32942       
32943         if ( this.isFitWidth ) {
32944             size.width = this._getContainerFitWidth();
32945         }
32946       
32947         return size;
32948     },
32949     
32950     _getContainerFitWidth : function()
32951     {
32952         var unusedCols = 0;
32953         // count unused columns
32954         var i = this.cols;
32955         while ( --i ) {
32956           if ( this.colYs[i] !== 0 ) {
32957             break;
32958           }
32959           unusedCols++;
32960         }
32961         // fit container to columns that have been used
32962         return ( this.cols - unusedCols ) * this.columnWidth - this.gutter;
32963     },
32964     
32965     needsResizeLayout : function()
32966     {
32967         var previousWidth = this.containerWidth;
32968         this.getContainerWidth();
32969         return previousWidth !== this.containerWidth;
32970     }
32971  
32972 });
32973
32974  
32975
32976  /*
32977  * - LGPL
32978  *
32979  * element
32980  * 
32981  */
32982
32983 /**
32984  * @class Roo.bootstrap.MasonryBrick
32985  * @extends Roo.bootstrap.Component
32986  * Bootstrap MasonryBrick class
32987  * 
32988  * @constructor
32989  * Create a new MasonryBrick
32990  * @param {Object} config The config object
32991  */
32992
32993 Roo.bootstrap.MasonryBrick = function(config){
32994     
32995     Roo.bootstrap.MasonryBrick.superclass.constructor.call(this, config);
32996     
32997     Roo.bootstrap.MasonryBrick.register(this);
32998     
32999     this.addEvents({
33000         // raw events
33001         /**
33002          * @event click
33003          * When a MasonryBrick is clcik
33004          * @param {Roo.bootstrap.MasonryBrick} this
33005          * @param {Roo.EventObject} e
33006          */
33007         "click" : true
33008     });
33009 };
33010
33011 Roo.extend(Roo.bootstrap.MasonryBrick, Roo.bootstrap.Component,  {
33012     
33013     /**
33014      * @cfg {String} title
33015      */   
33016     title : '',
33017     /**
33018      * @cfg {String} html
33019      */   
33020     html : '',
33021     /**
33022      * @cfg {String} bgimage
33023      */   
33024     bgimage : '',
33025     /**
33026      * @cfg {String} videourl
33027      */   
33028     videourl : '',
33029     /**
33030      * @cfg {String} cls
33031      */   
33032     cls : '',
33033     /**
33034      * @cfg {String} href
33035      */   
33036     href : '',
33037     /**
33038      * @cfg {String} size (xs|sm|md|md-left|md-right|tall|wide)
33039      */   
33040     size : 'xs',
33041     
33042     /**
33043      * @cfg {String} placetitle (center|bottom)
33044      */   
33045     placetitle : '',
33046     
33047     /**
33048      * @cfg {Boolean} isFitContainer defalut true
33049      */   
33050     isFitContainer : true, 
33051     
33052     /**
33053      * @cfg {Boolean} preventDefault defalut false
33054      */   
33055     preventDefault : false, 
33056     
33057     /**
33058      * @cfg {Boolean} inverse defalut false
33059      */   
33060     maskInverse : false, 
33061     
33062     getAutoCreate : function()
33063     {
33064         if(!this.isFitContainer){
33065             return this.getSplitAutoCreate();
33066         }
33067         
33068         var cls = 'masonry-brick masonry-brick-full';
33069         
33070         if(this.href.length){
33071             cls += ' masonry-brick-link';
33072         }
33073         
33074         if(this.bgimage.length){
33075             cls += ' masonry-brick-image';
33076         }
33077         
33078         if(this.maskInverse){
33079             cls += ' mask-inverse';
33080         }
33081         
33082         if(!this.html.length && !this.maskInverse && !this.videourl.length){
33083             cls += ' enable-mask';
33084         }
33085         
33086         if(this.size){
33087             cls += ' masonry-' + this.size + '-brick';
33088         }
33089         
33090         if(this.placetitle.length){
33091             
33092             switch (this.placetitle) {
33093                 case 'center' :
33094                     cls += ' masonry-center-title';
33095                     break;
33096                 case 'bottom' :
33097                     cls += ' masonry-bottom-title';
33098                     break;
33099                 default:
33100                     break;
33101             }
33102             
33103         } else {
33104             if(!this.html.length && !this.bgimage.length){
33105                 cls += ' masonry-center-title';
33106             }
33107
33108             if(!this.html.length && this.bgimage.length){
33109                 cls += ' masonry-bottom-title';
33110             }
33111         }
33112         
33113         if(this.cls){
33114             cls += ' ' + this.cls;
33115         }
33116         
33117         var cfg = {
33118             tag: (this.href.length) ? 'a' : 'div',
33119             cls: cls,
33120             cn: [
33121                 {
33122                     tag: 'div',
33123                     cls: 'masonry-brick-mask'
33124                 },
33125                 {
33126                     tag: 'div',
33127                     cls: 'masonry-brick-paragraph',
33128                     cn: []
33129                 }
33130             ]
33131         };
33132         
33133         if(this.href.length){
33134             cfg.href = this.href;
33135         }
33136         
33137         var cn = cfg.cn[1].cn;
33138         
33139         if(this.title.length){
33140             cn.push({
33141                 tag: 'h4',
33142                 cls: 'masonry-brick-title',
33143                 html: this.title
33144             });
33145         }
33146         
33147         if(this.html.length){
33148             cn.push({
33149                 tag: 'p',
33150                 cls: 'masonry-brick-text',
33151                 html: this.html
33152             });
33153         }
33154         
33155         if (!this.title.length && !this.html.length) {
33156             cfg.cn[1].cls += ' hide';
33157         }
33158         
33159         if(this.bgimage.length){
33160             cfg.cn.push({
33161                 tag: 'img',
33162                 cls: 'masonry-brick-image-view',
33163                 src: this.bgimage
33164             });
33165         }
33166         
33167         if(this.videourl.length){
33168             var vurl = this.videourl.replace(/https:\/\/youtu\.be/, 'https://www.youtube.com/embed/');
33169             // youtube support only?
33170             cfg.cn.push({
33171                 tag: 'iframe',
33172                 cls: 'masonry-brick-image-view',
33173                 src: vurl,
33174                 frameborder : 0,
33175                 allowfullscreen : true
33176             });
33177         }
33178         
33179         return cfg;
33180         
33181     },
33182     
33183     getSplitAutoCreate : function()
33184     {
33185         var cls = 'masonry-brick masonry-brick-split';
33186         
33187         if(this.href.length){
33188             cls += ' masonry-brick-link';
33189         }
33190         
33191         if(this.bgimage.length){
33192             cls += ' masonry-brick-image';
33193         }
33194         
33195         if(this.size){
33196             cls += ' masonry-' + this.size + '-brick';
33197         }
33198         
33199         switch (this.placetitle) {
33200             case 'center' :
33201                 cls += ' masonry-center-title';
33202                 break;
33203             case 'bottom' :
33204                 cls += ' masonry-bottom-title';
33205                 break;
33206             default:
33207                 if(!this.bgimage.length){
33208                     cls += ' masonry-center-title';
33209                 }
33210
33211                 if(this.bgimage.length){
33212                     cls += ' masonry-bottom-title';
33213                 }
33214                 break;
33215         }
33216         
33217         if(this.cls){
33218             cls += ' ' + this.cls;
33219         }
33220         
33221         var cfg = {
33222             tag: (this.href.length) ? 'a' : 'div',
33223             cls: cls,
33224             cn: [
33225                 {
33226                     tag: 'div',
33227                     cls: 'masonry-brick-split-head',
33228                     cn: [
33229                         {
33230                             tag: 'div',
33231                             cls: 'masonry-brick-paragraph',
33232                             cn: []
33233                         }
33234                     ]
33235                 },
33236                 {
33237                     tag: 'div',
33238                     cls: 'masonry-brick-split-body',
33239                     cn: []
33240                 }
33241             ]
33242         };
33243         
33244         if(this.href.length){
33245             cfg.href = this.href;
33246         }
33247         
33248         if(this.title.length){
33249             cfg.cn[0].cn[0].cn.push({
33250                 tag: 'h4',
33251                 cls: 'masonry-brick-title',
33252                 html: this.title
33253             });
33254         }
33255         
33256         if(this.html.length){
33257             cfg.cn[1].cn.push({
33258                 tag: 'p',
33259                 cls: 'masonry-brick-text',
33260                 html: this.html
33261             });
33262         }
33263
33264         if(this.bgimage.length){
33265             cfg.cn[0].cn.push({
33266                 tag: 'img',
33267                 cls: 'masonry-brick-image-view',
33268                 src: this.bgimage
33269             });
33270         }
33271         
33272         if(this.videourl.length){
33273             var vurl = this.videourl.replace(/https:\/\/youtu\.be/, 'https://www.youtube.com/embed/');
33274             // youtube support only?
33275             cfg.cn[0].cn.cn.push({
33276                 tag: 'iframe',
33277                 cls: 'masonry-brick-image-view',
33278                 src: vurl,
33279                 frameborder : 0,
33280                 allowfullscreen : true
33281             });
33282         }
33283         
33284         return cfg;
33285     },
33286     
33287     initEvents: function() 
33288     {
33289         switch (this.size) {
33290             case 'xs' :
33291                 this.x = 1;
33292                 this.y = 1;
33293                 break;
33294             case 'sm' :
33295                 this.x = 2;
33296                 this.y = 2;
33297                 break;
33298             case 'md' :
33299             case 'md-left' :
33300             case 'md-right' :
33301                 this.x = 3;
33302                 this.y = 3;
33303                 break;
33304             case 'tall' :
33305                 this.x = 2;
33306                 this.y = 3;
33307                 break;
33308             case 'wide' :
33309                 this.x = 3;
33310                 this.y = 2;
33311                 break;
33312             case 'wide-thin' :
33313                 this.x = 3;
33314                 this.y = 1;
33315                 break;
33316                         
33317             default :
33318                 break;
33319         }
33320         
33321         if(Roo.isTouch){
33322             this.el.on('touchstart', this.onTouchStart, this);
33323             this.el.on('touchmove', this.onTouchMove, this);
33324             this.el.on('touchend', this.onTouchEnd, this);
33325             this.el.on('contextmenu', this.onContextMenu, this);
33326         } else {
33327             this.el.on('mouseenter'  ,this.enter, this);
33328             this.el.on('mouseleave', this.leave, this);
33329             this.el.on('click', this.onClick, this);
33330         }
33331         
33332         if (typeof(this.parent().bricks) == 'object' && this.parent().bricks != null) {
33333             this.parent().bricks.push(this);   
33334         }
33335         
33336     },
33337     
33338     onClick: function(e, el)
33339     {
33340         var time = this.endTimer - this.startTimer;
33341         // Roo.log(e.preventDefault());
33342         if(Roo.isTouch){
33343             if(time > 1000){
33344                 e.preventDefault();
33345                 return;
33346             }
33347         }
33348         
33349         if(!this.preventDefault){
33350             return;
33351         }
33352         
33353         e.preventDefault();
33354         
33355         if (this.activeClass != '') {
33356             this.selectBrick();
33357         }
33358         
33359         this.fireEvent('click', this, e);
33360     },
33361     
33362     enter: function(e, el)
33363     {
33364         e.preventDefault();
33365         
33366         if(!this.isFitContainer || this.maskInverse || this.videourl.length){
33367             return;
33368         }
33369         
33370         if(this.bgimage.length && this.html.length){
33371             this.el.select('.masonry-brick-paragraph', true).first().setOpacity(0.9, true);
33372         }
33373     },
33374     
33375     leave: function(e, el)
33376     {
33377         e.preventDefault();
33378         
33379         if(!this.isFitContainer || this.maskInverse  || this.videourl.length){
33380             return;
33381         }
33382         
33383         if(this.bgimage.length && this.html.length){
33384             this.el.select('.masonry-brick-paragraph', true).first().setOpacity(0, true);
33385         }
33386     },
33387     
33388     onTouchStart: function(e, el)
33389     {
33390 //        e.preventDefault();
33391         
33392         this.touchmoved = false;
33393         
33394         if(!this.isFitContainer){
33395             return;
33396         }
33397         
33398         if(!this.bgimage.length || !this.html.length){
33399             return;
33400         }
33401         
33402         this.el.select('.masonry-brick-paragraph', true).first().setOpacity(0.9, true);
33403         
33404         this.timer = new Date().getTime();
33405         
33406     },
33407     
33408     onTouchMove: function(e, el)
33409     {
33410         this.touchmoved = true;
33411     },
33412     
33413     onContextMenu : function(e,el)
33414     {
33415         e.preventDefault();
33416         e.stopPropagation();
33417         return false;
33418     },
33419     
33420     onTouchEnd: function(e, el)
33421     {
33422 //        e.preventDefault();
33423         
33424         if((new Date().getTime() - this.timer > 1000) || !this.href.length || this.touchmoved){
33425         
33426             this.leave(e,el);
33427             
33428             return;
33429         }
33430         
33431         if(!this.bgimage.length || !this.html.length){
33432             
33433             if(this.href.length){
33434                 window.location.href = this.href;
33435             }
33436             
33437             return;
33438         }
33439         
33440         if(!this.isFitContainer){
33441             return;
33442         }
33443         
33444         this.el.select('.masonry-brick-paragraph', true).first().setOpacity(0, true);
33445         
33446         window.location.href = this.href;
33447     },
33448     
33449     //selection on single brick only
33450     selectBrick : function() {
33451         
33452         if (!this.parentId) {
33453             return;
33454         }
33455         
33456         var m = Roo.bootstrap.LayoutMasonry.get(this.parentId);
33457         var index = m.selectedBrick.indexOf(this.id);
33458         
33459         if ( index > -1) {
33460             m.selectedBrick.splice(index,1);
33461             this.el.removeClass(this.activeClass);
33462             return;
33463         }
33464         
33465         for(var i = 0; i < m.selectedBrick.length; i++) {
33466             var b = Roo.bootstrap.MasonryBrick.get(m.selectedBrick[i]);
33467             b.el.removeClass(b.activeClass);
33468         }
33469         
33470         m.selectedBrick = [];
33471         
33472         m.selectedBrick.push(this.id);
33473         this.el.addClass(this.activeClass);
33474         return;
33475     },
33476     
33477     isSelected : function(){
33478         return this.el.hasClass(this.activeClass);
33479         
33480     }
33481 });
33482
33483 Roo.apply(Roo.bootstrap.MasonryBrick, {
33484     
33485     //groups: {},
33486     groups : new Roo.util.MixedCollection(false, function(o) { return o.el.id; }),
33487      /**
33488     * register a Masonry Brick
33489     * @param {Roo.bootstrap.MasonryBrick} the masonry brick to add
33490     */
33491     
33492     register : function(brick)
33493     {
33494         //this.groups[brick.id] = brick;
33495         this.groups.add(brick.id, brick);
33496     },
33497     /**
33498     * fetch a  masonry brick based on the masonry brick ID
33499     * @param {string} the masonry brick to add
33500     * @returns {Roo.bootstrap.MasonryBrick} the masonry brick
33501     */
33502     
33503     get: function(brick_id) 
33504     {
33505         // if (typeof(this.groups[brick_id]) == 'undefined') {
33506         //     return false;
33507         // }
33508         // return this.groups[brick_id] ;
33509         
33510         if(this.groups.key(brick_id)) {
33511             return this.groups.key(brick_id);
33512         }
33513         
33514         return false;
33515     }
33516     
33517     
33518     
33519 });
33520
33521  /*
33522  * - LGPL
33523  *
33524  * element
33525  * 
33526  */
33527
33528 /**
33529  * @class Roo.bootstrap.Brick
33530  * @extends Roo.bootstrap.Component
33531  * Bootstrap Brick class
33532  * 
33533  * @constructor
33534  * Create a new Brick
33535  * @param {Object} config The config object
33536  */
33537
33538 Roo.bootstrap.Brick = function(config){
33539     Roo.bootstrap.Brick.superclass.constructor.call(this, config);
33540     
33541     this.addEvents({
33542         // raw events
33543         /**
33544          * @event click
33545          * When a Brick is click
33546          * @param {Roo.bootstrap.Brick} this
33547          * @param {Roo.EventObject} e
33548          */
33549         "click" : true
33550     });
33551 };
33552
33553 Roo.extend(Roo.bootstrap.Brick, Roo.bootstrap.Component,  {
33554     
33555     /**
33556      * @cfg {String} title
33557      */   
33558     title : '',
33559     /**
33560      * @cfg {String} html
33561      */   
33562     html : '',
33563     /**
33564      * @cfg {String} bgimage
33565      */   
33566     bgimage : '',
33567     /**
33568      * @cfg {String} cls
33569      */   
33570     cls : '',
33571     /**
33572      * @cfg {String} href
33573      */   
33574     href : '',
33575     /**
33576      * @cfg {String} video
33577      */   
33578     video : '',
33579     /**
33580      * @cfg {Boolean} square
33581      */   
33582     square : true,
33583     
33584     getAutoCreate : function()
33585     {
33586         var cls = 'roo-brick';
33587         
33588         if(this.href.length){
33589             cls += ' roo-brick-link';
33590         }
33591         
33592         if(this.bgimage.length){
33593             cls += ' roo-brick-image';
33594         }
33595         
33596         if(!this.html.length && !this.bgimage.length){
33597             cls += ' roo-brick-center-title';
33598         }
33599         
33600         if(!this.html.length && this.bgimage.length){
33601             cls += ' roo-brick-bottom-title';
33602         }
33603         
33604         if(this.cls){
33605             cls += ' ' + this.cls;
33606         }
33607         
33608         var cfg = {
33609             tag: (this.href.length) ? 'a' : 'div',
33610             cls: cls,
33611             cn: [
33612                 {
33613                     tag: 'div',
33614                     cls: 'roo-brick-paragraph',
33615                     cn: []
33616                 }
33617             ]
33618         };
33619         
33620         if(this.href.length){
33621             cfg.href = this.href;
33622         }
33623         
33624         var cn = cfg.cn[0].cn;
33625         
33626         if(this.title.length){
33627             cn.push({
33628                 tag: 'h4',
33629                 cls: 'roo-brick-title',
33630                 html: this.title
33631             });
33632         }
33633         
33634         if(this.html.length){
33635             cn.push({
33636                 tag: 'p',
33637                 cls: 'roo-brick-text',
33638                 html: this.html
33639             });
33640         } else {
33641             cn.cls += ' hide';
33642         }
33643         
33644         if(this.bgimage.length){
33645             cfg.cn.push({
33646                 tag: 'img',
33647                 cls: 'roo-brick-image-view',
33648                 src: this.bgimage
33649             });
33650         }
33651         
33652         return cfg;
33653     },
33654     
33655     initEvents: function() 
33656     {
33657         if(this.title.length || this.html.length){
33658             this.el.on('mouseenter'  ,this.enter, this);
33659             this.el.on('mouseleave', this.leave, this);
33660         }
33661         
33662         Roo.EventManager.onWindowResize(this.resize, this); 
33663         
33664         if(this.bgimage.length){
33665             this.imageEl = this.el.select('.roo-brick-image-view', true).first();
33666             this.imageEl.on('load', this.onImageLoad, this);
33667             return;
33668         }
33669         
33670         this.resize();
33671     },
33672     
33673     onImageLoad : function()
33674     {
33675         this.resize();
33676     },
33677     
33678     resize : function()
33679     {
33680         var paragraph = this.el.select('.roo-brick-paragraph', true).first();
33681         
33682         paragraph.setHeight(paragraph.getWidth() + paragraph.getPadding('tb'));
33683         
33684         if(this.bgimage.length){
33685             var image = this.el.select('.roo-brick-image-view', true).first();
33686             
33687             image.setWidth(paragraph.getWidth());
33688             
33689             if(this.square){
33690                 image.setHeight(paragraph.getWidth());
33691             }
33692             
33693             this.el.setHeight(image.getHeight());
33694             paragraph.setHeight(image.getHeight());
33695             
33696         }
33697         
33698     },
33699     
33700     enter: function(e, el)
33701     {
33702         e.preventDefault();
33703         
33704         if(this.bgimage.length){
33705             this.el.select('.roo-brick-paragraph', true).first().setOpacity(0.9, true);
33706             this.el.select('.roo-brick-image-view', true).first().setOpacity(0.1, true);
33707         }
33708     },
33709     
33710     leave: function(e, el)
33711     {
33712         e.preventDefault();
33713         
33714         if(this.bgimage.length){
33715             this.el.select('.roo-brick-paragraph', true).first().setOpacity(0, true);
33716             this.el.select('.roo-brick-image-view', true).first().setOpacity(1, true);
33717         }
33718     }
33719     
33720 });
33721
33722  
33723
33724  /*
33725  * - LGPL
33726  *
33727  * Number field 
33728  */
33729
33730 /**
33731  * @class Roo.bootstrap.NumberField
33732  * @extends Roo.bootstrap.Input
33733  * Bootstrap NumberField class
33734  * 
33735  * 
33736  * 
33737  * 
33738  * @constructor
33739  * Create a new NumberField
33740  * @param {Object} config The config object
33741  */
33742
33743 Roo.bootstrap.NumberField = function(config){
33744     Roo.bootstrap.NumberField.superclass.constructor.call(this, config);
33745 };
33746
33747 Roo.extend(Roo.bootstrap.NumberField, Roo.bootstrap.Input, {
33748     
33749     /**
33750      * @cfg {Boolean} allowDecimals False to disallow decimal values (defaults to true)
33751      */
33752     allowDecimals : true,
33753     /**
33754      * @cfg {String} decimalSeparator Character(s) to allow as the decimal separator (defaults to '.')
33755      */
33756     decimalSeparator : ".",
33757     /**
33758      * @cfg {Number} decimalPrecision The maximum precision to display after the decimal separator (defaults to 2)
33759      */
33760     decimalPrecision : 2,
33761     /**
33762      * @cfg {Boolean} allowNegative False to prevent entering a negative sign (defaults to true)
33763      */
33764     allowNegative : true,
33765     
33766     /**
33767      * @cfg {Boolean} allowZero False to blank out if the user enters '0' (defaults to true)
33768      */
33769     allowZero: true,
33770     /**
33771      * @cfg {Number} minValue The minimum allowed value (defaults to Number.NEGATIVE_INFINITY)
33772      */
33773     minValue : Number.NEGATIVE_INFINITY,
33774     /**
33775      * @cfg {Number} maxValue The maximum allowed value (defaults to Number.MAX_VALUE)
33776      */
33777     maxValue : Number.MAX_VALUE,
33778     /**
33779      * @cfg {String} minText Error text to display if the minimum value validation fails (defaults to "The minimum value for this field is {minValue}")
33780      */
33781     minText : "The minimum value for this field is {0}",
33782     /**
33783      * @cfg {String} maxText Error text to display if the maximum value validation fails (defaults to "The maximum value for this field is {maxValue}")
33784      */
33785     maxText : "The maximum value for this field is {0}",
33786     /**
33787      * @cfg {String} nanText Error text to display if the value is not a valid number.  For example, this can happen
33788      * if a valid character like '.' or '-' is left in the field with no number (defaults to "{value} is not a valid number")
33789      */
33790     nanText : "{0} is not a valid number",
33791     /**
33792      * @cfg {String} thousandsDelimiter Symbol of thousandsDelimiter
33793      */
33794     thousandsDelimiter : false,
33795     /**
33796      * @cfg {String} valueAlign alignment of value
33797      */
33798     valueAlign : "left",
33799
33800     getAutoCreate : function()
33801     {
33802         var hiddenInput = {
33803             tag: 'input',
33804             type: 'hidden',
33805             id: Roo.id(),
33806             cls: 'hidden-number-input'
33807         };
33808         
33809         if (this.name) {
33810             hiddenInput.name = this.name;
33811         }
33812         
33813         this.name = '';
33814         
33815         var cfg = Roo.bootstrap.NumberField.superclass.getAutoCreate.call(this);
33816         
33817         this.name = hiddenInput.name;
33818         
33819         if(cfg.cn.length > 0) {
33820             cfg.cn.push(hiddenInput);
33821         }
33822         
33823         return cfg;
33824     },
33825
33826     // private
33827     initEvents : function()
33828     {   
33829         Roo.bootstrap.NumberField.superclass.initEvents.call(this);
33830         
33831         var allowed = "0123456789";
33832         
33833         if(this.allowDecimals){
33834             allowed += this.decimalSeparator;
33835         }
33836         
33837         if(this.allowNegative){
33838             allowed += "-";
33839         }
33840         
33841         if(this.thousandsDelimiter) {
33842             allowed += ",";
33843         }
33844         
33845         this.stripCharsRe = new RegExp('[^'+allowed+']', 'gi');
33846         
33847         var keyPress = function(e){
33848             
33849             var k = e.getKey();
33850             
33851             var c = e.getCharCode();
33852             
33853             if(
33854                     (String.fromCharCode(c) == '.' || String.fromCharCode(c) == '-') &&
33855                     allowed.indexOf(String.fromCharCode(c)) === -1
33856             ){
33857                 e.stopEvent();
33858                 return;
33859             }
33860             
33861             if(!Roo.isIE && (e.isSpecialKey() || k == e.BACKSPACE || k == e.DELETE)){
33862                 return;
33863             }
33864             
33865             if(allowed.indexOf(String.fromCharCode(c)) === -1){
33866                 e.stopEvent();
33867             }
33868         };
33869         
33870         this.el.on("keypress", keyPress, this);
33871     },
33872     
33873     validateValue : function(value)
33874     {
33875         
33876         if(!Roo.bootstrap.NumberField.superclass.validateValue.call(this, value)){
33877             return false;
33878         }
33879         
33880         var num = this.parseValue(value);
33881         
33882         if(isNaN(num)){
33883             this.markInvalid(String.format(this.nanText, value));
33884             return false;
33885         }
33886         
33887         if(num < this.minValue){
33888             this.markInvalid(String.format(this.minText, this.minValue));
33889             return false;
33890         }
33891         
33892         if(num > this.maxValue){
33893             this.markInvalid(String.format(this.maxText, this.maxValue));
33894             return false;
33895         }
33896         
33897         return true;
33898     },
33899
33900     getValue : function()
33901     {
33902         var v = this.hiddenEl().getValue();
33903         
33904         return this.fixPrecision(this.parseValue(v));
33905     },
33906
33907     parseValue : function(value)
33908     {
33909         if(this.thousandsDelimiter) {
33910             value += "";
33911             r = new RegExp(",", "g");
33912             value = value.replace(r, "");
33913         }
33914         
33915         value = parseFloat(String(value).replace(this.decimalSeparator, "."));
33916         return isNaN(value) ? '' : value;
33917     },
33918
33919     fixPrecision : function(value)
33920     {
33921         if(this.thousandsDelimiter) {
33922             value += "";
33923             r = new RegExp(",", "g");
33924             value = value.replace(r, "");
33925         }
33926         
33927         var nan = isNaN(value);
33928         
33929         if(!this.allowDecimals || this.decimalPrecision == -1 || nan || !value){
33930             return nan ? '' : value;
33931         }
33932         return parseFloat(value).toFixed(this.decimalPrecision);
33933     },
33934
33935     setValue : function(v)
33936     {
33937         v = String(this.fixPrecision(v)).replace(".", this.decimalSeparator);
33938         
33939         this.value = v;
33940         
33941         if(this.rendered){
33942             
33943             this.hiddenEl().dom.value = (v === null || v === undefined ? '' : v);
33944             
33945             this.inputEl().dom.value = (v == '') ? '' :
33946                 Roo.util.Format.number(v, this.decimalPrecision, this.thousandsDelimiter || '');
33947             
33948             if(!this.allowZero && v === '0') {
33949                 this.hiddenEl().dom.value = '';
33950                 this.inputEl().dom.value = '';
33951             }
33952             
33953             this.validate();
33954         }
33955     },
33956
33957     decimalPrecisionFcn : function(v)
33958     {
33959         return Math.floor(v);
33960     },
33961
33962     beforeBlur : function()
33963     {
33964         var v = this.parseValue(this.getRawValue());
33965         
33966         if(v || v === 0 || v === ''){
33967             this.setValue(v);
33968         }
33969     },
33970     
33971     hiddenEl : function()
33972     {
33973         return this.el.select('input.hidden-number-input',true).first();
33974     }
33975     
33976 });
33977
33978  
33979
33980 /*
33981 * Licence: LGPL
33982 */
33983
33984 /**
33985  * @class Roo.bootstrap.DocumentSlider
33986  * @extends Roo.bootstrap.Component
33987  * Bootstrap DocumentSlider class
33988  * 
33989  * @constructor
33990  * Create a new DocumentViewer
33991  * @param {Object} config The config object
33992  */
33993
33994 Roo.bootstrap.DocumentSlider = function(config){
33995     Roo.bootstrap.DocumentSlider.superclass.constructor.call(this, config);
33996     
33997     this.files = [];
33998     
33999     this.addEvents({
34000         /**
34001          * @event initial
34002          * Fire after initEvent
34003          * @param {Roo.bootstrap.DocumentSlider} this
34004          */
34005         "initial" : true,
34006         /**
34007          * @event update
34008          * Fire after update
34009          * @param {Roo.bootstrap.DocumentSlider} this
34010          */
34011         "update" : true,
34012         /**
34013          * @event click
34014          * Fire after click
34015          * @param {Roo.bootstrap.DocumentSlider} this
34016          */
34017         "click" : true
34018     });
34019 };
34020
34021 Roo.extend(Roo.bootstrap.DocumentSlider, Roo.bootstrap.Component,  {
34022     
34023     files : false,
34024     
34025     indicator : 0,
34026     
34027     getAutoCreate : function()
34028     {
34029         var cfg = {
34030             tag : 'div',
34031             cls : 'roo-document-slider',
34032             cn : [
34033                 {
34034                     tag : 'div',
34035                     cls : 'roo-document-slider-header',
34036                     cn : [
34037                         {
34038                             tag : 'div',
34039                             cls : 'roo-document-slider-header-title'
34040                         }
34041                     ]
34042                 },
34043                 {
34044                     tag : 'div',
34045                     cls : 'roo-document-slider-body',
34046                     cn : [
34047                         {
34048                             tag : 'div',
34049                             cls : 'roo-document-slider-prev',
34050                             cn : [
34051                                 {
34052                                     tag : 'i',
34053                                     cls : 'fa fa-chevron-left'
34054                                 }
34055                             ]
34056                         },
34057                         {
34058                             tag : 'div',
34059                             cls : 'roo-document-slider-thumb',
34060                             cn : [
34061                                 {
34062                                     tag : 'img',
34063                                     cls : 'roo-document-slider-image'
34064                                 }
34065                             ]
34066                         },
34067                         {
34068                             tag : 'div',
34069                             cls : 'roo-document-slider-next',
34070                             cn : [
34071                                 {
34072                                     tag : 'i',
34073                                     cls : 'fa fa-chevron-right'
34074                                 }
34075                             ]
34076                         }
34077                     ]
34078                 }
34079             ]
34080         };
34081         
34082         return cfg;
34083     },
34084     
34085     initEvents : function()
34086     {
34087         this.headerEl = this.el.select('.roo-document-slider-header', true).first();
34088         this.headerEl.setVisibilityMode(Roo.Element.DISPLAY);
34089         
34090         this.titleEl = this.el.select('.roo-document-slider-header .roo-document-slider-header-title', true).first();
34091         this.titleEl.setVisibilityMode(Roo.Element.DISPLAY);
34092         
34093         this.bodyEl = this.el.select('.roo-document-slider-body', true).first();
34094         this.bodyEl.setVisibilityMode(Roo.Element.DISPLAY);
34095         
34096         this.thumbEl = this.el.select('.roo-document-slider-thumb', true).first();
34097         this.thumbEl.setVisibilityMode(Roo.Element.DISPLAY);
34098         
34099         this.imageEl = this.el.select('.roo-document-slider-image', true).first();
34100         this.imageEl.setVisibilityMode(Roo.Element.DISPLAY);
34101         
34102         this.prevIndicator = this.el.select('.roo-document-slider-prev i', true).first();
34103         this.prevIndicator.setVisibilityMode(Roo.Element.DISPLAY);
34104         
34105         this.nextIndicator = this.el.select('.roo-document-slider-next i', true).first();
34106         this.nextIndicator.setVisibilityMode(Roo.Element.DISPLAY);
34107         
34108         this.thumbEl.on('click', this.onClick, this);
34109         
34110         this.prevIndicator.on('click', this.prev, this);
34111         
34112         this.nextIndicator.on('click', this.next, this);
34113         
34114     },
34115     
34116     initial : function()
34117     {
34118         if(this.files.length){
34119             this.indicator = 1;
34120             this.update()
34121         }
34122         
34123         this.fireEvent('initial', this);
34124     },
34125     
34126     update : function()
34127     {
34128         this.imageEl.attr('src', this.files[this.indicator - 1]);
34129         
34130         this.titleEl.dom.innerHTML = String.format('{0} / {1}', this.indicator, this.files.length);
34131         
34132         this.prevIndicator.show();
34133         
34134         if(this.indicator == 1){
34135             this.prevIndicator.hide();
34136         }
34137         
34138         this.nextIndicator.show();
34139         
34140         if(this.indicator == this.files.length){
34141             this.nextIndicator.hide();
34142         }
34143         
34144         this.thumbEl.scrollTo('top');
34145         
34146         this.fireEvent('update', this);
34147     },
34148     
34149     onClick : function(e)
34150     {
34151         e.preventDefault();
34152         
34153         this.fireEvent('click', this);
34154     },
34155     
34156     prev : function(e)
34157     {
34158         e.preventDefault();
34159         
34160         this.indicator = Math.max(1, this.indicator - 1);
34161         
34162         this.update();
34163     },
34164     
34165     next : function(e)
34166     {
34167         e.preventDefault();
34168         
34169         this.indicator = Math.min(this.files.length, this.indicator + 1);
34170         
34171         this.update();
34172     }
34173 });
34174 /*
34175  * - LGPL
34176  *
34177  * RadioSet
34178  *
34179  *
34180  */
34181
34182 /**
34183  * @class Roo.bootstrap.RadioSet
34184  * @extends Roo.bootstrap.Input
34185  * Bootstrap RadioSet class
34186  * @cfg {String} indicatorpos (left|right) default left
34187  * @cfg {Boolean} inline (true|false) inline the element (default true)
34188  * @cfg {String} weight (primary|warning|info|danger|success) The text that appears beside the radio
34189  * @constructor
34190  * Create a new RadioSet
34191  * @param {Object} config The config object
34192  */
34193
34194 Roo.bootstrap.RadioSet = function(config){
34195     
34196     Roo.bootstrap.RadioSet.superclass.constructor.call(this, config);
34197     
34198     this.radioes = [];
34199     
34200     Roo.bootstrap.RadioSet.register(this);
34201     
34202     this.addEvents({
34203         /**
34204         * @event check
34205         * Fires when the element is checked or unchecked.
34206         * @param {Roo.bootstrap.RadioSet} this This radio
34207         * @param {Roo.bootstrap.Radio} item The checked item
34208         */
34209        check : true,
34210        /**
34211         * @event click
34212         * Fires when the element is click.
34213         * @param {Roo.bootstrap.RadioSet} this This radio set
34214         * @param {Roo.bootstrap.Radio} item The checked item
34215         * @param {Roo.EventObject} e The event object
34216         */
34217        click : true
34218     });
34219     
34220 };
34221
34222 Roo.extend(Roo.bootstrap.RadioSet, Roo.bootstrap.Input,  {
34223
34224     radioes : false,
34225     
34226     inline : true,
34227     
34228     weight : '',
34229     
34230     indicatorpos : 'left',
34231     
34232     getAutoCreate : function()
34233     {
34234         var label = {
34235             tag : 'label',
34236             cls : 'roo-radio-set-label',
34237             cn : [
34238                 {
34239                     tag : 'span',
34240                     html : this.fieldLabel
34241                 }
34242             ]
34243         };
34244         if (Roo.bootstrap.version == 3) {
34245             
34246             
34247             if(this.indicatorpos == 'left'){
34248                 label.cn.unshift({
34249                     tag : 'i',
34250                     cls : 'roo-required-indicator left-indicator text-danger fa fa-lg fa-star',
34251                     tooltip : 'This field is required'
34252                 });
34253             } else {
34254                 label.cn.push({
34255                     tag : 'i',
34256                     cls : 'roo-required-indicator right-indicator text-danger fa fa-lg fa-star',
34257                     tooltip : 'This field is required'
34258                 });
34259             }
34260         }
34261         var items = {
34262             tag : 'div',
34263             cls : 'roo-radio-set-items'
34264         };
34265         
34266         var align = (!this.labelAlign) ? this.parentLabelAlign() : this.labelAlign;
34267         
34268         if (align === 'left' && this.fieldLabel.length) {
34269             
34270             items = {
34271                 cls : "roo-radio-set-right", 
34272                 cn: [
34273                     items
34274                 ]
34275             };
34276             
34277             if(this.labelWidth > 12){
34278                 label.style = "width: " + this.labelWidth + 'px';
34279             }
34280             
34281             if(this.labelWidth < 13 && this.labelmd == 0){
34282                 this.labelmd = this.labelWidth;
34283             }
34284             
34285             if(this.labellg > 0){
34286                 label.cls += ' col-lg-' + this.labellg;
34287                 items.cls += ' col-lg-' + (12 - this.labellg);
34288             }
34289             
34290             if(this.labelmd > 0){
34291                 label.cls += ' col-md-' + this.labelmd;
34292                 items.cls += ' col-md-' + (12 - this.labelmd);
34293             }
34294             
34295             if(this.labelsm > 0){
34296                 label.cls += ' col-sm-' + this.labelsm;
34297                 items.cls += ' col-sm-' + (12 - this.labelsm);
34298             }
34299             
34300             if(this.labelxs > 0){
34301                 label.cls += ' col-xs-' + this.labelxs;
34302                 items.cls += ' col-xs-' + (12 - this.labelxs);
34303             }
34304         }
34305         
34306         var cfg = {
34307             tag : 'div',
34308             cls : 'roo-radio-set',
34309             cn : [
34310                 {
34311                     tag : 'input',
34312                     cls : 'roo-radio-set-input',
34313                     type : 'hidden',
34314                     name : this.name,
34315                     value : this.value ? this.value :  ''
34316                 },
34317                 label,
34318                 items
34319             ]
34320         };
34321         
34322         if(this.weight.length){
34323             cfg.cls += ' roo-radio-' + this.weight;
34324         }
34325         
34326         if(this.inline) {
34327             cfg.cls += ' roo-radio-set-inline';
34328         }
34329         
34330         var settings=this;
34331         ['xs','sm','md','lg'].map(function(size){
34332             if (settings[size]) {
34333                 cfg.cls += ' col-' + size + '-' + settings[size];
34334             }
34335         });
34336         
34337         return cfg;
34338         
34339     },
34340
34341     initEvents : function()
34342     {
34343         this.labelEl = this.el.select('.roo-radio-set-label', true).first();
34344         this.labelEl.setVisibilityMode(Roo.Element.DISPLAY);
34345         
34346         if(!this.fieldLabel.length){
34347             this.labelEl.hide();
34348         }
34349         
34350         this.itemsEl = this.el.select('.roo-radio-set-items', true).first();
34351         this.itemsEl.setVisibilityMode(Roo.Element.DISPLAY);
34352         
34353         this.indicator = this.indicatorEl();
34354         
34355         if(this.indicator){
34356             this.indicator.addClass('invisible');
34357         }
34358         
34359         this.originalValue = this.getValue();
34360         
34361     },
34362     
34363     inputEl: function ()
34364     {
34365         return this.el.select('.roo-radio-set-input', true).first();
34366     },
34367     
34368     getChildContainer : function()
34369     {
34370         return this.itemsEl;
34371     },
34372     
34373     register : function(item)
34374     {
34375         this.radioes.push(item);
34376         
34377     },
34378     
34379     validate : function()
34380     {   
34381         if(this.getVisibilityEl().hasClass('hidden')){
34382             return true;
34383         }
34384         
34385         var valid = false;
34386         
34387         Roo.each(this.radioes, function(i){
34388             if(!i.checked){
34389                 return;
34390             }
34391             
34392             valid = true;
34393             return false;
34394         });
34395         
34396         if(this.allowBlank) {
34397             return true;
34398         }
34399         
34400         if(this.disabled || valid){
34401             this.markValid();
34402             return true;
34403         }
34404         
34405         this.markInvalid();
34406         return false;
34407         
34408     },
34409     
34410     markValid : function()
34411     {
34412         if(this.labelEl.isVisible(true) && this.indicatorEl()){
34413             this.indicatorEl().removeClass('visible');
34414             this.indicatorEl().addClass('invisible');
34415         }
34416         
34417         
34418         if (Roo.bootstrap.version == 3) {
34419             this.el.removeClass([this.invalidClass, this.validClass]);
34420             this.el.addClass(this.validClass);
34421         } else {
34422             this.el.removeClass(['is-invalid','is-valid']);
34423             this.el.addClass(['is-valid']);
34424         }
34425         this.fireEvent('valid', this);
34426     },
34427     
34428     markInvalid : function(msg)
34429     {
34430         if(this.allowBlank || this.disabled){
34431             return;
34432         }
34433         
34434         if(this.labelEl.isVisible(true) && this.indicatorEl()){
34435             this.indicatorEl().removeClass('invisible');
34436             this.indicatorEl().addClass('visible');
34437         }
34438         if (Roo.bootstrap.version == 3) {
34439             this.el.removeClass([this.invalidClass, this.validClass]);
34440             this.el.addClass(this.invalidClass);
34441         } else {
34442             this.el.removeClass(['is-invalid','is-valid']);
34443             this.el.addClass(['is-invalid']);
34444         }
34445         
34446         this.fireEvent('invalid', this, msg);
34447         
34448     },
34449     
34450     setValue : function(v, suppressEvent)
34451     {   
34452         if(this.value === v){
34453             return;
34454         }
34455         
34456         this.value = v;
34457         
34458         if(this.rendered){
34459             this.inputEl().dom.value = (v === null || v === undefined ? '' : v);
34460         }
34461         
34462         Roo.each(this.radioes, function(i){
34463             i.checked = false;
34464             i.el.removeClass('checked');
34465         });
34466         
34467         Roo.each(this.radioes, function(i){
34468             
34469             if(i.value === v || i.value.toString() === v.toString()){
34470                 i.checked = true;
34471                 i.el.addClass('checked');
34472                 
34473                 if(suppressEvent !== true){
34474                     this.fireEvent('check', this, i);
34475                 }
34476                 
34477                 return false;
34478             }
34479             
34480         }, this);
34481         
34482         this.validate();
34483     },
34484     
34485     clearInvalid : function(){
34486         
34487         if(!this.el || this.preventMark){
34488             return;
34489         }
34490         
34491         this.el.removeClass([this.invalidClass]);
34492         
34493         this.fireEvent('valid', this);
34494     }
34495     
34496 });
34497
34498 Roo.apply(Roo.bootstrap.RadioSet, {
34499     
34500     groups: {},
34501     
34502     register : function(set)
34503     {
34504         this.groups[set.name] = set;
34505     },
34506     
34507     get: function(name) 
34508     {
34509         if (typeof(this.groups[name]) == 'undefined') {
34510             return false;
34511         }
34512         
34513         return this.groups[name] ;
34514     }
34515     
34516 });
34517 /*
34518  * Based on:
34519  * Ext JS Library 1.1.1
34520  * Copyright(c) 2006-2007, Ext JS, LLC.
34521  *
34522  * Originally Released Under LGPL - original licence link has changed is not relivant.
34523  *
34524  * Fork - LGPL
34525  * <script type="text/javascript">
34526  */
34527
34528
34529 /**
34530  * @class Roo.bootstrap.SplitBar
34531  * @extends Roo.util.Observable
34532  * Creates draggable splitter bar functionality from two elements (element to be dragged and element to be resized).
34533  * <br><br>
34534  * Usage:
34535  * <pre><code>
34536 var split = new Roo.bootstrap.SplitBar("elementToDrag", "elementToSize",
34537                    Roo.bootstrap.SplitBar.HORIZONTAL, Roo.bootstrap.SplitBar.LEFT);
34538 split.setAdapter(new Roo.bootstrap.SplitBar.AbsoluteLayoutAdapter("container"));
34539 split.minSize = 100;
34540 split.maxSize = 600;
34541 split.animate = true;
34542 split.on('moved', splitterMoved);
34543 </code></pre>
34544  * @constructor
34545  * Create a new SplitBar
34546  * @config {String/HTMLElement/Roo.Element} dragElement The element to be dragged and act as the SplitBar. 
34547  * @config {String/HTMLElement/Roo.Element} resizingElement The element to be resized based on where the SplitBar element is dragged 
34548  * @config {Number} orientation (optional) Either Roo.bootstrap.SplitBar.HORIZONTAL or Roo.bootstrap.SplitBar.VERTICAL. (Defaults to HORIZONTAL)
34549  * @config {Number} placement (optional) Either Roo.bootstrap.SplitBar.LEFT or Roo.bootstrap.SplitBar.RIGHT for horizontal or  
34550                         Roo.bootstrap.SplitBar.TOP or Roo.bootstrap.SplitBar.BOTTOM for vertical. (By default, this is determined automatically by the initial
34551                         position of the SplitBar).
34552  */
34553 Roo.bootstrap.SplitBar = function(cfg){
34554     
34555     /** @private */
34556     
34557     //{
34558     //  dragElement : elm
34559     //  resizingElement: el,
34560         // optional..
34561     //    orientation : Either Roo.bootstrap.SplitBar.HORIZONTAL
34562     //    placement : Roo.bootstrap.SplitBar.LEFT  ,
34563         // existingProxy ???
34564     //}
34565     
34566     this.el = Roo.get(cfg.dragElement, true);
34567     this.el.dom.unselectable = "on";
34568     /** @private */
34569     this.resizingEl = Roo.get(cfg.resizingElement, true);
34570
34571     /**
34572      * @private
34573      * The orientation of the split. Either Roo.bootstrap.SplitBar.HORIZONTAL or Roo.bootstrap.SplitBar.VERTICAL. (Defaults to HORIZONTAL)
34574      * Note: If this is changed after creating the SplitBar, the placement property must be manually updated
34575      * @type Number
34576      */
34577     this.orientation = cfg.orientation || Roo.bootstrap.SplitBar.HORIZONTAL;
34578     
34579     /**
34580      * The minimum size of the resizing element. (Defaults to 0)
34581      * @type Number
34582      */
34583     this.minSize = 0;
34584     
34585     /**
34586      * The maximum size of the resizing element. (Defaults to 2000)
34587      * @type Number
34588      */
34589     this.maxSize = 2000;
34590     
34591     /**
34592      * Whether to animate the transition to the new size
34593      * @type Boolean
34594      */
34595     this.animate = false;
34596     
34597     /**
34598      * Whether to create a transparent shim that overlays the page when dragging, enables dragging across iframes.
34599      * @type Boolean
34600      */
34601     this.useShim = false;
34602     
34603     /** @private */
34604     this.shim = null;
34605     
34606     if(!cfg.existingProxy){
34607         /** @private */
34608         this.proxy = Roo.bootstrap.SplitBar.createProxy(this.orientation);
34609     }else{
34610         this.proxy = Roo.get(cfg.existingProxy).dom;
34611     }
34612     /** @private */
34613     this.dd = new Roo.dd.DDProxy(this.el.dom.id, "XSplitBars", {dragElId : this.proxy.id});
34614     
34615     /** @private */
34616     this.dd.b4StartDrag = this.onStartProxyDrag.createDelegate(this);
34617     
34618     /** @private */
34619     this.dd.endDrag = this.onEndProxyDrag.createDelegate(this);
34620     
34621     /** @private */
34622     this.dragSpecs = {};
34623     
34624     /**
34625      * @private The adapter to use to positon and resize elements
34626      */
34627     this.adapter = new Roo.bootstrap.SplitBar.BasicLayoutAdapter();
34628     this.adapter.init(this);
34629     
34630     if(this.orientation == Roo.bootstrap.SplitBar.HORIZONTAL){
34631         /** @private */
34632         this.placement = cfg.placement || (this.el.getX() > this.resizingEl.getX() ? Roo.bootstrap.SplitBar.LEFT : Roo.bootstrap.SplitBar.RIGHT);
34633         this.el.addClass("roo-splitbar-h");
34634     }else{
34635         /** @private */
34636         this.placement = cfg.placement || (this.el.getY() > this.resizingEl.getY() ? Roo.bootstrap.SplitBar.TOP : Roo.bootstrap.SplitBar.BOTTOM);
34637         this.el.addClass("roo-splitbar-v");
34638     }
34639     
34640     this.addEvents({
34641         /**
34642          * @event resize
34643          * Fires when the splitter is moved (alias for {@link #event-moved})
34644          * @param {Roo.bootstrap.SplitBar} this
34645          * @param {Number} newSize the new width or height
34646          */
34647         "resize" : true,
34648         /**
34649          * @event moved
34650          * Fires when the splitter is moved
34651          * @param {Roo.bootstrap.SplitBar} this
34652          * @param {Number} newSize the new width or height
34653          */
34654         "moved" : true,
34655         /**
34656          * @event beforeresize
34657          * Fires before the splitter is dragged
34658          * @param {Roo.bootstrap.SplitBar} this
34659          */
34660         "beforeresize" : true,
34661
34662         "beforeapply" : true
34663     });
34664
34665     Roo.util.Observable.call(this);
34666 };
34667
34668 Roo.extend(Roo.bootstrap.SplitBar, Roo.util.Observable, {
34669     onStartProxyDrag : function(x, y){
34670         this.fireEvent("beforeresize", this);
34671         if(!this.overlay){
34672             var o = Roo.DomHelper.insertFirst(document.body,  {cls: "roo-drag-overlay", html: "&#160;"}, true);
34673             o.unselectable();
34674             o.enableDisplayMode("block");
34675             // all splitbars share the same overlay
34676             Roo.bootstrap.SplitBar.prototype.overlay = o;
34677         }
34678         this.overlay.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
34679         this.overlay.show();
34680         Roo.get(this.proxy).setDisplayed("block");
34681         var size = this.adapter.getElementSize(this);
34682         this.activeMinSize = this.getMinimumSize();;
34683         this.activeMaxSize = this.getMaximumSize();;
34684         var c1 = size - this.activeMinSize;
34685         var c2 = Math.max(this.activeMaxSize - size, 0);
34686         if(this.orientation == Roo.bootstrap.SplitBar.HORIZONTAL){
34687             this.dd.resetConstraints();
34688             this.dd.setXConstraint(
34689                 this.placement == Roo.bootstrap.SplitBar.LEFT ? c1 : c2, 
34690                 this.placement == Roo.bootstrap.SplitBar.LEFT ? c2 : c1
34691             );
34692             this.dd.setYConstraint(0, 0);
34693         }else{
34694             this.dd.resetConstraints();
34695             this.dd.setXConstraint(0, 0);
34696             this.dd.setYConstraint(
34697                 this.placement == Roo.bootstrap.SplitBar.TOP ? c1 : c2, 
34698                 this.placement == Roo.bootstrap.SplitBar.TOP ? c2 : c1
34699             );
34700          }
34701         this.dragSpecs.startSize = size;
34702         this.dragSpecs.startPoint = [x, y];
34703         Roo.dd.DDProxy.prototype.b4StartDrag.call(this.dd, x, y);
34704     },
34705     
34706     /** 
34707      * @private Called after the drag operation by the DDProxy
34708      */
34709     onEndProxyDrag : function(e){
34710         Roo.get(this.proxy).setDisplayed(false);
34711         var endPoint = Roo.lib.Event.getXY(e);
34712         if(this.overlay){
34713             this.overlay.hide();
34714         }
34715         var newSize;
34716         if(this.orientation == Roo.bootstrap.SplitBar.HORIZONTAL){
34717             newSize = this.dragSpecs.startSize + 
34718                 (this.placement == Roo.bootstrap.SplitBar.LEFT ?
34719                     endPoint[0] - this.dragSpecs.startPoint[0] :
34720                     this.dragSpecs.startPoint[0] - endPoint[0]
34721                 );
34722         }else{
34723             newSize = this.dragSpecs.startSize + 
34724                 (this.placement == Roo.bootstrap.SplitBar.TOP ?
34725                     endPoint[1] - this.dragSpecs.startPoint[1] :
34726                     this.dragSpecs.startPoint[1] - endPoint[1]
34727                 );
34728         }
34729         newSize = Math.min(Math.max(newSize, this.activeMinSize), this.activeMaxSize);
34730         if(newSize != this.dragSpecs.startSize){
34731             if(this.fireEvent('beforeapply', this, newSize) !== false){
34732                 this.adapter.setElementSize(this, newSize);
34733                 this.fireEvent("moved", this, newSize);
34734                 this.fireEvent("resize", this, newSize);
34735             }
34736         }
34737     },
34738     
34739     /**
34740      * Get the adapter this SplitBar uses
34741      * @return The adapter object
34742      */
34743     getAdapter : function(){
34744         return this.adapter;
34745     },
34746     
34747     /**
34748      * Set the adapter this SplitBar uses
34749      * @param {Object} adapter A SplitBar adapter object
34750      */
34751     setAdapter : function(adapter){
34752         this.adapter = adapter;
34753         this.adapter.init(this);
34754     },
34755     
34756     /**
34757      * Gets the minimum size for the resizing element
34758      * @return {Number} The minimum size
34759      */
34760     getMinimumSize : function(){
34761         return this.minSize;
34762     },
34763     
34764     /**
34765      * Sets the minimum size for the resizing element
34766      * @param {Number} minSize The minimum size
34767      */
34768     setMinimumSize : function(minSize){
34769         this.minSize = minSize;
34770     },
34771     
34772     /**
34773      * Gets the maximum size for the resizing element
34774      * @return {Number} The maximum size
34775      */
34776     getMaximumSize : function(){
34777         return this.maxSize;
34778     },
34779     
34780     /**
34781      * Sets the maximum size for the resizing element
34782      * @param {Number} maxSize The maximum size
34783      */
34784     setMaximumSize : function(maxSize){
34785         this.maxSize = maxSize;
34786     },
34787     
34788     /**
34789      * Sets the initialize size for the resizing element
34790      * @param {Number} size The initial size
34791      */
34792     setCurrentSize : function(size){
34793         var oldAnimate = this.animate;
34794         this.animate = false;
34795         this.adapter.setElementSize(this, size);
34796         this.animate = oldAnimate;
34797     },
34798     
34799     /**
34800      * Destroy this splitbar. 
34801      * @param {Boolean} removeEl True to remove the element
34802      */
34803     destroy : function(removeEl){
34804         if(this.shim){
34805             this.shim.remove();
34806         }
34807         this.dd.unreg();
34808         this.proxy.parentNode.removeChild(this.proxy);
34809         if(removeEl){
34810             this.el.remove();
34811         }
34812     }
34813 });
34814
34815 /**
34816  * @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.
34817  */
34818 Roo.bootstrap.SplitBar.createProxy = function(dir){
34819     var proxy = new Roo.Element(document.createElement("div"));
34820     proxy.unselectable();
34821     var cls = 'roo-splitbar-proxy';
34822     proxy.addClass(cls + ' ' + (dir == Roo.bootstrap.SplitBar.HORIZONTAL ? cls +'-h' : cls + '-v'));
34823     document.body.appendChild(proxy.dom);
34824     return proxy.dom;
34825 };
34826
34827 /** 
34828  * @class Roo.bootstrap.SplitBar.BasicLayoutAdapter
34829  * Default Adapter. It assumes the splitter and resizing element are not positioned
34830  * elements and only gets/sets the width of the element. Generally used for table based layouts.
34831  */
34832 Roo.bootstrap.SplitBar.BasicLayoutAdapter = function(){
34833 };
34834
34835 Roo.bootstrap.SplitBar.BasicLayoutAdapter.prototype = {
34836     // do nothing for now
34837     init : function(s){
34838     
34839     },
34840     /**
34841      * Called before drag operations to get the current size of the resizing element. 
34842      * @param {Roo.bootstrap.SplitBar} s The SplitBar using this adapter
34843      */
34844      getElementSize : function(s){
34845         if(s.orientation == Roo.bootstrap.SplitBar.HORIZONTAL){
34846             return s.resizingEl.getWidth();
34847         }else{
34848             return s.resizingEl.getHeight();
34849         }
34850     },
34851     
34852     /**
34853      * Called after drag operations to set the size of the resizing element.
34854      * @param {Roo.bootstrap.SplitBar} s The SplitBar using this adapter
34855      * @param {Number} newSize The new size to set
34856      * @param {Function} onComplete A function to be invoked when resizing is complete
34857      */
34858     setElementSize : function(s, newSize, onComplete){
34859         if(s.orientation == Roo.bootstrap.SplitBar.HORIZONTAL){
34860             if(!s.animate){
34861                 s.resizingEl.setWidth(newSize);
34862                 if(onComplete){
34863                     onComplete(s, newSize);
34864                 }
34865             }else{
34866                 s.resizingEl.setWidth(newSize, true, .1, onComplete, 'easeOut');
34867             }
34868         }else{
34869             
34870             if(!s.animate){
34871                 s.resizingEl.setHeight(newSize);
34872                 if(onComplete){
34873                     onComplete(s, newSize);
34874                 }
34875             }else{
34876                 s.resizingEl.setHeight(newSize, true, .1, onComplete, 'easeOut');
34877             }
34878         }
34879     }
34880 };
34881
34882 /** 
34883  *@class Roo.bootstrap.SplitBar.AbsoluteLayoutAdapter
34884  * @extends Roo.bootstrap.SplitBar.BasicLayoutAdapter
34885  * Adapter that  moves the splitter element to align with the resized sizing element. 
34886  * Used with an absolute positioned SplitBar.
34887  * @param {String/HTMLElement/Roo.Element} container The container that wraps around the absolute positioned content. If it's
34888  * document.body, make sure you assign an id to the body element.
34889  */
34890 Roo.bootstrap.SplitBar.AbsoluteLayoutAdapter = function(container){
34891     this.basic = new Roo.bootstrap.SplitBar.BasicLayoutAdapter();
34892     this.container = Roo.get(container);
34893 };
34894
34895 Roo.bootstrap.SplitBar.AbsoluteLayoutAdapter.prototype = {
34896     init : function(s){
34897         this.basic.init(s);
34898     },
34899     
34900     getElementSize : function(s){
34901         return this.basic.getElementSize(s);
34902     },
34903     
34904     setElementSize : function(s, newSize, onComplete){
34905         this.basic.setElementSize(s, newSize, this.moveSplitter.createDelegate(this, [s]));
34906     },
34907     
34908     moveSplitter : function(s){
34909         var yes = Roo.bootstrap.SplitBar;
34910         switch(s.placement){
34911             case yes.LEFT:
34912                 s.el.setX(s.resizingEl.getRight());
34913                 break;
34914             case yes.RIGHT:
34915                 s.el.setStyle("right", (this.container.getWidth() - s.resizingEl.getLeft()) + "px");
34916                 break;
34917             case yes.TOP:
34918                 s.el.setY(s.resizingEl.getBottom());
34919                 break;
34920             case yes.BOTTOM:
34921                 s.el.setY(s.resizingEl.getTop() - s.el.getHeight());
34922                 break;
34923         }
34924     }
34925 };
34926
34927 /**
34928  * Orientation constant - Create a vertical SplitBar
34929  * @static
34930  * @type Number
34931  */
34932 Roo.bootstrap.SplitBar.VERTICAL = 1;
34933
34934 /**
34935  * Orientation constant - Create a horizontal SplitBar
34936  * @static
34937  * @type Number
34938  */
34939 Roo.bootstrap.SplitBar.HORIZONTAL = 2;
34940
34941 /**
34942  * Placement constant - The resizing element is to the left of the splitter element
34943  * @static
34944  * @type Number
34945  */
34946 Roo.bootstrap.SplitBar.LEFT = 1;
34947
34948 /**
34949  * Placement constant - The resizing element is to the right of the splitter element
34950  * @static
34951  * @type Number
34952  */
34953 Roo.bootstrap.SplitBar.RIGHT = 2;
34954
34955 /**
34956  * Placement constant - The resizing element is positioned above the splitter element
34957  * @static
34958  * @type Number
34959  */
34960 Roo.bootstrap.SplitBar.TOP = 3;
34961
34962 /**
34963  * Placement constant - The resizing element is positioned under splitter element
34964  * @static
34965  * @type Number
34966  */
34967 Roo.bootstrap.SplitBar.BOTTOM = 4;
34968 Roo.namespace("Roo.bootstrap.layout");/*
34969  * Based on:
34970  * Ext JS Library 1.1.1
34971  * Copyright(c) 2006-2007, Ext JS, LLC.
34972  *
34973  * Originally Released Under LGPL - original licence link has changed is not relivant.
34974  *
34975  * Fork - LGPL
34976  * <script type="text/javascript">
34977  */
34978
34979 /**
34980  * @class Roo.bootstrap.layout.Manager
34981  * @extends Roo.bootstrap.Component
34982  * Base class for layout managers.
34983  */
34984 Roo.bootstrap.layout.Manager = function(config)
34985 {
34986     Roo.bootstrap.layout.Manager.superclass.constructor.call(this,config);
34987
34988
34989
34990
34991
34992     /** false to disable window resize monitoring @type Boolean */
34993     this.monitorWindowResize = true;
34994     this.regions = {};
34995     this.addEvents({
34996         /**
34997          * @event layout
34998          * Fires when a layout is performed.
34999          * @param {Roo.LayoutManager} this
35000          */
35001         "layout" : true,
35002         /**
35003          * @event regionresized
35004          * Fires when the user resizes a region.
35005          * @param {Roo.LayoutRegion} region The resized region
35006          * @param {Number} newSize The new size (width for east/west, height for north/south)
35007          */
35008         "regionresized" : true,
35009         /**
35010          * @event regioncollapsed
35011          * Fires when a region is collapsed.
35012          * @param {Roo.LayoutRegion} region The collapsed region
35013          */
35014         "regioncollapsed" : true,
35015         /**
35016          * @event regionexpanded
35017          * Fires when a region is expanded.
35018          * @param {Roo.LayoutRegion} region The expanded region
35019          */
35020         "regionexpanded" : true
35021     });
35022     this.updating = false;
35023
35024     if (config.el) {
35025         this.el = Roo.get(config.el);
35026         this.initEvents();
35027     }
35028
35029 };
35030
35031 Roo.extend(Roo.bootstrap.layout.Manager, Roo.bootstrap.Component, {
35032
35033
35034     regions : null,
35035
35036     monitorWindowResize : true,
35037
35038
35039     updating : false,
35040
35041
35042     onRender : function(ct, position)
35043     {
35044         if(!this.el){
35045             this.el = Roo.get(ct);
35046             this.initEvents();
35047         }
35048         //this.fireEvent('render',this);
35049     },
35050
35051
35052     initEvents: function()
35053     {
35054
35055
35056         // ie scrollbar fix
35057         if(this.el.dom == document.body && Roo.isIE && !config.allowScroll){
35058             document.body.scroll = "no";
35059         }else if(this.el.dom != document.body && this.el.getStyle('position') == 'static'){
35060             this.el.position('relative');
35061         }
35062         this.id = this.el.id;
35063         this.el.addClass("roo-layout-container");
35064         Roo.EventManager.onWindowResize(this.onWindowResize, this, true);
35065         if(this.el.dom != document.body ) {
35066             this.el.on('resize', this.layout,this);
35067             this.el.on('show', this.layout,this);
35068         }
35069
35070     },
35071
35072     /**
35073      * Returns true if this layout is currently being updated
35074      * @return {Boolean}
35075      */
35076     isUpdating : function(){
35077         return this.updating;
35078     },
35079
35080     /**
35081      * Suspend the LayoutManager from doing auto-layouts while
35082      * making multiple add or remove calls
35083      */
35084     beginUpdate : function(){
35085         this.updating = true;
35086     },
35087
35088     /**
35089      * Restore auto-layouts and optionally disable the manager from performing a layout
35090      * @param {Boolean} noLayout true to disable a layout update
35091      */
35092     endUpdate : function(noLayout){
35093         this.updating = false;
35094         if(!noLayout){
35095             this.layout();
35096         }
35097     },
35098
35099     layout: function(){
35100         // abstract...
35101     },
35102
35103     onRegionResized : function(region, newSize){
35104         this.fireEvent("regionresized", region, newSize);
35105         this.layout();
35106     },
35107
35108     onRegionCollapsed : function(region){
35109         this.fireEvent("regioncollapsed", region);
35110     },
35111
35112     onRegionExpanded : function(region){
35113         this.fireEvent("regionexpanded", region);
35114     },
35115
35116     /**
35117      * Returns the size of the current view. This method normalizes document.body and element embedded layouts and
35118      * performs box-model adjustments.
35119      * @return {Object} The size as an object {width: (the width), height: (the height)}
35120      */
35121     getViewSize : function()
35122     {
35123         var size;
35124         if(this.el.dom != document.body){
35125             size = this.el.getSize();
35126         }else{
35127             size = {width: Roo.lib.Dom.getViewWidth(), height: Roo.lib.Dom.getViewHeight()};
35128         }
35129         size.width -= this.el.getBorderWidth("lr")-this.el.getPadding("lr");
35130         size.height -= this.el.getBorderWidth("tb")-this.el.getPadding("tb");
35131         return size;
35132     },
35133
35134     /**
35135      * Returns the Element this layout is bound to.
35136      * @return {Roo.Element}
35137      */
35138     getEl : function(){
35139         return this.el;
35140     },
35141
35142     /**
35143      * Returns the specified region.
35144      * @param {String} target The region key ('center', 'north', 'south', 'east' or 'west')
35145      * @return {Roo.LayoutRegion}
35146      */
35147     getRegion : function(target){
35148         return this.regions[target.toLowerCase()];
35149     },
35150
35151     onWindowResize : function(){
35152         if(this.monitorWindowResize){
35153             this.layout();
35154         }
35155     }
35156 });
35157 /*
35158  * Based on:
35159  * Ext JS Library 1.1.1
35160  * Copyright(c) 2006-2007, Ext JS, LLC.
35161  *
35162  * Originally Released Under LGPL - original licence link has changed is not relivant.
35163  *
35164  * Fork - LGPL
35165  * <script type="text/javascript">
35166  */
35167 /**
35168  * @class Roo.bootstrap.layout.Border
35169  * @extends Roo.bootstrap.layout.Manager
35170  * This class represents a common layout manager used in desktop applications. For screenshots and more details,
35171  * please see: examples/bootstrap/nested.html<br><br>
35172  
35173 <b>The container the layout is rendered into can be either the body element or any other element.
35174 If it is not the body element, the container needs to either be an absolute positioned element,
35175 or you will need to add "position:relative" to the css of the container.  You will also need to specify
35176 the container size if it is not the body element.</b>
35177
35178 * @constructor
35179 * Create a new Border
35180 * @param {Object} config Configuration options
35181  */
35182 Roo.bootstrap.layout.Border = function(config){
35183     config = config || {};
35184     Roo.bootstrap.layout.Border.superclass.constructor.call(this, config);
35185     
35186     
35187     
35188     Roo.each(Roo.bootstrap.layout.Border.regions, function(region) {
35189         if(config[region]){
35190             config[region].region = region;
35191             this.addRegion(config[region]);
35192         }
35193     },this);
35194     
35195 };
35196
35197 Roo.bootstrap.layout.Border.regions =  ["north","south","east","west","center"];
35198
35199 Roo.extend(Roo.bootstrap.layout.Border, Roo.bootstrap.layout.Manager, {
35200     
35201     parent : false, // this might point to a 'nest' or a ???
35202     
35203     /**
35204      * Creates and adds a new region if it doesn't already exist.
35205      * @param {String} target The target region key (north, south, east, west or center).
35206      * @param {Object} config The regions config object
35207      * @return {BorderLayoutRegion} The new region
35208      */
35209     addRegion : function(config)
35210     {
35211         if(!this.regions[config.region]){
35212             var r = this.factory(config);
35213             this.bindRegion(r);
35214         }
35215         return this.regions[config.region];
35216     },
35217
35218     // private (kinda)
35219     bindRegion : function(r){
35220         this.regions[r.config.region] = r;
35221         
35222         r.on("visibilitychange",    this.layout, this);
35223         r.on("paneladded",          this.layout, this);
35224         r.on("panelremoved",        this.layout, this);
35225         r.on("invalidated",         this.layout, this);
35226         r.on("resized",             this.onRegionResized, this);
35227         r.on("collapsed",           this.onRegionCollapsed, this);
35228         r.on("expanded",            this.onRegionExpanded, this);
35229     },
35230
35231     /**
35232      * Performs a layout update.
35233      */
35234     layout : function()
35235     {
35236         if(this.updating) {
35237             return;
35238         }
35239         
35240         // render all the rebions if they have not been done alreayd?
35241         Roo.each(Roo.bootstrap.layout.Border.regions, function(region) {
35242             if(this.regions[region] && !this.regions[region].bodyEl){
35243                 this.regions[region].onRender(this.el)
35244             }
35245         },this);
35246         
35247         var size = this.getViewSize();
35248         var w = size.width;
35249         var h = size.height;
35250         var centerW = w;
35251         var centerH = h;
35252         var centerY = 0;
35253         var centerX = 0;
35254         //var x = 0, y = 0;
35255
35256         var rs = this.regions;
35257         var north = rs["north"];
35258         var south = rs["south"]; 
35259         var west = rs["west"];
35260         var east = rs["east"];
35261         var center = rs["center"];
35262         //if(this.hideOnLayout){ // not supported anymore
35263             //c.el.setStyle("display", "none");
35264         //}
35265         if(north && north.isVisible()){
35266             var b = north.getBox();
35267             var m = north.getMargins();
35268             b.width = w - (m.left+m.right);
35269             b.x = m.left;
35270             b.y = m.top;
35271             centerY = b.height + b.y + m.bottom;
35272             centerH -= centerY;
35273             north.updateBox(this.safeBox(b));
35274         }
35275         if(south && south.isVisible()){
35276             var b = south.getBox();
35277             var m = south.getMargins();
35278             b.width = w - (m.left+m.right);
35279             b.x = m.left;
35280             var totalHeight = (b.height + m.top + m.bottom);
35281             b.y = h - totalHeight + m.top;
35282             centerH -= totalHeight;
35283             south.updateBox(this.safeBox(b));
35284         }
35285         if(west && west.isVisible()){
35286             var b = west.getBox();
35287             var m = west.getMargins();
35288             b.height = centerH - (m.top+m.bottom);
35289             b.x = m.left;
35290             b.y = centerY + m.top;
35291             var totalWidth = (b.width + m.left + m.right);
35292             centerX += totalWidth;
35293             centerW -= totalWidth;
35294             west.updateBox(this.safeBox(b));
35295         }
35296         if(east && east.isVisible()){
35297             var b = east.getBox();
35298             var m = east.getMargins();
35299             b.height = centerH - (m.top+m.bottom);
35300             var totalWidth = (b.width + m.left + m.right);
35301             b.x = w - totalWidth + m.left;
35302             b.y = centerY + m.top;
35303             centerW -= totalWidth;
35304             east.updateBox(this.safeBox(b));
35305         }
35306         if(center){
35307             var m = center.getMargins();
35308             var centerBox = {
35309                 x: centerX + m.left,
35310                 y: centerY + m.top,
35311                 width: centerW - (m.left+m.right),
35312                 height: centerH - (m.top+m.bottom)
35313             };
35314             //if(this.hideOnLayout){
35315                 //center.el.setStyle("display", "block");
35316             //}
35317             center.updateBox(this.safeBox(centerBox));
35318         }
35319         this.el.repaint();
35320         this.fireEvent("layout", this);
35321     },
35322
35323     // private
35324     safeBox : function(box){
35325         box.width = Math.max(0, box.width);
35326         box.height = Math.max(0, box.height);
35327         return box;
35328     },
35329
35330     /**
35331      * Adds a ContentPanel (or subclass) to this layout.
35332      * @param {String} target The target region key (north, south, east, west or center).
35333      * @param {Roo.ContentPanel} panel The panel to add
35334      * @return {Roo.ContentPanel} The added panel
35335      */
35336     add : function(target, panel){
35337          
35338         target = target.toLowerCase();
35339         return this.regions[target].add(panel);
35340     },
35341
35342     /**
35343      * Remove a ContentPanel (or subclass) to this layout.
35344      * @param {String} target The target region key (north, south, east, west or center).
35345      * @param {Number/String/Roo.ContentPanel} panel The index, id or panel to remove
35346      * @return {Roo.ContentPanel} The removed panel
35347      */
35348     remove : function(target, panel){
35349         target = target.toLowerCase();
35350         return this.regions[target].remove(panel);
35351     },
35352
35353     /**
35354      * Searches all regions for a panel with the specified id
35355      * @param {String} panelId
35356      * @return {Roo.ContentPanel} The panel or null if it wasn't found
35357      */
35358     findPanel : function(panelId){
35359         var rs = this.regions;
35360         for(var target in rs){
35361             if(typeof rs[target] != "function"){
35362                 var p = rs[target].getPanel(panelId);
35363                 if(p){
35364                     return p;
35365                 }
35366             }
35367         }
35368         return null;
35369     },
35370
35371     /**
35372      * Searches all regions for a panel with the specified id and activates (shows) it.
35373      * @param {String/ContentPanel} panelId The panels id or the panel itself
35374      * @return {Roo.ContentPanel} The shown panel or null
35375      */
35376     showPanel : function(panelId) {
35377       var rs = this.regions;
35378       for(var target in rs){
35379          var r = rs[target];
35380          if(typeof r != "function"){
35381             if(r.hasPanel(panelId)){
35382                return r.showPanel(panelId);
35383             }
35384          }
35385       }
35386       return null;
35387    },
35388
35389    /**
35390      * Restores this layout's state using Roo.state.Manager or the state provided by the passed provider.
35391      * @param {Roo.state.Provider} provider (optional) An alternate state provider
35392      */
35393    /*
35394     restoreState : function(provider){
35395         if(!provider){
35396             provider = Roo.state.Manager;
35397         }
35398         var sm = new Roo.LayoutStateManager();
35399         sm.init(this, provider);
35400     },
35401 */
35402  
35403  
35404     /**
35405      * Adds a xtype elements to the layout.
35406      * <pre><code>
35407
35408 layout.addxtype({
35409        xtype : 'ContentPanel',
35410        region: 'west',
35411        items: [ .... ]
35412    }
35413 );
35414
35415 layout.addxtype({
35416         xtype : 'NestedLayoutPanel',
35417         region: 'west',
35418         layout: {
35419            center: { },
35420            west: { }   
35421         },
35422         items : [ ... list of content panels or nested layout panels.. ]
35423    }
35424 );
35425 </code></pre>
35426      * @param {Object} cfg Xtype definition of item to add.
35427      */
35428     addxtype : function(cfg)
35429     {
35430         // basically accepts a pannel...
35431         // can accept a layout region..!?!?
35432         //Roo.log('Roo.BorderLayout add ' + cfg.xtype)
35433         
35434         
35435         // theory?  children can only be panels??
35436         
35437         //if (!cfg.xtype.match(/Panel$/)) {
35438         //    return false;
35439         //}
35440         var ret = false;
35441         
35442         if (typeof(cfg.region) == 'undefined') {
35443             Roo.log("Failed to add Panel, region was not set");
35444             Roo.log(cfg);
35445             return false;
35446         }
35447         var region = cfg.region;
35448         delete cfg.region;
35449         
35450           
35451         var xitems = [];
35452         if (cfg.items) {
35453             xitems = cfg.items;
35454             delete cfg.items;
35455         }
35456         var nb = false;
35457         
35458         if ( region == 'center') {
35459             Roo.log("Center: " + cfg.title);
35460         }
35461         
35462         
35463         switch(cfg.xtype) 
35464         {
35465             case 'Content':  // ContentPanel (el, cfg)
35466             case 'Scroll':  // ContentPanel (el, cfg)
35467             case 'View': 
35468                 cfg.autoCreate = cfg.autoCreate || true;
35469                 ret = new cfg.xns[cfg.xtype](cfg); // new panel!!!!!
35470                 //} else {
35471                 //    var el = this.el.createChild();
35472                 //    ret = new Roo[cfg.xtype](el, cfg); // new panel!!!!!
35473                 //}
35474                 
35475                 this.add(region, ret);
35476                 break;
35477             
35478             /*
35479             case 'TreePanel': // our new panel!
35480                 cfg.el = this.el.createChild();
35481                 ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
35482                 this.add(region, ret);
35483                 break;
35484             */
35485             
35486             case 'Nest': 
35487                 // create a new Layout (which is  a Border Layout...
35488                 
35489                 var clayout = cfg.layout;
35490                 clayout.el  = this.el.createChild();
35491                 clayout.items   = clayout.items  || [];
35492                 
35493                 delete cfg.layout;
35494                 
35495                 // replace this exitems with the clayout ones..
35496                 xitems = clayout.items;
35497                  
35498                 // force background off if it's in center...
35499                 if (region == 'center' && this.active && this.getRegion('center').panels.length < 1) {
35500                     cfg.background = false;
35501                 }
35502                 cfg.layout  = new Roo.bootstrap.layout.Border(clayout);
35503                 
35504                 
35505                 ret = new cfg.xns[cfg.xtype](cfg); // new panel!!!!!
35506                 //console.log('adding nested layout panel '  + cfg.toSource());
35507                 this.add(region, ret);
35508                 nb = {}; /// find first...
35509                 break;
35510             
35511             case 'Grid':
35512                 
35513                 // needs grid and region
35514                 
35515                 //var el = this.getRegion(region).el.createChild();
35516                 /*
35517                  *var el = this.el.createChild();
35518                 // create the grid first...
35519                 cfg.grid.container = el;
35520                 cfg.grid = new cfg.grid.xns[cfg.grid.xtype](cfg.grid);
35521                 */
35522                 
35523                 if (region == 'center' && this.active ) {
35524                     cfg.background = false;
35525                 }
35526                 
35527                 ret = new cfg.xns[cfg.xtype](cfg); // new panel!!!!!
35528                 
35529                 this.add(region, ret);
35530                 /*
35531                 if (cfg.background) {
35532                     // render grid on panel activation (if panel background)
35533                     ret.on('activate', function(gp) {
35534                         if (!gp.grid.rendered) {
35535                     //        gp.grid.render(el);
35536                         }
35537                     });
35538                 } else {
35539                   //  cfg.grid.render(el);
35540                 }
35541                 */
35542                 break;
35543            
35544            
35545             case 'Border': // it can get called on it'self... - might need to check if this is fixed?
35546                 // it was the old xcomponent building that caused this before.
35547                 // espeically if border is the top element in the tree.
35548                 ret = this;
35549                 break; 
35550                 
35551                     
35552                 
35553                 
35554                 
35555             default:
35556                 /*
35557                 if (typeof(Roo[cfg.xtype]) != 'undefined') {
35558                     
35559                     ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
35560                     this.add(region, ret);
35561                 } else {
35562                 */
35563                     Roo.log(cfg);
35564                     throw "Can not add '" + cfg.xtype + "' to Border";
35565                     return null;
35566              
35567                                 
35568              
35569         }
35570         this.beginUpdate();
35571         // add children..
35572         var region = '';
35573         var abn = {};
35574         Roo.each(xitems, function(i)  {
35575             region = nb && i.region ? i.region : false;
35576             
35577             var add = ret.addxtype(i);
35578            
35579             if (region) {
35580                 nb[region] = nb[region] == undefined ? 0 : nb[region]+1;
35581                 if (!i.background) {
35582                     abn[region] = nb[region] ;
35583                 }
35584             }
35585             
35586         });
35587         this.endUpdate();
35588
35589         // make the last non-background panel active..
35590         //if (nb) { Roo.log(abn); }
35591         if (nb) {
35592             
35593             for(var r in abn) {
35594                 region = this.getRegion(r);
35595                 if (region) {
35596                     // tried using nb[r], but it does not work..
35597                      
35598                     region.showPanel(abn[r]);
35599                    
35600                 }
35601             }
35602         }
35603         return ret;
35604         
35605     },
35606     
35607     
35608 // private
35609     factory : function(cfg)
35610     {
35611         
35612         var validRegions = Roo.bootstrap.layout.Border.regions;
35613
35614         var target = cfg.region;
35615         cfg.mgr = this;
35616         
35617         var r = Roo.bootstrap.layout;
35618         Roo.log(target);
35619         switch(target){
35620             case "north":
35621                 return new r.North(cfg);
35622             case "south":
35623                 return new r.South(cfg);
35624             case "east":
35625                 return new r.East(cfg);
35626             case "west":
35627                 return new r.West(cfg);
35628             case "center":
35629                 return new r.Center(cfg);
35630         }
35631         throw 'Layout region "'+target+'" not supported.';
35632     }
35633     
35634     
35635 });
35636  /*
35637  * Based on:
35638  * Ext JS Library 1.1.1
35639  * Copyright(c) 2006-2007, Ext JS, LLC.
35640  *
35641  * Originally Released Under LGPL - original licence link has changed is not relivant.
35642  *
35643  * Fork - LGPL
35644  * <script type="text/javascript">
35645  */
35646  
35647 /**
35648  * @class Roo.bootstrap.layout.Basic
35649  * @extends Roo.util.Observable
35650  * This class represents a lightweight region in a layout manager. This region does not move dom nodes
35651  * and does not have a titlebar, tabs or any other features. All it does is size and position 
35652  * panels. To create a BasicLayoutRegion, add lightweight:true or basic:true to your regions config.
35653  * @cfg {Roo.bootstrap.layout.Manager}   mgr The manager
35654  * @cfg {string}   region  the region that it inhabits..
35655  * @cfg {bool}   skipConfig skip config?
35656  * 
35657
35658  */
35659 Roo.bootstrap.layout.Basic = function(config){
35660     
35661     this.mgr = config.mgr;
35662     
35663     this.position = config.region;
35664     
35665     var skipConfig = config.skipConfig;
35666     
35667     this.events = {
35668         /**
35669          * @scope Roo.BasicLayoutRegion
35670          */
35671         
35672         /**
35673          * @event beforeremove
35674          * Fires before a panel is removed (or closed). To cancel the removal set "e.cancel = true" on the event argument.
35675          * @param {Roo.LayoutRegion} this
35676          * @param {Roo.ContentPanel} panel The panel
35677          * @param {Object} e The cancel event object
35678          */
35679         "beforeremove" : true,
35680         /**
35681          * @event invalidated
35682          * Fires when the layout for this region is changed.
35683          * @param {Roo.LayoutRegion} this
35684          */
35685         "invalidated" : true,
35686         /**
35687          * @event visibilitychange
35688          * Fires when this region is shown or hidden 
35689          * @param {Roo.LayoutRegion} this
35690          * @param {Boolean} visibility true or false
35691          */
35692         "visibilitychange" : true,
35693         /**
35694          * @event paneladded
35695          * Fires when a panel is added. 
35696          * @param {Roo.LayoutRegion} this
35697          * @param {Roo.ContentPanel} panel The panel
35698          */
35699         "paneladded" : true,
35700         /**
35701          * @event panelremoved
35702          * Fires when a panel is removed. 
35703          * @param {Roo.LayoutRegion} this
35704          * @param {Roo.ContentPanel} panel The panel
35705          */
35706         "panelremoved" : true,
35707         /**
35708          * @event beforecollapse
35709          * Fires when this region before collapse.
35710          * @param {Roo.LayoutRegion} this
35711          */
35712         "beforecollapse" : true,
35713         /**
35714          * @event collapsed
35715          * Fires when this region is collapsed.
35716          * @param {Roo.LayoutRegion} this
35717          */
35718         "collapsed" : true,
35719         /**
35720          * @event expanded
35721          * Fires when this region is expanded.
35722          * @param {Roo.LayoutRegion} this
35723          */
35724         "expanded" : true,
35725         /**
35726          * @event slideshow
35727          * Fires when this region is slid into view.
35728          * @param {Roo.LayoutRegion} this
35729          */
35730         "slideshow" : true,
35731         /**
35732          * @event slidehide
35733          * Fires when this region slides out of view. 
35734          * @param {Roo.LayoutRegion} this
35735          */
35736         "slidehide" : true,
35737         /**
35738          * @event panelactivated
35739          * Fires when a panel is activated. 
35740          * @param {Roo.LayoutRegion} this
35741          * @param {Roo.ContentPanel} panel The activated panel
35742          */
35743         "panelactivated" : true,
35744         /**
35745          * @event resized
35746          * Fires when the user resizes this region. 
35747          * @param {Roo.LayoutRegion} this
35748          * @param {Number} newSize The new size (width for east/west, height for north/south)
35749          */
35750         "resized" : true
35751     };
35752     /** A collection of panels in this region. @type Roo.util.MixedCollection */
35753     this.panels = new Roo.util.MixedCollection();
35754     this.panels.getKey = this.getPanelId.createDelegate(this);
35755     this.box = null;
35756     this.activePanel = null;
35757     // ensure listeners are added...
35758     
35759     if (config.listeners || config.events) {
35760         Roo.bootstrap.layout.Basic.superclass.constructor.call(this, {
35761             listeners : config.listeners || {},
35762             events : config.events || {}
35763         });
35764     }
35765     
35766     if(skipConfig !== true){
35767         this.applyConfig(config);
35768     }
35769 };
35770
35771 Roo.extend(Roo.bootstrap.layout.Basic, Roo.util.Observable,
35772 {
35773     getPanelId : function(p){
35774         return p.getId();
35775     },
35776     
35777     applyConfig : function(config){
35778         this.margins = config.margins || this.margins || {top: 0, left: 0, right:0, bottom: 0};
35779         this.config = config;
35780         
35781     },
35782     
35783     /**
35784      * Resizes the region to the specified size. For vertical regions (west, east) this adjusts 
35785      * the width, for horizontal (north, south) the height.
35786      * @param {Number} newSize The new width or height
35787      */
35788     resizeTo : function(newSize){
35789         var el = this.el ? this.el :
35790                  (this.activePanel ? this.activePanel.getEl() : null);
35791         if(el){
35792             switch(this.position){
35793                 case "east":
35794                 case "west":
35795                     el.setWidth(newSize);
35796                     this.fireEvent("resized", this, newSize);
35797                 break;
35798                 case "north":
35799                 case "south":
35800                     el.setHeight(newSize);
35801                     this.fireEvent("resized", this, newSize);
35802                 break;                
35803             }
35804         }
35805     },
35806     
35807     getBox : function(){
35808         return this.activePanel ? this.activePanel.getEl().getBox(false, true) : null;
35809     },
35810     
35811     getMargins : function(){
35812         return this.margins;
35813     },
35814     
35815     updateBox : function(box){
35816         this.box = box;
35817         var el = this.activePanel.getEl();
35818         el.dom.style.left = box.x + "px";
35819         el.dom.style.top = box.y + "px";
35820         this.activePanel.setSize(box.width, box.height);
35821     },
35822     
35823     /**
35824      * Returns the container element for this region.
35825      * @return {Roo.Element}
35826      */
35827     getEl : function(){
35828         return this.activePanel;
35829     },
35830     
35831     /**
35832      * Returns true if this region is currently visible.
35833      * @return {Boolean}
35834      */
35835     isVisible : function(){
35836         return this.activePanel ? true : false;
35837     },
35838     
35839     setActivePanel : function(panel){
35840         panel = this.getPanel(panel);
35841         if(this.activePanel && this.activePanel != panel){
35842             this.activePanel.setActiveState(false);
35843             this.activePanel.getEl().setLeftTop(-10000,-10000);
35844         }
35845         this.activePanel = panel;
35846         panel.setActiveState(true);
35847         if(this.box){
35848             panel.setSize(this.box.width, this.box.height);
35849         }
35850         this.fireEvent("panelactivated", this, panel);
35851         this.fireEvent("invalidated");
35852     },
35853     
35854     /**
35855      * Show the specified panel.
35856      * @param {Number/String/ContentPanel} panelId The panels index, id or the panel itself
35857      * @return {Roo.ContentPanel} The shown panel or null
35858      */
35859     showPanel : function(panel){
35860         panel = this.getPanel(panel);
35861         if(panel){
35862             this.setActivePanel(panel);
35863         }
35864         return panel;
35865     },
35866     
35867     /**
35868      * Get the active panel for this region.
35869      * @return {Roo.ContentPanel} The active panel or null
35870      */
35871     getActivePanel : function(){
35872         return this.activePanel;
35873     },
35874     
35875     /**
35876      * Add the passed ContentPanel(s)
35877      * @param {ContentPanel...} panel The ContentPanel(s) to add (you can pass more than one)
35878      * @return {Roo.ContentPanel} The panel added (if only one was added)
35879      */
35880     add : function(panel){
35881         if(arguments.length > 1){
35882             for(var i = 0, len = arguments.length; i < len; i++) {
35883                 this.add(arguments[i]);
35884             }
35885             return null;
35886         }
35887         if(this.hasPanel(panel)){
35888             this.showPanel(panel);
35889             return panel;
35890         }
35891         var el = panel.getEl();
35892         if(el.dom.parentNode != this.mgr.el.dom){
35893             this.mgr.el.dom.appendChild(el.dom);
35894         }
35895         if(panel.setRegion){
35896             panel.setRegion(this);
35897         }
35898         this.panels.add(panel);
35899         el.setStyle("position", "absolute");
35900         if(!panel.background){
35901             this.setActivePanel(panel);
35902             if(this.config.initialSize && this.panels.getCount()==1){
35903                 this.resizeTo(this.config.initialSize);
35904             }
35905         }
35906         this.fireEvent("paneladded", this, panel);
35907         return panel;
35908     },
35909     
35910     /**
35911      * Returns true if the panel is in this region.
35912      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
35913      * @return {Boolean}
35914      */
35915     hasPanel : function(panel){
35916         if(typeof panel == "object"){ // must be panel obj
35917             panel = panel.getId();
35918         }
35919         return this.getPanel(panel) ? true : false;
35920     },
35921     
35922     /**
35923      * Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed.
35924      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
35925      * @param {Boolean} preservePanel Overrides the config preservePanel option
35926      * @return {Roo.ContentPanel} The panel that was removed
35927      */
35928     remove : function(panel, preservePanel){
35929         panel = this.getPanel(panel);
35930         if(!panel){
35931             return null;
35932         }
35933         var e = {};
35934         this.fireEvent("beforeremove", this, panel, e);
35935         if(e.cancel === true){
35936             return null;
35937         }
35938         var panelId = panel.getId();
35939         this.panels.removeKey(panelId);
35940         return panel;
35941     },
35942     
35943     /**
35944      * Returns the panel specified or null if it's not in this region.
35945      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
35946      * @return {Roo.ContentPanel}
35947      */
35948     getPanel : function(id){
35949         if(typeof id == "object"){ // must be panel obj
35950             return id;
35951         }
35952         return this.panels.get(id);
35953     },
35954     
35955     /**
35956      * Returns this regions position (north/south/east/west/center).
35957      * @return {String} 
35958      */
35959     getPosition: function(){
35960         return this.position;    
35961     }
35962 });/*
35963  * Based on:
35964  * Ext JS Library 1.1.1
35965  * Copyright(c) 2006-2007, Ext JS, LLC.
35966  *
35967  * Originally Released Under LGPL - original licence link has changed is not relivant.
35968  *
35969  * Fork - LGPL
35970  * <script type="text/javascript">
35971  */
35972  
35973 /**
35974  * @class Roo.bootstrap.layout.Region
35975  * @extends Roo.bootstrap.layout.Basic
35976  * This class represents a region in a layout manager.
35977  
35978  * @cfg {Object}    margins         Margins for the element (defaults to {top: 0, left: 0, right:0, bottom: 0})
35979  * @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})
35980  * @cfg {String}    tabPosition     (top|bottom) "top" or "bottom" (defaults to "bottom")
35981  * @cfg {Boolean}   alwaysShowTabs  True to always display tabs even when there is only 1 panel (defaults to false)
35982  * @cfg {Boolean}   autoScroll      True to enable overflow scrolling (defaults to false)
35983  * @cfg {Boolean}   titlebar        True to display a title bar (defaults to true)
35984  * @cfg {String}    title           The title for the region (overrides panel titles)
35985  * @cfg {Boolean}   animate         True to animate expand/collapse (defaults to false)
35986  * @cfg {Boolean}   autoHide        False to disable auto hiding when the mouse leaves the "floated" region (defaults to true)
35987  * @cfg {Boolean}   preservePanels  True to preserve removed panels so they can be readded later (defaults to false)
35988  * @cfg {Boolean}   closeOnTab      True to place the close icon on the tabs instead of the region titlebar (defaults to false)
35989  * @cfg {Boolean}   hideTabs        True to hide the tab strip (defaults to false)
35990  * @cfg {Boolean}   resizeTabs      True to enable automatic tab resizing. This will resize the tabs so they are all the same size and fit within
35991  *                      the space available, similar to FireFox 1.5 tabs (defaults to false)
35992  * @cfg {Number}    minTabWidth     The minimum tab width (defaults to 40)
35993  * @cfg {Number}    preferredTabWidth The preferred tab width (defaults to 150)
35994  * @cfg {String}    overflow       (hidden|visible) if you have menus in the region, then you need to set this to visible.
35995
35996  * @cfg {Boolean}   hidden          True to start the region hidden (defaults to false)
35997  * @cfg {Boolean}   hideWhenEmpty   True to hide the region when it has no panels
35998  * @cfg {Boolean}   disableTabTips  True to disable tab tooltips
35999  * @cfg {Number}    width           For East/West panels
36000  * @cfg {Number}    height          For North/South panels
36001  * @cfg {Boolean}   split           To show the splitter
36002  * @cfg {Boolean}   toolbar         xtype configuration for a toolbar - shows on right of tabbar
36003  * 
36004  * @cfg {string}   cls             Extra CSS classes to add to region
36005  * 
36006  * @cfg {Roo.bootstrap.layout.Manager}   mgr The manager
36007  * @cfg {string}   region  the region that it inhabits..
36008  *
36009
36010  * @xxxcfg {Boolean}   collapsible     DISABLED False to disable collapsing (defaults to true)
36011  * @xxxcfg {Boolean}   collapsed       DISABLED True to set the initial display to collapsed (defaults to false)
36012
36013  * @xxxcfg {String}    collapsedTitle  DISABLED Optional string message to display in the collapsed block of a north or south region
36014  * @xxxxcfg {Boolean}   floatable       DISABLED False to disable floating (defaults to true)
36015  * @xxxxcfg {Boolean}   showPin         True to show a pin button NOT SUPPORTED YET
36016  */
36017 Roo.bootstrap.layout.Region = function(config)
36018 {
36019     this.applyConfig(config);
36020
36021     var mgr = config.mgr;
36022     var pos = config.region;
36023     config.skipConfig = true;
36024     Roo.bootstrap.layout.Region.superclass.constructor.call(this, config);
36025     
36026     if (mgr.el) {
36027         this.onRender(mgr.el);   
36028     }
36029      
36030     this.visible = true;
36031     this.collapsed = false;
36032     this.unrendered_panels = [];
36033 };
36034
36035 Roo.extend(Roo.bootstrap.layout.Region, Roo.bootstrap.layout.Basic, {
36036
36037     position: '', // set by wrapper (eg. north/south etc..)
36038     unrendered_panels : null,  // unrendered panels.
36039     
36040     tabPosition : false,
36041     
36042     mgr: false, // points to 'Border'
36043     
36044     
36045     createBody : function(){
36046         /** This region's body element 
36047         * @type Roo.Element */
36048         this.bodyEl = this.el.createChild({
36049                 tag: "div",
36050                 cls: "roo-layout-panel-body tab-content" // bootstrap added...
36051         });
36052     },
36053
36054     onRender: function(ctr, pos)
36055     {
36056         var dh = Roo.DomHelper;
36057         /** This region's container element 
36058         * @type Roo.Element */
36059         this.el = dh.append(ctr.dom, {
36060                 tag: "div",
36061                 cls: (this.config.cls || '') + " roo-layout-region roo-layout-panel roo-layout-panel-" + this.position
36062             }, true);
36063         /** This region's title element 
36064         * @type Roo.Element */
36065     
36066         this.titleEl = dh.append(this.el.dom,  {
36067                 tag: "div",
36068                 unselectable: "on",
36069                 cls: "roo-unselectable roo-layout-panel-hd breadcrumb roo-layout-title-" + this.position,
36070                 children:[
36071                     {tag: "span", cls: "roo-unselectable roo-layout-panel-hd-text", unselectable: "on", html: "&#160;"},
36072                     {tag: "div", cls: "roo-unselectable roo-layout-panel-hd-tools", unselectable: "on"}
36073                 ]
36074             }, true);
36075         
36076         this.titleEl.enableDisplayMode();
36077         /** This region's title text element 
36078         * @type HTMLElement */
36079         this.titleTextEl = this.titleEl.dom.firstChild;
36080         this.tools = Roo.get(this.titleEl.dom.childNodes[1], true);
36081         /*
36082         this.closeBtn = this.createTool(this.tools.dom, "roo-layout-close");
36083         this.closeBtn.enableDisplayMode();
36084         this.closeBtn.on("click", this.closeClicked, this);
36085         this.closeBtn.hide();
36086     */
36087         this.createBody(this.config);
36088         if(this.config.hideWhenEmpty){
36089             this.hide();
36090             this.on("paneladded", this.validateVisibility, this);
36091             this.on("panelremoved", this.validateVisibility, this);
36092         }
36093         if(this.autoScroll){
36094             this.bodyEl.setStyle("overflow", "auto");
36095         }else{
36096             this.bodyEl.setStyle("overflow", this.config.overflow || 'hidden');
36097         }
36098         //if(c.titlebar !== false){
36099             if((!this.config.titlebar && !this.config.title) || this.config.titlebar === false){
36100                 this.titleEl.hide();
36101             }else{
36102                 this.titleEl.show();
36103                 if(this.config.title){
36104                     this.titleTextEl.innerHTML = this.config.title;
36105                 }
36106             }
36107         //}
36108         if(this.config.collapsed){
36109             this.collapse(true);
36110         }
36111         if(this.config.hidden){
36112             this.hide();
36113         }
36114         
36115         if (this.unrendered_panels && this.unrendered_panels.length) {
36116             for (var i =0;i< this.unrendered_panels.length; i++) {
36117                 this.add(this.unrendered_panels[i]);
36118             }
36119             this.unrendered_panels = null;
36120             
36121         }
36122         
36123     },
36124     
36125     applyConfig : function(c)
36126     {
36127         /*
36128          *if(c.collapsible && this.position != "center" && !this.collapsedEl){
36129             var dh = Roo.DomHelper;
36130             if(c.titlebar !== false){
36131                 this.collapseBtn = this.createTool(this.tools.dom, "roo-layout-collapse-"+this.position);
36132                 this.collapseBtn.on("click", this.collapse, this);
36133                 this.collapseBtn.enableDisplayMode();
36134                 /*
36135                 if(c.showPin === true || this.showPin){
36136                     this.stickBtn = this.createTool(this.tools.dom, "roo-layout-stick");
36137                     this.stickBtn.enableDisplayMode();
36138                     this.stickBtn.on("click", this.expand, this);
36139                     this.stickBtn.hide();
36140                 }
36141                 
36142             }
36143             */
36144             /** This region's collapsed element
36145             * @type Roo.Element */
36146             /*
36147              *
36148             this.collapsedEl = dh.append(this.mgr.el.dom, {cls: "x-layout-collapsed x-layout-collapsed-"+this.position, children:[
36149                 {cls: "x-layout-collapsed-tools", children:[{cls: "x-layout-ctools-inner"}]}
36150             ]}, true);
36151             
36152             if(c.floatable !== false){
36153                this.collapsedEl.addClassOnOver("x-layout-collapsed-over");
36154                this.collapsedEl.on("click", this.collapseClick, this);
36155             }
36156
36157             if(c.collapsedTitle && (this.position == "north" || this.position== "south")) {
36158                 this.collapsedTitleTextEl = dh.append(this.collapsedEl.dom, {tag: "div", cls: "x-unselectable x-layout-panel-hd-text",
36159                    id: "message", unselectable: "on", style:{"float":"left"}});
36160                this.collapsedTitleTextEl.innerHTML = c.collapsedTitle;
36161              }
36162             this.expandBtn = this.createTool(this.collapsedEl.dom.firstChild.firstChild, "x-layout-expand-"+this.position);
36163             this.expandBtn.on("click", this.expand, this);
36164             
36165         }
36166         
36167         if(this.collapseBtn){
36168             this.collapseBtn.setVisible(c.collapsible == true);
36169         }
36170         
36171         this.cmargins = c.cmargins || this.cmargins ||
36172                          (this.position == "west" || this.position == "east" ?
36173                              {top: 0, left: 2, right:2, bottom: 0} :
36174                              {top: 2, left: 0, right:0, bottom: 2});
36175         */
36176         this.margins = c.margins || this.margins || {top: 0, left: 0, right:0, bottom: 0};
36177         
36178         
36179         this.tabPosition = [ 'top','bottom', 'west'].indexOf(c.tabPosition) > -1 ? c.tabPosition : "top";
36180         
36181         this.autoScroll = c.autoScroll || false;
36182         
36183         
36184        
36185         
36186         this.duration = c.duration || .30;
36187         this.slideDuration = c.slideDuration || .45;
36188         this.config = c;
36189        
36190     },
36191     /**
36192      * Returns true if this region is currently visible.
36193      * @return {Boolean}
36194      */
36195     isVisible : function(){
36196         return this.visible;
36197     },
36198
36199     /**
36200      * Updates the title for collapsed north/south regions (used with {@link #collapsedTitle} config option)
36201      * @param {String} title (optional) The title text (accepts HTML markup, defaults to the numeric character reference for a non-breaking space, "&amp;#160;")
36202      */
36203     //setCollapsedTitle : function(title){
36204     //    title = title || "&#160;";
36205      //   if(this.collapsedTitleTextEl){
36206       //      this.collapsedTitleTextEl.innerHTML = title;
36207        // }
36208     //},
36209
36210     getBox : function(){
36211         var b;
36212       //  if(!this.collapsed){
36213             b = this.el.getBox(false, true);
36214        // }else{
36215           //  b = this.collapsedEl.getBox(false, true);
36216         //}
36217         return b;
36218     },
36219
36220     getMargins : function(){
36221         return this.margins;
36222         //return this.collapsed ? this.cmargins : this.margins;
36223     },
36224 /*
36225     highlight : function(){
36226         this.el.addClass("x-layout-panel-dragover");
36227     },
36228
36229     unhighlight : function(){
36230         this.el.removeClass("x-layout-panel-dragover");
36231     },
36232 */
36233     updateBox : function(box)
36234     {
36235         if (!this.bodyEl) {
36236             return; // not rendered yet..
36237         }
36238         
36239         this.box = box;
36240         if(!this.collapsed){
36241             this.el.dom.style.left = box.x + "px";
36242             this.el.dom.style.top = box.y + "px";
36243             this.updateBody(box.width, box.height);
36244         }else{
36245             this.collapsedEl.dom.style.left = box.x + "px";
36246             this.collapsedEl.dom.style.top = box.y + "px";
36247             this.collapsedEl.setSize(box.width, box.height);
36248         }
36249         if(this.tabs){
36250             this.tabs.autoSizeTabs();
36251         }
36252     },
36253
36254     updateBody : function(w, h)
36255     {
36256         if(w !== null){
36257             this.el.setWidth(w);
36258             w -= this.el.getBorderWidth("rl");
36259             if(this.config.adjustments){
36260                 w += this.config.adjustments[0];
36261             }
36262         }
36263         if(h !== null && h > 0){
36264             this.el.setHeight(h);
36265             h = this.titleEl && this.titleEl.isDisplayed() ? h - (this.titleEl.getHeight()||0) : h;
36266             h -= this.el.getBorderWidth("tb");
36267             if(this.config.adjustments){
36268                 h += this.config.adjustments[1];
36269             }
36270             this.bodyEl.setHeight(h);
36271             if(this.tabs){
36272                 h = this.tabs.syncHeight(h);
36273             }
36274         }
36275         if(this.panelSize){
36276             w = w !== null ? w : this.panelSize.width;
36277             h = h !== null ? h : this.panelSize.height;
36278         }
36279         if(this.activePanel){
36280             var el = this.activePanel.getEl();
36281             w = w !== null ? w : el.getWidth();
36282             h = h !== null ? h : el.getHeight();
36283             this.panelSize = {width: w, height: h};
36284             this.activePanel.setSize(w, h);
36285         }
36286         if(Roo.isIE && this.tabs){
36287             this.tabs.el.repaint();
36288         }
36289     },
36290
36291     /**
36292      * Returns the container element for this region.
36293      * @return {Roo.Element}
36294      */
36295     getEl : function(){
36296         return this.el;
36297     },
36298
36299     /**
36300      * Hides this region.
36301      */
36302     hide : function(){
36303         //if(!this.collapsed){
36304             this.el.dom.style.left = "-2000px";
36305             this.el.hide();
36306         //}else{
36307          //   this.collapsedEl.dom.style.left = "-2000px";
36308          //   this.collapsedEl.hide();
36309        // }
36310         this.visible = false;
36311         this.fireEvent("visibilitychange", this, false);
36312     },
36313
36314     /**
36315      * Shows this region if it was previously hidden.
36316      */
36317     show : function(){
36318         //if(!this.collapsed){
36319             this.el.show();
36320         //}else{
36321         //    this.collapsedEl.show();
36322        // }
36323         this.visible = true;
36324         this.fireEvent("visibilitychange", this, true);
36325     },
36326 /*
36327     closeClicked : function(){
36328         if(this.activePanel){
36329             this.remove(this.activePanel);
36330         }
36331     },
36332
36333     collapseClick : function(e){
36334         if(this.isSlid){
36335            e.stopPropagation();
36336            this.slideIn();
36337         }else{
36338            e.stopPropagation();
36339            this.slideOut();
36340         }
36341     },
36342 */
36343     /**
36344      * Collapses this region.
36345      * @param {Boolean} skipAnim (optional) true to collapse the element without animation (if animate is true)
36346      */
36347     /*
36348     collapse : function(skipAnim, skipCheck = false){
36349         if(this.collapsed) {
36350             return;
36351         }
36352         
36353         if(skipCheck || this.fireEvent("beforecollapse", this) != false){
36354             
36355             this.collapsed = true;
36356             if(this.split){
36357                 this.split.el.hide();
36358             }
36359             if(this.config.animate && skipAnim !== true){
36360                 this.fireEvent("invalidated", this);
36361                 this.animateCollapse();
36362             }else{
36363                 this.el.setLocation(-20000,-20000);
36364                 this.el.hide();
36365                 this.collapsedEl.show();
36366                 this.fireEvent("collapsed", this);
36367                 this.fireEvent("invalidated", this);
36368             }
36369         }
36370         
36371     },
36372 */
36373     animateCollapse : function(){
36374         // overridden
36375     },
36376
36377     /**
36378      * Expands this region if it was previously collapsed.
36379      * @param {Roo.EventObject} e The event that triggered the expand (or null if calling manually)
36380      * @param {Boolean} skipAnim (optional) true to expand the element without animation (if animate is true)
36381      */
36382     /*
36383     expand : function(e, skipAnim){
36384         if(e) {
36385             e.stopPropagation();
36386         }
36387         if(!this.collapsed || this.el.hasActiveFx()) {
36388             return;
36389         }
36390         if(this.isSlid){
36391             this.afterSlideIn();
36392             skipAnim = true;
36393         }
36394         this.collapsed = false;
36395         if(this.config.animate && skipAnim !== true){
36396             this.animateExpand();
36397         }else{
36398             this.el.show();
36399             if(this.split){
36400                 this.split.el.show();
36401             }
36402             this.collapsedEl.setLocation(-2000,-2000);
36403             this.collapsedEl.hide();
36404             this.fireEvent("invalidated", this);
36405             this.fireEvent("expanded", this);
36406         }
36407     },
36408 */
36409     animateExpand : function(){
36410         // overridden
36411     },
36412
36413     initTabs : function()
36414     {
36415         //this.bodyEl.setStyle("overflow", "hidden"); -- this is set in render?
36416         
36417         var ts = new Roo.bootstrap.panel.Tabs({
36418             el: this.bodyEl.dom,
36419             region : this,
36420             tabPosition: this.tabPosition ? this.tabPosition  : 'top',
36421             disableTooltips: this.config.disableTabTips,
36422             toolbar : this.config.toolbar
36423         });
36424         
36425         if(this.config.hideTabs){
36426             ts.stripWrap.setDisplayed(false);
36427         }
36428         this.tabs = ts;
36429         ts.resizeTabs = this.config.resizeTabs === true;
36430         ts.minTabWidth = this.config.minTabWidth || 40;
36431         ts.maxTabWidth = this.config.maxTabWidth || 250;
36432         ts.preferredTabWidth = this.config.preferredTabWidth || 150;
36433         ts.monitorResize = false;
36434         //ts.bodyEl.setStyle("overflow", this.config.autoScroll ? "auto" : "hidden"); // this is set in render?
36435         ts.bodyEl.addClass('roo-layout-tabs-body');
36436         this.panels.each(this.initPanelAsTab, this);
36437     },
36438
36439     initPanelAsTab : function(panel){
36440         var ti = this.tabs.addTab(
36441             panel.getEl().id,
36442             panel.getTitle(),
36443             null,
36444             this.config.closeOnTab && panel.isClosable(),
36445             panel.tpl
36446         );
36447         if(panel.tabTip !== undefined){
36448             ti.setTooltip(panel.tabTip);
36449         }
36450         ti.on("activate", function(){
36451               this.setActivePanel(panel);
36452         }, this);
36453         
36454         if(this.config.closeOnTab){
36455             ti.on("beforeclose", function(t, e){
36456                 e.cancel = true;
36457                 this.remove(panel);
36458             }, this);
36459         }
36460         
36461         panel.tabItem = ti;
36462         
36463         return ti;
36464     },
36465
36466     updatePanelTitle : function(panel, title)
36467     {
36468         if(this.activePanel == panel){
36469             this.updateTitle(title);
36470         }
36471         if(this.tabs){
36472             var ti = this.tabs.getTab(panel.getEl().id);
36473             ti.setText(title);
36474             if(panel.tabTip !== undefined){
36475                 ti.setTooltip(panel.tabTip);
36476             }
36477         }
36478     },
36479
36480     updateTitle : function(title){
36481         if(this.titleTextEl && !this.config.title){
36482             this.titleTextEl.innerHTML = (typeof title != "undefined" && title.length > 0 ? title : "&#160;");
36483         }
36484     },
36485
36486     setActivePanel : function(panel)
36487     {
36488         panel = this.getPanel(panel);
36489         if(this.activePanel && this.activePanel != panel){
36490             if(this.activePanel.setActiveState(false) === false){
36491                 return;
36492             }
36493         }
36494         this.activePanel = panel;
36495         panel.setActiveState(true);
36496         if(this.panelSize){
36497             panel.setSize(this.panelSize.width, this.panelSize.height);
36498         }
36499         if(this.closeBtn){
36500             this.closeBtn.setVisible(!this.config.closeOnTab && !this.isSlid && panel.isClosable());
36501         }
36502         this.updateTitle(panel.getTitle());
36503         if(this.tabs){
36504             this.fireEvent("invalidated", this);
36505         }
36506         this.fireEvent("panelactivated", this, panel);
36507     },
36508
36509     /**
36510      * Shows the specified panel.
36511      * @param {Number/String/ContentPanel} panelId The panel's index, id or the panel itself
36512      * @return {Roo.ContentPanel} The shown panel, or null if a panel could not be found from panelId
36513      */
36514     showPanel : function(panel)
36515     {
36516         panel = this.getPanel(panel);
36517         if(panel){
36518             if(this.tabs){
36519                 var tab = this.tabs.getTab(panel.getEl().id);
36520                 if(tab.isHidden()){
36521                     this.tabs.unhideTab(tab.id);
36522                 }
36523                 tab.activate();
36524             }else{
36525                 this.setActivePanel(panel);
36526             }
36527         }
36528         return panel;
36529     },
36530
36531     /**
36532      * Get the active panel for this region.
36533      * @return {Roo.ContentPanel} The active panel or null
36534      */
36535     getActivePanel : function(){
36536         return this.activePanel;
36537     },
36538
36539     validateVisibility : function(){
36540         if(this.panels.getCount() < 1){
36541             this.updateTitle("&#160;");
36542             this.closeBtn.hide();
36543             this.hide();
36544         }else{
36545             if(!this.isVisible()){
36546                 this.show();
36547             }
36548         }
36549     },
36550
36551     /**
36552      * Adds the passed ContentPanel(s) to this region.
36553      * @param {ContentPanel...} panel The ContentPanel(s) to add (you can pass more than one)
36554      * @return {Roo.ContentPanel} The panel added (if only one was added; null otherwise)
36555      */
36556     add : function(panel)
36557     {
36558         if(arguments.length > 1){
36559             for(var i = 0, len = arguments.length; i < len; i++) {
36560                 this.add(arguments[i]);
36561             }
36562             return null;
36563         }
36564         
36565         // if we have not been rendered yet, then we can not really do much of this..
36566         if (!this.bodyEl) {
36567             this.unrendered_panels.push(panel);
36568             return panel;
36569         }
36570         
36571         
36572         
36573         
36574         if(this.hasPanel(panel)){
36575             this.showPanel(panel);
36576             return panel;
36577         }
36578         panel.setRegion(this);
36579         this.panels.add(panel);
36580        /* if(this.panels.getCount() == 1 && !this.config.alwaysShowTabs){
36581             // sinle panel - no tab...?? would it not be better to render it with the tabs,
36582             // and hide them... ???
36583             this.bodyEl.dom.appendChild(panel.getEl().dom);
36584             if(panel.background !== true){
36585                 this.setActivePanel(panel);
36586             }
36587             this.fireEvent("paneladded", this, panel);
36588             return panel;
36589         }
36590         */
36591         if(!this.tabs){
36592             this.initTabs();
36593         }else{
36594             this.initPanelAsTab(panel);
36595         }
36596         
36597         
36598         if(panel.background !== true){
36599             this.tabs.activate(panel.getEl().id);
36600         }
36601         this.fireEvent("paneladded", this, panel);
36602         return panel;
36603     },
36604
36605     /**
36606      * Hides the tab for the specified panel.
36607      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
36608      */
36609     hidePanel : function(panel){
36610         if(this.tabs && (panel = this.getPanel(panel))){
36611             this.tabs.hideTab(panel.getEl().id);
36612         }
36613     },
36614
36615     /**
36616      * Unhides the tab for a previously hidden panel.
36617      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
36618      */
36619     unhidePanel : function(panel){
36620         if(this.tabs && (panel = this.getPanel(panel))){
36621             this.tabs.unhideTab(panel.getEl().id);
36622         }
36623     },
36624
36625     clearPanels : function(){
36626         while(this.panels.getCount() > 0){
36627              this.remove(this.panels.first());
36628         }
36629     },
36630
36631     /**
36632      * Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed.
36633      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
36634      * @param {Boolean} preservePanel Overrides the config preservePanel option
36635      * @return {Roo.ContentPanel} The panel that was removed
36636      */
36637     remove : function(panel, preservePanel)
36638     {
36639         panel = this.getPanel(panel);
36640         if(!panel){
36641             return null;
36642         }
36643         var e = {};
36644         this.fireEvent("beforeremove", this, panel, e);
36645         if(e.cancel === true){
36646             return null;
36647         }
36648         preservePanel = (typeof preservePanel != "undefined" ? preservePanel : (this.config.preservePanels === true || panel.preserve === true));
36649         var panelId = panel.getId();
36650         this.panels.removeKey(panelId);
36651         if(preservePanel){
36652             document.body.appendChild(panel.getEl().dom);
36653         }
36654         if(this.tabs){
36655             this.tabs.removeTab(panel.getEl().id);
36656         }else if (!preservePanel){
36657             this.bodyEl.dom.removeChild(panel.getEl().dom);
36658         }
36659         if(this.panels.getCount() == 1 && this.tabs && !this.config.alwaysShowTabs){
36660             var p = this.panels.first();
36661             var tempEl = document.createElement("div"); // temp holder to keep IE from deleting the node
36662             tempEl.appendChild(p.getEl().dom);
36663             this.bodyEl.update("");
36664             this.bodyEl.dom.appendChild(p.getEl().dom);
36665             tempEl = null;
36666             this.updateTitle(p.getTitle());
36667             this.tabs = null;
36668             this.bodyEl.setStyle("overflow", this.config.autoScroll ? "auto" : "hidden");
36669             this.setActivePanel(p);
36670         }
36671         panel.setRegion(null);
36672         if(this.activePanel == panel){
36673             this.activePanel = null;
36674         }
36675         if(this.config.autoDestroy !== false && preservePanel !== true){
36676             try{panel.destroy();}catch(e){}
36677         }
36678         this.fireEvent("panelremoved", this, panel);
36679         return panel;
36680     },
36681
36682     /**
36683      * Returns the TabPanel component used by this region
36684      * @return {Roo.TabPanel}
36685      */
36686     getTabs : function(){
36687         return this.tabs;
36688     },
36689
36690     createTool : function(parentEl, className){
36691         var btn = Roo.DomHelper.append(parentEl, {
36692             tag: "div",
36693             cls: "x-layout-tools-button",
36694             children: [ {
36695                 tag: "div",
36696                 cls: "roo-layout-tools-button-inner " + className,
36697                 html: "&#160;"
36698             }]
36699         }, true);
36700         btn.addClassOnOver("roo-layout-tools-button-over");
36701         return btn;
36702     }
36703 });/*
36704  * Based on:
36705  * Ext JS Library 1.1.1
36706  * Copyright(c) 2006-2007, Ext JS, LLC.
36707  *
36708  * Originally Released Under LGPL - original licence link has changed is not relivant.
36709  *
36710  * Fork - LGPL
36711  * <script type="text/javascript">
36712  */
36713  
36714
36715
36716 /**
36717  * @class Roo.SplitLayoutRegion
36718  * @extends Roo.LayoutRegion
36719  * Adds a splitbar and other (private) useful functionality to a {@link Roo.LayoutRegion}.
36720  */
36721 Roo.bootstrap.layout.Split = function(config){
36722     this.cursor = config.cursor;
36723     Roo.bootstrap.layout.Split.superclass.constructor.call(this, config);
36724 };
36725
36726 Roo.extend(Roo.bootstrap.layout.Split, Roo.bootstrap.layout.Region,
36727 {
36728     splitTip : "Drag to resize.",
36729     collapsibleSplitTip : "Drag to resize. Double click to hide.",
36730     useSplitTips : false,
36731
36732     applyConfig : function(config){
36733         Roo.bootstrap.layout.Split.superclass.applyConfig.call(this, config);
36734     },
36735     
36736     onRender : function(ctr,pos) {
36737         
36738         Roo.bootstrap.layout.Split.superclass.onRender.call(this, ctr,pos);
36739         if(!this.config.split){
36740             return;
36741         }
36742         if(!this.split){
36743             
36744             var splitEl = Roo.DomHelper.append(ctr.dom,  {
36745                             tag: "div",
36746                             id: this.el.id + "-split",
36747                             cls: "roo-layout-split roo-layout-split-"+this.position,
36748                             html: "&#160;"
36749             });
36750             /** The SplitBar for this region 
36751             * @type Roo.SplitBar */
36752             // does not exist yet...
36753             Roo.log([this.position, this.orientation]);
36754             
36755             this.split = new Roo.bootstrap.SplitBar({
36756                 dragElement : splitEl,
36757                 resizingElement: this.el,
36758                 orientation : this.orientation
36759             });
36760             
36761             this.split.on("moved", this.onSplitMove, this);
36762             this.split.useShim = this.config.useShim === true;
36763             this.split.getMaximumSize = this[this.position == 'north' || this.position == 'south' ? 'getVMaxSize' : 'getHMaxSize'].createDelegate(this);
36764             if(this.useSplitTips){
36765                 this.split.el.dom.title = this.config.collapsible ? this.collapsibleSplitTip : this.splitTip;
36766             }
36767             //if(config.collapsible){
36768             //    this.split.el.on("dblclick", this.collapse,  this);
36769             //}
36770         }
36771         if(typeof this.config.minSize != "undefined"){
36772             this.split.minSize = this.config.minSize;
36773         }
36774         if(typeof this.config.maxSize != "undefined"){
36775             this.split.maxSize = this.config.maxSize;
36776         }
36777         if(this.config.hideWhenEmpty || this.config.hidden || this.config.collapsed){
36778             this.hideSplitter();
36779         }
36780         
36781     },
36782
36783     getHMaxSize : function(){
36784          var cmax = this.config.maxSize || 10000;
36785          var center = this.mgr.getRegion("center");
36786          return Math.min(cmax, (this.el.getWidth()+center.getEl().getWidth())-center.getMinWidth());
36787     },
36788
36789     getVMaxSize : function(){
36790          var cmax = this.config.maxSize || 10000;
36791          var center = this.mgr.getRegion("center");
36792          return Math.min(cmax, (this.el.getHeight()+center.getEl().getHeight())-center.getMinHeight());
36793     },
36794
36795     onSplitMove : function(split, newSize){
36796         this.fireEvent("resized", this, newSize);
36797     },
36798     
36799     /** 
36800      * Returns the {@link Roo.SplitBar} for this region.
36801      * @return {Roo.SplitBar}
36802      */
36803     getSplitBar : function(){
36804         return this.split;
36805     },
36806     
36807     hide : function(){
36808         this.hideSplitter();
36809         Roo.bootstrap.layout.Split.superclass.hide.call(this);
36810     },
36811
36812     hideSplitter : function(){
36813         if(this.split){
36814             this.split.el.setLocation(-2000,-2000);
36815             this.split.el.hide();
36816         }
36817     },
36818
36819     show : function(){
36820         if(this.split){
36821             this.split.el.show();
36822         }
36823         Roo.bootstrap.layout.Split.superclass.show.call(this);
36824     },
36825     
36826     beforeSlide: function(){
36827         if(Roo.isGecko){// firefox overflow auto bug workaround
36828             this.bodyEl.clip();
36829             if(this.tabs) {
36830                 this.tabs.bodyEl.clip();
36831             }
36832             if(this.activePanel){
36833                 this.activePanel.getEl().clip();
36834                 
36835                 if(this.activePanel.beforeSlide){
36836                     this.activePanel.beforeSlide();
36837                 }
36838             }
36839         }
36840     },
36841     
36842     afterSlide : function(){
36843         if(Roo.isGecko){// firefox overflow auto bug workaround
36844             this.bodyEl.unclip();
36845             if(this.tabs) {
36846                 this.tabs.bodyEl.unclip();
36847             }
36848             if(this.activePanel){
36849                 this.activePanel.getEl().unclip();
36850                 if(this.activePanel.afterSlide){
36851                     this.activePanel.afterSlide();
36852                 }
36853             }
36854         }
36855     },
36856
36857     initAutoHide : function(){
36858         if(this.autoHide !== false){
36859             if(!this.autoHideHd){
36860                 var st = new Roo.util.DelayedTask(this.slideIn, this);
36861                 this.autoHideHd = {
36862                     "mouseout": function(e){
36863                         if(!e.within(this.el, true)){
36864                             st.delay(500);
36865                         }
36866                     },
36867                     "mouseover" : function(e){
36868                         st.cancel();
36869                     },
36870                     scope : this
36871                 };
36872             }
36873             this.el.on(this.autoHideHd);
36874         }
36875     },
36876
36877     clearAutoHide : function(){
36878         if(this.autoHide !== false){
36879             this.el.un("mouseout", this.autoHideHd.mouseout);
36880             this.el.un("mouseover", this.autoHideHd.mouseover);
36881         }
36882     },
36883
36884     clearMonitor : function(){
36885         Roo.get(document).un("click", this.slideInIf, this);
36886     },
36887
36888     // these names are backwards but not changed for compat
36889     slideOut : function(){
36890         if(this.isSlid || this.el.hasActiveFx()){
36891             return;
36892         }
36893         this.isSlid = true;
36894         if(this.collapseBtn){
36895             this.collapseBtn.hide();
36896         }
36897         this.closeBtnState = this.closeBtn.getStyle('display');
36898         this.closeBtn.hide();
36899         if(this.stickBtn){
36900             this.stickBtn.show();
36901         }
36902         this.el.show();
36903         this.el.alignTo(this.collapsedEl, this.getCollapseAnchor());
36904         this.beforeSlide();
36905         this.el.setStyle("z-index", 10001);
36906         this.el.slideIn(this.getSlideAnchor(), {
36907             callback: function(){
36908                 this.afterSlide();
36909                 this.initAutoHide();
36910                 Roo.get(document).on("click", this.slideInIf, this);
36911                 this.fireEvent("slideshow", this);
36912             },
36913             scope: this,
36914             block: true
36915         });
36916     },
36917
36918     afterSlideIn : function(){
36919         this.clearAutoHide();
36920         this.isSlid = false;
36921         this.clearMonitor();
36922         this.el.setStyle("z-index", "");
36923         if(this.collapseBtn){
36924             this.collapseBtn.show();
36925         }
36926         this.closeBtn.setStyle('display', this.closeBtnState);
36927         if(this.stickBtn){
36928             this.stickBtn.hide();
36929         }
36930         this.fireEvent("slidehide", this);
36931     },
36932
36933     slideIn : function(cb){
36934         if(!this.isSlid || this.el.hasActiveFx()){
36935             Roo.callback(cb);
36936             return;
36937         }
36938         this.isSlid = false;
36939         this.beforeSlide();
36940         this.el.slideOut(this.getSlideAnchor(), {
36941             callback: function(){
36942                 this.el.setLeftTop(-10000, -10000);
36943                 this.afterSlide();
36944                 this.afterSlideIn();
36945                 Roo.callback(cb);
36946             },
36947             scope: this,
36948             block: true
36949         });
36950     },
36951     
36952     slideInIf : function(e){
36953         if(!e.within(this.el)){
36954             this.slideIn();
36955         }
36956     },
36957
36958     animateCollapse : function(){
36959         this.beforeSlide();
36960         this.el.setStyle("z-index", 20000);
36961         var anchor = this.getSlideAnchor();
36962         this.el.slideOut(anchor, {
36963             callback : function(){
36964                 this.el.setStyle("z-index", "");
36965                 this.collapsedEl.slideIn(anchor, {duration:.3});
36966                 this.afterSlide();
36967                 this.el.setLocation(-10000,-10000);
36968                 this.el.hide();
36969                 this.fireEvent("collapsed", this);
36970             },
36971             scope: this,
36972             block: true
36973         });
36974     },
36975
36976     animateExpand : function(){
36977         this.beforeSlide();
36978         this.el.alignTo(this.collapsedEl, this.getCollapseAnchor(), this.getExpandAdj());
36979         this.el.setStyle("z-index", 20000);
36980         this.collapsedEl.hide({
36981             duration:.1
36982         });
36983         this.el.slideIn(this.getSlideAnchor(), {
36984             callback : function(){
36985                 this.el.setStyle("z-index", "");
36986                 this.afterSlide();
36987                 if(this.split){
36988                     this.split.el.show();
36989                 }
36990                 this.fireEvent("invalidated", this);
36991                 this.fireEvent("expanded", this);
36992             },
36993             scope: this,
36994             block: true
36995         });
36996     },
36997
36998     anchors : {
36999         "west" : "left",
37000         "east" : "right",
37001         "north" : "top",
37002         "south" : "bottom"
37003     },
37004
37005     sanchors : {
37006         "west" : "l",
37007         "east" : "r",
37008         "north" : "t",
37009         "south" : "b"
37010     },
37011
37012     canchors : {
37013         "west" : "tl-tr",
37014         "east" : "tr-tl",
37015         "north" : "tl-bl",
37016         "south" : "bl-tl"
37017     },
37018
37019     getAnchor : function(){
37020         return this.anchors[this.position];
37021     },
37022
37023     getCollapseAnchor : function(){
37024         return this.canchors[this.position];
37025     },
37026
37027     getSlideAnchor : function(){
37028         return this.sanchors[this.position];
37029     },
37030
37031     getAlignAdj : function(){
37032         var cm = this.cmargins;
37033         switch(this.position){
37034             case "west":
37035                 return [0, 0];
37036             break;
37037             case "east":
37038                 return [0, 0];
37039             break;
37040             case "north":
37041                 return [0, 0];
37042             break;
37043             case "south":
37044                 return [0, 0];
37045             break;
37046         }
37047     },
37048
37049     getExpandAdj : function(){
37050         var c = this.collapsedEl, cm = this.cmargins;
37051         switch(this.position){
37052             case "west":
37053                 return [-(cm.right+c.getWidth()+cm.left), 0];
37054             break;
37055             case "east":
37056                 return [cm.right+c.getWidth()+cm.left, 0];
37057             break;
37058             case "north":
37059                 return [0, -(cm.top+cm.bottom+c.getHeight())];
37060             break;
37061             case "south":
37062                 return [0, cm.top+cm.bottom+c.getHeight()];
37063             break;
37064         }
37065     }
37066 });/*
37067  * Based on:
37068  * Ext JS Library 1.1.1
37069  * Copyright(c) 2006-2007, Ext JS, LLC.
37070  *
37071  * Originally Released Under LGPL - original licence link has changed is not relivant.
37072  *
37073  * Fork - LGPL
37074  * <script type="text/javascript">
37075  */
37076 /*
37077  * These classes are private internal classes
37078  */
37079 Roo.bootstrap.layout.Center = function(config){
37080     config.region = "center";
37081     Roo.bootstrap.layout.Region.call(this, config);
37082     this.visible = true;
37083     this.minWidth = config.minWidth || 20;
37084     this.minHeight = config.minHeight || 20;
37085 };
37086
37087 Roo.extend(Roo.bootstrap.layout.Center, Roo.bootstrap.layout.Region, {
37088     hide : function(){
37089         // center panel can't be hidden
37090     },
37091     
37092     show : function(){
37093         // center panel can't be hidden
37094     },
37095     
37096     getMinWidth: function(){
37097         return this.minWidth;
37098     },
37099     
37100     getMinHeight: function(){
37101         return this.minHeight;
37102     }
37103 });
37104
37105
37106
37107
37108  
37109
37110
37111
37112
37113
37114
37115 Roo.bootstrap.layout.North = function(config)
37116 {
37117     config.region = 'north';
37118     config.cursor = 'n-resize';
37119     
37120     Roo.bootstrap.layout.Split.call(this, config);
37121     
37122     
37123     if(this.split){
37124         this.split.placement = Roo.bootstrap.SplitBar.TOP;
37125         this.split.orientation = Roo.bootstrap.SplitBar.VERTICAL;
37126         this.split.el.addClass("roo-layout-split-v");
37127     }
37128     var size = config.initialSize || config.height;
37129     if(typeof size != "undefined"){
37130         this.el.setHeight(size);
37131     }
37132 };
37133 Roo.extend(Roo.bootstrap.layout.North, Roo.bootstrap.layout.Split,
37134 {
37135     orientation: Roo.bootstrap.SplitBar.VERTICAL,
37136     
37137     
37138     
37139     getBox : function(){
37140         if(this.collapsed){
37141             return this.collapsedEl.getBox();
37142         }
37143         var box = this.el.getBox();
37144         if(this.split){
37145             box.height += this.split.el.getHeight();
37146         }
37147         return box;
37148     },
37149     
37150     updateBox : function(box){
37151         if(this.split && !this.collapsed){
37152             box.height -= this.split.el.getHeight();
37153             this.split.el.setLeft(box.x);
37154             this.split.el.setTop(box.y+box.height);
37155             this.split.el.setWidth(box.width);
37156         }
37157         if(this.collapsed){
37158             this.updateBody(box.width, null);
37159         }
37160         Roo.bootstrap.layout.Region.prototype.updateBox.call(this, box);
37161     }
37162 });
37163
37164
37165
37166
37167
37168 Roo.bootstrap.layout.South = function(config){
37169     config.region = 'south';
37170     config.cursor = 's-resize';
37171     Roo.bootstrap.layout.Split.call(this, config);
37172     if(this.split){
37173         this.split.placement = Roo.bootstrap.SplitBar.BOTTOM;
37174         this.split.orientation = Roo.bootstrap.SplitBar.VERTICAL;
37175         this.split.el.addClass("roo-layout-split-v");
37176     }
37177     var size = config.initialSize || config.height;
37178     if(typeof size != "undefined"){
37179         this.el.setHeight(size);
37180     }
37181 };
37182
37183 Roo.extend(Roo.bootstrap.layout.South, Roo.bootstrap.layout.Split, {
37184     orientation: Roo.bootstrap.SplitBar.VERTICAL,
37185     getBox : function(){
37186         if(this.collapsed){
37187             return this.collapsedEl.getBox();
37188         }
37189         var box = this.el.getBox();
37190         if(this.split){
37191             var sh = this.split.el.getHeight();
37192             box.height += sh;
37193             box.y -= sh;
37194         }
37195         return box;
37196     },
37197     
37198     updateBox : function(box){
37199         if(this.split && !this.collapsed){
37200             var sh = this.split.el.getHeight();
37201             box.height -= sh;
37202             box.y += sh;
37203             this.split.el.setLeft(box.x);
37204             this.split.el.setTop(box.y-sh);
37205             this.split.el.setWidth(box.width);
37206         }
37207         if(this.collapsed){
37208             this.updateBody(box.width, null);
37209         }
37210         Roo.bootstrap.layout.Region.prototype.updateBox.call(this, box);
37211     }
37212 });
37213
37214 Roo.bootstrap.layout.East = function(config){
37215     config.region = "east";
37216     config.cursor = "e-resize";
37217     Roo.bootstrap.layout.Split.call(this, config);
37218     if(this.split){
37219         this.split.placement = Roo.bootstrap.SplitBar.RIGHT;
37220         this.split.orientation = Roo.bootstrap.SplitBar.HORIZONTAL;
37221         this.split.el.addClass("roo-layout-split-h");
37222     }
37223     var size = config.initialSize || config.width;
37224     if(typeof size != "undefined"){
37225         this.el.setWidth(size);
37226     }
37227 };
37228 Roo.extend(Roo.bootstrap.layout.East, Roo.bootstrap.layout.Split, {
37229     orientation: Roo.bootstrap.SplitBar.HORIZONTAL,
37230     getBox : function(){
37231         if(this.collapsed){
37232             return this.collapsedEl.getBox();
37233         }
37234         var box = this.el.getBox();
37235         if(this.split){
37236             var sw = this.split.el.getWidth();
37237             box.width += sw;
37238             box.x -= sw;
37239         }
37240         return box;
37241     },
37242
37243     updateBox : function(box){
37244         if(this.split && !this.collapsed){
37245             var sw = this.split.el.getWidth();
37246             box.width -= sw;
37247             this.split.el.setLeft(box.x);
37248             this.split.el.setTop(box.y);
37249             this.split.el.setHeight(box.height);
37250             box.x += sw;
37251         }
37252         if(this.collapsed){
37253             this.updateBody(null, box.height);
37254         }
37255         Roo.bootstrap.layout.Region.prototype.updateBox.call(this, box);
37256     }
37257 });
37258
37259 Roo.bootstrap.layout.West = function(config){
37260     config.region = "west";
37261     config.cursor = "w-resize";
37262     
37263     Roo.bootstrap.layout.Split.call(this, config);
37264     if(this.split){
37265         this.split.placement = Roo.bootstrap.SplitBar.LEFT;
37266         this.split.orientation = Roo.bootstrap.SplitBar.HORIZONTAL;
37267         this.split.el.addClass("roo-layout-split-h");
37268     }
37269     
37270 };
37271 Roo.extend(Roo.bootstrap.layout.West, Roo.bootstrap.layout.Split, {
37272     orientation: Roo.bootstrap.SplitBar.HORIZONTAL,
37273     
37274     onRender: function(ctr, pos)
37275     {
37276         Roo.bootstrap.layout.West.superclass.onRender.call(this, ctr,pos);
37277         var size = this.config.initialSize || this.config.width;
37278         if(typeof size != "undefined"){
37279             this.el.setWidth(size);
37280         }
37281     },
37282     
37283     getBox : function(){
37284         if(this.collapsed){
37285             return this.collapsedEl.getBox();
37286         }
37287         var box = this.el.getBox();
37288         if(this.split){
37289             box.width += this.split.el.getWidth();
37290         }
37291         return box;
37292     },
37293     
37294     updateBox : function(box){
37295         if(this.split && !this.collapsed){
37296             var sw = this.split.el.getWidth();
37297             box.width -= sw;
37298             this.split.el.setLeft(box.x+box.width);
37299             this.split.el.setTop(box.y);
37300             this.split.el.setHeight(box.height);
37301         }
37302         if(this.collapsed){
37303             this.updateBody(null, box.height);
37304         }
37305         Roo.bootstrap.layout.Region.prototype.updateBox.call(this, box);
37306     }
37307 });Roo.namespace("Roo.bootstrap.panel");/*
37308  * Based on:
37309  * Ext JS Library 1.1.1
37310  * Copyright(c) 2006-2007, Ext JS, LLC.
37311  *
37312  * Originally Released Under LGPL - original licence link has changed is not relivant.
37313  *
37314  * Fork - LGPL
37315  * <script type="text/javascript">
37316  */
37317 /**
37318  * @class Roo.ContentPanel
37319  * @extends Roo.util.Observable
37320  * A basic ContentPanel element.
37321  * @cfg {Boolean}   fitToFrame    True for this panel to adjust its size to fit when the region resizes  (defaults to false)
37322  * @cfg {Boolean}   fitContainer   When using {@link #fitToFrame} and {@link #resizeEl}, you can also fit the parent container  (defaults to false)
37323  * @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
37324  * @cfg {Boolean}   closable      True if the panel can be closed/removed
37325  * @cfg {Boolean}   background    True if the panel should not be activated when it is added (defaults to false)
37326  * @cfg {String/HTMLElement/Element} resizeEl An element to resize if {@link #fitToFrame} is true (instead of this panel's element)
37327  * @cfg {Toolbar}   toolbar       A toolbar for this panel
37328  * @cfg {Boolean} autoScroll    True to scroll overflow in this panel (use with {@link #fitToFrame})
37329  * @cfg {String} title          The title for this panel
37330  * @cfg {Array} adjustments     Values to <b>add</b> to the width/height when doing a {@link #fitToFrame} (default is [0, 0])
37331  * @cfg {String} url            Calls {@link #setUrl} with this value
37332  * @cfg {String} region         (center|north|south|east|west) which region to put this panel on (when used with xtype constructors)
37333  * @cfg {String/Object} params  When used with {@link #url}, calls {@link #setUrl} with this value
37334  * @cfg {Boolean} loadOnce      When used with {@link #url}, calls {@link #setUrl} with this value
37335  * @cfg {String}    content        Raw content to fill content panel with (uses setContent on construction.)
37336  * @cfg {Boolean} badges render the badges
37337
37338  * @constructor
37339  * Create a new ContentPanel.
37340  * @param {String/HTMLElement/Roo.Element} el The container element for this panel
37341  * @param {String/Object} config A string to set only the title or a config object
37342  * @param {String} content (optional) Set the HTML content for this panel
37343  * @param {String} region (optional) Used by xtype constructors to add to regions. (values center,east,west,south,north)
37344  */
37345 Roo.bootstrap.panel.Content = function( config){
37346     
37347     this.tpl = config.tpl || false;
37348     
37349     var el = config.el;
37350     var content = config.content;
37351
37352     if(config.autoCreate){ // xtype is available if this is called from factory
37353         el = Roo.id();
37354     }
37355     this.el = Roo.get(el);
37356     if(!this.el && config && config.autoCreate){
37357         if(typeof config.autoCreate == "object"){
37358             if(!config.autoCreate.id){
37359                 config.autoCreate.id = config.id||el;
37360             }
37361             this.el = Roo.DomHelper.append(document.body,
37362                         config.autoCreate, true);
37363         }else{
37364             var elcfg =  {   tag: "div",
37365                             cls: "roo-layout-inactive-content",
37366                             id: config.id||el
37367                             };
37368             if (config.html) {
37369                 elcfg.html = config.html;
37370                 
37371             }
37372                         
37373             this.el = Roo.DomHelper.append(document.body, elcfg , true);
37374         }
37375     } 
37376     this.closable = false;
37377     this.loaded = false;
37378     this.active = false;
37379    
37380       
37381     if (config.toolbar && !config.toolbar.el && config.toolbar.xtype) {
37382         
37383         this.toolbar = new config.toolbar.xns[config.toolbar.xtype](config.toolbar);
37384         
37385         this.wrapEl = this.el; //this.el.wrap();
37386         var ti = [];
37387         if (config.toolbar.items) {
37388             ti = config.toolbar.items ;
37389             delete config.toolbar.items ;
37390         }
37391         
37392         var nitems = [];
37393         this.toolbar.render(this.wrapEl, 'before');
37394         for(var i =0;i < ti.length;i++) {
37395           //  Roo.log(['add child', items[i]]);
37396             nitems.push(this.toolbar.addxtype(Roo.apply({}, ti[i])));
37397         }
37398         this.toolbar.items = nitems;
37399         this.toolbar.el.insertBefore(this.wrapEl.dom.firstChild);
37400         delete config.toolbar;
37401         
37402     }
37403     /*
37404     // xtype created footer. - not sure if will work as we normally have to render first..
37405     if (this.footer && !this.footer.el && this.footer.xtype) {
37406         if (!this.wrapEl) {
37407             this.wrapEl = this.el.wrap();
37408         }
37409     
37410         this.footer.container = this.wrapEl.createChild();
37411          
37412         this.footer = Roo.factory(this.footer, Roo);
37413         
37414     }
37415     */
37416     
37417      if(typeof config == "string"){
37418         this.title = config;
37419     }else{
37420         Roo.apply(this, config);
37421     }
37422     
37423     if(this.resizeEl){
37424         this.resizeEl = Roo.get(this.resizeEl, true);
37425     }else{
37426         this.resizeEl = this.el;
37427     }
37428     // handle view.xtype
37429     
37430  
37431     
37432     
37433     this.addEvents({
37434         /**
37435          * @event activate
37436          * Fires when this panel is activated. 
37437          * @param {Roo.ContentPanel} this
37438          */
37439         "activate" : true,
37440         /**
37441          * @event deactivate
37442          * Fires when this panel is activated. 
37443          * @param {Roo.ContentPanel} this
37444          */
37445         "deactivate" : true,
37446
37447         /**
37448          * @event resize
37449          * Fires when this panel is resized if fitToFrame is true.
37450          * @param {Roo.ContentPanel} this
37451          * @param {Number} width The width after any component adjustments
37452          * @param {Number} height The height after any component adjustments
37453          */
37454         "resize" : true,
37455         
37456          /**
37457          * @event render
37458          * Fires when this tab is created
37459          * @param {Roo.ContentPanel} this
37460          */
37461         "render" : true
37462         
37463         
37464         
37465     });
37466     
37467
37468     
37469     
37470     if(this.autoScroll){
37471         this.resizeEl.setStyle("overflow", "auto");
37472     } else {
37473         // fix randome scrolling
37474         //this.el.on('scroll', function() {
37475         //    Roo.log('fix random scolling');
37476         //    this.scrollTo('top',0); 
37477         //});
37478     }
37479     content = content || this.content;
37480     if(content){
37481         this.setContent(content);
37482     }
37483     if(config && config.url){
37484         this.setUrl(this.url, this.params, this.loadOnce);
37485     }
37486     
37487     
37488     
37489     Roo.bootstrap.panel.Content.superclass.constructor.call(this);
37490     
37491     if (this.view && typeof(this.view.xtype) != 'undefined') {
37492         this.view.el = this.el.appendChild(document.createElement("div"));
37493         this.view = Roo.factory(this.view); 
37494         this.view.render  &&  this.view.render(false, '');  
37495     }
37496     
37497     
37498     this.fireEvent('render', this);
37499 };
37500
37501 Roo.extend(Roo.bootstrap.panel.Content, Roo.bootstrap.Component, {
37502     
37503     tabTip : '',
37504     
37505     setRegion : function(region){
37506         this.region = region;
37507         this.setActiveClass(region && !this.background);
37508     },
37509     
37510     
37511     setActiveClass: function(state)
37512     {
37513         if(state){
37514            this.el.replaceClass("roo-layout-inactive-content", "roo-layout-active-content");
37515            this.el.setStyle('position','relative');
37516         }else{
37517            this.el.replaceClass("roo-layout-active-content", "roo-layout-inactive-content");
37518            this.el.setStyle('position', 'absolute');
37519         } 
37520     },
37521     
37522     /**
37523      * Returns the toolbar for this Panel if one was configured. 
37524      * @return {Roo.Toolbar} 
37525      */
37526     getToolbar : function(){
37527         return this.toolbar;
37528     },
37529     
37530     setActiveState : function(active)
37531     {
37532         this.active = active;
37533         this.setActiveClass(active);
37534         if(!active){
37535             if(this.fireEvent("deactivate", this) === false){
37536                 return false;
37537             }
37538             return true;
37539         }
37540         this.fireEvent("activate", this);
37541         return true;
37542     },
37543     /**
37544      * Updates this panel's element
37545      * @param {String} content The new content
37546      * @param {Boolean} loadScripts (optional) true to look for and process scripts
37547     */
37548     setContent : function(content, loadScripts){
37549         this.el.update(content, loadScripts);
37550     },
37551
37552     ignoreResize : function(w, h){
37553         if(this.lastSize && this.lastSize.width == w && this.lastSize.height == h){
37554             return true;
37555         }else{
37556             this.lastSize = {width: w, height: h};
37557             return false;
37558         }
37559     },
37560     /**
37561      * Get the {@link Roo.UpdateManager} for this panel. Enables you to perform Ajax updates.
37562      * @return {Roo.UpdateManager} The UpdateManager
37563      */
37564     getUpdateManager : function(){
37565         return this.el.getUpdateManager();
37566     },
37567      /**
37568      * Loads this content panel immediately with content from XHR. Note: to delay loading until the panel is activated, use {@link #setUrl}.
37569      * @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:
37570 <pre><code>
37571 panel.load({
37572     url: "your-url.php",
37573     params: {param1: "foo", param2: "bar"}, // or a URL encoded string
37574     callback: yourFunction,
37575     scope: yourObject, //(optional scope)
37576     discardUrl: false,
37577     nocache: false,
37578     text: "Loading...",
37579     timeout: 30,
37580     scripts: false
37581 });
37582 </code></pre>
37583      * The only required property is <i>url</i>. The optional properties <i>nocache</i>, <i>text</i> and <i>scripts</i>
37584      * 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.
37585      * @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}
37586      * @param {Function} callback (optional) Callback when transaction is complete -- called with signature (oElement, bSuccess, oResponse)
37587      * @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.
37588      * @return {Roo.ContentPanel} this
37589      */
37590     load : function(){
37591         var um = this.el.getUpdateManager();
37592         um.update.apply(um, arguments);
37593         return this;
37594     },
37595
37596
37597     /**
37598      * 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.
37599      * @param {String/Function} url The URL to load the content from or a function to call to get the URL
37600      * @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)
37601      * @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)
37602      * @return {Roo.UpdateManager} The UpdateManager
37603      */
37604     setUrl : function(url, params, loadOnce){
37605         if(this.refreshDelegate){
37606             this.removeListener("activate", this.refreshDelegate);
37607         }
37608         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
37609         this.on("activate", this.refreshDelegate);
37610         return this.el.getUpdateManager();
37611     },
37612     
37613     _handleRefresh : function(url, params, loadOnce){
37614         if(!loadOnce || !this.loaded){
37615             var updater = this.el.getUpdateManager();
37616             updater.update(url, params, this._setLoaded.createDelegate(this));
37617         }
37618     },
37619     
37620     _setLoaded : function(){
37621         this.loaded = true;
37622     }, 
37623     
37624     /**
37625      * Returns this panel's id
37626      * @return {String} 
37627      */
37628     getId : function(){
37629         return this.el.id;
37630     },
37631     
37632     /** 
37633      * Returns this panel's element - used by regiosn to add.
37634      * @return {Roo.Element} 
37635      */
37636     getEl : function(){
37637         return this.wrapEl || this.el;
37638     },
37639     
37640    
37641     
37642     adjustForComponents : function(width, height)
37643     {
37644         //Roo.log('adjustForComponents ');
37645         if(this.resizeEl != this.el){
37646             width -= this.el.getFrameWidth('lr');
37647             height -= this.el.getFrameWidth('tb');
37648         }
37649         if(this.toolbar){
37650             var te = this.toolbar.getEl();
37651             te.setWidth(width);
37652             height -= te.getHeight();
37653         }
37654         if(this.footer){
37655             var te = this.footer.getEl();
37656             te.setWidth(width);
37657             height -= te.getHeight();
37658         }
37659         
37660         
37661         if(this.adjustments){
37662             width += this.adjustments[0];
37663             height += this.adjustments[1];
37664         }
37665         return {"width": width, "height": height};
37666     },
37667     
37668     setSize : function(width, height){
37669         if(this.fitToFrame && !this.ignoreResize(width, height)){
37670             if(this.fitContainer && this.resizeEl != this.el){
37671                 this.el.setSize(width, height);
37672             }
37673             var size = this.adjustForComponents(width, height);
37674             this.resizeEl.setSize(this.autoWidth ? "auto" : size.width, this.autoHeight ? "auto" : size.height);
37675             this.fireEvent('resize', this, size.width, size.height);
37676         }
37677     },
37678     
37679     /**
37680      * Returns this panel's title
37681      * @return {String} 
37682      */
37683     getTitle : function(){
37684         
37685         if (typeof(this.title) != 'object') {
37686             return this.title;
37687         }
37688         
37689         var t = '';
37690         for (var k in this.title) {
37691             if (!this.title.hasOwnProperty(k)) {
37692                 continue;
37693             }
37694             
37695             if (k.indexOf('-') >= 0) {
37696                 var s = k.split('-');
37697                 for (var i = 0; i<s.length; i++) {
37698                     t += "<span class='visible-"+s[i]+"'>"+this.title[k]+"</span>";
37699                 }
37700             } else {
37701                 t += "<span class='visible-"+k+"'>"+this.title[k]+"</span>";
37702             }
37703         }
37704         return t;
37705     },
37706     
37707     /**
37708      * Set this panel's title
37709      * @param {String} title
37710      */
37711     setTitle : function(title){
37712         this.title = title;
37713         if(this.region){
37714             this.region.updatePanelTitle(this, title);
37715         }
37716     },
37717     
37718     /**
37719      * Returns true is this panel was configured to be closable
37720      * @return {Boolean} 
37721      */
37722     isClosable : function(){
37723         return this.closable;
37724     },
37725     
37726     beforeSlide : function(){
37727         this.el.clip();
37728         this.resizeEl.clip();
37729     },
37730     
37731     afterSlide : function(){
37732         this.el.unclip();
37733         this.resizeEl.unclip();
37734     },
37735     
37736     /**
37737      *   Force a content refresh from the URL specified in the {@link #setUrl} method.
37738      *   Will fail silently if the {@link #setUrl} method has not been called.
37739      *   This does not activate the panel, just updates its content.
37740      */
37741     refresh : function(){
37742         if(this.refreshDelegate){
37743            this.loaded = false;
37744            this.refreshDelegate();
37745         }
37746     },
37747     
37748     /**
37749      * Destroys this panel
37750      */
37751     destroy : function(){
37752         this.el.removeAllListeners();
37753         var tempEl = document.createElement("span");
37754         tempEl.appendChild(this.el.dom);
37755         tempEl.innerHTML = "";
37756         this.el.remove();
37757         this.el = null;
37758     },
37759     
37760     /**
37761      * form - if the content panel contains a form - this is a reference to it.
37762      * @type {Roo.form.Form}
37763      */
37764     form : false,
37765     /**
37766      * view - if the content panel contains a view (Roo.DatePicker / Roo.View / Roo.JsonView)
37767      *    This contains a reference to it.
37768      * @type {Roo.View}
37769      */
37770     view : false,
37771     
37772       /**
37773      * Adds a xtype elements to the panel - currently only supports Forms, View, JsonView.
37774      * <pre><code>
37775
37776 layout.addxtype({
37777        xtype : 'Form',
37778        items: [ .... ]
37779    }
37780 );
37781
37782 </code></pre>
37783      * @param {Object} cfg Xtype definition of item to add.
37784      */
37785     
37786     
37787     getChildContainer: function () {
37788         return this.getEl();
37789     }
37790     
37791     
37792     /*
37793         var  ret = new Roo.factory(cfg);
37794         return ret;
37795         
37796         
37797         // add form..
37798         if (cfg.xtype.match(/^Form$/)) {
37799             
37800             var el;
37801             //if (this.footer) {
37802             //    el = this.footer.container.insertSibling(false, 'before');
37803             //} else {
37804                 el = this.el.createChild();
37805             //}
37806
37807             this.form = new  Roo.form.Form(cfg);
37808             
37809             
37810             if ( this.form.allItems.length) {
37811                 this.form.render(el.dom);
37812             }
37813             return this.form;
37814         }
37815         // should only have one of theses..
37816         if ([ 'View', 'JsonView', 'DatePicker'].indexOf(cfg.xtype) > -1) {
37817             // views.. should not be just added - used named prop 'view''
37818             
37819             cfg.el = this.el.appendChild(document.createElement("div"));
37820             // factory?
37821             
37822             var ret = new Roo.factory(cfg);
37823              
37824              ret.render && ret.render(false, ''); // render blank..
37825             this.view = ret;
37826             return ret;
37827         }
37828         return false;
37829     }
37830     \*/
37831 });
37832  
37833 /**
37834  * @class Roo.bootstrap.panel.Grid
37835  * @extends Roo.bootstrap.panel.Content
37836  * @constructor
37837  * Create a new GridPanel.
37838  * @cfg {Roo.bootstrap.Table} grid The grid for this panel
37839  * @param {Object} config A the config object
37840   
37841  */
37842
37843
37844
37845 Roo.bootstrap.panel.Grid = function(config)
37846 {
37847     
37848       
37849     this.wrapper = Roo.DomHelper.append(document.body, // wrapper for IE7 strict & safari scroll issue
37850         {tag: "div", cls: "roo-layout-grid-wrapper roo-layout-inactive-content"}, true);
37851
37852     config.el = this.wrapper;
37853     //this.el = this.wrapper;
37854     
37855       if (config.container) {
37856         // ctor'ed from a Border/panel.grid
37857         
37858         
37859         this.wrapper.setStyle("overflow", "hidden");
37860         this.wrapper.addClass('roo-grid-container');
37861
37862     }
37863     
37864     
37865     if(config.toolbar){
37866         var tool_el = this.wrapper.createChild();    
37867         this.toolbar = Roo.factory(config.toolbar);
37868         var ti = [];
37869         if (config.toolbar.items) {
37870             ti = config.toolbar.items ;
37871             delete config.toolbar.items ;
37872         }
37873         
37874         var nitems = [];
37875         this.toolbar.render(tool_el);
37876         for(var i =0;i < ti.length;i++) {
37877           //  Roo.log(['add child', items[i]]);
37878             nitems.push(this.toolbar.addxtype(Roo.apply({}, ti[i])));
37879         }
37880         this.toolbar.items = nitems;
37881         
37882         delete config.toolbar;
37883     }
37884     
37885     Roo.bootstrap.panel.Grid.superclass.constructor.call(this, config);
37886     config.grid.scrollBody = true;;
37887     config.grid.monitorWindowResize = false; // turn off autosizing
37888     config.grid.autoHeight = false;
37889     config.grid.autoWidth = false;
37890     
37891     this.grid = new config.grid.xns[config.grid.xtype](config.grid);
37892     
37893     if (config.background) {
37894         // render grid on panel activation (if panel background)
37895         this.on('activate', function(gp) {
37896             if (!gp.grid.rendered) {
37897                 gp.grid.render(this.wrapper);
37898                 gp.grid.getGridEl().replaceClass("roo-layout-inactive-content", "roo-layout-component-panel");   
37899             }
37900         });
37901             
37902     } else {
37903         this.grid.render(this.wrapper);
37904         this.grid.getGridEl().replaceClass("roo-layout-inactive-content", "roo-layout-component-panel");               
37905
37906     }
37907     //this.wrapper.dom.appendChild(config.grid.getGridEl().dom);
37908     // ??? needed ??? config.el = this.wrapper;
37909     
37910     
37911     
37912   
37913     // xtype created footer. - not sure if will work as we normally have to render first..
37914     if (this.footer && !this.footer.el && this.footer.xtype) {
37915         
37916         var ctr = this.grid.getView().getFooterPanel(true);
37917         this.footer.dataSource = this.grid.dataSource;
37918         this.footer = Roo.factory(this.footer, Roo);
37919         this.footer.render(ctr);
37920         
37921     }
37922     
37923     
37924     
37925     
37926      
37927 };
37928
37929 Roo.extend(Roo.bootstrap.panel.Grid, Roo.bootstrap.panel.Content, {
37930     getId : function(){
37931         return this.grid.id;
37932     },
37933     
37934     /**
37935      * Returns the grid for this panel
37936      * @return {Roo.bootstrap.Table} 
37937      */
37938     getGrid : function(){
37939         return this.grid;    
37940     },
37941     
37942     setSize : function(width, height){
37943         if(!this.ignoreResize(width, height)){
37944             var grid = this.grid;
37945             var size = this.adjustForComponents(width, height);
37946             var gridel = grid.getGridEl();
37947             gridel.setSize(size.width, size.height);
37948             /*
37949             var thd = grid.getGridEl().select('thead',true).first();
37950             var tbd = grid.getGridEl().select('tbody', true).first();
37951             if (tbd) {
37952                 tbd.setSize(width, height - thd.getHeight());
37953             }
37954             */
37955             grid.autoSize();
37956         }
37957     },
37958      
37959     
37960     
37961     beforeSlide : function(){
37962         this.grid.getView().scroller.clip();
37963     },
37964     
37965     afterSlide : function(){
37966         this.grid.getView().scroller.unclip();
37967     },
37968     
37969     destroy : function(){
37970         this.grid.destroy();
37971         delete this.grid;
37972         Roo.bootstrap.panel.Grid.superclass.destroy.call(this); 
37973     }
37974 });
37975
37976 /**
37977  * @class Roo.bootstrap.panel.Nest
37978  * @extends Roo.bootstrap.panel.Content
37979  * @constructor
37980  * Create a new Panel, that can contain a layout.Border.
37981  * 
37982  * 
37983  * @param {Roo.BorderLayout} layout The layout for this panel
37984  * @param {String/Object} config A string to set only the title or a config object
37985  */
37986 Roo.bootstrap.panel.Nest = function(config)
37987 {
37988     // construct with only one argument..
37989     /* FIXME - implement nicer consturctors
37990     if (layout.layout) {
37991         config = layout;
37992         layout = config.layout;
37993         delete config.layout;
37994     }
37995     if (layout.xtype && !layout.getEl) {
37996         // then layout needs constructing..
37997         layout = Roo.factory(layout, Roo);
37998     }
37999     */
38000     
38001     config.el =  config.layout.getEl();
38002     
38003     Roo.bootstrap.panel.Nest.superclass.constructor.call(this, config);
38004     
38005     config.layout.monitorWindowResize = false; // turn off autosizing
38006     this.layout = config.layout;
38007     this.layout.getEl().addClass("roo-layout-nested-layout");
38008     this.layout.parent = this;
38009     
38010     
38011     
38012     
38013 };
38014
38015 Roo.extend(Roo.bootstrap.panel.Nest, Roo.bootstrap.panel.Content, {
38016
38017     setSize : function(width, height){
38018         if(!this.ignoreResize(width, height)){
38019             var size = this.adjustForComponents(width, height);
38020             var el = this.layout.getEl();
38021             if (size.height < 1) {
38022                 el.setWidth(size.width);   
38023             } else {
38024                 el.setSize(size.width, size.height);
38025             }
38026             var touch = el.dom.offsetWidth;
38027             this.layout.layout();
38028             // ie requires a double layout on the first pass
38029             if(Roo.isIE && !this.initialized){
38030                 this.initialized = true;
38031                 this.layout.layout();
38032             }
38033         }
38034     },
38035     
38036     // activate all subpanels if not currently active..
38037     
38038     setActiveState : function(active){
38039         this.active = active;
38040         this.setActiveClass(active);
38041         
38042         if(!active){
38043             this.fireEvent("deactivate", this);
38044             return;
38045         }
38046         
38047         this.fireEvent("activate", this);
38048         // not sure if this should happen before or after..
38049         if (!this.layout) {
38050             return; // should not happen..
38051         }
38052         var reg = false;
38053         for (var r in this.layout.regions) {
38054             reg = this.layout.getRegion(r);
38055             if (reg.getActivePanel()) {
38056                 //reg.showPanel(reg.getActivePanel()); // force it to activate.. 
38057                 reg.setActivePanel(reg.getActivePanel());
38058                 continue;
38059             }
38060             if (!reg.panels.length) {
38061                 continue;
38062             }
38063             reg.showPanel(reg.getPanel(0));
38064         }
38065         
38066         
38067         
38068         
38069     },
38070     
38071     /**
38072      * Returns the nested BorderLayout for this panel
38073      * @return {Roo.BorderLayout} 
38074      */
38075     getLayout : function(){
38076         return this.layout;
38077     },
38078     
38079      /**
38080      * Adds a xtype elements to the layout of the nested panel
38081      * <pre><code>
38082
38083 panel.addxtype({
38084        xtype : 'ContentPanel',
38085        region: 'west',
38086        items: [ .... ]
38087    }
38088 );
38089
38090 panel.addxtype({
38091         xtype : 'NestedLayoutPanel',
38092         region: 'west',
38093         layout: {
38094            center: { },
38095            west: { }   
38096         },
38097         items : [ ... list of content panels or nested layout panels.. ]
38098    }
38099 );
38100 </code></pre>
38101      * @param {Object} cfg Xtype definition of item to add.
38102      */
38103     addxtype : function(cfg) {
38104         return this.layout.addxtype(cfg);
38105     
38106     }
38107 });/*
38108  * Based on:
38109  * Ext JS Library 1.1.1
38110  * Copyright(c) 2006-2007, Ext JS, LLC.
38111  *
38112  * Originally Released Under LGPL - original licence link has changed is not relivant.
38113  *
38114  * Fork - LGPL
38115  * <script type="text/javascript">
38116  */
38117 /**
38118  * @class Roo.TabPanel
38119  * @extends Roo.util.Observable
38120  * A lightweight tab container.
38121  * <br><br>
38122  * Usage:
38123  * <pre><code>
38124 // basic tabs 1, built from existing content
38125 var tabs = new Roo.TabPanel("tabs1");
38126 tabs.addTab("script", "View Script");
38127 tabs.addTab("markup", "View Markup");
38128 tabs.activate("script");
38129
38130 // more advanced tabs, built from javascript
38131 var jtabs = new Roo.TabPanel("jtabs");
38132 jtabs.addTab("jtabs-1", "Normal Tab", "My content was added during construction.");
38133
38134 // set up the UpdateManager
38135 var tab2 = jtabs.addTab("jtabs-2", "Ajax Tab 1");
38136 var updater = tab2.getUpdateManager();
38137 updater.setDefaultUrl("ajax1.htm");
38138 tab2.on('activate', updater.refresh, updater, true);
38139
38140 // Use setUrl for Ajax loading
38141 var tab3 = jtabs.addTab("jtabs-3", "Ajax Tab 2");
38142 tab3.setUrl("ajax2.htm", null, true);
38143
38144 // Disabled tab
38145 var tab4 = jtabs.addTab("tabs1-5", "Disabled Tab", "Can't see me cause I'm disabled");
38146 tab4.disable();
38147
38148 jtabs.activate("jtabs-1");
38149  * </code></pre>
38150  * @constructor
38151  * Create a new TabPanel.
38152  * @param {String/HTMLElement/Roo.Element} container The id, DOM element or Roo.Element container where this TabPanel is to be rendered.
38153  * @param {Object/Boolean} config Config object to set any properties for this TabPanel, or true to render the tabs on the bottom.
38154  */
38155 Roo.bootstrap.panel.Tabs = function(config){
38156     /**
38157     * The container element for this TabPanel.
38158     * @type Roo.Element
38159     */
38160     this.el = Roo.get(config.el);
38161     delete config.el;
38162     if(config){
38163         if(typeof config == "boolean"){
38164             this.tabPosition = config ? "bottom" : "top";
38165         }else{
38166             Roo.apply(this, config);
38167         }
38168     }
38169     
38170     if(this.tabPosition == "bottom"){
38171         // if tabs are at the bottom = create the body first.
38172         this.bodyEl = Roo.get(this.createBody(this.el.dom));
38173         this.el.addClass("roo-tabs-bottom");
38174     }
38175     // next create the tabs holders
38176     
38177     if (this.tabPosition == "west"){
38178         
38179         var reg = this.region; // fake it..
38180         while (reg) {
38181             if (!reg.mgr.parent) {
38182                 break;
38183             }
38184             reg = reg.mgr.parent.region;
38185         }
38186         Roo.log("got nest?");
38187         Roo.log(reg);
38188         if (reg.mgr.getRegion('west')) {
38189             var ctrdom = reg.mgr.getRegion('west').bodyEl.dom;
38190             this.stripWrap = Roo.get(this.createStrip(ctrdom ), true);
38191             this.stripEl = Roo.get(this.createStripList(this.stripWrap.dom), true);
38192             this.stripEl.setVisibilityMode(Roo.Element.DISPLAY);
38193             this.stripBody = Roo.get(this.stripWrap.dom.firstChild.firstChild, true);
38194         
38195             
38196         }
38197         
38198         
38199     } else {
38200      
38201         this.stripWrap = Roo.get(this.createStrip(this.el.dom), true);
38202         this.stripEl = Roo.get(this.createStripList(this.stripWrap.dom), true);
38203         this.stripEl.setVisibilityMode(Roo.Element.DISPLAY);
38204         this.stripBody = Roo.get(this.stripWrap.dom.firstChild.firstChild, true);
38205     }
38206     
38207     
38208     if(Roo.isIE){
38209         Roo.fly(this.stripWrap.dom.firstChild).setStyle("overflow-x", "hidden");
38210     }
38211     
38212     // finally - if tabs are at the top, then create the body last..
38213     if(this.tabPosition != "bottom"){
38214         /** The body element that contains {@link Roo.TabPanelItem} bodies. +
38215          * @type Roo.Element
38216          */
38217         this.bodyEl = Roo.get(this.createBody(this.el.dom));
38218         this.el.addClass("roo-tabs-top");
38219     }
38220     this.items = [];
38221
38222     this.bodyEl.setStyle("position", "relative");
38223
38224     this.active = null;
38225     this.activateDelegate = this.activate.createDelegate(this);
38226
38227     this.addEvents({
38228         /**
38229          * @event tabchange
38230          * Fires when the active tab changes
38231          * @param {Roo.TabPanel} this
38232          * @param {Roo.TabPanelItem} activePanel The new active tab
38233          */
38234         "tabchange": true,
38235         /**
38236          * @event beforetabchange
38237          * Fires before the active tab changes, set cancel to true on the "e" parameter to cancel the change
38238          * @param {Roo.TabPanel} this
38239          * @param {Object} e Set cancel to true on this object to cancel the tab change
38240          * @param {Roo.TabPanelItem} tab The tab being changed to
38241          */
38242         "beforetabchange" : true
38243     });
38244
38245     Roo.EventManager.onWindowResize(this.onResize, this);
38246     this.cpad = this.el.getPadding("lr");
38247     this.hiddenCount = 0;
38248
38249
38250     // toolbar on the tabbar support...
38251     if (this.toolbar) {
38252         alert("no toolbar support yet");
38253         this.toolbar  = false;
38254         /*
38255         var tcfg = this.toolbar;
38256         tcfg.container = this.stripEl.child('td.x-tab-strip-toolbar');  
38257         this.toolbar = new Roo.Toolbar(tcfg);
38258         if (Roo.isSafari) {
38259             var tbl = tcfg.container.child('table', true);
38260             tbl.setAttribute('width', '100%');
38261         }
38262         */
38263         
38264     }
38265    
38266
38267
38268     Roo.bootstrap.panel.Tabs.superclass.constructor.call(this);
38269 };
38270
38271 Roo.extend(Roo.bootstrap.panel.Tabs, Roo.util.Observable, {
38272     /*
38273      *@cfg {String} tabPosition "top" or "bottom" (defaults to "top")
38274      */
38275     tabPosition : "top",
38276     /*
38277      *@cfg {Number} currentTabWidth The width of the current tab (defaults to 0)
38278      */
38279     currentTabWidth : 0,
38280     /*
38281      *@cfg {Number} minTabWidth The minimum width of a tab (defaults to 40) (ignored if {@link #resizeTabs} is not true)
38282      */
38283     minTabWidth : 40,
38284     /*
38285      *@cfg {Number} maxTabWidth The maximum width of a tab (defaults to 250) (ignored if {@link #resizeTabs} is not true)
38286      */
38287     maxTabWidth : 250,
38288     /*
38289      *@cfg {Number} preferredTabWidth The preferred (default) width of a tab (defaults to 175) (ignored if {@link #resizeTabs} is not true)
38290      */
38291     preferredTabWidth : 175,
38292     /*
38293      *@cfg {Boolean} resizeTabs True to enable dynamic tab resizing (defaults to false)
38294      */
38295     resizeTabs : false,
38296     /*
38297      *@cfg {Boolean} monitorResize Set this to true to turn on window resize monitoring (ignored if {@link #resizeTabs} is not true) (defaults to true)
38298      */
38299     monitorResize : true,
38300     /*
38301      *@cfg {Object} toolbar xtype description of toolbar to show at the right of the tab bar. 
38302      */
38303     toolbar : false,  // set by caller..
38304     
38305     region : false, /// set by caller
38306     
38307     disableTooltips : true, // not used yet...
38308
38309     /**
38310      * Creates a new {@link Roo.TabPanelItem} by looking for an existing element with the provided id -- if it's not found it creates one.
38311      * @param {String} id The id of the div to use <b>or create</b>
38312      * @param {String} text The text for the tab
38313      * @param {String} content (optional) Content to put in the TabPanelItem body
38314      * @param {Boolean} closable (optional) True to create a close icon on the tab
38315      * @return {Roo.TabPanelItem} The created TabPanelItem
38316      */
38317     addTab : function(id, text, content, closable, tpl)
38318     {
38319         var item = new Roo.bootstrap.panel.TabItem({
38320             panel: this,
38321             id : id,
38322             text : text,
38323             closable : closable,
38324             tpl : tpl
38325         });
38326         this.addTabItem(item);
38327         if(content){
38328             item.setContent(content);
38329         }
38330         return item;
38331     },
38332
38333     /**
38334      * Returns the {@link Roo.TabPanelItem} with the specified id/index
38335      * @param {String/Number} id The id or index of the TabPanelItem to fetch.
38336      * @return {Roo.TabPanelItem}
38337      */
38338     getTab : function(id){
38339         return this.items[id];
38340     },
38341
38342     /**
38343      * Hides the {@link Roo.TabPanelItem} with the specified id/index
38344      * @param {String/Number} id The id or index of the TabPanelItem to hide.
38345      */
38346     hideTab : function(id){
38347         var t = this.items[id];
38348         if(!t.isHidden()){
38349            t.setHidden(true);
38350            this.hiddenCount++;
38351            this.autoSizeTabs();
38352         }
38353     },
38354
38355     /**
38356      * "Unhides" the {@link Roo.TabPanelItem} with the specified id/index.
38357      * @param {String/Number} id The id or index of the TabPanelItem to unhide.
38358      */
38359     unhideTab : function(id){
38360         var t = this.items[id];
38361         if(t.isHidden()){
38362            t.setHidden(false);
38363            this.hiddenCount--;
38364            this.autoSizeTabs();
38365         }
38366     },
38367
38368     /**
38369      * Adds an existing {@link Roo.TabPanelItem}.
38370      * @param {Roo.TabPanelItem} item The TabPanelItem to add
38371      */
38372     addTabItem : function(item)
38373     {
38374         this.items[item.id] = item;
38375         this.items.push(item);
38376         this.autoSizeTabs();
38377       //  if(this.resizeTabs){
38378     //       item.setWidth(this.currentTabWidth || this.preferredTabWidth);
38379   //         this.autoSizeTabs();
38380 //        }else{
38381 //            item.autoSize();
38382        // }
38383     },
38384
38385     /**
38386      * Removes a {@link Roo.TabPanelItem}.
38387      * @param {String/Number} id The id or index of the TabPanelItem to remove.
38388      */
38389     removeTab : function(id){
38390         var items = this.items;
38391         var tab = items[id];
38392         if(!tab) { return; }
38393         var index = items.indexOf(tab);
38394         if(this.active == tab && items.length > 1){
38395             var newTab = this.getNextAvailable(index);
38396             if(newTab) {
38397                 newTab.activate();
38398             }
38399         }
38400         this.stripEl.dom.removeChild(tab.pnode.dom);
38401         if(tab.bodyEl.dom.parentNode == this.bodyEl.dom){ // if it was moved already prevent error
38402             this.bodyEl.dom.removeChild(tab.bodyEl.dom);
38403         }
38404         items.splice(index, 1);
38405         delete this.items[tab.id];
38406         tab.fireEvent("close", tab);
38407         tab.purgeListeners();
38408         this.autoSizeTabs();
38409     },
38410
38411     getNextAvailable : function(start){
38412         var items = this.items;
38413         var index = start;
38414         // look for a next tab that will slide over to
38415         // replace the one being removed
38416         while(index < items.length){
38417             var item = items[++index];
38418             if(item && !item.isHidden()){
38419                 return item;
38420             }
38421         }
38422         // if one isn't found select the previous tab (on the left)
38423         index = start;
38424         while(index >= 0){
38425             var item = items[--index];
38426             if(item && !item.isHidden()){
38427                 return item;
38428             }
38429         }
38430         return null;
38431     },
38432
38433     /**
38434      * Disables a {@link Roo.TabPanelItem}. It cannot be the active tab, if it is this call is ignored.
38435      * @param {String/Number} id The id or index of the TabPanelItem to disable.
38436      */
38437     disableTab : function(id){
38438         var tab = this.items[id];
38439         if(tab && this.active != tab){
38440             tab.disable();
38441         }
38442     },
38443
38444     /**
38445      * Enables a {@link Roo.TabPanelItem} that is disabled.
38446      * @param {String/Number} id The id or index of the TabPanelItem to enable.
38447      */
38448     enableTab : function(id){
38449         var tab = this.items[id];
38450         tab.enable();
38451     },
38452
38453     /**
38454      * Activates a {@link Roo.TabPanelItem}. The currently active one will be deactivated.
38455      * @param {String/Number} id The id or index of the TabPanelItem to activate.
38456      * @return {Roo.TabPanelItem} The TabPanelItem.
38457      */
38458     activate : function(id)
38459     {
38460         //Roo.log('activite:'  + id);
38461         
38462         var tab = this.items[id];
38463         if(!tab){
38464             return null;
38465         }
38466         if(tab == this.active || tab.disabled){
38467             return tab;
38468         }
38469         var e = {};
38470         this.fireEvent("beforetabchange", this, e, tab);
38471         if(e.cancel !== true && !tab.disabled){
38472             if(this.active){
38473                 this.active.hide();
38474             }
38475             this.active = this.items[id];
38476             this.active.show();
38477             this.fireEvent("tabchange", this, this.active);
38478         }
38479         return tab;
38480     },
38481
38482     /**
38483      * Gets the active {@link Roo.TabPanelItem}.
38484      * @return {Roo.TabPanelItem} The active TabPanelItem or null if none are active.
38485      */
38486     getActiveTab : function(){
38487         return this.active;
38488     },
38489
38490     /**
38491      * Updates the tab body element to fit the height of the container element
38492      * for overflow scrolling
38493      * @param {Number} targetHeight (optional) Override the starting height from the elements height
38494      */
38495     syncHeight : function(targetHeight){
38496         var height = (targetHeight || this.el.getHeight())-this.el.getBorderWidth("tb")-this.el.getPadding("tb");
38497         var bm = this.bodyEl.getMargins();
38498         var newHeight = height-(this.stripWrap.getHeight()||0)-(bm.top+bm.bottom);
38499         this.bodyEl.setHeight(newHeight);
38500         return newHeight;
38501     },
38502
38503     onResize : function(){
38504         if(this.monitorResize){
38505             this.autoSizeTabs();
38506         }
38507     },
38508
38509     /**
38510      * Disables tab resizing while tabs are being added (if {@link #resizeTabs} is false this does nothing)
38511      */
38512     beginUpdate : function(){
38513         this.updating = true;
38514     },
38515
38516     /**
38517      * Stops an update and resizes the tabs (if {@link #resizeTabs} is false this does nothing)
38518      */
38519     endUpdate : function(){
38520         this.updating = false;
38521         this.autoSizeTabs();
38522     },
38523
38524     /**
38525      * Manual call to resize the tabs (if {@link #resizeTabs} is false this does nothing)
38526      */
38527     autoSizeTabs : function()
38528     {
38529         var count = this.items.length;
38530         var vcount = count - this.hiddenCount;
38531         
38532         if (vcount < 2) {
38533             this.stripEl.hide();
38534         } else {
38535             this.stripEl.show();
38536         }
38537         
38538         if(!this.resizeTabs || count < 1 || vcount < 1 || this.updating) {
38539             return;
38540         }
38541         
38542         
38543         var w = Math.max(this.el.getWidth() - this.cpad, 10);
38544         var availWidth = Math.floor(w / vcount);
38545         var b = this.stripBody;
38546         if(b.getWidth() > w){
38547             var tabs = this.items;
38548             this.setTabWidth(Math.max(availWidth, this.minTabWidth)-2);
38549             if(availWidth < this.minTabWidth){
38550                 /*if(!this.sleft){    // incomplete scrolling code
38551                     this.createScrollButtons();
38552                 }
38553                 this.showScroll();
38554                 this.stripClip.setWidth(w - (this.sleft.getWidth()+this.sright.getWidth()));*/
38555             }
38556         }else{
38557             if(this.currentTabWidth < this.preferredTabWidth){
38558                 this.setTabWidth(Math.min(availWidth, this.preferredTabWidth)-2);
38559             }
38560         }
38561     },
38562
38563     /**
38564      * Returns the number of tabs in this TabPanel.
38565      * @return {Number}
38566      */
38567      getCount : function(){
38568          return this.items.length;
38569      },
38570
38571     /**
38572      * Resizes all the tabs to the passed width
38573      * @param {Number} The new width
38574      */
38575     setTabWidth : function(width){
38576         this.currentTabWidth = width;
38577         for(var i = 0, len = this.items.length; i < len; i++) {
38578                 if(!this.items[i].isHidden()) {
38579                 this.items[i].setWidth(width);
38580             }
38581         }
38582     },
38583
38584     /**
38585      * Destroys this TabPanel
38586      * @param {Boolean} removeEl (optional) True to remove the element from the DOM as well (defaults to undefined)
38587      */
38588     destroy : function(removeEl){
38589         Roo.EventManager.removeResizeListener(this.onResize, this);
38590         for(var i = 0, len = this.items.length; i < len; i++){
38591             this.items[i].purgeListeners();
38592         }
38593         if(removeEl === true){
38594             this.el.update("");
38595             this.el.remove();
38596         }
38597     },
38598     
38599     createStrip : function(container)
38600     {
38601         var strip = document.createElement("nav");
38602         strip.className = Roo.bootstrap.version == 4 ?
38603             "navbar-light bg-light" : 
38604             "navbar navbar-default"; //"x-tabs-wrap";
38605         container.appendChild(strip);
38606         return strip;
38607     },
38608     
38609     createStripList : function(strip)
38610     {
38611         // div wrapper for retard IE
38612         // returns the "tr" element.
38613         strip.innerHTML = '<ul class="nav nav-tabs" role="tablist"></ul>';
38614         //'<div class="x-tabs-strip-wrap">'+
38615           //  '<table class="x-tabs-strip" cellspacing="0" cellpadding="0" border="0"><tbody><tr>'+
38616           //  '<td class="x-tab-strip-toolbar"></td></tr></tbody></table></div>';
38617         return strip.firstChild; //.firstChild.firstChild.firstChild;
38618     },
38619     createBody : function(container)
38620     {
38621         var body = document.createElement("div");
38622         Roo.id(body, "tab-body");
38623         //Roo.fly(body).addClass("x-tabs-body");
38624         Roo.fly(body).addClass("tab-content");
38625         container.appendChild(body);
38626         return body;
38627     },
38628     createItemBody :function(bodyEl, id){
38629         var body = Roo.getDom(id);
38630         if(!body){
38631             body = document.createElement("div");
38632             body.id = id;
38633         }
38634         //Roo.fly(body).addClass("x-tabs-item-body");
38635         Roo.fly(body).addClass("tab-pane");
38636          bodyEl.insertBefore(body, bodyEl.firstChild);
38637         return body;
38638     },
38639     /** @private */
38640     createStripElements :  function(stripEl, text, closable, tpl)
38641     {
38642         var td = document.createElement("li"); // was td..
38643         td.className = 'nav-item';
38644         
38645         //stripEl.insertBefore(td, stripEl.childNodes[stripEl.childNodes.length-1]);
38646         
38647         
38648         stripEl.appendChild(td);
38649         /*if(closable){
38650             td.className = "x-tabs-closable";
38651             if(!this.closeTpl){
38652                 this.closeTpl = new Roo.Template(
38653                    '<a href="#" class="x-tabs-right"><span class="x-tabs-left"><em class="x-tabs-inner">' +
38654                    '<span unselectable="on"' + (this.disableTooltips ? '' : ' title="{text}"') +' class="x-tabs-text">{text}</span>' +
38655                    '<div unselectable="on" class="close-icon">&#160;</div></em></span></a>'
38656                 );
38657             }
38658             var el = this.closeTpl.overwrite(td, {"text": text});
38659             var close = el.getElementsByTagName("div")[0];
38660             var inner = el.getElementsByTagName("em")[0];
38661             return {"el": el, "close": close, "inner": inner};
38662         } else {
38663         */
38664         // not sure what this is..
38665 //            if(!this.tabTpl){
38666                 //this.tabTpl = new Roo.Template(
38667                 //   '<a href="#" class="x-tabs-right"><span class="x-tabs-left"><em class="x-tabs-inner">' +
38668                 //   '<span unselectable="on"' + (this.disableTooltips ? '' : ' title="{text}"') +' class="x-tabs-text">{text}</span></em></span></a>'
38669                 //);
38670 //                this.tabTpl = new Roo.Template(
38671 //                   '<a href="#">' +
38672 //                   '<span unselectable="on"' +
38673 //                            (this.disableTooltips ? '' : ' title="{text}"') +
38674 //                            ' >{text}</span></a>'
38675 //                );
38676 //                
38677 //            }
38678
38679
38680             var template = tpl || this.tabTpl || false;
38681             
38682             if(!template){
38683                 template =  new Roo.Template(
38684                         Roo.bootstrap.version == 4 ? 
38685                             (
38686                                 '<a class="nav-link" href="#" unselectable="on"' +
38687                                      (this.disableTooltips ? '' : ' title="{text}"') +
38688                                      ' >{text}</a>'
38689                             ) : (
38690                                 '<a class="nav-link" href="#">' +
38691                                 '<span unselectable="on"' +
38692                                          (this.disableTooltips ? '' : ' title="{text}"') +
38693                                     ' >{text}</span></a>'
38694                             )
38695                 );
38696             }
38697             
38698             switch (typeof(template)) {
38699                 case 'object' :
38700                     break;
38701                 case 'string' :
38702                     template = new Roo.Template(template);
38703                     break;
38704                 default :
38705                     break;
38706             }
38707             
38708             var el = template.overwrite(td, {"text": text});
38709             
38710             var inner = el.getElementsByTagName("span")[0];
38711             
38712             return {"el": el, "inner": inner};
38713             
38714     }
38715         
38716     
38717 });
38718
38719 /**
38720  * @class Roo.TabPanelItem
38721  * @extends Roo.util.Observable
38722  * Represents an individual item (tab plus body) in a TabPanel.
38723  * @param {Roo.TabPanel} tabPanel The {@link Roo.TabPanel} this TabPanelItem belongs to
38724  * @param {String} id The id of this TabPanelItem
38725  * @param {String} text The text for the tab of this TabPanelItem
38726  * @param {Boolean} closable True to allow this TabPanelItem to be closable (defaults to false)
38727  */
38728 Roo.bootstrap.panel.TabItem = function(config){
38729     /**
38730      * The {@link Roo.TabPanel} this TabPanelItem belongs to
38731      * @type Roo.TabPanel
38732      */
38733     this.tabPanel = config.panel;
38734     /**
38735      * The id for this TabPanelItem
38736      * @type String
38737      */
38738     this.id = config.id;
38739     /** @private */
38740     this.disabled = false;
38741     /** @private */
38742     this.text = config.text;
38743     /** @private */
38744     this.loaded = false;
38745     this.closable = config.closable;
38746
38747     /**
38748      * The body element for this TabPanelItem.
38749      * @type Roo.Element
38750      */
38751     this.bodyEl = Roo.get(this.tabPanel.createItemBody(this.tabPanel.bodyEl.dom, config.id));
38752     this.bodyEl.setVisibilityMode(Roo.Element.VISIBILITY);
38753     this.bodyEl.setStyle("display", "block");
38754     this.bodyEl.setStyle("zoom", "1");
38755     //this.hideAction();
38756
38757     var els = this.tabPanel.createStripElements(this.tabPanel.stripEl.dom, config.text, config.closable, config.tpl);
38758     /** @private */
38759     this.el = Roo.get(els.el);
38760     this.inner = Roo.get(els.inner, true);
38761      this.textEl = Roo.bootstrap.version == 4 ?
38762         this.el : Roo.get(this.el.dom.firstChild, true);
38763
38764     this.pnode = this.linode = Roo.get(els.el.parentNode, true);
38765     this.status_node = Roo.bootstrap.version == 4 ? this.el : this.linode;
38766
38767     
38768 //    this.el.on("mousedown", this.onTabMouseDown, this);
38769     this.el.on("click", this.onTabClick, this);
38770     /** @private */
38771     if(config.closable){
38772         var c = Roo.get(els.close, true);
38773         c.dom.title = this.closeText;
38774         c.addClassOnOver("close-over");
38775         c.on("click", this.closeClick, this);
38776      }
38777
38778     this.addEvents({
38779          /**
38780          * @event activate
38781          * Fires when this tab becomes the active tab.
38782          * @param {Roo.TabPanel} tabPanel The parent TabPanel
38783          * @param {Roo.TabPanelItem} this
38784          */
38785         "activate": true,
38786         /**
38787          * @event beforeclose
38788          * Fires before this tab is closed. To cancel the close, set cancel to true on e (e.cancel = true).
38789          * @param {Roo.TabPanelItem} this
38790          * @param {Object} e Set cancel to true on this object to cancel the close.
38791          */
38792         "beforeclose": true,
38793         /**
38794          * @event close
38795          * Fires when this tab is closed.
38796          * @param {Roo.TabPanelItem} this
38797          */
38798          "close": true,
38799         /**
38800          * @event deactivate
38801          * Fires when this tab is no longer the active tab.
38802          * @param {Roo.TabPanel} tabPanel The parent TabPanel
38803          * @param {Roo.TabPanelItem} this
38804          */
38805          "deactivate" : true
38806     });
38807     this.hidden = false;
38808
38809     Roo.bootstrap.panel.TabItem.superclass.constructor.call(this);
38810 };
38811
38812 Roo.extend(Roo.bootstrap.panel.TabItem, Roo.util.Observable,
38813            {
38814     purgeListeners : function(){
38815        Roo.util.Observable.prototype.purgeListeners.call(this);
38816        this.el.removeAllListeners();
38817     },
38818     /**
38819      * Shows this TabPanelItem -- this <b>does not</b> deactivate the currently active TabPanelItem.
38820      */
38821     show : function(){
38822         this.status_node.addClass("active");
38823         this.showAction();
38824         if(Roo.isOpera){
38825             this.tabPanel.stripWrap.repaint();
38826         }
38827         this.fireEvent("activate", this.tabPanel, this);
38828     },
38829
38830     /**
38831      * Returns true if this tab is the active tab.
38832      * @return {Boolean}
38833      */
38834     isActive : function(){
38835         return this.tabPanel.getActiveTab() == this;
38836     },
38837
38838     /**
38839      * Hides this TabPanelItem -- if you don't activate another TabPanelItem this could look odd.
38840      */
38841     hide : function(){
38842         this.status_node.removeClass("active");
38843         this.hideAction();
38844         this.fireEvent("deactivate", this.tabPanel, this);
38845     },
38846
38847     hideAction : function(){
38848         this.bodyEl.hide();
38849         this.bodyEl.setStyle("position", "absolute");
38850         this.bodyEl.setLeft("-20000px");
38851         this.bodyEl.setTop("-20000px");
38852     },
38853
38854     showAction : function(){
38855         this.bodyEl.setStyle("position", "relative");
38856         this.bodyEl.setTop("");
38857         this.bodyEl.setLeft("");
38858         this.bodyEl.show();
38859     },
38860
38861     /**
38862      * Set the tooltip for the tab.
38863      * @param {String} tooltip The tab's tooltip
38864      */
38865     setTooltip : function(text){
38866         if(Roo.QuickTips && Roo.QuickTips.isEnabled()){
38867             this.textEl.dom.qtip = text;
38868             this.textEl.dom.removeAttribute('title');
38869         }else{
38870             this.textEl.dom.title = text;
38871         }
38872     },
38873
38874     onTabClick : function(e){
38875         e.preventDefault();
38876         this.tabPanel.activate(this.id);
38877     },
38878
38879     onTabMouseDown : function(e){
38880         e.preventDefault();
38881         this.tabPanel.activate(this.id);
38882     },
38883 /*
38884     getWidth : function(){
38885         return this.inner.getWidth();
38886     },
38887
38888     setWidth : function(width){
38889         var iwidth = width - this.linode.getPadding("lr");
38890         this.inner.setWidth(iwidth);
38891         this.textEl.setWidth(iwidth-this.inner.getPadding("lr"));
38892         this.linode.setWidth(width);
38893     },
38894 */
38895     /**
38896      * Show or hide the tab
38897      * @param {Boolean} hidden True to hide or false to show.
38898      */
38899     setHidden : function(hidden){
38900         this.hidden = hidden;
38901         this.linode.setStyle("display", hidden ? "none" : "");
38902     },
38903
38904     /**
38905      * Returns true if this tab is "hidden"
38906      * @return {Boolean}
38907      */
38908     isHidden : function(){
38909         return this.hidden;
38910     },
38911
38912     /**
38913      * Returns the text for this tab
38914      * @return {String}
38915      */
38916     getText : function(){
38917         return this.text;
38918     },
38919     /*
38920     autoSize : function(){
38921         //this.el.beginMeasure();
38922         this.textEl.setWidth(1);
38923         /*
38924          *  #2804 [new] Tabs in Roojs
38925          *  increase the width by 2-4 pixels to prevent the ellipssis showing in chrome
38926          */
38927         //this.setWidth(this.textEl.dom.scrollWidth+this.linode.getPadding("lr")+this.inner.getPadding("lr") + 2);
38928         //this.el.endMeasure();
38929     //},
38930
38931     /**
38932      * Sets the text for the tab (Note: this also sets the tooltip text)
38933      * @param {String} text The tab's text and tooltip
38934      */
38935     setText : function(text){
38936         this.text = text;
38937         this.textEl.update(text);
38938         this.setTooltip(text);
38939         //if(!this.tabPanel.resizeTabs){
38940         //    this.autoSize();
38941         //}
38942     },
38943     /**
38944      * Activates this TabPanelItem -- this <b>does</b> deactivate the currently active TabPanelItem.
38945      */
38946     activate : function(){
38947         this.tabPanel.activate(this.id);
38948     },
38949
38950     /**
38951      * Disables this TabPanelItem -- this does nothing if this is the active TabPanelItem.
38952      */
38953     disable : function(){
38954         if(this.tabPanel.active != this){
38955             this.disabled = true;
38956             this.status_node.addClass("disabled");
38957         }
38958     },
38959
38960     /**
38961      * Enables this TabPanelItem if it was previously disabled.
38962      */
38963     enable : function(){
38964         this.disabled = false;
38965         this.status_node.removeClass("disabled");
38966     },
38967
38968     /**
38969      * Sets the content for this TabPanelItem.
38970      * @param {String} content The content
38971      * @param {Boolean} loadScripts true to look for and load scripts
38972      */
38973     setContent : function(content, loadScripts){
38974         this.bodyEl.update(content, loadScripts);
38975     },
38976
38977     /**
38978      * Gets the {@link Roo.UpdateManager} for the body of this TabPanelItem. Enables you to perform Ajax updates.
38979      * @return {Roo.UpdateManager} The UpdateManager
38980      */
38981     getUpdateManager : function(){
38982         return this.bodyEl.getUpdateManager();
38983     },
38984
38985     /**
38986      * Set a URL to be used to load the content for this TabPanelItem.
38987      * @param {String/Function} url The URL to load the content from, or a function to call to get the URL
38988      * @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)
38989      * @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)
38990      * @return {Roo.UpdateManager} The UpdateManager
38991      */
38992     setUrl : function(url, params, loadOnce){
38993         if(this.refreshDelegate){
38994             this.un('activate', this.refreshDelegate);
38995         }
38996         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
38997         this.on("activate", this.refreshDelegate);
38998         return this.bodyEl.getUpdateManager();
38999     },
39000
39001     /** @private */
39002     _handleRefresh : function(url, params, loadOnce){
39003         if(!loadOnce || !this.loaded){
39004             var updater = this.bodyEl.getUpdateManager();
39005             updater.update(url, params, this._setLoaded.createDelegate(this));
39006         }
39007     },
39008
39009     /**
39010      *   Forces a content refresh from the URL specified in the {@link #setUrl} method.
39011      *   Will fail silently if the setUrl method has not been called.
39012      *   This does not activate the panel, just updates its content.
39013      */
39014     refresh : function(){
39015         if(this.refreshDelegate){
39016            this.loaded = false;
39017            this.refreshDelegate();
39018         }
39019     },
39020
39021     /** @private */
39022     _setLoaded : function(){
39023         this.loaded = true;
39024     },
39025
39026     /** @private */
39027     closeClick : function(e){
39028         var o = {};
39029         e.stopEvent();
39030         this.fireEvent("beforeclose", this, o);
39031         if(o.cancel !== true){
39032             this.tabPanel.removeTab(this.id);
39033         }
39034     },
39035     /**
39036      * The text displayed in the tooltip for the close icon.
39037      * @type String
39038      */
39039     closeText : "Close this tab"
39040 });
39041 /**
39042 *    This script refer to:
39043 *    Title: International Telephone Input
39044 *    Author: Jack O'Connor
39045 *    Code version:  v12.1.12
39046 *    Availability: https://github.com/jackocnr/intl-tel-input.git
39047 **/
39048
39049 Roo.bootstrap.PhoneInputData = function() {
39050     var d = [
39051       [
39052         "Afghanistan (‫افغانستان‬‎)",
39053         "af",
39054         "93"
39055       ],
39056       [
39057         "Albania (Shqipëri)",
39058         "al",
39059         "355"
39060       ],
39061       [
39062         "Algeria (‫الجزائر‬‎)",
39063         "dz",
39064         "213"
39065       ],
39066       [
39067         "American Samoa",
39068         "as",
39069         "1684"
39070       ],
39071       [
39072         "Andorra",
39073         "ad",
39074         "376"
39075       ],
39076       [
39077         "Angola",
39078         "ao",
39079         "244"
39080       ],
39081       [
39082         "Anguilla",
39083         "ai",
39084         "1264"
39085       ],
39086       [
39087         "Antigua and Barbuda",
39088         "ag",
39089         "1268"
39090       ],
39091       [
39092         "Argentina",
39093         "ar",
39094         "54"
39095       ],
39096       [
39097         "Armenia (Հայաստան)",
39098         "am",
39099         "374"
39100       ],
39101       [
39102         "Aruba",
39103         "aw",
39104         "297"
39105       ],
39106       [
39107         "Australia",
39108         "au",
39109         "61",
39110         0
39111       ],
39112       [
39113         "Austria (Österreich)",
39114         "at",
39115         "43"
39116       ],
39117       [
39118         "Azerbaijan (Azərbaycan)",
39119         "az",
39120         "994"
39121       ],
39122       [
39123         "Bahamas",
39124         "bs",
39125         "1242"
39126       ],
39127       [
39128         "Bahrain (‫البحرين‬‎)",
39129         "bh",
39130         "973"
39131       ],
39132       [
39133         "Bangladesh (বাংলাদেশ)",
39134         "bd",
39135         "880"
39136       ],
39137       [
39138         "Barbados",
39139         "bb",
39140         "1246"
39141       ],
39142       [
39143         "Belarus (Беларусь)",
39144         "by",
39145         "375"
39146       ],
39147       [
39148         "Belgium (België)",
39149         "be",
39150         "32"
39151       ],
39152       [
39153         "Belize",
39154         "bz",
39155         "501"
39156       ],
39157       [
39158         "Benin (Bénin)",
39159         "bj",
39160         "229"
39161       ],
39162       [
39163         "Bermuda",
39164         "bm",
39165         "1441"
39166       ],
39167       [
39168         "Bhutan (འབྲུག)",
39169         "bt",
39170         "975"
39171       ],
39172       [
39173         "Bolivia",
39174         "bo",
39175         "591"
39176       ],
39177       [
39178         "Bosnia and Herzegovina (Босна и Херцеговина)",
39179         "ba",
39180         "387"
39181       ],
39182       [
39183         "Botswana",
39184         "bw",
39185         "267"
39186       ],
39187       [
39188         "Brazil (Brasil)",
39189         "br",
39190         "55"
39191       ],
39192       [
39193         "British Indian Ocean Territory",
39194         "io",
39195         "246"
39196       ],
39197       [
39198         "British Virgin Islands",
39199         "vg",
39200         "1284"
39201       ],
39202       [
39203         "Brunei",
39204         "bn",
39205         "673"
39206       ],
39207       [
39208         "Bulgaria (България)",
39209         "bg",
39210         "359"
39211       ],
39212       [
39213         "Burkina Faso",
39214         "bf",
39215         "226"
39216       ],
39217       [
39218         "Burundi (Uburundi)",
39219         "bi",
39220         "257"
39221       ],
39222       [
39223         "Cambodia (កម្ពុជា)",
39224         "kh",
39225         "855"
39226       ],
39227       [
39228         "Cameroon (Cameroun)",
39229         "cm",
39230         "237"
39231       ],
39232       [
39233         "Canada",
39234         "ca",
39235         "1",
39236         1,
39237         ["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"]
39238       ],
39239       [
39240         "Cape Verde (Kabu Verdi)",
39241         "cv",
39242         "238"
39243       ],
39244       [
39245         "Caribbean Netherlands",
39246         "bq",
39247         "599",
39248         1
39249       ],
39250       [
39251         "Cayman Islands",
39252         "ky",
39253         "1345"
39254       ],
39255       [
39256         "Central African Republic (République centrafricaine)",
39257         "cf",
39258         "236"
39259       ],
39260       [
39261         "Chad (Tchad)",
39262         "td",
39263         "235"
39264       ],
39265       [
39266         "Chile",
39267         "cl",
39268         "56"
39269       ],
39270       [
39271         "China (中国)",
39272         "cn",
39273         "86"
39274       ],
39275       [
39276         "Christmas Island",
39277         "cx",
39278         "61",
39279         2
39280       ],
39281       [
39282         "Cocos (Keeling) Islands",
39283         "cc",
39284         "61",
39285         1
39286       ],
39287       [
39288         "Colombia",
39289         "co",
39290         "57"
39291       ],
39292       [
39293         "Comoros (‫جزر القمر‬‎)",
39294         "km",
39295         "269"
39296       ],
39297       [
39298         "Congo (DRC) (Jamhuri ya Kidemokrasia ya Kongo)",
39299         "cd",
39300         "243"
39301       ],
39302       [
39303         "Congo (Republic) (Congo-Brazzaville)",
39304         "cg",
39305         "242"
39306       ],
39307       [
39308         "Cook Islands",
39309         "ck",
39310         "682"
39311       ],
39312       [
39313         "Costa Rica",
39314         "cr",
39315         "506"
39316       ],
39317       [
39318         "Côte d’Ivoire",
39319         "ci",
39320         "225"
39321       ],
39322       [
39323         "Croatia (Hrvatska)",
39324         "hr",
39325         "385"
39326       ],
39327       [
39328         "Cuba",
39329         "cu",
39330         "53"
39331       ],
39332       [
39333         "Curaçao",
39334         "cw",
39335         "599",
39336         0
39337       ],
39338       [
39339         "Cyprus (Κύπρος)",
39340         "cy",
39341         "357"
39342       ],
39343       [
39344         "Czech Republic (Česká republika)",
39345         "cz",
39346         "420"
39347       ],
39348       [
39349         "Denmark (Danmark)",
39350         "dk",
39351         "45"
39352       ],
39353       [
39354         "Djibouti",
39355         "dj",
39356         "253"
39357       ],
39358       [
39359         "Dominica",
39360         "dm",
39361         "1767"
39362       ],
39363       [
39364         "Dominican Republic (República Dominicana)",
39365         "do",
39366         "1",
39367         2,
39368         ["809", "829", "849"]
39369       ],
39370       [
39371         "Ecuador",
39372         "ec",
39373         "593"
39374       ],
39375       [
39376         "Egypt (‫مصر‬‎)",
39377         "eg",
39378         "20"
39379       ],
39380       [
39381         "El Salvador",
39382         "sv",
39383         "503"
39384       ],
39385       [
39386         "Equatorial Guinea (Guinea Ecuatorial)",
39387         "gq",
39388         "240"
39389       ],
39390       [
39391         "Eritrea",
39392         "er",
39393         "291"
39394       ],
39395       [
39396         "Estonia (Eesti)",
39397         "ee",
39398         "372"
39399       ],
39400       [
39401         "Ethiopia",
39402         "et",
39403         "251"
39404       ],
39405       [
39406         "Falkland Islands (Islas Malvinas)",
39407         "fk",
39408         "500"
39409       ],
39410       [
39411         "Faroe Islands (Føroyar)",
39412         "fo",
39413         "298"
39414       ],
39415       [
39416         "Fiji",
39417         "fj",
39418         "679"
39419       ],
39420       [
39421         "Finland (Suomi)",
39422         "fi",
39423         "358",
39424         0
39425       ],
39426       [
39427         "France",
39428         "fr",
39429         "33"
39430       ],
39431       [
39432         "French Guiana (Guyane française)",
39433         "gf",
39434         "594"
39435       ],
39436       [
39437         "French Polynesia (Polynésie française)",
39438         "pf",
39439         "689"
39440       ],
39441       [
39442         "Gabon",
39443         "ga",
39444         "241"
39445       ],
39446       [
39447         "Gambia",
39448         "gm",
39449         "220"
39450       ],
39451       [
39452         "Georgia (საქართველო)",
39453         "ge",
39454         "995"
39455       ],
39456       [
39457         "Germany (Deutschland)",
39458         "de",
39459         "49"
39460       ],
39461       [
39462         "Ghana (Gaana)",
39463         "gh",
39464         "233"
39465       ],
39466       [
39467         "Gibraltar",
39468         "gi",
39469         "350"
39470       ],
39471       [
39472         "Greece (Ελλάδα)",
39473         "gr",
39474         "30"
39475       ],
39476       [
39477         "Greenland (Kalaallit Nunaat)",
39478         "gl",
39479         "299"
39480       ],
39481       [
39482         "Grenada",
39483         "gd",
39484         "1473"
39485       ],
39486       [
39487         "Guadeloupe",
39488         "gp",
39489         "590",
39490         0
39491       ],
39492       [
39493         "Guam",
39494         "gu",
39495         "1671"
39496       ],
39497       [
39498         "Guatemala",
39499         "gt",
39500         "502"
39501       ],
39502       [
39503         "Guernsey",
39504         "gg",
39505         "44",
39506         1
39507       ],
39508       [
39509         "Guinea (Guinée)",
39510         "gn",
39511         "224"
39512       ],
39513       [
39514         "Guinea-Bissau (Guiné Bissau)",
39515         "gw",
39516         "245"
39517       ],
39518       [
39519         "Guyana",
39520         "gy",
39521         "592"
39522       ],
39523       [
39524         "Haiti",
39525         "ht",
39526         "509"
39527       ],
39528       [
39529         "Honduras",
39530         "hn",
39531         "504"
39532       ],
39533       [
39534         "Hong Kong (香港)",
39535         "hk",
39536         "852"
39537       ],
39538       [
39539         "Hungary (Magyarország)",
39540         "hu",
39541         "36"
39542       ],
39543       [
39544         "Iceland (Ísland)",
39545         "is",
39546         "354"
39547       ],
39548       [
39549         "India (भारत)",
39550         "in",
39551         "91"
39552       ],
39553       [
39554         "Indonesia",
39555         "id",
39556         "62"
39557       ],
39558       [
39559         "Iran (‫ایران‬‎)",
39560         "ir",
39561         "98"
39562       ],
39563       [
39564         "Iraq (‫العراق‬‎)",
39565         "iq",
39566         "964"
39567       ],
39568       [
39569         "Ireland",
39570         "ie",
39571         "353"
39572       ],
39573       [
39574         "Isle of Man",
39575         "im",
39576         "44",
39577         2
39578       ],
39579       [
39580         "Israel (‫ישראל‬‎)",
39581         "il",
39582         "972"
39583       ],
39584       [
39585         "Italy (Italia)",
39586         "it",
39587         "39",
39588         0
39589       ],
39590       [
39591         "Jamaica",
39592         "jm",
39593         "1876"
39594       ],
39595       [
39596         "Japan (日本)",
39597         "jp",
39598         "81"
39599       ],
39600       [
39601         "Jersey",
39602         "je",
39603         "44",
39604         3
39605       ],
39606       [
39607         "Jordan (‫الأردن‬‎)",
39608         "jo",
39609         "962"
39610       ],
39611       [
39612         "Kazakhstan (Казахстан)",
39613         "kz",
39614         "7",
39615         1
39616       ],
39617       [
39618         "Kenya",
39619         "ke",
39620         "254"
39621       ],
39622       [
39623         "Kiribati",
39624         "ki",
39625         "686"
39626       ],
39627       [
39628         "Kosovo",
39629         "xk",
39630         "383"
39631       ],
39632       [
39633         "Kuwait (‫الكويت‬‎)",
39634         "kw",
39635         "965"
39636       ],
39637       [
39638         "Kyrgyzstan (Кыргызстан)",
39639         "kg",
39640         "996"
39641       ],
39642       [
39643         "Laos (ລາວ)",
39644         "la",
39645         "856"
39646       ],
39647       [
39648         "Latvia (Latvija)",
39649         "lv",
39650         "371"
39651       ],
39652       [
39653         "Lebanon (‫لبنان‬‎)",
39654         "lb",
39655         "961"
39656       ],
39657       [
39658         "Lesotho",
39659         "ls",
39660         "266"
39661       ],
39662       [
39663         "Liberia",
39664         "lr",
39665         "231"
39666       ],
39667       [
39668         "Libya (‫ليبيا‬‎)",
39669         "ly",
39670         "218"
39671       ],
39672       [
39673         "Liechtenstein",
39674         "li",
39675         "423"
39676       ],
39677       [
39678         "Lithuania (Lietuva)",
39679         "lt",
39680         "370"
39681       ],
39682       [
39683         "Luxembourg",
39684         "lu",
39685         "352"
39686       ],
39687       [
39688         "Macau (澳門)",
39689         "mo",
39690         "853"
39691       ],
39692       [
39693         "Macedonia (FYROM) (Македонија)",
39694         "mk",
39695         "389"
39696       ],
39697       [
39698         "Madagascar (Madagasikara)",
39699         "mg",
39700         "261"
39701       ],
39702       [
39703         "Malawi",
39704         "mw",
39705         "265"
39706       ],
39707       [
39708         "Malaysia",
39709         "my",
39710         "60"
39711       ],
39712       [
39713         "Maldives",
39714         "mv",
39715         "960"
39716       ],
39717       [
39718         "Mali",
39719         "ml",
39720         "223"
39721       ],
39722       [
39723         "Malta",
39724         "mt",
39725         "356"
39726       ],
39727       [
39728         "Marshall Islands",
39729         "mh",
39730         "692"
39731       ],
39732       [
39733         "Martinique",
39734         "mq",
39735         "596"
39736       ],
39737       [
39738         "Mauritania (‫موريتانيا‬‎)",
39739         "mr",
39740         "222"
39741       ],
39742       [
39743         "Mauritius (Moris)",
39744         "mu",
39745         "230"
39746       ],
39747       [
39748         "Mayotte",
39749         "yt",
39750         "262",
39751         1
39752       ],
39753       [
39754         "Mexico (México)",
39755         "mx",
39756         "52"
39757       ],
39758       [
39759         "Micronesia",
39760         "fm",
39761         "691"
39762       ],
39763       [
39764         "Moldova (Republica Moldova)",
39765         "md",
39766         "373"
39767       ],
39768       [
39769         "Monaco",
39770         "mc",
39771         "377"
39772       ],
39773       [
39774         "Mongolia (Монгол)",
39775         "mn",
39776         "976"
39777       ],
39778       [
39779         "Montenegro (Crna Gora)",
39780         "me",
39781         "382"
39782       ],
39783       [
39784         "Montserrat",
39785         "ms",
39786         "1664"
39787       ],
39788       [
39789         "Morocco (‫المغرب‬‎)",
39790         "ma",
39791         "212",
39792         0
39793       ],
39794       [
39795         "Mozambique (Moçambique)",
39796         "mz",
39797         "258"
39798       ],
39799       [
39800         "Myanmar (Burma) (မြန်မာ)",
39801         "mm",
39802         "95"
39803       ],
39804       [
39805         "Namibia (Namibië)",
39806         "na",
39807         "264"
39808       ],
39809       [
39810         "Nauru",
39811         "nr",
39812         "674"
39813       ],
39814       [
39815         "Nepal (नेपाल)",
39816         "np",
39817         "977"
39818       ],
39819       [
39820         "Netherlands (Nederland)",
39821         "nl",
39822         "31"
39823       ],
39824       [
39825         "New Caledonia (Nouvelle-Calédonie)",
39826         "nc",
39827         "687"
39828       ],
39829       [
39830         "New Zealand",
39831         "nz",
39832         "64"
39833       ],
39834       [
39835         "Nicaragua",
39836         "ni",
39837         "505"
39838       ],
39839       [
39840         "Niger (Nijar)",
39841         "ne",
39842         "227"
39843       ],
39844       [
39845         "Nigeria",
39846         "ng",
39847         "234"
39848       ],
39849       [
39850         "Niue",
39851         "nu",
39852         "683"
39853       ],
39854       [
39855         "Norfolk Island",
39856         "nf",
39857         "672"
39858       ],
39859       [
39860         "North Korea (조선 민주주의 인민 공화국)",
39861         "kp",
39862         "850"
39863       ],
39864       [
39865         "Northern Mariana Islands",
39866         "mp",
39867         "1670"
39868       ],
39869       [
39870         "Norway (Norge)",
39871         "no",
39872         "47",
39873         0
39874       ],
39875       [
39876         "Oman (‫عُمان‬‎)",
39877         "om",
39878         "968"
39879       ],
39880       [
39881         "Pakistan (‫پاکستان‬‎)",
39882         "pk",
39883         "92"
39884       ],
39885       [
39886         "Palau",
39887         "pw",
39888         "680"
39889       ],
39890       [
39891         "Palestine (‫فلسطين‬‎)",
39892         "ps",
39893         "970"
39894       ],
39895       [
39896         "Panama (Panamá)",
39897         "pa",
39898         "507"
39899       ],
39900       [
39901         "Papua New Guinea",
39902         "pg",
39903         "675"
39904       ],
39905       [
39906         "Paraguay",
39907         "py",
39908         "595"
39909       ],
39910       [
39911         "Peru (Perú)",
39912         "pe",
39913         "51"
39914       ],
39915       [
39916         "Philippines",
39917         "ph",
39918         "63"
39919       ],
39920       [
39921         "Poland (Polska)",
39922         "pl",
39923         "48"
39924       ],
39925       [
39926         "Portugal",
39927         "pt",
39928         "351"
39929       ],
39930       [
39931         "Puerto Rico",
39932         "pr",
39933         "1",
39934         3,
39935         ["787", "939"]
39936       ],
39937       [
39938         "Qatar (‫قطر‬‎)",
39939         "qa",
39940         "974"
39941       ],
39942       [
39943         "Réunion (La Réunion)",
39944         "re",
39945         "262",
39946         0
39947       ],
39948       [
39949         "Romania (România)",
39950         "ro",
39951         "40"
39952       ],
39953       [
39954         "Russia (Россия)",
39955         "ru",
39956         "7",
39957         0
39958       ],
39959       [
39960         "Rwanda",
39961         "rw",
39962         "250"
39963       ],
39964       [
39965         "Saint Barthélemy",
39966         "bl",
39967         "590",
39968         1
39969       ],
39970       [
39971         "Saint Helena",
39972         "sh",
39973         "290"
39974       ],
39975       [
39976         "Saint Kitts and Nevis",
39977         "kn",
39978         "1869"
39979       ],
39980       [
39981         "Saint Lucia",
39982         "lc",
39983         "1758"
39984       ],
39985       [
39986         "Saint Martin (Saint-Martin (partie française))",
39987         "mf",
39988         "590",
39989         2
39990       ],
39991       [
39992         "Saint Pierre and Miquelon (Saint-Pierre-et-Miquelon)",
39993         "pm",
39994         "508"
39995       ],
39996       [
39997         "Saint Vincent and the Grenadines",
39998         "vc",
39999         "1784"
40000       ],
40001       [
40002         "Samoa",
40003         "ws",
40004         "685"
40005       ],
40006       [
40007         "San Marino",
40008         "sm",
40009         "378"
40010       ],
40011       [
40012         "São Tomé and Príncipe (São Tomé e Príncipe)",
40013         "st",
40014         "239"
40015       ],
40016       [
40017         "Saudi Arabia (‫المملكة العربية السعودية‬‎)",
40018         "sa",
40019         "966"
40020       ],
40021       [
40022         "Senegal (Sénégal)",
40023         "sn",
40024         "221"
40025       ],
40026       [
40027         "Serbia (Србија)",
40028         "rs",
40029         "381"
40030       ],
40031       [
40032         "Seychelles",
40033         "sc",
40034         "248"
40035       ],
40036       [
40037         "Sierra Leone",
40038         "sl",
40039         "232"
40040       ],
40041       [
40042         "Singapore",
40043         "sg",
40044         "65"
40045       ],
40046       [
40047         "Sint Maarten",
40048         "sx",
40049         "1721"
40050       ],
40051       [
40052         "Slovakia (Slovensko)",
40053         "sk",
40054         "421"
40055       ],
40056       [
40057         "Slovenia (Slovenija)",
40058         "si",
40059         "386"
40060       ],
40061       [
40062         "Solomon Islands",
40063         "sb",
40064         "677"
40065       ],
40066       [
40067         "Somalia (Soomaaliya)",
40068         "so",
40069         "252"
40070       ],
40071       [
40072         "South Africa",
40073         "za",
40074         "27"
40075       ],
40076       [
40077         "South Korea (대한민국)",
40078         "kr",
40079         "82"
40080       ],
40081       [
40082         "South Sudan (‫جنوب السودان‬‎)",
40083         "ss",
40084         "211"
40085       ],
40086       [
40087         "Spain (España)",
40088         "es",
40089         "34"
40090       ],
40091       [
40092         "Sri Lanka (ශ්‍රී ලංකාව)",
40093         "lk",
40094         "94"
40095       ],
40096       [
40097         "Sudan (‫السودان‬‎)",
40098         "sd",
40099         "249"
40100       ],
40101       [
40102         "Suriname",
40103         "sr",
40104         "597"
40105       ],
40106       [
40107         "Svalbard and Jan Mayen",
40108         "sj",
40109         "47",
40110         1
40111       ],
40112       [
40113         "Swaziland",
40114         "sz",
40115         "268"
40116       ],
40117       [
40118         "Sweden (Sverige)",
40119         "se",
40120         "46"
40121       ],
40122       [
40123         "Switzerland (Schweiz)",
40124         "ch",
40125         "41"
40126       ],
40127       [
40128         "Syria (‫سوريا‬‎)",
40129         "sy",
40130         "963"
40131       ],
40132       [
40133         "Taiwan (台灣)",
40134         "tw",
40135         "886"
40136       ],
40137       [
40138         "Tajikistan",
40139         "tj",
40140         "992"
40141       ],
40142       [
40143         "Tanzania",
40144         "tz",
40145         "255"
40146       ],
40147       [
40148         "Thailand (ไทย)",
40149         "th",
40150         "66"
40151       ],
40152       [
40153         "Timor-Leste",
40154         "tl",
40155         "670"
40156       ],
40157       [
40158         "Togo",
40159         "tg",
40160         "228"
40161       ],
40162       [
40163         "Tokelau",
40164         "tk",
40165         "690"
40166       ],
40167       [
40168         "Tonga",
40169         "to",
40170         "676"
40171       ],
40172       [
40173         "Trinidad and Tobago",
40174         "tt",
40175         "1868"
40176       ],
40177       [
40178         "Tunisia (‫تونس‬‎)",
40179         "tn",
40180         "216"
40181       ],
40182       [
40183         "Turkey (Türkiye)",
40184         "tr",
40185         "90"
40186       ],
40187       [
40188         "Turkmenistan",
40189         "tm",
40190         "993"
40191       ],
40192       [
40193         "Turks and Caicos Islands",
40194         "tc",
40195         "1649"
40196       ],
40197       [
40198         "Tuvalu",
40199         "tv",
40200         "688"
40201       ],
40202       [
40203         "U.S. Virgin Islands",
40204         "vi",
40205         "1340"
40206       ],
40207       [
40208         "Uganda",
40209         "ug",
40210         "256"
40211       ],
40212       [
40213         "Ukraine (Україна)",
40214         "ua",
40215         "380"
40216       ],
40217       [
40218         "United Arab Emirates (‫الإمارات العربية المتحدة‬‎)",
40219         "ae",
40220         "971"
40221       ],
40222       [
40223         "United Kingdom",
40224         "gb",
40225         "44",
40226         0
40227       ],
40228       [
40229         "United States",
40230         "us",
40231         "1",
40232         0
40233       ],
40234       [
40235         "Uruguay",
40236         "uy",
40237         "598"
40238       ],
40239       [
40240         "Uzbekistan (Oʻzbekiston)",
40241         "uz",
40242         "998"
40243       ],
40244       [
40245         "Vanuatu",
40246         "vu",
40247         "678"
40248       ],
40249       [
40250         "Vatican City (Città del Vaticano)",
40251         "va",
40252         "39",
40253         1
40254       ],
40255       [
40256         "Venezuela",
40257         "ve",
40258         "58"
40259       ],
40260       [
40261         "Vietnam (Việt Nam)",
40262         "vn",
40263         "84"
40264       ],
40265       [
40266         "Wallis and Futuna (Wallis-et-Futuna)",
40267         "wf",
40268         "681"
40269       ],
40270       [
40271         "Western Sahara (‫الصحراء الغربية‬‎)",
40272         "eh",
40273         "212",
40274         1
40275       ],
40276       [
40277         "Yemen (‫اليمن‬‎)",
40278         "ye",
40279         "967"
40280       ],
40281       [
40282         "Zambia",
40283         "zm",
40284         "260"
40285       ],
40286       [
40287         "Zimbabwe",
40288         "zw",
40289         "263"
40290       ],
40291       [
40292         "Åland Islands",
40293         "ax",
40294         "358",
40295         1
40296       ]
40297   ];
40298   
40299   return d;
40300 }/**
40301 *    This script refer to:
40302 *    Title: International Telephone Input
40303 *    Author: Jack O'Connor
40304 *    Code version:  v12.1.12
40305 *    Availability: https://github.com/jackocnr/intl-tel-input.git
40306 **/
40307
40308 /**
40309  * @class Roo.bootstrap.PhoneInput
40310  * @extends Roo.bootstrap.TriggerField
40311  * An input with International dial-code selection
40312  
40313  * @cfg {String} defaultDialCode default '+852'
40314  * @cfg {Array} preferedCountries default []
40315   
40316  * @constructor
40317  * Create a new PhoneInput.
40318  * @param {Object} config Configuration options
40319  */
40320
40321 Roo.bootstrap.PhoneInput = function(config) {
40322     Roo.bootstrap.PhoneInput.superclass.constructor.call(this, config);
40323 };
40324
40325 Roo.extend(Roo.bootstrap.PhoneInput, Roo.bootstrap.TriggerField, {
40326         
40327         listWidth: undefined,
40328         
40329         selectedClass: 'active',
40330         
40331         invalidClass : "has-warning",
40332         
40333         validClass: 'has-success',
40334         
40335         allowed: '0123456789',
40336         
40337         max_length: 15,
40338         
40339         /**
40340          * @cfg {String} defaultDialCode The default dial code when initializing the input
40341          */
40342         defaultDialCode: '+852',
40343         
40344         /**
40345          * @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
40346          */
40347         preferedCountries: false,
40348         
40349         getAutoCreate : function()
40350         {
40351             var data = Roo.bootstrap.PhoneInputData();
40352             var align = this.labelAlign || this.parentLabelAlign();
40353             var id = Roo.id();
40354             
40355             this.allCountries = [];
40356             this.dialCodeMapping = [];
40357             
40358             for (var i = 0; i < data.length; i++) {
40359               var c = data[i];
40360               this.allCountries[i] = {
40361                 name: c[0],
40362                 iso2: c[1],
40363                 dialCode: c[2],
40364                 priority: c[3] || 0,
40365                 areaCodes: c[4] || null
40366               };
40367               this.dialCodeMapping[c[2]] = {
40368                   name: c[0],
40369                   iso2: c[1],
40370                   priority: c[3] || 0,
40371                   areaCodes: c[4] || null
40372               };
40373             }
40374             
40375             var cfg = {
40376                 cls: 'form-group',
40377                 cn: []
40378             };
40379             
40380             var input =  {
40381                 tag: 'input',
40382                 id : id,
40383                 // type: 'number', -- do not use number - we get the flaky up/down arrows.
40384                 maxlength: this.max_length,
40385                 cls : 'form-control tel-input',
40386                 autocomplete: 'new-password'
40387             };
40388             
40389             var hiddenInput = {
40390                 tag: 'input',
40391                 type: 'hidden',
40392                 cls: 'hidden-tel-input'
40393             };
40394             
40395             if (this.name) {
40396                 hiddenInput.name = this.name;
40397             }
40398             
40399             if (this.disabled) {
40400                 input.disabled = true;
40401             }
40402             
40403             var flag_container = {
40404                 tag: 'div',
40405                 cls: 'flag-box',
40406                 cn: [
40407                     {
40408                         tag: 'div',
40409                         cls: 'flag'
40410                     },
40411                     {
40412                         tag: 'div',
40413                         cls: 'caret'
40414                     }
40415                 ]
40416             };
40417             
40418             var box = {
40419                 tag: 'div',
40420                 cls: this.hasFeedback ? 'has-feedback' : '',
40421                 cn: [
40422                     hiddenInput,
40423                     input,
40424                     {
40425                         tag: 'input',
40426                         cls: 'dial-code-holder',
40427                         disabled: true
40428                     }
40429                 ]
40430             };
40431             
40432             var container = {
40433                 cls: 'roo-select2-container input-group',
40434                 cn: [
40435                     flag_container,
40436                     box
40437                 ]
40438             };
40439             
40440             if (this.fieldLabel.length) {
40441                 var indicator = {
40442                     tag: 'i',
40443                     tooltip: 'This field is required'
40444                 };
40445                 
40446                 var label = {
40447                     tag: 'label',
40448                     'for':  id,
40449                     cls: 'control-label',
40450                     cn: []
40451                 };
40452                 
40453                 var label_text = {
40454                     tag: 'span',
40455                     html: this.fieldLabel
40456                 };
40457                 
40458                 indicator.cls = 'roo-required-indicator text-danger fa fa-lg fa-star left-indicator';
40459                 label.cn = [
40460                     indicator,
40461                     label_text
40462                 ];
40463                 
40464                 if(this.indicatorpos == 'right') {
40465                     indicator.cls = 'roo-required-indicator text-danger fa fa-lg fa-star right-indicator';
40466                     label.cn = [
40467                         label_text,
40468                         indicator
40469                     ];
40470                 }
40471                 
40472                 if(align == 'left') {
40473                     container = {
40474                         tag: 'div',
40475                         cn: [
40476                             container
40477                         ]
40478                     };
40479                     
40480                     if(this.labelWidth > 12){
40481                         label.style = "width: " + this.labelWidth + 'px';
40482                     }
40483                     if(this.labelWidth < 13 && this.labelmd == 0){
40484                         this.labelmd = this.labelWidth;
40485                     }
40486                     if(this.labellg > 0){
40487                         label.cls += ' col-lg-' + this.labellg;
40488                         input.cls += ' col-lg-' + (12 - this.labellg);
40489                     }
40490                     if(this.labelmd > 0){
40491                         label.cls += ' col-md-' + this.labelmd;
40492                         container.cls += ' col-md-' + (12 - this.labelmd);
40493                     }
40494                     if(this.labelsm > 0){
40495                         label.cls += ' col-sm-' + this.labelsm;
40496                         container.cls += ' col-sm-' + (12 - this.labelsm);
40497                     }
40498                     if(this.labelxs > 0){
40499                         label.cls += ' col-xs-' + this.labelxs;
40500                         container.cls += ' col-xs-' + (12 - this.labelxs);
40501                     }
40502                 }
40503             }
40504             
40505             cfg.cn = [
40506                 label,
40507                 container
40508             ];
40509             
40510             var settings = this;
40511             
40512             ['xs','sm','md','lg'].map(function(size){
40513                 if (settings[size]) {
40514                     cfg.cls += ' col-' + size + '-' + settings[size];
40515                 }
40516             });
40517             
40518             this.store = new Roo.data.Store({
40519                 proxy : new Roo.data.MemoryProxy({}),
40520                 reader : new Roo.data.JsonReader({
40521                     fields : [
40522                         {
40523                             'name' : 'name',
40524                             'type' : 'string'
40525                         },
40526                         {
40527                             'name' : 'iso2',
40528                             'type' : 'string'
40529                         },
40530                         {
40531                             'name' : 'dialCode',
40532                             'type' : 'string'
40533                         },
40534                         {
40535                             'name' : 'priority',
40536                             'type' : 'string'
40537                         },
40538                         {
40539                             'name' : 'areaCodes',
40540                             'type' : 'string'
40541                         }
40542                     ]
40543                 })
40544             });
40545             
40546             if(!this.preferedCountries) {
40547                 this.preferedCountries = [
40548                     'hk',
40549                     'gb',
40550                     'us'
40551                 ];
40552             }
40553             
40554             var p = this.preferedCountries.reverse();
40555             
40556             if(p) {
40557                 for (var i = 0; i < p.length; i++) {
40558                     for (var j = 0; j < this.allCountries.length; j++) {
40559                         if(this.allCountries[j].iso2 == p[i]) {
40560                             var t = this.allCountries[j];
40561                             this.allCountries.splice(j,1);
40562                             this.allCountries.unshift(t);
40563                         }
40564                     } 
40565                 }
40566             }
40567             
40568             this.store.proxy.data = {
40569                 success: true,
40570                 data: this.allCountries
40571             };
40572             
40573             return cfg;
40574         },
40575         
40576         initEvents : function()
40577         {
40578             this.createList();
40579             Roo.bootstrap.PhoneInput.superclass.initEvents.call(this);
40580             
40581             this.indicator = this.indicatorEl();
40582             this.flag = this.flagEl();
40583             this.dialCodeHolder = this.dialCodeHolderEl();
40584             
40585             this.trigger = this.el.select('div.flag-box',true).first();
40586             this.trigger.on("click", this.onTriggerClick, this, {preventDefault:true});
40587             
40588             var _this = this;
40589             
40590             (function(){
40591                 var lw = _this.listWidth || Math.max(_this.inputEl().getWidth(), _this.minListWidth);
40592                 _this.list.setWidth(lw);
40593             }).defer(100);
40594             
40595             this.list.on('mouseover', this.onViewOver, this);
40596             this.list.on('mousemove', this.onViewMove, this);
40597             this.inputEl().on("keyup", this.onKeyUp, this);
40598             this.inputEl().on("keypress", this.onKeyPress, this);
40599             
40600             this.tpl = '<li><a href="#"><div class="flag {iso2}"></div>{name} <span class="dial-code">+{dialCode}</span></a></li>';
40601
40602             this.view = new Roo.View(this.list, this.tpl, {
40603                 singleSelect:true, store: this.store, selectedClass: this.selectedClass
40604             });
40605             
40606             this.view.on('click', this.onViewClick, this);
40607             this.setValue(this.defaultDialCode);
40608         },
40609         
40610         onTriggerClick : function(e)
40611         {
40612             Roo.log('trigger click');
40613             if(this.disabled){
40614                 return;
40615             }
40616             
40617             if(this.isExpanded()){
40618                 this.collapse();
40619                 this.hasFocus = false;
40620             }else {
40621                 this.store.load({});
40622                 this.hasFocus = true;
40623                 this.expand();
40624             }
40625         },
40626         
40627         isExpanded : function()
40628         {
40629             return this.list.isVisible();
40630         },
40631         
40632         collapse : function()
40633         {
40634             if(!this.isExpanded()){
40635                 return;
40636             }
40637             this.list.hide();
40638             Roo.get(document).un('mousedown', this.collapseIf, this);
40639             Roo.get(document).un('mousewheel', this.collapseIf, this);
40640             this.fireEvent('collapse', this);
40641             this.validate();
40642         },
40643         
40644         expand : function()
40645         {
40646             Roo.log('expand');
40647
40648             if(this.isExpanded() || !this.hasFocus){
40649                 return;
40650             }
40651             
40652             var lw = this.listWidth || Math.max(this.inputEl().getWidth(), this.minListWidth);
40653             this.list.setWidth(lw);
40654             
40655             this.list.show();
40656             this.restrictHeight();
40657             
40658             Roo.get(document).on('mousedown', this.collapseIf, this);
40659             Roo.get(document).on('mousewheel', this.collapseIf, this);
40660             
40661             this.fireEvent('expand', this);
40662         },
40663         
40664         restrictHeight : function()
40665         {
40666             this.list.alignTo(this.inputEl(), this.listAlign);
40667             this.list.alignTo(this.inputEl(), this.listAlign);
40668         },
40669         
40670         onViewOver : function(e, t)
40671         {
40672             if(this.inKeyMode){
40673                 return;
40674             }
40675             var item = this.view.findItemFromChild(t);
40676             
40677             if(item){
40678                 var index = this.view.indexOf(item);
40679                 this.select(index, false);
40680             }
40681         },
40682
40683         // private
40684         onViewClick : function(view, doFocus, el, e)
40685         {
40686             var index = this.view.getSelectedIndexes()[0];
40687             
40688             var r = this.store.getAt(index);
40689             
40690             if(r){
40691                 this.onSelect(r, index);
40692             }
40693             if(doFocus !== false && !this.blockFocus){
40694                 this.inputEl().focus();
40695             }
40696         },
40697         
40698         onViewMove : function(e, t)
40699         {
40700             this.inKeyMode = false;
40701         },
40702         
40703         select : function(index, scrollIntoView)
40704         {
40705             this.selectedIndex = index;
40706             this.view.select(index);
40707             if(scrollIntoView !== false){
40708                 var el = this.view.getNode(index);
40709                 if(el){
40710                     this.list.scrollChildIntoView(el, false);
40711                 }
40712             }
40713         },
40714         
40715         createList : function()
40716         {
40717             this.list = Roo.get(document.body).createChild({
40718                 tag: 'ul',
40719                 cls: 'typeahead typeahead-long dropdown-menu tel-list',
40720                 style: 'display:none'
40721             });
40722             
40723             this.list.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
40724         },
40725         
40726         collapseIf : function(e)
40727         {
40728             var in_combo  = e.within(this.el);
40729             var in_list =  e.within(this.list);
40730             var is_list = (Roo.get(e.getTarget()).id == this.list.id) ? true : false;
40731             
40732             if (in_combo || in_list || is_list) {
40733                 return;
40734             }
40735             this.collapse();
40736         },
40737         
40738         onSelect : function(record, index)
40739         {
40740             if(this.fireEvent('beforeselect', this, record, index) !== false){
40741                 
40742                 this.setFlagClass(record.data.iso2);
40743                 this.setDialCode(record.data.dialCode);
40744                 this.hasFocus = false;
40745                 this.collapse();
40746                 this.fireEvent('select', this, record, index);
40747             }
40748         },
40749         
40750         flagEl : function()
40751         {
40752             var flag = this.el.select('div.flag',true).first();
40753             if(!flag){
40754                 return false;
40755             }
40756             return flag;
40757         },
40758         
40759         dialCodeHolderEl : function()
40760         {
40761             var d = this.el.select('input.dial-code-holder',true).first();
40762             if(!d){
40763                 return false;
40764             }
40765             return d;
40766         },
40767         
40768         setDialCode : function(v)
40769         {
40770             this.dialCodeHolder.dom.value = '+'+v;
40771         },
40772         
40773         setFlagClass : function(n)
40774         {
40775             this.flag.dom.className = 'flag '+n;
40776         },
40777         
40778         getValue : function()
40779         {
40780             var v = this.inputEl().getValue();
40781             if(this.dialCodeHolder) {
40782                 v = this.dialCodeHolder.dom.value+this.inputEl().getValue();
40783             }
40784             return v;
40785         },
40786         
40787         setValue : function(v)
40788         {
40789             var d = this.getDialCode(v);
40790             
40791             //invalid dial code
40792             if(v.length == 0 || !d || d.length == 0) {
40793                 if(this.rendered){
40794                     this.inputEl().dom.value = (v === null || v === undefined ? '' : v);
40795                     this.hiddenEl().dom.value = (v === null || v === undefined ? '' : v);
40796                 }
40797                 return;
40798             }
40799             
40800             //valid dial code
40801             this.setFlagClass(this.dialCodeMapping[d].iso2);
40802             this.setDialCode(d);
40803             this.inputEl().dom.value = v.replace('+'+d,'');
40804             this.hiddenEl().dom.value = this.getValue();
40805             
40806             this.validate();
40807         },
40808         
40809         getDialCode : function(v)
40810         {
40811             v = v ||  '';
40812             
40813             if (v.length == 0) {
40814                 return this.dialCodeHolder.dom.value;
40815             }
40816             
40817             var dialCode = "";
40818             if (v.charAt(0) != "+") {
40819                 return false;
40820             }
40821             var numericChars = "";
40822             for (var i = 1; i < v.length; i++) {
40823               var c = v.charAt(i);
40824               if (!isNaN(c)) {
40825                 numericChars += c;
40826                 if (this.dialCodeMapping[numericChars]) {
40827                   dialCode = v.substr(1, i);
40828                 }
40829                 if (numericChars.length == 4) {
40830                   break;
40831                 }
40832               }
40833             }
40834             return dialCode;
40835         },
40836         
40837         reset : function()
40838         {
40839             this.setValue(this.defaultDialCode);
40840             this.validate();
40841         },
40842         
40843         hiddenEl : function()
40844         {
40845             return this.el.select('input.hidden-tel-input',true).first();
40846         },
40847         
40848         // after setting val
40849         onKeyUp : function(e){
40850             this.setValue(this.getValue());
40851         },
40852         
40853         onKeyPress : function(e){
40854             if(this.allowed.indexOf(String.fromCharCode(e.getCharCode())) === -1){
40855                 e.stopEvent();
40856             }
40857         }
40858         
40859 });
40860 /**
40861  * @class Roo.bootstrap.MoneyField
40862  * @extends Roo.bootstrap.ComboBox
40863  * Bootstrap MoneyField class
40864  * 
40865  * @constructor
40866  * Create a new MoneyField.
40867  * @param {Object} config Configuration options
40868  */
40869
40870 Roo.bootstrap.MoneyField = function(config) {
40871     
40872     Roo.bootstrap.MoneyField.superclass.constructor.call(this, config);
40873     
40874 };
40875
40876 Roo.extend(Roo.bootstrap.MoneyField, Roo.bootstrap.ComboBox, {
40877     
40878     /**
40879      * @cfg {Boolean} allowDecimals False to disallow decimal values (defaults to true)
40880      */
40881     allowDecimals : true,
40882     /**
40883      * @cfg {String} decimalSeparator Character(s) to allow as the decimal separator (defaults to '.')
40884      */
40885     decimalSeparator : ".",
40886     /**
40887      * @cfg {Number} decimalPrecision The maximum precision to display after the decimal separator (defaults to 2)
40888      */
40889     decimalPrecision : 0,
40890     /**
40891      * @cfg {Boolean} allowNegative False to prevent entering a negative sign (defaults to true)
40892      */
40893     allowNegative : true,
40894     /**
40895      * @cfg {Boolean} allowZero False to blank out if the user enters '0' (defaults to true)
40896      */
40897     allowZero: true,
40898     /**
40899      * @cfg {Number} minValue The minimum allowed value (defaults to Number.NEGATIVE_INFINITY)
40900      */
40901     minValue : Number.NEGATIVE_INFINITY,
40902     /**
40903      * @cfg {Number} maxValue The maximum allowed value (defaults to Number.MAX_VALUE)
40904      */
40905     maxValue : Number.MAX_VALUE,
40906     /**
40907      * @cfg {String} minText Error text to display if the minimum value validation fails (defaults to "The minimum value for this field is {minValue}")
40908      */
40909     minText : "The minimum value for this field is {0}",
40910     /**
40911      * @cfg {String} maxText Error text to display if the maximum value validation fails (defaults to "The maximum value for this field is {maxValue}")
40912      */
40913     maxText : "The maximum value for this field is {0}",
40914     /**
40915      * @cfg {String} nanText Error text to display if the value is not a valid number.  For example, this can happen
40916      * if a valid character like '.' or '-' is left in the field with no number (defaults to "{value} is not a valid number")
40917      */
40918     nanText : "{0} is not a valid number",
40919     /**
40920      * @cfg {Boolean} castInt (true|false) cast int if true (defalut true)
40921      */
40922     castInt : true,
40923     /**
40924      * @cfg {String} defaults currency of the MoneyField
40925      * value should be in lkey
40926      */
40927     defaultCurrency : false,
40928     /**
40929      * @cfg {String} thousandsDelimiter Symbol of thousandsDelimiter
40930      */
40931     thousandsDelimiter : false,
40932     /**
40933      * @cfg {Number} max_length Maximum input field length allowed (defaults to Number.MAX_VALUE)
40934      */
40935     max_length: false,
40936     
40937     inputlg : 9,
40938     inputmd : 9,
40939     inputsm : 9,
40940     inputxs : 6,
40941     
40942     store : false,
40943     
40944     getAutoCreate : function()
40945     {
40946         var align = this.labelAlign || this.parentLabelAlign();
40947         
40948         var id = Roo.id();
40949
40950         var cfg = {
40951             cls: 'form-group',
40952             cn: []
40953         };
40954
40955         var input =  {
40956             tag: 'input',
40957             id : id,
40958             cls : 'form-control roo-money-amount-input',
40959             autocomplete: 'new-password'
40960         };
40961         
40962         var hiddenInput = {
40963             tag: 'input',
40964             type: 'hidden',
40965             id: Roo.id(),
40966             cls: 'hidden-number-input'
40967         };
40968         
40969         if(this.max_length) {
40970             input.maxlength = this.max_length; 
40971         }
40972         
40973         if (this.name) {
40974             hiddenInput.name = this.name;
40975         }
40976
40977         if (this.disabled) {
40978             input.disabled = true;
40979         }
40980
40981         var clg = 12 - this.inputlg;
40982         var cmd = 12 - this.inputmd;
40983         var csm = 12 - this.inputsm;
40984         var cxs = 12 - this.inputxs;
40985         
40986         var container = {
40987             tag : 'div',
40988             cls : 'row roo-money-field',
40989             cn : [
40990                 {
40991                     tag : 'div',
40992                     cls : 'roo-money-currency column col-lg-' + clg + ' col-md-' + cmd + ' col-sm-' + csm + ' col-xs-' + cxs,
40993                     cn : [
40994                         {
40995                             tag : 'div',
40996                             cls: 'roo-select2-container input-group',
40997                             cn: [
40998                                 {
40999                                     tag : 'input',
41000                                     cls : 'form-control roo-money-currency-input',
41001                                     autocomplete: 'new-password',
41002                                     readOnly : 1,
41003                                     name : this.currencyName
41004                                 },
41005                                 {
41006                                     tag :'span',
41007                                     cls : 'input-group-addon',
41008                                     cn : [
41009                                         {
41010                                             tag: 'span',
41011                                             cls: 'caret'
41012                                         }
41013                                     ]
41014                                 }
41015                             ]
41016                         }
41017                     ]
41018                 },
41019                 {
41020                     tag : 'div',
41021                     cls : 'roo-money-amount column col-lg-' + this.inputlg + ' col-md-' + this.inputmd + ' col-sm-' + this.inputsm + ' col-xs-' + this.inputxs,
41022                     cn : [
41023                         {
41024                             tag: 'div',
41025                             cls: this.hasFeedback ? 'has-feedback' : '',
41026                             cn: [
41027                                 input
41028                             ]
41029                         }
41030                     ]
41031                 }
41032             ]
41033             
41034         };
41035         
41036         if (this.fieldLabel.length) {
41037             var indicator = {
41038                 tag: 'i',
41039                 tooltip: 'This field is required'
41040             };
41041
41042             var label = {
41043                 tag: 'label',
41044                 'for':  id,
41045                 cls: 'control-label',
41046                 cn: []
41047             };
41048
41049             var label_text = {
41050                 tag: 'span',
41051                 html: this.fieldLabel
41052             };
41053
41054             indicator.cls = 'roo-required-indicator text-danger fa fa-lg fa-star left-indicator';
41055             label.cn = [
41056                 indicator,
41057                 label_text
41058             ];
41059
41060             if(this.indicatorpos == 'right') {
41061                 indicator.cls = 'roo-required-indicator text-danger fa fa-lg fa-star right-indicator';
41062                 label.cn = [
41063                     label_text,
41064                     indicator
41065                 ];
41066             }
41067
41068             if(align == 'left') {
41069                 container = {
41070                     tag: 'div',
41071                     cn: [
41072                         container
41073                     ]
41074                 };
41075
41076                 if(this.labelWidth > 12){
41077                     label.style = "width: " + this.labelWidth + 'px';
41078                 }
41079                 if(this.labelWidth < 13 && this.labelmd == 0){
41080                     this.labelmd = this.labelWidth;
41081                 }
41082                 if(this.labellg > 0){
41083                     label.cls += ' col-lg-' + this.labellg;
41084                     input.cls += ' col-lg-' + (12 - this.labellg);
41085                 }
41086                 if(this.labelmd > 0){
41087                     label.cls += ' col-md-' + this.labelmd;
41088                     container.cls += ' col-md-' + (12 - this.labelmd);
41089                 }
41090                 if(this.labelsm > 0){
41091                     label.cls += ' col-sm-' + this.labelsm;
41092                     container.cls += ' col-sm-' + (12 - this.labelsm);
41093                 }
41094                 if(this.labelxs > 0){
41095                     label.cls += ' col-xs-' + this.labelxs;
41096                     container.cls += ' col-xs-' + (12 - this.labelxs);
41097                 }
41098             }
41099         }
41100
41101         cfg.cn = [
41102             label,
41103             container,
41104             hiddenInput
41105         ];
41106         
41107         var settings = this;
41108
41109         ['xs','sm','md','lg'].map(function(size){
41110             if (settings[size]) {
41111                 cfg.cls += ' col-' + size + '-' + settings[size];
41112             }
41113         });
41114         
41115         return cfg;
41116     },
41117     
41118     initEvents : function()
41119     {
41120         this.indicator = this.indicatorEl();
41121         
41122         this.initCurrencyEvent();
41123         
41124         this.initNumberEvent();
41125     },
41126     
41127     initCurrencyEvent : function()
41128     {
41129         if (!this.store) {
41130             throw "can not find store for combo";
41131         }
41132         
41133         this.store = Roo.factory(this.store, Roo.data);
41134         this.store.parent = this;
41135         
41136         this.createList();
41137         
41138         this.triggerEl = this.el.select('.input-group-addon', true).first();
41139         
41140         this.triggerEl.on("click", this.onTriggerClick, this, { preventDefault : true });
41141         
41142         var _this = this;
41143         
41144         (function(){
41145             var lw = _this.listWidth || Math.max(_this.inputEl().getWidth(), _this.minListWidth);
41146             _this.list.setWidth(lw);
41147         }).defer(100);
41148         
41149         this.list.on('mouseover', this.onViewOver, this);
41150         this.list.on('mousemove', this.onViewMove, this);
41151         this.list.on('scroll', this.onViewScroll, this);
41152         
41153         if(!this.tpl){
41154             this.tpl = '<li><a href="#">{' + this.currencyField + '}</a></li>';
41155         }
41156         
41157         this.view = new Roo.View(this.list, this.tpl, {
41158             singleSelect:true, store: this.store, selectedClass: this.selectedClass
41159         });
41160         
41161         this.view.on('click', this.onViewClick, this);
41162         
41163         this.store.on('beforeload', this.onBeforeLoad, this);
41164         this.store.on('load', this.onLoad, this);
41165         this.store.on('loadexception', this.onLoadException, this);
41166         
41167         this.keyNav = new Roo.KeyNav(this.currencyEl(), {
41168             "up" : function(e){
41169                 this.inKeyMode = true;
41170                 this.selectPrev();
41171             },
41172
41173             "down" : function(e){
41174                 if(!this.isExpanded()){
41175                     this.onTriggerClick();
41176                 }else{
41177                     this.inKeyMode = true;
41178                     this.selectNext();
41179                 }
41180             },
41181
41182             "enter" : function(e){
41183                 this.collapse();
41184                 
41185                 if(this.fireEvent("specialkey", this, e)){
41186                     this.onViewClick(false);
41187                 }
41188                 
41189                 return true;
41190             },
41191
41192             "esc" : function(e){
41193                 this.collapse();
41194             },
41195
41196             "tab" : function(e){
41197                 this.collapse();
41198                 
41199                 if(this.fireEvent("specialkey", this, e)){
41200                     this.onViewClick(false);
41201                 }
41202                 
41203                 return true;
41204             },
41205
41206             scope : this,
41207
41208             doRelay : function(foo, bar, hname){
41209                 if(hname == 'down' || this.scope.isExpanded()){
41210                    return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
41211                 }
41212                 return true;
41213             },
41214
41215             forceKeyDown: true
41216         });
41217         
41218         this.currencyEl().on("click", this.onTriggerClick, this, { preventDefault : true });
41219         
41220     },
41221     
41222     initNumberEvent : function(e)
41223     {
41224         this.inputEl().on("keydown" , this.fireKey,  this);
41225         this.inputEl().on("focus", this.onFocus,  this);
41226         this.inputEl().on("blur", this.onBlur,  this);
41227         
41228         this.inputEl().relayEvent('keyup', this);
41229         
41230         if(this.indicator){
41231             this.indicator.addClass('invisible');
41232         }
41233  
41234         this.originalValue = this.getValue();
41235         
41236         if(this.validationEvent == 'keyup'){
41237             this.validationTask = new Roo.util.DelayedTask(this.validate, this);
41238             this.inputEl().on('keyup', this.filterValidation, this);
41239         }
41240         else if(this.validationEvent !== false){
41241             this.inputEl().on(this.validationEvent, this.validate, this, {buffer: this.validationDelay});
41242         }
41243         
41244         if(this.selectOnFocus){
41245             this.on("focus", this.preFocus, this);
41246             
41247         }
41248         if(this.maskRe || (this.vtype && this.disableKeyFilter !== true && (this.maskRe = Roo.form.VTypes[this.vtype+'Mask']))){
41249             this.inputEl().on("keypress", this.filterKeys, this);
41250         } else {
41251             this.inputEl().relayEvent('keypress', this);
41252         }
41253         
41254         var allowed = "0123456789";
41255         
41256         if(this.allowDecimals){
41257             allowed += this.decimalSeparator;
41258         }
41259         
41260         if(this.allowNegative){
41261             allowed += "-";
41262         }
41263         
41264         if(this.thousandsDelimiter) {
41265             allowed += ",";
41266         }
41267         
41268         this.stripCharsRe = new RegExp('[^'+allowed+']', 'gi');
41269         
41270         var keyPress = function(e){
41271             
41272             var k = e.getKey();
41273             
41274             var c = e.getCharCode();
41275             
41276             if(
41277                     (String.fromCharCode(c) == '.' || String.fromCharCode(c) == '-') &&
41278                     allowed.indexOf(String.fromCharCode(c)) === -1
41279             ){
41280                 e.stopEvent();
41281                 return;
41282             }
41283             
41284             if(!Roo.isIE && (e.isSpecialKey() || k == e.BACKSPACE || k == e.DELETE)){
41285                 return;
41286             }
41287             
41288             if(allowed.indexOf(String.fromCharCode(c)) === -1){
41289                 e.stopEvent();
41290             }
41291         };
41292         
41293         this.inputEl().on("keypress", keyPress, this);
41294         
41295     },
41296     
41297     onTriggerClick : function(e)
41298     {   
41299         if(this.disabled){
41300             return;
41301         }
41302         
41303         this.page = 0;
41304         this.loadNext = false;
41305         
41306         if(this.isExpanded()){
41307             this.collapse();
41308             return;
41309         }
41310         
41311         this.hasFocus = true;
41312         
41313         if(this.triggerAction == 'all') {
41314             this.doQuery(this.allQuery, true);
41315             return;
41316         }
41317         
41318         this.doQuery(this.getRawValue());
41319     },
41320     
41321     getCurrency : function()
41322     {   
41323         var v = this.currencyEl().getValue();
41324         
41325         return v;
41326     },
41327     
41328     restrictHeight : function()
41329     {
41330         this.list.alignTo(this.currencyEl(), this.listAlign);
41331         this.list.alignTo(this.currencyEl(), this.listAlign);
41332     },
41333     
41334     onViewClick : function(view, doFocus, el, e)
41335     {
41336         var index = this.view.getSelectedIndexes()[0];
41337         
41338         var r = this.store.getAt(index);
41339         
41340         if(r){
41341             this.onSelect(r, index);
41342         }
41343     },
41344     
41345     onSelect : function(record, index){
41346         
41347         if(this.fireEvent('beforeselect', this, record, index) !== false){
41348         
41349             this.setFromCurrencyData(index > -1 ? record.data : false);
41350             
41351             this.collapse();
41352             
41353             this.fireEvent('select', this, record, index);
41354         }
41355     },
41356     
41357     setFromCurrencyData : function(o)
41358     {
41359         var currency = '';
41360         
41361         this.lastCurrency = o;
41362         
41363         if (this.currencyField) {
41364             currency = !o || typeof(o[this.currencyField]) == 'undefined' ? '' : o[this.currencyField];
41365         } else {
41366             Roo.log('no  currencyField value set for '+ (this.name ? this.name : this.id));
41367         }
41368         
41369         this.lastSelectionText = currency;
41370         
41371         //setting default currency
41372         if(o[this.currencyField] * 1 == 0 && this.defaultCurrency) {
41373             this.setCurrency(this.defaultCurrency);
41374             return;
41375         }
41376         
41377         this.setCurrency(currency);
41378     },
41379     
41380     setFromData : function(o)
41381     {
41382         var c = {};
41383         
41384         c[this.currencyField] = !o || typeof(o[this.currencyName]) == 'undefined' ? '' : o[this.currencyName];
41385         
41386         this.setFromCurrencyData(c);
41387         
41388         var value = '';
41389         
41390         if (this.name) {
41391             value = !o || typeof(o[this.name]) == 'undefined' ? '' : o[this.name];
41392         } else {
41393             Roo.log('no value set for '+ (this.name ? this.name : this.id));
41394         }
41395         
41396         this.setValue(value);
41397         
41398     },
41399     
41400     setCurrency : function(v)
41401     {   
41402         this.currencyValue = v;
41403         
41404         if(this.rendered){
41405             this.currencyEl().dom.value = (v === null || v === undefined ? '' : v);
41406             this.validate();
41407         }
41408     },
41409     
41410     setValue : function(v)
41411     {
41412         v = String(this.fixPrecision(v)).replace(".", this.decimalSeparator);
41413         
41414         this.value = v;
41415         
41416         if(this.rendered){
41417             
41418             this.hiddenEl().dom.value = (v === null || v === undefined ? '' : v);
41419             
41420             this.inputEl().dom.value = (v == '') ? '' :
41421                 Roo.util.Format.number(v, this.decimalPrecision, this.thousandsDelimiter || '');
41422             
41423             if(!this.allowZero && v === '0') {
41424                 this.hiddenEl().dom.value = '';
41425                 this.inputEl().dom.value = '';
41426             }
41427             
41428             this.validate();
41429         }
41430     },
41431     
41432     getRawValue : function()
41433     {
41434         var v = this.inputEl().getValue();
41435         
41436         return v;
41437     },
41438     
41439     getValue : function()
41440     {
41441         return this.fixPrecision(this.parseValue(this.getRawValue()));
41442     },
41443     
41444     parseValue : function(value)
41445     {
41446         if(this.thousandsDelimiter) {
41447             value += "";
41448             r = new RegExp(",", "g");
41449             value = value.replace(r, "");
41450         }
41451         
41452         value = parseFloat(String(value).replace(this.decimalSeparator, "."));
41453         return isNaN(value) ? '' : value;
41454         
41455     },
41456     
41457     fixPrecision : function(value)
41458     {
41459         if(this.thousandsDelimiter) {
41460             value += "";
41461             r = new RegExp(",", "g");
41462             value = value.replace(r, "");
41463         }
41464         
41465         var nan = isNaN(value);
41466         
41467         if(!this.allowDecimals || this.decimalPrecision == -1 || nan || !value){
41468             return nan ? '' : value;
41469         }
41470         return parseFloat(value).toFixed(this.decimalPrecision);
41471     },
41472     
41473     decimalPrecisionFcn : function(v)
41474     {
41475         return Math.floor(v);
41476     },
41477     
41478     validateValue : function(value)
41479     {
41480         if(!Roo.bootstrap.MoneyField.superclass.validateValue.call(this, value)){
41481             return false;
41482         }
41483         
41484         var num = this.parseValue(value);
41485         
41486         if(isNaN(num)){
41487             this.markInvalid(String.format(this.nanText, value));
41488             return false;
41489         }
41490         
41491         if(num < this.minValue){
41492             this.markInvalid(String.format(this.minText, this.minValue));
41493             return false;
41494         }
41495         
41496         if(num > this.maxValue){
41497             this.markInvalid(String.format(this.maxText, this.maxValue));
41498             return false;
41499         }
41500         
41501         return true;
41502     },
41503     
41504     validate : function()
41505     {
41506         if(this.disabled || this.allowBlank){
41507             this.markValid();
41508             return true;
41509         }
41510         
41511         var currency = this.getCurrency();
41512         
41513         if(this.validateValue(this.getRawValue()) && currency.length){
41514             this.markValid();
41515             return true;
41516         }
41517         
41518         this.markInvalid();
41519         return false;
41520     },
41521     
41522     getName: function()
41523     {
41524         return this.name;
41525     },
41526     
41527     beforeBlur : function()
41528     {
41529         if(!this.castInt){
41530             return;
41531         }
41532         
41533         var v = this.parseValue(this.getRawValue());
41534         
41535         if(v || v == 0){
41536             this.setValue(v);
41537         }
41538     },
41539     
41540     onBlur : function()
41541     {
41542         this.beforeBlur();
41543         
41544         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
41545             //this.el.removeClass(this.focusClass);
41546         }
41547         
41548         this.hasFocus = false;
41549         
41550         if(this.validationEvent !== false && this.validateOnBlur && this.validationEvent != "blur"){
41551             this.validate();
41552         }
41553         
41554         var v = this.getValue();
41555         
41556         if(String(v) !== String(this.startValue)){
41557             this.fireEvent('change', this, v, this.startValue);
41558         }
41559         
41560         this.fireEvent("blur", this);
41561     },
41562     
41563     inputEl : function()
41564     {
41565         return this.el.select('.roo-money-amount-input', true).first();
41566     },
41567     
41568     currencyEl : function()
41569     {
41570         return this.el.select('.roo-money-currency-input', true).first();
41571     },
41572     
41573     hiddenEl : function()
41574     {
41575         return this.el.select('input.hidden-number-input',true).first();
41576     }
41577     
41578 });/**
41579  * @class Roo.bootstrap.BezierSignature
41580  * @extends Roo.bootstrap.Component
41581  * Bootstrap BezierSignature class
41582  * This script refer to:
41583  *    Title: Signature Pad
41584  *    Author: szimek
41585  *    Availability: https://github.com/szimek/signature_pad
41586  *
41587  * @constructor
41588  * Create a new BezierSignature
41589  * @param {Object} config The config object
41590  */
41591
41592 Roo.bootstrap.BezierSignature = function(config){
41593     Roo.bootstrap.BezierSignature.superclass.constructor.call(this, config);
41594     this.addEvents({
41595         "resize" : true
41596     });
41597 };
41598
41599 Roo.extend(Roo.bootstrap.BezierSignature, Roo.bootstrap.Component,
41600 {
41601      
41602     curve_data: [],
41603     
41604     is_empty: true,
41605     
41606     mouse_btn_down: true,
41607     
41608     /**
41609      * @cfg {int} canvas height
41610      */
41611     canvas_height: '200px',
41612     
41613     /**
41614      * @cfg {float|function} Radius of a single dot.
41615      */ 
41616     dot_size: false,
41617     
41618     /**
41619      * @cfg {float} Minimum width of a line. Defaults to 0.5.
41620      */
41621     min_width: 0.5,
41622     
41623     /**
41624      * @cfg {float} Maximum width of a line. Defaults to 2.5.
41625      */
41626     max_width: 2.5,
41627     
41628     /**
41629      * @cfg {integer} Draw the next point at most once per every x milliseconds. Set it to 0 to turn off throttling. Defaults to 16.
41630      */
41631     throttle: 16,
41632     
41633     /**
41634      * @cfg {integer} Add the next point only if the previous one is farther than x pixels. Defaults to 5.
41635      */
41636     min_distance: 5,
41637     
41638     /**
41639      * @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.
41640      */
41641     bg_color: 'rgba(0, 0, 0, 0)',
41642     
41643     /**
41644      * @cfg {string} Color used to draw the lines. Can be any color format accepted by context.fillStyle. Defaults to "black".
41645      */
41646     dot_color: 'black',
41647     
41648     /**
41649      * @cfg {float} Weight used to modify new velocity based on the previous velocity. Defaults to 0.7.
41650      */ 
41651     velocity_filter_weight: 0.7,
41652     
41653     /**
41654      * @cfg {function} Callback when stroke begin. 
41655      */
41656     onBegin: false,
41657     
41658     /**
41659      * @cfg {function} Callback when stroke end.
41660      */
41661     onEnd: false,
41662     
41663     getAutoCreate : function()
41664     {
41665         var cls = 'roo-signature column';
41666         
41667         if(this.cls){
41668             cls += ' ' + this.cls;
41669         }
41670         
41671         var col_sizes = [
41672             'lg',
41673             'md',
41674             'sm',
41675             'xs'
41676         ];
41677         
41678         for(var i = 0; i < col_sizes.length; i++) {
41679             if(this[col_sizes[i]]) {
41680                 cls += " col-"+col_sizes[i]+"-"+this[col_sizes[i]];
41681             }
41682         }
41683         
41684         var cfg = {
41685             tag: 'div',
41686             cls: cls,
41687             cn: [
41688                 {
41689                     tag: 'div',
41690                     cls: 'roo-signature-body',
41691                     cn: [
41692                         {
41693                             tag: 'canvas',
41694                             cls: 'roo-signature-body-canvas',
41695                             height: this.canvas_height,
41696                             width: this.canvas_width
41697                         }
41698                     ]
41699                 },
41700                 {
41701                     tag: 'input',
41702                     type: 'file',
41703                     style: 'display: none'
41704                 }
41705             ]
41706         };
41707         
41708         return cfg;
41709     },
41710     
41711     initEvents: function() 
41712     {
41713         Roo.bootstrap.BezierSignature.superclass.initEvents.call(this);
41714         
41715         var canvas = this.canvasEl();
41716         
41717         // mouse && touch event swapping...
41718         canvas.dom.style.touchAction = 'none';
41719         canvas.dom.style.msTouchAction = 'none';
41720         
41721         this.mouse_btn_down = false;
41722         canvas.on('mousedown', this._handleMouseDown, this);
41723         canvas.on('mousemove', this._handleMouseMove, this);
41724         Roo.select('html').first().on('mouseup', this._handleMouseUp, this);
41725         
41726         if (window.PointerEvent) {
41727             canvas.on('pointerdown', this._handleMouseDown, this);
41728             canvas.on('pointermove', this._handleMouseMove, this);
41729             Roo.select('html').first().on('pointerup', this._handleMouseUp, this);
41730         }
41731         
41732         if ('ontouchstart' in window) {
41733             canvas.on('touchstart', this._handleTouchStart, this);
41734             canvas.on('touchmove', this._handleTouchMove, this);
41735             canvas.on('touchend', this._handleTouchEnd, this);
41736         }
41737         
41738         Roo.EventManager.onWindowResize(this.resize, this, true);
41739         
41740         // file input event
41741         this.fileEl().on('change', this.uploadImage, this);
41742         
41743         this.clear();
41744         
41745         this.resize();
41746     },
41747     
41748     resize: function(){
41749         
41750         var canvas = this.canvasEl().dom;
41751         var ctx = this.canvasElCtx();
41752         var img_data = false;
41753         
41754         if(canvas.width > 0) {
41755             var img_data = ctx.getImageData(0, 0, canvas.width, canvas.height);
41756         }
41757         // setting canvas width will clean img data
41758         canvas.width = 0;
41759         
41760         var style = window.getComputedStyle ? 
41761             getComputedStyle(this.el.dom, null) : this.el.dom.currentStyle;
41762             
41763         var padding_left = parseInt(style.paddingLeft) || 0;
41764         var padding_right = parseInt(style.paddingRight) || 0;
41765         
41766         canvas.width = this.el.dom.clientWidth - padding_left - padding_right;
41767         
41768         if(img_data) {
41769             ctx.putImageData(img_data, 0, 0);
41770         }
41771     },
41772     
41773     _handleMouseDown: function(e)
41774     {
41775         if (e.browserEvent.which === 1) {
41776             this.mouse_btn_down = true;
41777             this.strokeBegin(e);
41778         }
41779     },
41780     
41781     _handleMouseMove: function (e)
41782     {
41783         if (this.mouse_btn_down) {
41784             this.strokeMoveUpdate(e);
41785         }
41786     },
41787     
41788     _handleMouseUp: function (e)
41789     {
41790         if (e.browserEvent.which === 1 && this.mouse_btn_down) {
41791             this.mouse_btn_down = false;
41792             this.strokeEnd(e);
41793         }
41794     },
41795     
41796     _handleTouchStart: function (e) {
41797         
41798         e.preventDefault();
41799         if (e.browserEvent.targetTouches.length === 1) {
41800             // var touch = e.browserEvent.changedTouches[0];
41801             // this.strokeBegin(touch);
41802             
41803              this.strokeBegin(e); // assume e catching the correct xy...
41804         }
41805     },
41806     
41807     _handleTouchMove: function (e) {
41808         e.preventDefault();
41809         // var touch = event.targetTouches[0];
41810         // _this._strokeMoveUpdate(touch);
41811         this.strokeMoveUpdate(e);
41812     },
41813     
41814     _handleTouchEnd: function (e) {
41815         var wasCanvasTouched = e.target === this.canvasEl().dom;
41816         if (wasCanvasTouched) {
41817             e.preventDefault();
41818             // var touch = event.changedTouches[0];
41819             // _this._strokeEnd(touch);
41820             this.strokeEnd(e);
41821         }
41822     },
41823     
41824     reset: function () {
41825         this._lastPoints = [];
41826         this._lastVelocity = 0;
41827         this._lastWidth = (this.min_width + this.max_width) / 2;
41828         this.canvasElCtx().fillStyle = this.dot_color;
41829     },
41830     
41831     strokeMoveUpdate: function(e)
41832     {
41833         this.strokeUpdate(e);
41834         
41835         if (this.throttle) {
41836             this.throttleStroke(this.strokeUpdate, this.throttle);
41837         }
41838         else {
41839             this.strokeUpdate(e);
41840         }
41841     },
41842     
41843     strokeBegin: function(e)
41844     {
41845         var newPointGroup = {
41846             color: this.dot_color,
41847             points: []
41848         };
41849         
41850         if (typeof this.onBegin === 'function') {
41851             this.onBegin(e);
41852         }
41853         
41854         this.curve_data.push(newPointGroup);
41855         this.reset();
41856         this.strokeUpdate(e);
41857     },
41858     
41859     strokeUpdate: function(e)
41860     {
41861         var rect = this.canvasEl().dom.getBoundingClientRect();
41862         var point = new this.Point(e.xy[0] - rect.left, e.xy[1] - rect.top, new Date().getTime());
41863         var lastPointGroup = this.curve_data[this.curve_data.length - 1];
41864         var lastPoints = lastPointGroup.points;
41865         var lastPoint = lastPoints.length > 0 && lastPoints[lastPoints.length - 1];
41866         var isLastPointTooClose = lastPoint
41867             ? point.distanceTo(lastPoint) <= this.min_distance
41868             : false;
41869         var color = lastPointGroup.color;
41870         if (!lastPoint || !(lastPoint && isLastPointTooClose)) {
41871             var curve = this.addPoint(point);
41872             if (!lastPoint) {
41873                 this.drawDot({color: color, point: point});
41874             }
41875             else if (curve) {
41876                 this.drawCurve({color: color, curve: curve});
41877             }
41878             lastPoints.push({
41879                 time: point.time,
41880                 x: point.x,
41881                 y: point.y
41882             });
41883         }
41884     },
41885     
41886     strokeEnd: function(e)
41887     {
41888         this.strokeUpdate(e);
41889         if (typeof this.onEnd === 'function') {
41890             this.onEnd(e);
41891         }
41892     },
41893     
41894     addPoint:  function (point) {
41895         var _lastPoints = this._lastPoints;
41896         _lastPoints.push(point);
41897         if (_lastPoints.length > 2) {
41898             if (_lastPoints.length === 3) {
41899                 _lastPoints.unshift(_lastPoints[0]);
41900             }
41901             var widths = this.calculateCurveWidths(_lastPoints[1], _lastPoints[2]);
41902             var curve = this.Bezier.fromPoints(_lastPoints, widths, this);
41903             _lastPoints.shift();
41904             return curve;
41905         }
41906         return null;
41907     },
41908     
41909     calculateCurveWidths: function (startPoint, endPoint) {
41910         var velocity = this.velocity_filter_weight * endPoint.velocityFrom(startPoint) +
41911             (1 - this.velocity_filter_weight) * this._lastVelocity;
41912
41913         var newWidth = Math.max(this.max_width / (velocity + 1), this.min_width);
41914         var widths = {
41915             end: newWidth,
41916             start: this._lastWidth
41917         };
41918         
41919         this._lastVelocity = velocity;
41920         this._lastWidth = newWidth;
41921         return widths;
41922     },
41923     
41924     drawDot: function (_a) {
41925         var color = _a.color, point = _a.point;
41926         var ctx = this.canvasElCtx();
41927         var width = typeof this.dot_size === 'function' ? this.dot_size() : this.dot_size;
41928         ctx.beginPath();
41929         this.drawCurveSegment(point.x, point.y, width);
41930         ctx.closePath();
41931         ctx.fillStyle = color;
41932         ctx.fill();
41933     },
41934     
41935     drawCurve: function (_a) {
41936         var color = _a.color, curve = _a.curve;
41937         var ctx = this.canvasElCtx();
41938         var widthDelta = curve.endWidth - curve.startWidth;
41939         var drawSteps = Math.floor(curve.length()) * 2;
41940         ctx.beginPath();
41941         ctx.fillStyle = color;
41942         for (var i = 0; i < drawSteps; i += 1) {
41943         var t = i / drawSteps;
41944         var tt = t * t;
41945         var ttt = tt * t;
41946         var u = 1 - t;
41947         var uu = u * u;
41948         var uuu = uu * u;
41949         var x = uuu * curve.startPoint.x;
41950         x += 3 * uu * t * curve.control1.x;
41951         x += 3 * u * tt * curve.control2.x;
41952         x += ttt * curve.endPoint.x;
41953         var y = uuu * curve.startPoint.y;
41954         y += 3 * uu * t * curve.control1.y;
41955         y += 3 * u * tt * curve.control2.y;
41956         y += ttt * curve.endPoint.y;
41957         var width = curve.startWidth + ttt * widthDelta;
41958         this.drawCurveSegment(x, y, width);
41959         }
41960         ctx.closePath();
41961         ctx.fill();
41962     },
41963     
41964     drawCurveSegment: function (x, y, width) {
41965         var ctx = this.canvasElCtx();
41966         ctx.moveTo(x, y);
41967         ctx.arc(x, y, width, 0, 2 * Math.PI, false);
41968         this.is_empty = false;
41969     },
41970     
41971     clear: function()
41972     {
41973         var ctx = this.canvasElCtx();
41974         var canvas = this.canvasEl().dom;
41975         ctx.fillStyle = this.bg_color;
41976         ctx.clearRect(0, 0, canvas.width, canvas.height);
41977         ctx.fillRect(0, 0, canvas.width, canvas.height);
41978         this.curve_data = [];
41979         this.reset();
41980         this.is_empty = true;
41981     },
41982     
41983     fileEl: function()
41984     {
41985         return  this.el.select('input',true).first();
41986     },
41987     
41988     canvasEl: function()
41989     {
41990         return this.el.select('canvas',true).first();
41991     },
41992     
41993     canvasElCtx: function()
41994     {
41995         return this.el.select('canvas',true).first().dom.getContext('2d');
41996     },
41997     
41998     getImage: function(type)
41999     {
42000         if(this.is_empty) {
42001             return false;
42002         }
42003         
42004         // encryption ?
42005         return this.canvasEl().dom.toDataURL('image/'+type, 1);
42006     },
42007     
42008     drawFromImage: function(img_src)
42009     {
42010         var img = new Image();
42011         
42012         img.onload = function(){
42013             this.canvasElCtx().drawImage(img, 0, 0);
42014         }.bind(this);
42015         
42016         img.src = img_src;
42017         
42018         this.is_empty = false;
42019     },
42020     
42021     selectImage: function()
42022     {
42023         this.fileEl().dom.click();
42024     },
42025     
42026     uploadImage: function(e)
42027     {
42028         var reader = new FileReader();
42029         
42030         reader.onload = function(e){
42031             var img = new Image();
42032             img.onload = function(){
42033                 this.reset();
42034                 this.canvasElCtx().drawImage(img, 0, 0);
42035             }.bind(this);
42036             img.src = e.target.result;
42037         }.bind(this);
42038         
42039         reader.readAsDataURL(e.target.files[0]);
42040     },
42041     
42042     // Bezier Point Constructor
42043     Point: (function () {
42044         function Point(x, y, time) {
42045             this.x = x;
42046             this.y = y;
42047             this.time = time || Date.now();
42048         }
42049         Point.prototype.distanceTo = function (start) {
42050             return Math.sqrt(Math.pow(this.x - start.x, 2) + Math.pow(this.y - start.y, 2));
42051         };
42052         Point.prototype.equals = function (other) {
42053             return this.x === other.x && this.y === other.y && this.time === other.time;
42054         };
42055         Point.prototype.velocityFrom = function (start) {
42056             return this.time !== start.time
42057             ? this.distanceTo(start) / (this.time - start.time)
42058             : 0;
42059         };
42060         return Point;
42061     }()),
42062     
42063     
42064     // Bezier Constructor
42065     Bezier: (function () {
42066         function Bezier(startPoint, control2, control1, endPoint, startWidth, endWidth) {
42067             this.startPoint = startPoint;
42068             this.control2 = control2;
42069             this.control1 = control1;
42070             this.endPoint = endPoint;
42071             this.startWidth = startWidth;
42072             this.endWidth = endWidth;
42073         }
42074         Bezier.fromPoints = function (points, widths, scope) {
42075             var c2 = this.calculateControlPoints(points[0], points[1], points[2], scope).c2;
42076             var c3 = this.calculateControlPoints(points[1], points[2], points[3], scope).c1;
42077             return new Bezier(points[1], c2, c3, points[2], widths.start, widths.end);
42078         };
42079         Bezier.calculateControlPoints = function (s1, s2, s3, scope) {
42080             var dx1 = s1.x - s2.x;
42081             var dy1 = s1.y - s2.y;
42082             var dx2 = s2.x - s3.x;
42083             var dy2 = s2.y - s3.y;
42084             var m1 = { x: (s1.x + s2.x) / 2.0, y: (s1.y + s2.y) / 2.0 };
42085             var m2 = { x: (s2.x + s3.x) / 2.0, y: (s2.y + s3.y) / 2.0 };
42086             var l1 = Math.sqrt(dx1 * dx1 + dy1 * dy1);
42087             var l2 = Math.sqrt(dx2 * dx2 + dy2 * dy2);
42088             var dxm = m1.x - m2.x;
42089             var dym = m1.y - m2.y;
42090             var k = l2 / (l1 + l2);
42091             var cm = { x: m2.x + dxm * k, y: m2.y + dym * k };
42092             var tx = s2.x - cm.x;
42093             var ty = s2.y - cm.y;
42094             return {
42095                 c1: new scope.Point(m1.x + tx, m1.y + ty),
42096                 c2: new scope.Point(m2.x + tx, m2.y + ty)
42097             };
42098         };
42099         Bezier.prototype.length = function () {
42100             var steps = 10;
42101             var length = 0;
42102             var px;
42103             var py;
42104             for (var i = 0; i <= steps; i += 1) {
42105                 var t = i / steps;
42106                 var cx = this.point(t, this.startPoint.x, this.control1.x, this.control2.x, this.endPoint.x);
42107                 var cy = this.point(t, this.startPoint.y, this.control1.y, this.control2.y, this.endPoint.y);
42108                 if (i > 0) {
42109                     var xdiff = cx - px;
42110                     var ydiff = cy - py;
42111                     length += Math.sqrt(xdiff * xdiff + ydiff * ydiff);
42112                 }
42113                 px = cx;
42114                 py = cy;
42115             }
42116             return length;
42117         };
42118         Bezier.prototype.point = function (t, start, c1, c2, end) {
42119             return (start * (1.0 - t) * (1.0 - t) * (1.0 - t))
42120             + (3.0 * c1 * (1.0 - t) * (1.0 - t) * t)
42121             + (3.0 * c2 * (1.0 - t) * t * t)
42122             + (end * t * t * t);
42123         };
42124         return Bezier;
42125     }()),
42126     
42127     throttleStroke: function(fn, wait) {
42128       if (wait === void 0) { wait = 250; }
42129       var previous = 0;
42130       var timeout = null;
42131       var result;
42132       var storedContext;
42133       var storedArgs;
42134       var later = function () {
42135           previous = Date.now();
42136           timeout = null;
42137           result = fn.apply(storedContext, storedArgs);
42138           if (!timeout) {
42139               storedContext = null;
42140               storedArgs = [];
42141           }
42142       };
42143       return function wrapper() {
42144           var args = [];
42145           for (var _i = 0; _i < arguments.length; _i++) {
42146               args[_i] = arguments[_i];
42147           }
42148           var now = Date.now();
42149           var remaining = wait - (now - previous);
42150           storedContext = this;
42151           storedArgs = args;
42152           if (remaining <= 0 || remaining > wait) {
42153               if (timeout) {
42154                   clearTimeout(timeout);
42155                   timeout = null;
42156               }
42157               previous = now;
42158               result = fn.apply(storedContext, storedArgs);
42159               if (!timeout) {
42160                   storedContext = null;
42161                   storedArgs = [];
42162               }
42163           }
42164           else if (!timeout) {
42165               timeout = window.setTimeout(later, remaining);
42166           }
42167           return result;
42168       };
42169   }
42170   
42171 });
42172
42173  
42174
42175