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  && 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 {Number} width fixed width - usefull for chrome extension only really.
2655  * @cfg {Number} height fixed height - usefull for chrome extension only really.
2656  * @cfg {String} size (sm|lg) default empty
2657  * @cfg {Number} max_width set the max width of modal
2658  *
2659  *
2660  * @constructor
2661  * Create a new Modal Dialog
2662  * @param {Object} config The config object
2663  */
2664
2665 Roo.bootstrap.Modal = function(config){
2666     Roo.bootstrap.Modal.superclass.constructor.call(this, config);
2667     this.addEvents({
2668         // raw events
2669         /**
2670          * @event btnclick
2671          * The raw btnclick event for the button
2672          * @param {Roo.EventObject} e
2673          */
2674         "btnclick" : true,
2675         /**
2676          * @event resize
2677          * Fire when dialog resize
2678          * @param {Roo.bootstrap.Modal} this
2679          * @param {Roo.EventObject} e
2680          */
2681         "resize" : true
2682     });
2683     this.buttons = this.buttons || [];
2684
2685     if (this.tmpl) {
2686         this.tmpl = Roo.factory(this.tmpl);
2687     }
2688
2689 };
2690
2691 Roo.extend(Roo.bootstrap.Modal, Roo.bootstrap.Component,  {
2692
2693     title : 'test dialog',
2694
2695     buttons : false,
2696
2697     // set on load...
2698
2699     html: false,
2700
2701     tmp: false,
2702
2703     specificTitle: false,
2704
2705     buttonPosition: 'right',
2706
2707     allow_close : true,
2708
2709     animate : true,
2710
2711     fitwindow: false,
2712     
2713      // private
2714     dialogEl: false,
2715     bodyEl:  false,
2716     footerEl:  false,
2717     titleEl:  false,
2718     closeEl:  false,
2719
2720     size: '',
2721     
2722     max_width: 0,
2723     
2724     max_height: 0,
2725     
2726     fit_content: false,
2727
2728     onRender : function(ct, position)
2729     {
2730         Roo.bootstrap.Component.superclass.onRender.call(this, ct, position);
2731
2732         if(!this.el){
2733             var cfg = Roo.apply({},  this.getAutoCreate());
2734             cfg.id = Roo.id();
2735             //if(!cfg.name){
2736             //    cfg.name = typeof(this.name) == 'undefined' ? this.id : this.name;
2737             //}
2738             //if (!cfg.name.length) {
2739             //    delete cfg.name;
2740            // }
2741             if (this.cls) {
2742                 cfg.cls += ' ' + this.cls;
2743             }
2744             if (this.style) {
2745                 cfg.style = this.style;
2746             }
2747             this.el = Roo.get(document.body).createChild(cfg, position);
2748         }
2749         //var type = this.el.dom.type;
2750
2751
2752         if(this.tabIndex !== undefined){
2753             this.el.dom.setAttribute('tabIndex', this.tabIndex);
2754         }
2755
2756         this.dialogEl = this.el.select('.modal-dialog',true).first();
2757         this.bodyEl = this.el.select('.modal-body',true).first();
2758         this.closeEl = this.el.select('.modal-header .close', true).first();
2759         this.headerEl = this.el.select('.modal-header',true).first();
2760         this.titleEl = this.el.select('.modal-title',true).first();
2761         this.footerEl = this.el.select('.modal-footer',true).first();
2762
2763         this.maskEl = Roo.DomHelper.append(document.body, {tag: "div", cls:"x-dlg-mask"}, true);
2764         
2765         //this.el.addClass("x-dlg-modal");
2766
2767         if (this.buttons.length) {
2768             Roo.each(this.buttons, function(bb) {
2769                 var b = Roo.apply({}, bb);
2770                 b.xns = b.xns || Roo.bootstrap;
2771                 b.xtype = b.xtype || 'Button';
2772                 if (typeof(b.listeners) == 'undefined') {
2773                     b.listeners = { click : this.onButtonClick.createDelegate(this)  };
2774                 }
2775
2776                 var btn = Roo.factory(b);
2777
2778                 btn.render(this.getButtonContainer());
2779
2780             },this);
2781         }
2782         // render the children.
2783         var nitems = [];
2784
2785         if(typeof(this.items) != 'undefined'){
2786             var items = this.items;
2787             delete this.items;
2788
2789             for(var i =0;i < items.length;i++) {
2790                 nitems.push(this.addxtype(Roo.apply({}, items[i])));
2791             }
2792         }
2793
2794         this.items = nitems;
2795
2796         // where are these used - they used to be body/close/footer
2797
2798
2799         this.initEvents();
2800         //this.el.addClass([this.fieldClass, this.cls]);
2801
2802     },
2803
2804     getAutoCreate : function()
2805     {
2806         var bdy = {
2807                 cls : 'modal-body',
2808                 html : this.html || ''
2809         };
2810
2811         var title = {
2812             tag: 'h4',
2813             cls : 'modal-title',
2814             html : this.title
2815         };
2816
2817         if(this.specificTitle){
2818             title = this.title;
2819
2820         }
2821
2822         var header = [];
2823         if (this.allow_close && Roo.bootstrap.version == 3) {
2824             header.push({
2825                 tag: 'button',
2826                 cls : 'close',
2827                 html : '&times'
2828             });
2829         }
2830
2831         header.push(title);
2832
2833         if (this.allow_close && Roo.bootstrap.version == 4) {
2834             header.push({
2835                 tag: 'button',
2836                 cls : 'close',
2837                 html : '&times'
2838             });
2839         }
2840         
2841         var size = '';
2842
2843         if(this.size.length){
2844             size = 'modal-' + this.size;
2845         }
2846         
2847         var footer = Roo.bootstrap.version == 3 ?
2848             {
2849                 cls : 'modal-footer',
2850                 cn : [
2851                     {
2852                         tag: 'div',
2853                         cls: 'btn-' + this.buttonPosition
2854                     }
2855                 ]
2856
2857             } :
2858             {  // BS4 uses mr-auto on left buttons....
2859                 cls : 'modal-footer'
2860             };
2861
2862             
2863
2864         
2865         
2866         var modal = {
2867             cls: "modal",
2868              cn : [
2869                 {
2870                     cls: "modal-dialog " + size,
2871                     cn : [
2872                         {
2873                             cls : "modal-content",
2874                             cn : [
2875                                 {
2876                                     cls : 'modal-header',
2877                                     cn : header
2878                                 },
2879                                 bdy,
2880                                 footer
2881                             ]
2882
2883                         }
2884                     ]
2885
2886                 }
2887             ]
2888         };
2889
2890         if(this.animate){
2891             modal.cls += ' fade';
2892         }
2893
2894         return modal;
2895
2896     },
2897     getChildContainer : function() {
2898
2899          return this.bodyEl;
2900
2901     },
2902     getButtonContainer : function() {
2903         
2904          return Roo.bootstrap.version == 4 ?
2905             this.el.select('.modal-footer',true).first()
2906             : this.el.select('.modal-footer div',true).first();
2907
2908     },
2909     initEvents : function()
2910     {
2911         if (this.allow_close) {
2912             this.closeEl.on('click', this.hide, this);
2913         }
2914         Roo.EventManager.onWindowResize(this.resize, this, true);
2915
2916
2917     },
2918   
2919
2920     resize : function()
2921     {
2922         this.maskEl.setSize(
2923             Roo.lib.Dom.getViewWidth(true),
2924             Roo.lib.Dom.getViewHeight(true)
2925         );
2926         
2927         if (this.fitwindow) {
2928             
2929            
2930             this.setSize(
2931                 this.width || Roo.lib.Dom.getViewportWidth(true) - 30,
2932                 this.height || Roo.lib.Dom.getViewportHeight(true) // catering margin-top 30 margin-bottom 30
2933             );
2934             return;
2935         }
2936         
2937         if(this.max_width !== 0) {
2938             
2939             var w = Math.min(this.max_width, Roo.lib.Dom.getViewportWidth(true) - 30);
2940             
2941             if(this.height) {
2942                 this.setSize(w, this.height);
2943                 return;
2944             }
2945             
2946             if(this.max_height) {
2947                 this.setSize(w,Math.min(
2948                     this.max_height,
2949                     Roo.lib.Dom.getViewportHeight(true) - 60
2950                 ));
2951                 
2952                 return;
2953             }
2954             
2955             if(!this.fit_content) {
2956                 this.setSize(w, Roo.lib.Dom.getViewportHeight(true) - 60);
2957                 return;
2958             }
2959             
2960             this.setSize(w, Math.min(
2961                 60 +
2962                 this.headerEl.getHeight() + 
2963                 this.footerEl.getHeight() + 
2964                 this.getChildHeight(this.bodyEl.dom.childNodes),
2965                 Roo.lib.Dom.getViewportHeight(true) - 60)
2966             );
2967         }
2968         
2969     },
2970
2971     setSize : function(w,h)
2972     {
2973         if (!w && !h) {
2974             return;
2975         }
2976         
2977         this.resizeTo(w,h);
2978     },
2979
2980     show : function() {
2981
2982         if (!this.rendered) {
2983             this.render();
2984         }
2985
2986         //this.el.setStyle('display', 'block');
2987         this.el.removeClass('hideing');
2988         this.el.dom.style.display='block';
2989         
2990         Roo.get(document.body).addClass('modal-open');
2991  
2992         if(this.animate){  // element has 'fade'  - so stuff happens after .3s ?- not sure why the delay?
2993             
2994             (function(){
2995                 this.el.addClass('show');
2996                 this.el.addClass('in');
2997             }).defer(50, this);
2998         }else{
2999             this.el.addClass('show');
3000             this.el.addClass('in');
3001         }
3002
3003         // not sure how we can show data in here..
3004         //if (this.tmpl) {
3005         //    this.getChildContainer().dom.innerHTML = this.tmpl.applyTemplate(this);
3006         //}
3007
3008         Roo.get(document.body).addClass("x-body-masked");
3009         
3010         this.maskEl.setSize(Roo.lib.Dom.getViewWidth(true),   Roo.lib.Dom.getViewHeight(true));
3011         this.maskEl.setStyle('z-index', Roo.bootstrap.Modal.zIndex++);
3012         this.maskEl.dom.style.display = 'block';
3013         this.maskEl.addClass('show');
3014         
3015         
3016         this.resize();
3017         
3018         this.fireEvent('show', this);
3019
3020         // set zindex here - otherwise it appears to be ignored...
3021         this.el.setStyle('z-index', Roo.bootstrap.Modal.zIndex++);
3022
3023         (function () {
3024             this.items.forEach( function(e) {
3025                 e.layout ? e.layout() : false;
3026
3027             });
3028         }).defer(100,this);
3029
3030     },
3031     hide : function()
3032     {
3033         if(this.fireEvent("beforehide", this) !== false){
3034             
3035             this.maskEl.removeClass('show');
3036             
3037             this.maskEl.dom.style.display = '';
3038             Roo.get(document.body).removeClass("x-body-masked");
3039             this.el.removeClass('in');
3040             this.el.select('.modal-dialog', true).first().setStyle('transform','');
3041
3042             if(this.animate){ // why
3043                 this.el.addClass('hideing');
3044                 this.el.removeClass('show');
3045                 (function(){
3046                     if (!this.el.hasClass('hideing')) {
3047                         return; // it's been shown again...
3048                     }
3049                     
3050                     this.el.dom.style.display='';
3051
3052                     Roo.get(document.body).removeClass('modal-open');
3053                     this.el.removeClass('hideing');
3054                 }).defer(150,this);
3055                 
3056             }else{
3057                 this.el.removeClass('show');
3058                 this.el.dom.style.display='';
3059                 Roo.get(document.body).removeClass('modal-open');
3060
3061             }
3062             this.fireEvent('hide', this);
3063         }
3064     },
3065     isVisible : function()
3066     {
3067         
3068         return this.el.hasClass('show') && !this.el.hasClass('hideing');
3069         
3070     },
3071
3072     addButton : function(str, cb)
3073     {
3074
3075
3076         var b = Roo.apply({}, { html : str } );
3077         b.xns = b.xns || Roo.bootstrap;
3078         b.xtype = b.xtype || 'Button';
3079         if (typeof(b.listeners) == 'undefined') {
3080             b.listeners = { click : cb.createDelegate(this)  };
3081         }
3082
3083         var btn = Roo.factory(b);
3084
3085         btn.render(this.getButtonContainer());
3086
3087         return btn;
3088
3089     },
3090
3091     setDefaultButton : function(btn)
3092     {
3093         //this.el.select('.modal-footer').()
3094     },
3095
3096     resizeTo: function(w,h)
3097     {
3098         this.dialogEl.setWidth(w);
3099         
3100         var diff = this.headerEl.getHeight() + this.footerEl.getHeight() + 60; // dialog margin-bottom: 30  
3101
3102         this.bodyEl.setHeight(h - diff);
3103         
3104         this.fireEvent('resize', this);
3105     },
3106     
3107     setContentSize  : function(w, h)
3108     {
3109
3110     },
3111     onButtonClick: function(btn,e)
3112     {
3113         //Roo.log([a,b,c]);
3114         this.fireEvent('btnclick', btn.name, e);
3115     },
3116      /**
3117      * Set the title of the Dialog
3118      * @param {String} str new Title
3119      */
3120     setTitle: function(str) {
3121         this.titleEl.dom.innerHTML = str;
3122     },
3123     /**
3124      * Set the body of the Dialog
3125      * @param {String} str new Title
3126      */
3127     setBody: function(str) {
3128         this.bodyEl.dom.innerHTML = str;
3129     },
3130     /**
3131      * Set the body of the Dialog using the template
3132      * @param {Obj} data - apply this data to the template and replace the body contents.
3133      */
3134     applyBody: function(obj)
3135     {
3136         if (!this.tmpl) {
3137             Roo.log("Error - using apply Body without a template");
3138             //code
3139         }
3140         this.tmpl.overwrite(this.bodyEl, obj);
3141     },
3142     
3143     getChildHeight : function(child_nodes)
3144     {
3145         if(
3146             !child_nodes ||
3147             child_nodes.length == 0
3148         ) {
3149             return;
3150         }
3151         
3152         var child_height = 0;
3153         
3154         for(var i = 0; i < child_nodes.length; i++) {
3155             
3156             /*
3157             * for modal with tabs...
3158             if(child_nodes[i].classList.contains('roo-layout-panel')) {
3159                 
3160                 var layout_childs = child_nodes[i].childNodes;
3161                 
3162                 for(var j = 0; j < layout_childs.length; j++) {
3163                     
3164                     if(layout_childs[j].classList.contains('roo-layout-panel-body')) {
3165                         
3166                         var layout_body_childs = layout_childs[j].childNodes;
3167                         
3168                         for(var k = 0; k < layout_body_childs.length; k++) {
3169                             
3170                             if(layout_body_childs[k].classList.contains('navbar')) {
3171                                 child_height += layout_body_childs[k].offsetHeight;
3172                                 continue;
3173                             }
3174                             
3175                             if(layout_body_childs[k].classList.contains('roo-layout-tabs-body')) {
3176                                 
3177                                 var layout_body_tab_childs = layout_body_childs[k].childNodes;
3178                                 
3179                                 for(var m = 0; m < layout_body_tab_childs.length; m++) {
3180                                     
3181                                     if(layout_body_tab_childs[m].classList.contains('roo-layout-active-content')) {
3182                                         child_height += this.getChildHeight(layout_body_tab_childs[m].childNodes);
3183                                         continue;
3184                                     }
3185                                     
3186                                 }
3187                                 
3188                             }
3189                             
3190                         }
3191                     }
3192                 }
3193                 continue;
3194             }
3195             */
3196             
3197             child_height += child_nodes[i].offsetHeight;
3198             // Roo.log(child_nodes[i].offsetHeight);
3199         }
3200         
3201         return child_height;
3202     }
3203
3204 });
3205
3206
3207 Roo.apply(Roo.bootstrap.Modal,  {
3208     /**
3209          * Button config that displays a single OK button
3210          * @type Object
3211          */
3212         OK :  [{
3213             name : 'ok',
3214             weight : 'primary',
3215             html : 'OK'
3216         }],
3217         /**
3218          * Button config that displays Yes and No buttons
3219          * @type Object
3220          */
3221         YESNO : [
3222             {
3223                 name  : 'no',
3224                 html : 'No'
3225             },
3226             {
3227                 name  :'yes',
3228                 weight : 'primary',
3229                 html : 'Yes'
3230             }
3231         ],
3232
3233         /**
3234          * Button config that displays OK and Cancel buttons
3235          * @type Object
3236          */
3237         OKCANCEL : [
3238             {
3239                name : 'cancel',
3240                 html : 'Cancel'
3241             },
3242             {
3243                 name : 'ok',
3244                 weight : 'primary',
3245                 html : 'OK'
3246             }
3247         ],
3248         /**
3249          * Button config that displays Yes, No and Cancel buttons
3250          * @type Object
3251          */
3252         YESNOCANCEL : [
3253             {
3254                 name : 'yes',
3255                 weight : 'primary',
3256                 html : 'Yes'
3257             },
3258             {
3259                 name : 'no',
3260                 html : 'No'
3261             },
3262             {
3263                 name : 'cancel',
3264                 html : 'Cancel'
3265             }
3266         ],
3267         
3268         zIndex : 10001
3269 });
3270 /*
3271  * - LGPL
3272  *
3273  * messagebox - can be used as a replace
3274  * 
3275  */
3276 /**
3277  * @class Roo.MessageBox
3278  * Utility class for generating different styles of message boxes.  The alias Roo.Msg can also be used.
3279  * Example usage:
3280  *<pre><code>
3281 // Basic alert:
3282 Roo.Msg.alert('Status', 'Changes saved successfully.');
3283
3284 // Prompt for user data:
3285 Roo.Msg.prompt('Name', 'Please enter your name:', function(btn, text){
3286     if (btn == 'ok'){
3287         // process text value...
3288     }
3289 });
3290
3291 // Show a dialog using config options:
3292 Roo.Msg.show({
3293    title:'Save Changes?',
3294    msg: 'Your are closing a tab that has unsaved changes. Would you like to save your changes?',
3295    buttons: Roo.Msg.YESNOCANCEL,
3296    fn: processResult,
3297    animEl: 'elId'
3298 });
3299 </code></pre>
3300  * @singleton
3301  */
3302 Roo.bootstrap.MessageBox = function(){
3303     var dlg, opt, mask, waitTimer;
3304     var bodyEl, msgEl, textboxEl, textareaEl, progressEl, pp;
3305     var buttons, activeTextEl, bwidth;
3306
3307     
3308     // private
3309     var handleButton = function(button){
3310         dlg.hide();
3311         Roo.callback(opt.fn, opt.scope||window, [button, activeTextEl.dom.value], 1);
3312     };
3313
3314     // private
3315     var handleHide = function(){
3316         if(opt && opt.cls){
3317             dlg.el.removeClass(opt.cls);
3318         }
3319         //if(waitTimer){
3320         //    Roo.TaskMgr.stop(waitTimer);
3321         //    waitTimer = null;
3322         //}
3323     };
3324
3325     // private
3326     var updateButtons = function(b){
3327         var width = 0;
3328         if(!b){
3329             buttons["ok"].hide();
3330             buttons["cancel"].hide();
3331             buttons["yes"].hide();
3332             buttons["no"].hide();
3333             dlg.footerEl.hide();
3334             
3335             return width;
3336         }
3337         dlg.footerEl.show();
3338         for(var k in buttons){
3339             if(typeof buttons[k] != "function"){
3340                 if(b[k]){
3341                     buttons[k].show();
3342                     buttons[k].setText(typeof b[k] == "string" ? b[k] : Roo.bootstrap.MessageBox.buttonText[k]);
3343                     width += buttons[k].el.getWidth()+15;
3344                 }else{
3345                     buttons[k].hide();
3346                 }
3347             }
3348         }
3349         return width;
3350     };
3351
3352     // private
3353     var handleEsc = function(d, k, e){
3354         if(opt && opt.closable !== false){
3355             dlg.hide();
3356         }
3357         if(e){
3358             e.stopEvent();
3359         }
3360     };
3361
3362     return {
3363         /**
3364          * Returns a reference to the underlying {@link Roo.BasicDialog} element
3365          * @return {Roo.BasicDialog} The BasicDialog element
3366          */
3367         getDialog : function(){
3368            if(!dlg){
3369                 dlg = new Roo.bootstrap.Modal( {
3370                     //draggable: true,
3371                     //resizable:false,
3372                     //constraintoviewport:false,
3373                     //fixedcenter:true,
3374                     //collapsible : false,
3375                     //shim:true,
3376                     //modal: true,
3377                 //    width: 'auto',
3378                   //  height:100,
3379                     //buttonAlign:"center",
3380                     closeClick : function(){
3381                         if(opt && opt.buttons && opt.buttons.no && !opt.buttons.cancel){
3382                             handleButton("no");
3383                         }else{
3384                             handleButton("cancel");
3385                         }
3386                     }
3387                 });
3388                 dlg.render();
3389                 dlg.on("hide", handleHide);
3390                 mask = dlg.mask;
3391                 //dlg.addKeyListener(27, handleEsc);
3392                 buttons = {};
3393                 this.buttons = buttons;
3394                 var bt = this.buttonText;
3395                 buttons["ok"] = dlg.addButton(bt["ok"], handleButton.createCallback("ok"));
3396                 buttons["yes"] = dlg.addButton(bt["yes"], handleButton.createCallback("yes"));
3397                 buttons["no"] = dlg.addButton(bt["no"], handleButton.createCallback("no"));
3398                 buttons["cancel"] = dlg.addButton(bt["cancel"], handleButton.createCallback("cancel"));
3399                 //Roo.log(buttons);
3400                 bodyEl = dlg.bodyEl.createChild({
3401
3402                     html:'<span class="roo-mb-text"></span><br /><input type="text" class="roo-mb-input" />' +
3403                         '<textarea class="roo-mb-textarea"></textarea>' +
3404                         '<div class="roo-mb-progress-wrap"><div class="roo-mb-progress"><div class="roo-mb-progress-bar">&#160;</div></div></div>'
3405                 });
3406                 msgEl = bodyEl.dom.firstChild;
3407                 textboxEl = Roo.get(bodyEl.dom.childNodes[2]);
3408                 textboxEl.enableDisplayMode();
3409                 textboxEl.addKeyListener([10,13], function(){
3410                     if(dlg.isVisible() && opt && opt.buttons){
3411                         if(opt.buttons.ok){
3412                             handleButton("ok");
3413                         }else if(opt.buttons.yes){
3414                             handleButton("yes");
3415                         }
3416                     }
3417                 });
3418                 textareaEl = Roo.get(bodyEl.dom.childNodes[3]);
3419                 textareaEl.enableDisplayMode();
3420                 progressEl = Roo.get(bodyEl.dom.childNodes[4]);
3421                 progressEl.enableDisplayMode();
3422                 
3423                 // This is supposed to be the progessElement.. but I think it's controlling the height of everything..
3424                 var pf = progressEl.dom.firstChild;
3425                 if (pf) {
3426                     pp = Roo.get(pf.firstChild);
3427                     pp.setHeight(pf.offsetHeight);
3428                 }
3429                 
3430             }
3431             return dlg;
3432         },
3433
3434         /**
3435          * Updates the message box body text
3436          * @param {String} text (optional) Replaces the message box element's innerHTML with the specified string (defaults to
3437          * the XHTML-compliant non-breaking space character '&amp;#160;')
3438          * @return {Roo.MessageBox} This message box
3439          */
3440         updateText : function(text)
3441         {
3442             if(!dlg.isVisible() && !opt.width){
3443                 dlg.dialogEl.setStyle({ 'max-width' : this.maxWidth});
3444                 // dlg.resizeTo(this.maxWidth, 100); // forcing the height breaks long alerts()
3445             }
3446             msgEl.innerHTML = text || '&#160;';
3447       
3448             var cw =  Math.max(msgEl.offsetWidth, msgEl.parentNode.scrollWidth);
3449             //Roo.log("guesed size: " + JSON.stringify([cw,msgEl.offsetWidth, msgEl.parentNode.scrollWidth]));
3450             var w = Math.max(
3451                     Math.min(opt.width || cw , this.maxWidth), 
3452                     Math.max(opt.minWidth || this.minWidth, bwidth)
3453             );
3454             if(opt.prompt){
3455                 activeTextEl.setWidth(w);
3456             }
3457             if(dlg.isVisible()){
3458                 dlg.fixedcenter = false;
3459             }
3460             // to big, make it scroll. = But as usual stupid IE does not support
3461             // !important..
3462             
3463             if ( bodyEl.getHeight() > (Roo.lib.Dom.getViewHeight() - 100)) {
3464                 bodyEl.setHeight ( Roo.lib.Dom.getViewHeight() - 100 );
3465                 bodyEl.dom.style.overflowY = 'auto' + ( Roo.isIE ? '' : ' !important');
3466             } else {
3467                 bodyEl.dom.style.height = '';
3468                 bodyEl.dom.style.overflowY = '';
3469             }
3470             if (cw > w) {
3471                 bodyEl.dom.style.get = 'auto' + ( Roo.isIE ? '' : ' !important');
3472             } else {
3473                 bodyEl.dom.style.overflowX = '';
3474             }
3475             
3476             dlg.setContentSize(w, bodyEl.getHeight());
3477             if(dlg.isVisible()){
3478                 dlg.fixedcenter = true;
3479             }
3480             return this;
3481         },
3482
3483         /**
3484          * Updates a progress-style message box's text and progress bar.  Only relevant on message boxes
3485          * initiated via {@link Roo.MessageBox#progress} or by calling {@link Roo.MessageBox#show} with progress: true.
3486          * @param {Number} value Any number between 0 and 1 (e.g., .5)
3487          * @param {String} text (optional) If defined, the message box's body text is replaced with the specified string (defaults to undefined)
3488          * @return {Roo.MessageBox} This message box
3489          */
3490         updateProgress : function(value, text){
3491             if(text){
3492                 this.updateText(text);
3493             }
3494             
3495             if (pp) { // weird bug on my firefox - for some reason this is not defined
3496                 pp.setWidth(Math.floor(value*progressEl.dom.firstChild.offsetWidth));
3497                 pp.setHeight(Math.floor(progressEl.dom.firstChild.offsetHeight));
3498             }
3499             return this;
3500         },        
3501
3502         /**
3503          * Returns true if the message box is currently displayed
3504          * @return {Boolean} True if the message box is visible, else false
3505          */
3506         isVisible : function(){
3507             return dlg && dlg.isVisible();  
3508         },
3509
3510         /**
3511          * Hides the message box if it is displayed
3512          */
3513         hide : function(){
3514             if(this.isVisible()){
3515                 dlg.hide();
3516             }  
3517         },
3518
3519         /**
3520          * Displays a new message box, or reinitializes an existing message box, based on the config options
3521          * passed in. All functions (e.g. prompt, alert, etc) on MessageBox call this function internally.
3522          * The following config object properties are supported:
3523          * <pre>
3524 Property    Type             Description
3525 ----------  ---------------  ------------------------------------------------------------------------------------
3526 animEl            String/Element   An id or Element from which the message box should animate as it opens and
3527                                    closes (defaults to undefined)
3528 buttons           Object/Boolean   A button config object (e.g., Roo.MessageBox.OKCANCEL or {ok:'Foo',
3529                                    cancel:'Bar'}), or false to not show any buttons (defaults to false)
3530 closable          Boolean          False to hide the top-right close button (defaults to true).  Note that
3531                                    progress and wait dialogs will ignore this property and always hide the
3532                                    close button as they can only be closed programmatically.
3533 cls               String           A custom CSS class to apply to the message box element
3534 defaultTextHeight Number           The default height in pixels of the message box's multiline textarea if
3535                                    displayed (defaults to 75)
3536 fn                Function         A callback function to execute after closing the dialog.  The arguments to the
3537                                    function will be btn (the name of the button that was clicked, if applicable,
3538                                    e.g. "ok"), and text (the value of the active text field, if applicable).
3539                                    Progress and wait dialogs will ignore this option since they do not respond to
3540                                    user actions and can only be closed programmatically, so any required function
3541                                    should be called by the same code after it closes the dialog.
3542 icon              String           A CSS class that provides a background image to be used as an icon for
3543                                    the dialog (e.g., Roo.MessageBox.WARNING or 'custom-class', defaults to '')
3544 maxWidth          Number           The maximum width in pixels of the message box (defaults to 600)
3545 minWidth          Number           The minimum width in pixels of the message box (defaults to 100)
3546 modal             Boolean          False to allow user interaction with the page while the message box is
3547                                    displayed (defaults to true)
3548 msg               String           A string that will replace the existing message box body text (defaults
3549                                    to the XHTML-compliant non-breaking space character '&#160;')
3550 multiline         Boolean          True to prompt the user to enter multi-line text (defaults to false)
3551 progress          Boolean          True to display a progress bar (defaults to false)
3552 progressText      String           The text to display inside the progress bar if progress = true (defaults to '')
3553 prompt            Boolean          True to prompt the user to enter single-line text (defaults to false)
3554 proxyDrag         Boolean          True to display a lightweight proxy while dragging (defaults to false)
3555 title             String           The title text
3556 value             String           The string value to set into the active textbox element if displayed
3557 wait              Boolean          True to display a progress bar (defaults to false)
3558 width             Number           The width of the dialog in pixels
3559 </pre>
3560          *
3561          * Example usage:
3562          * <pre><code>
3563 Roo.Msg.show({
3564    title: 'Address',
3565    msg: 'Please enter your address:',
3566    width: 300,
3567    buttons: Roo.MessageBox.OKCANCEL,
3568    multiline: true,
3569    fn: saveAddress,
3570    animEl: 'addAddressBtn'
3571 });
3572 </code></pre>
3573          * @param {Object} config Configuration options
3574          * @return {Roo.MessageBox} This message box
3575          */
3576         show : function(options)
3577         {
3578             
3579             // this causes nightmares if you show one dialog after another
3580             // especially on callbacks..
3581              
3582             if(this.isVisible()){
3583                 
3584                 this.hide();
3585                 Roo.log("[Roo.Messagebox] Show called while message displayed:" );
3586                 Roo.log("Old Dialog Message:" +  msgEl.innerHTML );
3587                 Roo.log("New Dialog Message:" +  options.msg )
3588                 //this.alert("ERROR", "Multiple dialogs where displayed at the same time");
3589                 //throw "Roo.MessageBox ERROR : Multiple dialogs where displayed at the same time";
3590                 
3591             }
3592             var d = this.getDialog();
3593             opt = options;
3594             d.setTitle(opt.title || "&#160;");
3595             d.closeEl.setDisplayed(opt.closable !== false);
3596             activeTextEl = textboxEl;
3597             opt.prompt = opt.prompt || (opt.multiline ? true : false);
3598             if(opt.prompt){
3599                 if(opt.multiline){
3600                     textboxEl.hide();
3601                     textareaEl.show();
3602                     textareaEl.setHeight(typeof opt.multiline == "number" ?
3603                         opt.multiline : this.defaultTextHeight);
3604                     activeTextEl = textareaEl;
3605                 }else{
3606                     textboxEl.show();
3607                     textareaEl.hide();
3608                 }
3609             }else{
3610                 textboxEl.hide();
3611                 textareaEl.hide();
3612             }
3613             progressEl.setDisplayed(opt.progress === true);
3614             if (opt.progress) {
3615                 d.animate = false; // do not animate progress, as it may not have finished animating before we close it..
3616             }
3617             this.updateProgress(0);
3618             activeTextEl.dom.value = opt.value || "";
3619             if(opt.prompt){
3620                 dlg.setDefaultButton(activeTextEl);
3621             }else{
3622                 var bs = opt.buttons;
3623                 var db = null;
3624                 if(bs && bs.ok){
3625                     db = buttons["ok"];
3626                 }else if(bs && bs.yes){
3627                     db = buttons["yes"];
3628                 }
3629                 dlg.setDefaultButton(db);
3630             }
3631             bwidth = updateButtons(opt.buttons);
3632             this.updateText(opt.msg);
3633             if(opt.cls){
3634                 d.el.addClass(opt.cls);
3635             }
3636             d.proxyDrag = opt.proxyDrag === true;
3637             d.modal = opt.modal !== false;
3638             d.mask = opt.modal !== false ? mask : false;
3639             if(!d.isVisible()){
3640                 // force it to the end of the z-index stack so it gets a cursor in FF
3641                 document.body.appendChild(dlg.el.dom);
3642                 d.animateTarget = null;
3643                 d.show(options.animEl);
3644             }
3645             return this;
3646         },
3647
3648         /**
3649          * Displays a message box with a progress bar.  This message box has no buttons and is not closeable by
3650          * the user.  You are responsible for updating the progress bar as needed via {@link Roo.MessageBox#updateProgress}
3651          * and closing the message box when the process is complete.
3652          * @param {String} title The title bar text
3653          * @param {String} msg The message box body text
3654          * @return {Roo.MessageBox} This message box
3655          */
3656         progress : function(title, msg){
3657             this.show({
3658                 title : title,
3659                 msg : msg,
3660                 buttons: false,
3661                 progress:true,
3662                 closable:false,
3663                 minWidth: this.minProgressWidth,
3664                 modal : true
3665             });
3666             return this;
3667         },
3668
3669         /**
3670          * Displays a standard read-only message box with an OK button (comparable to the basic JavaScript Window.alert).
3671          * If a callback function is passed it will be called after the user clicks the button, and the
3672          * id of the button that was clicked will be passed as the only parameter to the callback
3673          * (could also be the top-right close button).
3674          * @param {String} title The title bar text
3675          * @param {String} msg The message box body text
3676          * @param {Function} fn (optional) The callback function invoked after the message box is closed
3677          * @param {Object} scope (optional) The scope of the callback function
3678          * @return {Roo.MessageBox} This message box
3679          */
3680         alert : function(title, msg, fn, scope)
3681         {
3682             this.show({
3683                 title : title,
3684                 msg : msg,
3685                 buttons: this.OK,
3686                 fn: fn,
3687                 closable : false,
3688                 scope : scope,
3689                 modal : true
3690             });
3691             return this;
3692         },
3693
3694         /**
3695          * Displays a message box with an infinitely auto-updating progress bar.  This can be used to block user
3696          * interaction while waiting for a long-running process to complete that does not have defined intervals.
3697          * You are responsible for closing the message box when the process is complete.
3698          * @param {String} msg The message box body text
3699          * @param {String} title (optional) The title bar text
3700          * @return {Roo.MessageBox} This message box
3701          */
3702         wait : function(msg, title){
3703             this.show({
3704                 title : title,
3705                 msg : msg,
3706                 buttons: false,
3707                 closable:false,
3708                 progress:true,
3709                 modal:true,
3710                 width:300,
3711                 wait:true
3712             });
3713             waitTimer = Roo.TaskMgr.start({
3714                 run: function(i){
3715                     Roo.MessageBox.updateProgress(((((i+20)%20)+1)*5)*.01);
3716                 },
3717                 interval: 1000
3718             });
3719             return this;
3720         },
3721
3722         /**
3723          * Displays a confirmation message box with Yes and No buttons (comparable to JavaScript's Window.confirm).
3724          * If a callback function is passed it will be called after the user clicks either button, and the id of the
3725          * button that was clicked will be passed as the only parameter to the callback (could also be the top-right close button).
3726          * @param {String} title The title bar text
3727          * @param {String} msg The message box body text
3728          * @param {Function} fn (optional) The callback function invoked after the message box is closed
3729          * @param {Object} scope (optional) The scope of the callback function
3730          * @return {Roo.MessageBox} This message box
3731          */
3732         confirm : function(title, msg, fn, scope){
3733             this.show({
3734                 title : title,
3735                 msg : msg,
3736                 buttons: this.YESNO,
3737                 fn: fn,
3738                 scope : scope,
3739                 modal : true
3740             });
3741             return this;
3742         },
3743
3744         /**
3745          * Displays a message box with OK and Cancel buttons prompting the user to enter some text (comparable to
3746          * JavaScript's Window.prompt).  The prompt can be a single-line or multi-line textbox.  If a callback function
3747          * is passed it will be called after the user clicks either button, and the id of the button that was clicked
3748          * (could also be the top-right close button) and the text that was entered will be passed as the two
3749          * parameters to the callback.
3750          * @param {String} title The title bar text
3751          * @param {String} msg The message box body text
3752          * @param {Function} fn (optional) The callback function invoked after the message box is closed
3753          * @param {Object} scope (optional) The scope of the callback function
3754          * @param {Boolean/Number} multiline (optional) True to create a multiline textbox using the defaultTextHeight
3755          * property, or the height in pixels to create the textbox (defaults to false / single-line)
3756          * @return {Roo.MessageBox} This message box
3757          */
3758         prompt : function(title, msg, fn, scope, multiline){
3759             this.show({
3760                 title : title,
3761                 msg : msg,
3762                 buttons: this.OKCANCEL,
3763                 fn: fn,
3764                 minWidth:250,
3765                 scope : scope,
3766                 prompt:true,
3767                 multiline: multiline,
3768                 modal : true
3769             });
3770             return this;
3771         },
3772
3773         /**
3774          * Button config that displays a single OK button
3775          * @type Object
3776          */
3777         OK : {ok:true},
3778         /**
3779          * Button config that displays Yes and No buttons
3780          * @type Object
3781          */
3782         YESNO : {yes:true, no:true},
3783         /**
3784          * Button config that displays OK and Cancel buttons
3785          * @type Object
3786          */
3787         OKCANCEL : {ok:true, cancel:true},
3788         /**
3789          * Button config that displays Yes, No and Cancel buttons
3790          * @type Object
3791          */
3792         YESNOCANCEL : {yes:true, no:true, cancel:true},
3793
3794         /**
3795          * The default height in pixels of the message box's multiline textarea if displayed (defaults to 75)
3796          * @type Number
3797          */
3798         defaultTextHeight : 75,
3799         /**
3800          * The maximum width in pixels of the message box (defaults to 600)
3801          * @type Number
3802          */
3803         maxWidth : 600,
3804         /**
3805          * The minimum width in pixels of the message box (defaults to 100)
3806          * @type Number
3807          */
3808         minWidth : 100,
3809         /**
3810          * The minimum width in pixels of the message box if it is a progress-style dialog.  This is useful
3811          * for setting a different minimum width than text-only dialogs may need (defaults to 250)
3812          * @type Number
3813          */
3814         minProgressWidth : 250,
3815         /**
3816          * An object containing the default button text strings that can be overriden for localized language support.
3817          * Supported properties are: ok, cancel, yes and no.
3818          * Customize the default text like so: Roo.MessageBox.buttonText.yes = "S?";
3819          * @type Object
3820          */
3821         buttonText : {
3822             ok : "OK",
3823             cancel : "Cancel",
3824             yes : "Yes",
3825             no : "No"
3826         }
3827     };
3828 }();
3829
3830 /**
3831  * Shorthand for {@link Roo.MessageBox}
3832  */
3833 Roo.MessageBox = Roo.MessageBox || Roo.bootstrap.MessageBox;
3834 Roo.Msg = Roo.Msg || Roo.MessageBox;
3835 /*
3836  * - LGPL
3837  *
3838  * navbar
3839  * 
3840  */
3841
3842 /**
3843  * @class Roo.bootstrap.Navbar
3844  * @extends Roo.bootstrap.Component
3845  * Bootstrap Navbar class
3846
3847  * @constructor
3848  * Create a new Navbar
3849  * @param {Object} config The config object
3850  */
3851
3852
3853 Roo.bootstrap.Navbar = function(config){
3854     Roo.bootstrap.Navbar.superclass.constructor.call(this, config);
3855     this.addEvents({
3856         // raw events
3857         /**
3858          * @event beforetoggle
3859          * Fire before toggle the menu
3860          * @param {Roo.EventObject} e
3861          */
3862         "beforetoggle" : true
3863     });
3864 };
3865
3866 Roo.extend(Roo.bootstrap.Navbar, Roo.bootstrap.Component,  {
3867     
3868     
3869    
3870     // private
3871     navItems : false,
3872     loadMask : false,
3873     
3874     
3875     getAutoCreate : function(){
3876         
3877         
3878         throw { message : "nav bar is now a abstract base class - use NavSimplebar / NavHeaderbar / NavSidebar etc..."};
3879         
3880     },
3881     
3882     initEvents :function ()
3883     {
3884         //Roo.log(this.el.select('.navbar-toggle',true));
3885         this.el.select('.navbar-toggle',true).on('click', this.onToggle , this);
3886         
3887         var mark = {
3888             tag: "div",
3889             cls:"x-dlg-mask"
3890         };
3891         
3892         this.maskEl = Roo.DomHelper.append(this.el, mark, true);
3893         
3894         var size = this.el.getSize();
3895         this.maskEl.setSize(size.width, size.height);
3896         this.maskEl.enableDisplayMode("block");
3897         this.maskEl.hide();
3898         
3899         if(this.loadMask){
3900             this.maskEl.show();
3901         }
3902     },
3903     
3904     
3905     getChildContainer : function()
3906     {
3907         if (this.el && this.el.select('.collapse').getCount()) {
3908             return this.el.select('.collapse',true).first();
3909         }
3910         
3911         return this.el;
3912     },
3913     
3914     mask : function()
3915     {
3916         this.maskEl.show();
3917     },
3918     
3919     unmask : function()
3920     {
3921         this.maskEl.hide();
3922     },
3923     onToggle : function()
3924     {
3925         
3926         if(this.fireEvent('beforetoggle', this) === false){
3927             return;
3928         }
3929         var ce = this.el.select('.navbar-collapse',true).first();
3930       
3931         if (!ce.hasClass('show')) {
3932            this.expand();
3933         } else {
3934             this.collapse();
3935         }
3936         
3937         
3938     
3939     },
3940     /**
3941      * Expand the navbar pulldown 
3942      */
3943     expand : function ()
3944     {
3945        
3946         var ce = this.el.select('.navbar-collapse',true).first();
3947         if (ce.hasClass('collapsing')) {
3948             return;
3949         }
3950         ce.dom.style.height = '';
3951                // show it...
3952         ce.addClass('in'); // old...
3953         ce.removeClass('collapse');
3954         ce.addClass('show');
3955         var h = ce.getHeight();
3956         Roo.log(h);
3957         ce.removeClass('show');
3958         // at this point we should be able to see it..
3959         ce.addClass('collapsing');
3960         
3961         ce.setHeight(0); // resize it ...
3962         ce.on('transitionend', function() {
3963             //Roo.log('done transition');
3964             ce.removeClass('collapsing');
3965             ce.addClass('show');
3966             ce.removeClass('collapse');
3967
3968             ce.dom.style.height = '';
3969         }, this, { single: true} );
3970         ce.setHeight(h);
3971         ce.dom.scrollTop = 0;
3972     },
3973     /**
3974      * Collapse the navbar pulldown 
3975      */
3976     collapse : function()
3977     {
3978          var ce = this.el.select('.navbar-collapse',true).first();
3979        
3980         if (ce.hasClass('collapsing') || ce.hasClass('collapse') ) {
3981             // it's collapsed or collapsing..
3982             return;
3983         }
3984         ce.removeClass('in'); // old...
3985         ce.setHeight(ce.getHeight());
3986         ce.removeClass('show');
3987         ce.addClass('collapsing');
3988         
3989         ce.on('transitionend', function() {
3990             ce.dom.style.height = '';
3991             ce.removeClass('collapsing');
3992             ce.addClass('collapse');
3993         }, this, { single: true} );
3994         ce.setHeight(0);
3995     }
3996     
3997     
3998     
3999 });
4000
4001
4002
4003  
4004
4005  /*
4006  * - LGPL
4007  *
4008  * navbar
4009  * 
4010  */
4011
4012 /**
4013  * @class Roo.bootstrap.NavSimplebar
4014  * @extends Roo.bootstrap.Navbar
4015  * Bootstrap Sidebar class
4016  *
4017  * @cfg {Boolean} inverse is inverted color
4018  * 
4019  * @cfg {String} type (nav | pills | tabs)
4020  * @cfg {Boolean} arrangement stacked | justified
4021  * @cfg {String} align (left | right) alignment
4022  * 
4023  * @cfg {Boolean} main (true|false) main nav bar? default false
4024  * @cfg {Boolean} loadMask (true|false) loadMask on the bar
4025  * 
4026  * @cfg {String} tag (header|footer|nav|div) default is nav 
4027
4028  * @cfg {String} weight (light|primary|secondary|success|danger|warning|info|dark|white) default is light.
4029  * 
4030  * 
4031  * @constructor
4032  * Create a new Sidebar
4033  * @param {Object} config The config object
4034  */
4035
4036
4037 Roo.bootstrap.NavSimplebar = function(config){
4038     Roo.bootstrap.NavSimplebar.superclass.constructor.call(this, config);
4039 };
4040
4041 Roo.extend(Roo.bootstrap.NavSimplebar, Roo.bootstrap.Navbar,  {
4042     
4043     inverse: false,
4044     
4045     type: false,
4046     arrangement: '',
4047     align : false,
4048     
4049     weight : 'light',
4050     
4051     main : false,
4052     
4053     
4054     tag : false,
4055     
4056     
4057     getAutoCreate : function(){
4058         
4059         
4060         var cfg = {
4061             tag : this.tag || 'div',
4062             cls : 'navbar roo-navbar-simple' //navbar-expand-lg ??
4063         };
4064         if (['light','white'].indexOf(this.weight) > -1) {
4065             cfg.cls += ['light','white'].indexOf(this.weight) > -1 ? ' navbar-light' : ' navbar-dark';
4066         }
4067         cfg.cls += ' bg-' + this.weight;
4068         
4069         if (this.inverse) {
4070             cfg.cls += ' navbar-inverse';
4071             
4072         }
4073         
4074         // i'm not actually sure these are really used - normally we add a navGroup to a navbar
4075         
4076         if (Roo.bootstrap.version == 4 && this.xtype == 'NavSimplebar') {
4077             return cfg;
4078         }
4079         
4080         
4081     
4082         
4083         cfg.cn = [
4084             {
4085                 cls: 'nav nav-' + this.xtype,
4086                 tag : 'ul'
4087             }
4088         ];
4089         
4090          
4091         this.type = this.type || 'nav';
4092         if (['tabs','pills'].indexOf(this.type) != -1) {
4093             cfg.cn[0].cls += ' nav-' + this.type
4094         
4095         
4096         } else {
4097             if (this.type!=='nav') {
4098                 Roo.log('nav type must be nav/tabs/pills')
4099             }
4100             cfg.cn[0].cls += ' navbar-nav'
4101         }
4102         
4103         
4104         
4105         
4106         if (['stacked','justified'].indexOf(this.arrangement) != -1) {
4107             cfg.cn[0].cls += ' nav-' + this.arrangement;
4108         }
4109         
4110         
4111         if (this.align === 'right') {
4112             cfg.cn[0].cls += ' navbar-right';
4113         }
4114         
4115         
4116         
4117         
4118         return cfg;
4119     
4120         
4121     }
4122     
4123     
4124     
4125 });
4126
4127
4128
4129  
4130
4131  
4132        /*
4133  * - LGPL
4134  *
4135  * navbar
4136  * navbar-fixed-top
4137  * navbar-expand-md  fixed-top 
4138  */
4139
4140 /**
4141  * @class Roo.bootstrap.NavHeaderbar
4142  * @extends Roo.bootstrap.NavSimplebar
4143  * Bootstrap Sidebar class
4144  *
4145  * @cfg {String} brand what is brand
4146  * @cfg {String} position (fixed-top|fixed-bottom|static-top) position
4147  * @cfg {String} brand_href href of the brand
4148  * @cfg {Boolean} srButton generate the (screen reader / mobile) sr-only button   default true
4149  * @cfg {Boolean} autohide a top nav bar header that hides on scroll.
4150  * @cfg {Boolean} desktopCenter should the header be centered on desktop using a container class
4151  * @cfg {Roo.bootstrap.Row} mobilerow - a row to display on mobile only..
4152  * 
4153  * @constructor
4154  * Create a new Sidebar
4155  * @param {Object} config The config object
4156  */
4157
4158
4159 Roo.bootstrap.NavHeaderbar = function(config){
4160     Roo.bootstrap.NavHeaderbar.superclass.constructor.call(this, config);
4161       
4162 };
4163
4164 Roo.extend(Roo.bootstrap.NavHeaderbar, Roo.bootstrap.NavSimplebar,  {
4165     
4166     position: '',
4167     brand: '',
4168     brand_href: false,
4169     srButton : true,
4170     autohide : false,
4171     desktopCenter : false,
4172    
4173     
4174     getAutoCreate : function(){
4175         
4176         var   cfg = {
4177             tag: this.nav || 'nav',
4178             cls: 'navbar navbar-expand-md',
4179             role: 'navigation',
4180             cn: []
4181         };
4182         
4183         var cn = cfg.cn;
4184         if (this.desktopCenter) {
4185             cn.push({cls : 'container', cn : []});
4186             cn = cn[0].cn;
4187         }
4188         
4189         if(this.srButton){
4190             var btn = {
4191                 tag: 'button',
4192                 type: 'button',
4193                 cls: 'navbar-toggle navbar-toggler',
4194                 'data-toggle': 'collapse',
4195                 cn: [
4196                     {
4197                         tag: 'span',
4198                         cls: 'sr-only',
4199                         html: 'Toggle navigation'
4200                     },
4201                     {
4202                         tag: 'span',
4203                         cls: 'icon-bar navbar-toggler-icon'
4204                     },
4205                     {
4206                         tag: 'span',
4207                         cls: 'icon-bar'
4208                     },
4209                     {
4210                         tag: 'span',
4211                         cls: 'icon-bar'
4212                     }
4213                 ]
4214             };
4215             
4216             cn.push( Roo.bootstrap.version == 4 ? btn : {
4217                 tag: 'div',
4218                 cls: 'navbar-header',
4219                 cn: [
4220                     btn
4221                 ]
4222             });
4223         }
4224         
4225         cn.push({
4226             tag: 'div',
4227             cls: Roo.bootstrap.version == 4  ? 'nav flex-row roo-navbar-collapse' : 'collapse navbar-collapse roo-navbar-collapse',
4228             cn : []
4229         });
4230         
4231         cfg.cls += this.inverse ? ' navbar-inverse navbar-dark bg-dark' : ' navbar-default';
4232         
4233         if (['light','white'].indexOf(this.weight) > -1) {
4234             cfg.cls += ['light','white'].indexOf(this.weight) > -1 ? ' navbar-light' : ' navbar-dark';
4235         }
4236         cfg.cls += ' bg-' + this.weight;
4237         
4238         
4239         if (['fixed-top','fixed-bottom','static-top'].indexOf(this.position)>-1) {
4240             cfg.cls += ' navbar-' + this.position + ' ' + this.position ;
4241             
4242             // tag can override this..
4243             
4244             cfg.tag = this.tag || (this.position  == 'fixed-bottom' ? 'footer' : 'header');
4245         }
4246         
4247         if (this.brand !== '') {
4248             var cp =  Roo.bootstrap.version == 4 ? cn : cn[0].cn;
4249             cp.unshift({ // changed from push ?? BS4 needs it at the start? - does this break or exsiting?
4250                 tag: 'a',
4251                 href: this.brand_href ? this.brand_href : '#',
4252                 cls: 'navbar-brand',
4253                 cn: [
4254                 this.brand
4255                 ]
4256             });
4257         }
4258         
4259         if(this.main){
4260             cfg.cls += ' main-nav';
4261         }
4262         
4263         
4264         return cfg;
4265
4266         
4267     },
4268     getHeaderChildContainer : function()
4269     {
4270         if (this.srButton && this.el.select('.navbar-header').getCount()) {
4271             return this.el.select('.navbar-header',true).first();
4272         }
4273         
4274         return this.getChildContainer();
4275     },
4276     
4277     
4278     initEvents : function()
4279     {
4280         Roo.bootstrap.NavHeaderbar.superclass.initEvents.call(this);
4281         
4282         if (this.autohide) {
4283             
4284             var prevScroll = 0;
4285             var ft = this.el;
4286             
4287             Roo.get(document).on('scroll',function(e) {
4288                 var ns = Roo.get(document).getScroll().top;
4289                 var os = prevScroll;
4290                 prevScroll = ns;
4291                 
4292                 if(ns > os){
4293                     ft.removeClass('slideDown');
4294                     ft.addClass('slideUp');
4295                     return;
4296                 }
4297                 ft.removeClass('slideUp');
4298                 ft.addClass('slideDown');
4299                  
4300               
4301           },this);
4302         }
4303     }    
4304     
4305 });
4306
4307
4308
4309  
4310
4311  /*
4312  * - LGPL
4313  *
4314  * navbar
4315  * 
4316  */
4317
4318 /**
4319  * @class Roo.bootstrap.NavSidebar
4320  * @extends Roo.bootstrap.Navbar
4321  * Bootstrap Sidebar class
4322  * 
4323  * @constructor
4324  * Create a new Sidebar
4325  * @param {Object} config The config object
4326  */
4327
4328
4329 Roo.bootstrap.NavSidebar = function(config){
4330     Roo.bootstrap.NavSidebar.superclass.constructor.call(this, config);
4331 };
4332
4333 Roo.extend(Roo.bootstrap.NavSidebar, Roo.bootstrap.Navbar,  {
4334     
4335     sidebar : true, // used by Navbar Item and NavbarGroup at present...
4336     
4337     getAutoCreate : function(){
4338         
4339         
4340         return  {
4341             tag: 'div',
4342             cls: 'sidebar sidebar-nav'
4343         };
4344     
4345         
4346     }
4347     
4348     
4349     
4350 });
4351
4352
4353
4354  
4355
4356  /*
4357  * - LGPL
4358  *
4359  * nav group
4360  * 
4361  */
4362
4363 /**
4364  * @class Roo.bootstrap.NavGroup
4365  * @extends Roo.bootstrap.Component
4366  * Bootstrap NavGroup class
4367  * @cfg {String} align (left|right)
4368  * @cfg {Boolean} inverse
4369  * @cfg {String} type (nav|pills|tab) default nav
4370  * @cfg {String} navId - reference Id for navbar.
4371
4372  * 
4373  * @constructor
4374  * Create a new nav group
4375  * @param {Object} config The config object
4376  */
4377
4378 Roo.bootstrap.NavGroup = function(config){
4379     Roo.bootstrap.NavGroup.superclass.constructor.call(this, config);
4380     this.navItems = [];
4381    
4382     Roo.bootstrap.NavGroup.register(this);
4383      this.addEvents({
4384         /**
4385              * @event changed
4386              * Fires when the active item changes
4387              * @param {Roo.bootstrap.NavGroup} this
4388              * @param {Roo.bootstrap.Navbar.Item} selected The item selected
4389              * @param {Roo.bootstrap.Navbar.Item} prev The previously selected item 
4390          */
4391         'changed': true
4392      });
4393     
4394 };
4395
4396 Roo.extend(Roo.bootstrap.NavGroup, Roo.bootstrap.Component,  {
4397     
4398     align: '',
4399     inverse: false,
4400     form: false,
4401     type: 'nav',
4402     navId : '',
4403     // private
4404     
4405     navItems : false, 
4406     
4407     getAutoCreate : function()
4408     {
4409         var cfg = Roo.apply({}, Roo.bootstrap.NavGroup.superclass.getAutoCreate.call(this));
4410         
4411         cfg = {
4412             tag : 'ul',
4413             cls: 'nav' 
4414         };
4415         if (Roo.bootstrap.version == 4) {
4416             if (['tabs','pills'].indexOf(this.type) != -1) {
4417                 cfg.cls += ' nav-' + this.type; 
4418             } else {
4419                 // trying to remove so header bar can right align top?
4420                 if (this.parent() && this.parent().xtype != 'NavHeaderbar') {
4421                     // do not use on header bar... 
4422                     cfg.cls += ' navbar-nav';
4423                 }
4424             }
4425             
4426         } else {
4427             if (['tabs','pills'].indexOf(this.type) != -1) {
4428                 cfg.cls += ' nav-' + this.type
4429             } else {
4430                 if (this.type !== 'nav') {
4431                     Roo.log('nav type must be nav/tabs/pills')
4432                 }
4433                 cfg.cls += ' navbar-nav'
4434             }
4435         }
4436         
4437         if (this.parent() && this.parent().sidebar) {
4438             cfg = {
4439                 tag: 'ul',
4440                 cls: 'dashboard-menu sidebar-menu'
4441             };
4442             
4443             return cfg;
4444         }
4445         
4446         if (this.form === true) {
4447             cfg = {
4448                 tag: 'form',
4449                 cls: 'navbar-form form-inline'
4450             };
4451             //nav navbar-right ml-md-auto
4452             if (this.align === 'right') {
4453                 cfg.cls += ' navbar-right ml-md-auto';
4454             } else {
4455                 cfg.cls += ' navbar-left';
4456             }
4457         }
4458         
4459         if (this.align === 'right') {
4460             cfg.cls += ' navbar-right ml-md-auto';
4461         } else {
4462             cfg.cls += ' mr-auto';
4463         }
4464         
4465         if (this.inverse) {
4466             cfg.cls += ' navbar-inverse';
4467             
4468         }
4469         
4470         
4471         return cfg;
4472     },
4473     /**
4474     * sets the active Navigation item
4475     * @param {Roo.bootstrap.NavItem} the new current navitem
4476     */
4477     setActiveItem : function(item)
4478     {
4479         var prev = false;
4480         Roo.each(this.navItems, function(v){
4481             if (v == item) {
4482                 return ;
4483             }
4484             if (v.isActive()) {
4485                 v.setActive(false, true);
4486                 prev = v;
4487                 
4488             }
4489             
4490         });
4491
4492         item.setActive(true, true);
4493         this.fireEvent('changed', this, item, prev);
4494         
4495         
4496     },
4497     /**
4498     * gets the active Navigation item
4499     * @return {Roo.bootstrap.NavItem} the current navitem
4500     */
4501     getActive : function()
4502     {
4503         
4504         var prev = false;
4505         Roo.each(this.navItems, function(v){
4506             
4507             if (v.isActive()) {
4508                 prev = v;
4509                 
4510             }
4511             
4512         });
4513         return prev;
4514     },
4515     
4516     indexOfNav : function()
4517     {
4518         
4519         var prev = false;
4520         Roo.each(this.navItems, function(v,i){
4521             
4522             if (v.isActive()) {
4523                 prev = i;
4524                 
4525             }
4526             
4527         });
4528         return prev;
4529     },
4530     /**
4531     * adds a Navigation item
4532     * @param {Roo.bootstrap.NavItem} the navitem to add
4533     */
4534     addItem : function(cfg)
4535     {
4536         if (this.form && Roo.bootstrap.version == 4) {
4537             cfg.tag = 'div';
4538         }
4539         var cn = new Roo.bootstrap.NavItem(cfg);
4540         this.register(cn);
4541         cn.parentId = this.id;
4542         cn.onRender(this.el, null);
4543         return cn;
4544     },
4545     /**
4546     * register a Navigation item
4547     * @param {Roo.bootstrap.NavItem} the navitem to add
4548     */
4549     register : function(item)
4550     {
4551         this.navItems.push( item);
4552         item.navId = this.navId;
4553     
4554     },
4555     
4556     /**
4557     * clear all the Navigation item
4558     */
4559    
4560     clearAll : function()
4561     {
4562         this.navItems = [];
4563         this.el.dom.innerHTML = '';
4564     },
4565     
4566     getNavItem: function(tabId)
4567     {
4568         var ret = false;
4569         Roo.each(this.navItems, function(e) {
4570             if (e.tabId == tabId) {
4571                ret =  e;
4572                return false;
4573             }
4574             return true;
4575             
4576         });
4577         return ret;
4578     },
4579     
4580     setActiveNext : function()
4581     {
4582         var i = this.indexOfNav(this.getActive());
4583         if (i > this.navItems.length) {
4584             return;
4585         }
4586         this.setActiveItem(this.navItems[i+1]);
4587     },
4588     setActivePrev : function()
4589     {
4590         var i = this.indexOfNav(this.getActive());
4591         if (i  < 1) {
4592             return;
4593         }
4594         this.setActiveItem(this.navItems[i-1]);
4595     },
4596     clearWasActive : function(except) {
4597         Roo.each(this.navItems, function(e) {
4598             if (e.tabId != except.tabId && e.was_active) {
4599                e.was_active = false;
4600                return false;
4601             }
4602             return true;
4603             
4604         });
4605     },
4606     getWasActive : function ()
4607     {
4608         var r = false;
4609         Roo.each(this.navItems, function(e) {
4610             if (e.was_active) {
4611                r = e;
4612                return false;
4613             }
4614             return true;
4615             
4616         });
4617         return r;
4618     }
4619     
4620     
4621 });
4622
4623  
4624 Roo.apply(Roo.bootstrap.NavGroup, {
4625     
4626     groups: {},
4627      /**
4628     * register a Navigation Group
4629     * @param {Roo.bootstrap.NavGroup} the navgroup to add
4630     */
4631     register : function(navgrp)
4632     {
4633         this.groups[navgrp.navId] = navgrp;
4634         
4635     },
4636     /**
4637     * fetch a Navigation Group based on the navigation ID
4638     * @param {string} the navgroup to add
4639     * @returns {Roo.bootstrap.NavGroup} the navgroup 
4640     */
4641     get: function(navId) {
4642         if (typeof(this.groups[navId]) == 'undefined') {
4643             return false;
4644             //this.register(new Roo.bootstrap.NavGroup({ navId : navId }));
4645         }
4646         return this.groups[navId] ;
4647     }
4648     
4649     
4650     
4651 });
4652
4653  /*
4654  * - LGPL
4655  *
4656  * row
4657  * 
4658  */
4659
4660 /**
4661  * @class Roo.bootstrap.NavItem
4662  * @extends Roo.bootstrap.Component
4663  * Bootstrap Navbar.NavItem class
4664  * @cfg {String} href  link to
4665  * @cfg {String} button_weight (default | primary | secondary | success | info | warning | danger | link ) default none
4666
4667  * @cfg {String} html content of button
4668  * @cfg {String} badge text inside badge
4669  * @cfg {String} badgecls (bg-green|bg-red|bg-yellow)the extra classes for the badge
4670  * @cfg {String} glyphicon DEPRICATED - use fa
4671  * @cfg {String} icon DEPRICATED - use fa
4672  * @cfg {String} fa - Fontawsome icon name (can add stuff to it like fa-2x)
4673  * @cfg {Boolean} active Is item active
4674  * @cfg {Boolean} disabled Is item disabled
4675  
4676  * @cfg {Boolean} preventDefault (true | false) default false
4677  * @cfg {String} tabId the tab that this item activates.
4678  * @cfg {String} tagtype (a|span) render as a href or span?
4679  * @cfg {Boolean} animateRef (true|false) link to element default false  
4680   
4681  * @constructor
4682  * Create a new Navbar Item
4683  * @param {Object} config The config object
4684  */
4685 Roo.bootstrap.NavItem = function(config){
4686     Roo.bootstrap.NavItem.superclass.constructor.call(this, config);
4687     this.addEvents({
4688         // raw events
4689         /**
4690          * @event click
4691          * The raw click event for the entire grid.
4692          * @param {Roo.EventObject} e
4693          */
4694         "click" : true,
4695          /**
4696             * @event changed
4697             * Fires when the active item active state changes
4698             * @param {Roo.bootstrap.NavItem} this
4699             * @param {boolean} state the new state
4700              
4701          */
4702         'changed': true,
4703         /**
4704             * @event scrollto
4705             * Fires when scroll to element
4706             * @param {Roo.bootstrap.NavItem} this
4707             * @param {Object} options
4708             * @param {Roo.EventObject} e
4709              
4710          */
4711         'scrollto': true
4712     });
4713    
4714 };
4715
4716 Roo.extend(Roo.bootstrap.NavItem, Roo.bootstrap.Component,  {
4717     
4718     href: false,
4719     html: '',
4720     badge: '',
4721     icon: false,
4722     fa : false,
4723     glyphicon: false,
4724     active: false,
4725     preventDefault : false,
4726     tabId : false,
4727     tagtype : 'a',
4728     tag: 'li',
4729     disabled : false,
4730     animateRef : false,
4731     was_active : false,
4732     button_weight : '',
4733     button_outline : false,
4734     
4735     navLink: false,
4736     
4737     getAutoCreate : function(){
4738          
4739         var cfg = {
4740             tag: this.tag,
4741             cls: 'nav-item'
4742         };
4743         
4744         if (this.active) {
4745             cfg.cls = typeof(cfg.cls) == 'undefined' ? 'active' : cfg.cls + ' active';
4746         }
4747         if (this.disabled) {
4748             cfg.cls += ' disabled';
4749         }
4750         
4751         // BS4 only?
4752         if (this.button_weight.length) {
4753             cfg.tag = this.href ? 'a' : 'button';
4754             cfg.html = this.html || '';
4755             cfg.cls += ' btn btn' + (this.button_outline ? '-outline' : '') + '-' + this.button_weight;
4756             if (this.href) {
4757                 cfg.href = this.href;
4758             }
4759             if (this.fa) {
4760                 cfg.html = '<i class="fa fas fa-'+this.fa+'"></i> <span>' + this.html + '</span>';
4761             }
4762             
4763             // menu .. should add dropdown-menu class - so no need for carat..
4764             
4765             if (this.badge !== '') {
4766                  
4767                 cfg.html += ' <span class="badge badge-secondary">' + this.badge + '</span>';
4768             }
4769             return cfg;
4770         }
4771         
4772         if (this.href || this.html || this.glyphicon || this.icon || this.fa) {
4773             cfg.cn = [
4774                 {
4775                     tag: this.tagtype,
4776                     href : this.href || "#",
4777                     html: this.html || ''
4778                 }
4779             ];
4780             if (this.tagtype == 'a') {
4781                 cfg.cn[0].cls = 'nav-link';
4782             }
4783             if (this.icon) {
4784                 cfg.cn[0].html = '<i class="'+this.icon+'"></i> <span>' + cfg.cn[0].html + '</span>';
4785             }
4786             if (this.fa) {
4787                 cfg.cn[0].html = '<i class="fa fas fa-'+this.fa+'"></i> <span>' + cfg.cn[0].html + '</span>';
4788             }
4789             if(this.glyphicon) {
4790                 cfg.cn[0].html = '<span class="glyphicon glyphicon-' + this.glyphicon + '"></span> '  + cfg.cn[0].html;
4791             }
4792             
4793             if (this.menu) {
4794                 
4795                 cfg.cn[0].html += " <span class='caret'></span>";
4796              
4797             }
4798             
4799             if (this.badge !== '') {
4800                  
4801                 cfg.cn[0].html += ' <span class="badge badge-secondary">' + this.badge + '</span>';
4802             }
4803         }
4804         
4805         
4806         
4807         return cfg;
4808     },
4809     onRender : function(ct, position)
4810     {
4811        // Roo.log("Call onRender: " + this.xtype);
4812         if (Roo.bootstrap.version == 4 && ct.dom.type != 'ul') {
4813             this.tag = 'div';
4814         }
4815         
4816         var ret = Roo.bootstrap.NavItem.superclass.onRender.call(this, ct, position);
4817         this.navLink = this.el.select('.nav-link',true).first();
4818         return ret;
4819     },
4820       
4821     
4822     initEvents: function() 
4823     {
4824         if (typeof (this.menu) != 'undefined') {
4825             this.menu.parentType = this.xtype;
4826             this.menu.triggerEl = this.el;
4827             this.menu = this.addxtype(Roo.apply({}, this.menu));
4828         }
4829         
4830         this.el.select('a',true).on('click', this.onClick, this);
4831         
4832         if(this.tagtype == 'span'){
4833             this.el.select('span',true).on('click', this.onClick, this);
4834         }
4835        
4836         // at this point parent should be available..
4837         this.parent().register(this);
4838     },
4839     
4840     onClick : function(e)
4841     {
4842         if (e.getTarget('.dropdown-menu-item')) {
4843             // did you click on a menu itemm.... - then don't trigger onclick..
4844             return;
4845         }
4846         
4847         if(
4848                 this.preventDefault || 
4849                 this.href == '#' 
4850         ){
4851             Roo.log("NavItem - prevent Default?");
4852             e.preventDefault();
4853         }
4854         
4855         if (this.disabled) {
4856             return;
4857         }
4858         
4859         var tg = Roo.bootstrap.TabGroup.get(this.navId);
4860         if (tg && tg.transition) {
4861             Roo.log("waiting for the transitionend");
4862             return;
4863         }
4864         
4865         
4866         
4867         //Roo.log("fire event clicked");
4868         if(this.fireEvent('click', this, e) === false){
4869             return;
4870         };
4871         
4872         if(this.tagtype == 'span'){
4873             return;
4874         }
4875         
4876         //Roo.log(this.href);
4877         var ael = this.el.select('a',true).first();
4878         //Roo.log(ael);
4879         
4880         if(ael && this.animateRef && this.href.indexOf('#') > -1){
4881             //Roo.log(["test:",ael.dom.href.split("#")[0], document.location.toString().split("#")[0]]);
4882             if (ael.dom.href.split("#")[0] != document.location.toString().split("#")[0]) {
4883                 return; // ignore... - it's a 'hash' to another page.
4884             }
4885             Roo.log("NavItem - prevent Default?");
4886             e.preventDefault();
4887             this.scrollToElement(e);
4888         }
4889         
4890         
4891         var p =  this.parent();
4892    
4893         if (['tabs','pills'].indexOf(p.type)!==-1) {
4894             if (typeof(p.setActiveItem) !== 'undefined') {
4895                 p.setActiveItem(this);
4896             }
4897         }
4898         
4899         // if parent is a navbarheader....- and link is probably a '#' page ref.. then remove the expanded menu.
4900         if (p.parentType == 'NavHeaderbar' && !this.menu) {
4901             // remove the collapsed menu expand...
4902             p.parent().el.select('.roo-navbar-collapse',true).removeClass('in');  
4903         }
4904     },
4905     
4906     isActive: function () {
4907         return this.active
4908     },
4909     setActive : function(state, fire, is_was_active)
4910     {
4911         if (this.active && !state && this.navId) {
4912             this.was_active = true;
4913             var nv = Roo.bootstrap.NavGroup.get(this.navId);
4914             if (nv) {
4915                 nv.clearWasActive(this);
4916             }
4917             
4918         }
4919         this.active = state;
4920         
4921         if (!state ) {
4922             this.el.removeClass('active');
4923             this.navLink ? this.navLink.removeClass('active') : false;
4924         } else if (!this.el.hasClass('active')) {
4925             
4926             this.el.addClass('active');
4927             if (Roo.bootstrap.version == 4 && this.navLink ) {
4928                 this.navLink.addClass('active');
4929             }
4930             
4931         }
4932         if (fire) {
4933             this.fireEvent('changed', this, state);
4934         }
4935         
4936         // show a panel if it's registered and related..
4937         
4938         if (!this.navId || !this.tabId || !state || is_was_active) {
4939             return;
4940         }
4941         
4942         var tg = Roo.bootstrap.TabGroup.get(this.navId);
4943         if (!tg) {
4944             return;
4945         }
4946         var pan = tg.getPanelByName(this.tabId);
4947         if (!pan) {
4948             return;
4949         }
4950         // if we can not flip to new panel - go back to old nav highlight..
4951         if (false == tg.showPanel(pan)) {
4952             var nv = Roo.bootstrap.NavGroup.get(this.navId);
4953             if (nv) {
4954                 var onav = nv.getWasActive();
4955                 if (onav) {
4956                     onav.setActive(true, false, true);
4957                 }
4958             }
4959             
4960         }
4961         
4962         
4963         
4964     },
4965      // this should not be here...
4966     setDisabled : function(state)
4967     {
4968         this.disabled = state;
4969         if (!state ) {
4970             this.el.removeClass('disabled');
4971         } else if (!this.el.hasClass('disabled')) {
4972             this.el.addClass('disabled');
4973         }
4974         
4975     },
4976     
4977     /**
4978      * Fetch the element to display the tooltip on.
4979      * @return {Roo.Element} defaults to this.el
4980      */
4981     tooltipEl : function()
4982     {
4983         return this.el.select('' + this.tagtype + '', true).first();
4984     },
4985     
4986     scrollToElement : function(e)
4987     {
4988         var c = document.body;
4989         
4990         /*
4991          * Firefox / IE places the overflow at the html level, unless specifically styled to behave differently.
4992          */
4993         if(Roo.isFirefox || Roo.isIE || Roo.isIE11){
4994             c = document.documentElement;
4995         }
4996         
4997         var target = Roo.get(c).select('a[name=' + this.href.split('#')[1] +']', true).first();
4998         
4999         if(!target){
5000             return;
5001         }
5002
5003         var o = target.calcOffsetsTo(c);
5004         
5005         var options = {
5006             target : target,
5007             value : o[1]
5008         };
5009         
5010         this.fireEvent('scrollto', this, options, e);
5011         
5012         Roo.get(c).scrollTo('top', options.value, true);
5013         
5014         return;
5015     }
5016 });
5017  
5018
5019  /*
5020  * - LGPL
5021  *
5022  * sidebar item
5023  *
5024  *  li
5025  *    <span> icon </span>
5026  *    <span> text </span>
5027  *    <span>badge </span>
5028  */
5029
5030 /**
5031  * @class Roo.bootstrap.NavSidebarItem
5032  * @extends Roo.bootstrap.NavItem
5033  * Bootstrap Navbar.NavSidebarItem class
5034  * {String} badgeWeight (default|primary|success|info|warning|danger)the extra classes for the badge
5035  * {Boolean} open is the menu open
5036  * {Boolean} buttonView use button as the tigger el rather that a (default false)
5037  * {String} buttonWeight (default|primary|success|info|warning|danger)the extra classes for the button
5038  * {String} buttonSize (sm|md|lg)the extra classes for the button
5039  * {Boolean} showArrow show arrow next to the text (default true)
5040  * @constructor
5041  * Create a new Navbar Button
5042  * @param {Object} config The config object
5043  */
5044 Roo.bootstrap.NavSidebarItem = function(config){
5045     Roo.bootstrap.NavSidebarItem.superclass.constructor.call(this, config);
5046     this.addEvents({
5047         // raw events
5048         /**
5049          * @event click
5050          * The raw click event for the entire grid.
5051          * @param {Roo.EventObject} e
5052          */
5053         "click" : true,
5054          /**
5055             * @event changed
5056             * Fires when the active item active state changes
5057             * @param {Roo.bootstrap.NavSidebarItem} this
5058             * @param {boolean} state the new state
5059              
5060          */
5061         'changed': true
5062     });
5063    
5064 };
5065
5066 Roo.extend(Roo.bootstrap.NavSidebarItem, Roo.bootstrap.NavItem,  {
5067     
5068     badgeWeight : 'default',
5069     
5070     open: false,
5071     
5072     buttonView : false,
5073     
5074     buttonWeight : 'default',
5075     
5076     buttonSize : 'md',
5077     
5078     showArrow : true,
5079     
5080     getAutoCreate : function(){
5081         
5082         
5083         var a = {
5084                 tag: 'a',
5085                 href : this.href || '#',
5086                 cls: '',
5087                 html : '',
5088                 cn : []
5089         };
5090         
5091         if(this.buttonView){
5092             a = {
5093                 tag: 'button',
5094                 href : this.href || '#',
5095                 cls: 'btn btn-' + this.buttonWeight + ' btn-' + this.buttonSize + 'roo-button-dropdown-toggle',
5096                 html : this.html,
5097                 cn : []
5098             };
5099         }
5100         
5101         var cfg = {
5102             tag: 'li',
5103             cls: '',
5104             cn: [ a ]
5105         };
5106         
5107         if (this.active) {
5108             cfg.cls += ' active';
5109         }
5110         
5111         if (this.disabled) {
5112             cfg.cls += ' disabled';
5113         }
5114         if (this.open) {
5115             cfg.cls += ' open x-open';
5116         }
5117         // left icon..
5118         if (this.glyphicon || this.icon) {
5119             var c = this.glyphicon  ? ('glyphicon glyphicon-'+this.glyphicon)  : this.icon;
5120             a.cn.push({ tag : 'i', cls : c }) ;
5121         }
5122         
5123         if(!this.buttonView){
5124             var span = {
5125                 tag: 'span',
5126                 html : this.html || ''
5127             };
5128
5129             a.cn.push(span);
5130             
5131         }
5132         
5133         if (this.badge !== '') {
5134             a.cn.push({ tag: 'span',  cls : 'badge pull-right badge-' + this.badgeWeight, html: this.badge }); 
5135         }
5136         
5137         if (this.menu) {
5138             
5139             if(this.showArrow){
5140                 a.cn.push({ tag : 'i', cls : 'glyphicon glyphicon-chevron-down pull-right'});
5141             }
5142             
5143             a.cls += ' dropdown-toggle treeview' ;
5144         }
5145         
5146         return cfg;
5147     },
5148     
5149     initEvents : function()
5150     { 
5151         if (typeof (this.menu) != 'undefined') {
5152             this.menu.parentType = this.xtype;
5153             this.menu.triggerEl = this.el;
5154             this.menu = this.addxtype(Roo.apply({}, this.menu));
5155         }
5156         
5157         this.el.on('click', this.onClick, this);
5158         
5159         if(this.badge !== ''){
5160             this.badgeEl = this.el.select('.badge', true).first().setVisibilityMode(Roo.Element.DISPLAY);
5161         }
5162         
5163     },
5164     
5165     onClick : function(e)
5166     {
5167         if(this.disabled){
5168             e.preventDefault();
5169             return;
5170         }
5171         
5172         if(this.preventDefault){
5173             e.preventDefault();
5174         }
5175         
5176         this.fireEvent('click', this, e);
5177     },
5178     
5179     disable : function()
5180     {
5181         this.setDisabled(true);
5182     },
5183     
5184     enable : function()
5185     {
5186         this.setDisabled(false);
5187     },
5188     
5189     setDisabled : function(state)
5190     {
5191         if(this.disabled == state){
5192             return;
5193         }
5194         
5195         this.disabled = state;
5196         
5197         if (state) {
5198             this.el.addClass('disabled');
5199             return;
5200         }
5201         
5202         this.el.removeClass('disabled');
5203         
5204         return;
5205     },
5206     
5207     setActive : function(state)
5208     {
5209         if(this.active == state){
5210             return;
5211         }
5212         
5213         this.active = state;
5214         
5215         if (state) {
5216             this.el.addClass('active');
5217             return;
5218         }
5219         
5220         this.el.removeClass('active');
5221         
5222         return;
5223     },
5224     
5225     isActive: function () 
5226     {
5227         return this.active;
5228     },
5229     
5230     setBadge : function(str)
5231     {
5232         if(!this.badgeEl){
5233             return;
5234         }
5235         
5236         this.badgeEl.dom.innerHTML = str;
5237     }
5238     
5239    
5240      
5241  
5242 });
5243  
5244
5245  /*
5246  * - LGPL
5247  *
5248  * row
5249  * 
5250  */
5251
5252 /**
5253  * @class Roo.bootstrap.Row
5254  * @extends Roo.bootstrap.Component
5255  * Bootstrap Row class (contains columns...)
5256  * 
5257  * @constructor
5258  * Create a new Row
5259  * @param {Object} config The config object
5260  */
5261
5262 Roo.bootstrap.Row = function(config){
5263     Roo.bootstrap.Row.superclass.constructor.call(this, config);
5264 };
5265
5266 Roo.extend(Roo.bootstrap.Row, Roo.bootstrap.Component,  {
5267     
5268     getAutoCreate : function(){
5269        return {
5270             cls: 'row clearfix'
5271        };
5272     }
5273     
5274     
5275 });
5276
5277  
5278
5279  /*
5280  * - LGPL
5281  *
5282  * element
5283  * 
5284  */
5285
5286 /**
5287  * @class Roo.bootstrap.Element
5288  * @extends Roo.bootstrap.Component
5289  * Bootstrap Element class
5290  * @cfg {String} html contents of the element
5291  * @cfg {String} tag tag of the element
5292  * @cfg {String} cls class of the element
5293  * @cfg {Boolean} preventDefault (true|false) default false
5294  * @cfg {Boolean} clickable (true|false) default false
5295  * 
5296  * @constructor
5297  * Create a new Element
5298  * @param {Object} config The config object
5299  */
5300
5301 Roo.bootstrap.Element = function(config){
5302     Roo.bootstrap.Element.superclass.constructor.call(this, config);
5303     
5304     this.addEvents({
5305         // raw events
5306         /**
5307          * @event click
5308          * When a element is chick
5309          * @param {Roo.bootstrap.Element} this
5310          * @param {Roo.EventObject} e
5311          */
5312         "click" : true
5313     });
5314 };
5315
5316 Roo.extend(Roo.bootstrap.Element, Roo.bootstrap.Component,  {
5317     
5318     tag: 'div',
5319     cls: '',
5320     html: '',
5321     preventDefault: false, 
5322     clickable: false,
5323     
5324     getAutoCreate : function(){
5325         
5326         var cfg = {
5327             tag: this.tag,
5328             // cls: this.cls, double assign in parent class Component.js :: onRender
5329             html: this.html
5330         };
5331         
5332         return cfg;
5333     },
5334     
5335     initEvents: function() 
5336     {
5337         Roo.bootstrap.Element.superclass.initEvents.call(this);
5338         
5339         if(this.clickable){
5340             this.el.on('click', this.onClick, this);
5341         }
5342         
5343     },
5344     
5345     onClick : function(e)
5346     {
5347         if(this.preventDefault){
5348             e.preventDefault();
5349         }
5350         
5351         this.fireEvent('click', this, e);
5352     },
5353     
5354     getValue : function()
5355     {
5356         return this.el.dom.innerHTML;
5357     },
5358     
5359     setValue : function(value)
5360     {
5361         this.el.dom.innerHTML = value;
5362     }
5363    
5364 });
5365
5366  
5367
5368  /*
5369  * - LGPL
5370  *
5371  * pagination
5372  * 
5373  */
5374
5375 /**
5376  * @class Roo.bootstrap.Pagination
5377  * @extends Roo.bootstrap.Component
5378  * Bootstrap Pagination class
5379  * @cfg {String} size xs | sm | md | lg
5380  * @cfg {Boolean} inverse false | true
5381  * 
5382  * @constructor
5383  * Create a new Pagination
5384  * @param {Object} config The config object
5385  */
5386
5387 Roo.bootstrap.Pagination = function(config){
5388     Roo.bootstrap.Pagination.superclass.constructor.call(this, config);
5389 };
5390
5391 Roo.extend(Roo.bootstrap.Pagination, Roo.bootstrap.Component,  {
5392     
5393     cls: false,
5394     size: false,
5395     inverse: false,
5396     
5397     getAutoCreate : function(){
5398         var cfg = {
5399             tag: 'ul',
5400                 cls: 'pagination'
5401         };
5402         if (this.inverse) {
5403             cfg.cls += ' inverse';
5404         }
5405         if (this.html) {
5406             cfg.html=this.html;
5407         }
5408         if (this.cls) {
5409             cfg.cls += " " + this.cls;
5410         }
5411         return cfg;
5412     }
5413    
5414 });
5415
5416  
5417
5418  /*
5419  * - LGPL
5420  *
5421  * Pagination item
5422  * 
5423  */
5424
5425
5426 /**
5427  * @class Roo.bootstrap.PaginationItem
5428  * @extends Roo.bootstrap.Component
5429  * Bootstrap PaginationItem class
5430  * @cfg {String} html text
5431  * @cfg {String} href the link
5432  * @cfg {Boolean} preventDefault (true | false) default true
5433  * @cfg {Boolean} active (true | false) default false
5434  * @cfg {Boolean} disabled default false
5435  * 
5436  * 
5437  * @constructor
5438  * Create a new PaginationItem
5439  * @param {Object} config The config object
5440  */
5441
5442
5443 Roo.bootstrap.PaginationItem = function(config){
5444     Roo.bootstrap.PaginationItem.superclass.constructor.call(this, config);
5445     this.addEvents({
5446         // raw events
5447         /**
5448          * @event click
5449          * The raw click event for the entire grid.
5450          * @param {Roo.EventObject} e
5451          */
5452         "click" : true
5453     });
5454 };
5455
5456 Roo.extend(Roo.bootstrap.PaginationItem, Roo.bootstrap.Component,  {
5457     
5458     href : false,
5459     html : false,
5460     preventDefault: true,
5461     active : false,
5462     cls : false,
5463     disabled: false,
5464     
5465     getAutoCreate : function(){
5466         var cfg= {
5467             tag: 'li',
5468             cn: [
5469                 {
5470                     tag : 'a',
5471                     href : this.href ? this.href : '#',
5472                     html : this.html ? this.html : ''
5473                 }
5474             ]
5475         };
5476         
5477         if(this.cls){
5478             cfg.cls = this.cls;
5479         }
5480         
5481         if(this.disabled){
5482             cfg.cls = typeof(cfg.cls) !== 'undefined' ? cfg.cls + ' disabled' : 'disabled';
5483         }
5484         
5485         if(this.active){
5486             cfg.cls = typeof(cfg.cls) !== 'undefined' ? cfg.cls + ' active' : 'active';
5487         }
5488         
5489         return cfg;
5490     },
5491     
5492     initEvents: function() {
5493         
5494         this.el.on('click', this.onClick, this);
5495         
5496     },
5497     onClick : function(e)
5498     {
5499         Roo.log('PaginationItem on click ');
5500         if(this.preventDefault){
5501             e.preventDefault();
5502         }
5503         
5504         if(this.disabled){
5505             return;
5506         }
5507         
5508         this.fireEvent('click', this, e);
5509     }
5510    
5511 });
5512
5513  
5514
5515  /*
5516  * - LGPL
5517  *
5518  * slider
5519  * 
5520  */
5521
5522
5523 /**
5524  * @class Roo.bootstrap.Slider
5525  * @extends Roo.bootstrap.Component
5526  * Bootstrap Slider class
5527  *    
5528  * @constructor
5529  * Create a new Slider
5530  * @param {Object} config The config object
5531  */
5532
5533 Roo.bootstrap.Slider = function(config){
5534     Roo.bootstrap.Slider.superclass.constructor.call(this, config);
5535 };
5536
5537 Roo.extend(Roo.bootstrap.Slider, Roo.bootstrap.Component,  {
5538     
5539     getAutoCreate : function(){
5540         
5541         var cfg = {
5542             tag: 'div',
5543             cls: 'slider slider-sample1 vertical-handler ui-slider ui-slider-horizontal ui-widget ui-widget-content ui-corner-all',
5544             cn: [
5545                 {
5546                     tag: 'a',
5547                     cls: 'ui-slider-handle ui-state-default ui-corner-all'
5548                 }
5549             ]
5550         };
5551         
5552         return cfg;
5553     }
5554    
5555 });
5556
5557  /*
5558  * Based on:
5559  * Ext JS Library 1.1.1
5560  * Copyright(c) 2006-2007, Ext JS, LLC.
5561  *
5562  * Originally Released Under LGPL - original licence link has changed is not relivant.
5563  *
5564  * Fork - LGPL
5565  * <script type="text/javascript">
5566  */
5567  
5568
5569 /**
5570  * @class Roo.grid.ColumnModel
5571  * @extends Roo.util.Observable
5572  * This is the default implementation of a ColumnModel used by the Grid. It defines
5573  * the columns in the grid.
5574  * <br>Usage:<br>
5575  <pre><code>
5576  var colModel = new Roo.grid.ColumnModel([
5577         {header: "Ticker", width: 60, sortable: true, locked: true},
5578         {header: "Company Name", width: 150, sortable: true},
5579         {header: "Market Cap.", width: 100, sortable: true},
5580         {header: "$ Sales", width: 100, sortable: true, renderer: money},
5581         {header: "Employees", width: 100, sortable: true, resizable: false}
5582  ]);
5583  </code></pre>
5584  * <p>
5585  
5586  * The config options listed for this class are options which may appear in each
5587  * individual column definition.
5588  * <br/>RooJS Fix - column id's are not sequential but use Roo.id() - fixes bugs with layouts.
5589  * @constructor
5590  * @param {Object} config An Array of column config objects. See this class's
5591  * config objects for details.
5592 */
5593 Roo.grid.ColumnModel = function(config){
5594         /**
5595      * The config passed into the constructor
5596      */
5597     this.config = config;
5598     this.lookup = {};
5599
5600     // if no id, create one
5601     // if the column does not have a dataIndex mapping,
5602     // map it to the order it is in the config
5603     for(var i = 0, len = config.length; i < len; i++){
5604         var c = config[i];
5605         if(typeof c.dataIndex == "undefined"){
5606             c.dataIndex = i;
5607         }
5608         if(typeof c.renderer == "string"){
5609             c.renderer = Roo.util.Format[c.renderer];
5610         }
5611         if(typeof c.id == "undefined"){
5612             c.id = Roo.id();
5613         }
5614         if(c.editor && c.editor.xtype){
5615             c.editor  = Roo.factory(c.editor, Roo.grid);
5616         }
5617         if(c.editor && c.editor.isFormField){
5618             c.editor = new Roo.grid.GridEditor(c.editor);
5619         }
5620         this.lookup[c.id] = c;
5621     }
5622
5623     /**
5624      * The width of columns which have no width specified (defaults to 100)
5625      * @type Number
5626      */
5627     this.defaultWidth = 100;
5628
5629     /**
5630      * Default sortable of columns which have no sortable specified (defaults to false)
5631      * @type Boolean
5632      */
5633     this.defaultSortable = false;
5634
5635     this.addEvents({
5636         /**
5637              * @event widthchange
5638              * Fires when the width of a column changes.
5639              * @param {ColumnModel} this
5640              * @param {Number} columnIndex The column index
5641              * @param {Number} newWidth The new width
5642              */
5643             "widthchange": true,
5644         /**
5645              * @event headerchange
5646              * Fires when the text of a header changes.
5647              * @param {ColumnModel} this
5648              * @param {Number} columnIndex The column index
5649              * @param {Number} newText The new header text
5650              */
5651             "headerchange": true,
5652         /**
5653              * @event hiddenchange
5654              * Fires when a column is hidden or "unhidden".
5655              * @param {ColumnModel} this
5656              * @param {Number} columnIndex The column index
5657              * @param {Boolean} hidden true if hidden, false otherwise
5658              */
5659             "hiddenchange": true,
5660             /**
5661          * @event columnmoved
5662          * Fires when a column is moved.
5663          * @param {ColumnModel} this
5664          * @param {Number} oldIndex
5665          * @param {Number} newIndex
5666          */
5667         "columnmoved" : true,
5668         /**
5669          * @event columlockchange
5670          * Fires when a column's locked state is changed
5671          * @param {ColumnModel} this
5672          * @param {Number} colIndex
5673          * @param {Boolean} locked true if locked
5674          */
5675         "columnlockchange" : true
5676     });
5677     Roo.grid.ColumnModel.superclass.constructor.call(this);
5678 };
5679 Roo.extend(Roo.grid.ColumnModel, Roo.util.Observable, {
5680     /**
5681      * @cfg {String} header The header text to display in the Grid view.
5682      */
5683     /**
5684      * @cfg {String} dataIndex (Optional) The name of the field in the grid's {@link Roo.data.Store}'s
5685      * {@link Roo.data.Record} definition from which to draw the column's value. If not
5686      * specified, the column's index is used as an index into the Record's data Array.
5687      */
5688     /**
5689      * @cfg {Number} width (Optional) The initial width in pixels of the column. Using this
5690      * instead of {@link Roo.grid.Grid#autoSizeColumns} is more efficient.
5691      */
5692     /**
5693      * @cfg {Boolean} sortable (Optional) True if sorting is to be allowed on this column.
5694      * Defaults to the value of the {@link #defaultSortable} property.
5695      * Whether local/remote sorting is used is specified in {@link Roo.data.Store#remoteSort}.
5696      */
5697     /**
5698      * @cfg {Boolean} locked (Optional) True to lock the column in place while scrolling the Grid.  Defaults to false.
5699      */
5700     /**
5701      * @cfg {Boolean} fixed (Optional) True if the column width cannot be changed.  Defaults to false.
5702      */
5703     /**
5704      * @cfg {Boolean} resizable (Optional) False to disable column resizing. Defaults to true.
5705      */
5706     /**
5707      * @cfg {Boolean} hidden (Optional) True to hide the column. Defaults to false.
5708      */
5709     /**
5710      * @cfg {Function} renderer (Optional) A function used to generate HTML markup for a cell
5711      * given the cell's data value. See {@link #setRenderer}. If not specified, the
5712      * default renderer returns the escaped data value. If an object is returned (bootstrap only)
5713      * then it is treated as a Roo Component object instance, and it is rendered after the initial row is rendered
5714      */
5715        /**
5716      * @cfg {Roo.grid.GridEditor} editor (Optional) For grid editors - returns the grid editor 
5717      */
5718     /**
5719      * @cfg {String} align (Optional) Set the CSS text-align property of the column.  Defaults to undefined.
5720      */
5721     /**
5722      * @cfg {String} valign (Optional) Set the CSS vertical-align property of the column (eg. middle, top, bottom etc).  Defaults to undefined.
5723      */
5724     /**
5725      * @cfg {String} cursor (Optional)
5726      */
5727     /**
5728      * @cfg {String} tooltip (Optional)
5729      */
5730     /**
5731      * @cfg {Number} xs (Optional)
5732      */
5733     /**
5734      * @cfg {Number} sm (Optional)
5735      */
5736     /**
5737      * @cfg {Number} md (Optional)
5738      */
5739     /**
5740      * @cfg {Number} lg (Optional)
5741      */
5742     /**
5743      * Returns the id of the column at the specified index.
5744      * @param {Number} index The column index
5745      * @return {String} the id
5746      */
5747     getColumnId : function(index){
5748         return this.config[index].id;
5749     },
5750
5751     /**
5752      * Returns the column for a specified id.
5753      * @param {String} id The column id
5754      * @return {Object} the column
5755      */
5756     getColumnById : function(id){
5757         return this.lookup[id];
5758     },
5759
5760     
5761     /**
5762      * Returns the column for a specified dataIndex.
5763      * @param {String} dataIndex The column dataIndex
5764      * @return {Object|Boolean} the column or false if not found
5765      */
5766     getColumnByDataIndex: function(dataIndex){
5767         var index = this.findColumnIndex(dataIndex);
5768         return index > -1 ? this.config[index] : false;
5769     },
5770     
5771     /**
5772      * Returns the index for a specified column id.
5773      * @param {String} id The column id
5774      * @return {Number} the index, or -1 if not found
5775      */
5776     getIndexById : function(id){
5777         for(var i = 0, len = this.config.length; i < len; i++){
5778             if(this.config[i].id == id){
5779                 return i;
5780             }
5781         }
5782         return -1;
5783     },
5784     
5785     /**
5786      * Returns the index for a specified column dataIndex.
5787      * @param {String} dataIndex The column dataIndex
5788      * @return {Number} the index, or -1 if not found
5789      */
5790     
5791     findColumnIndex : function(dataIndex){
5792         for(var i = 0, len = this.config.length; i < len; i++){
5793             if(this.config[i].dataIndex == dataIndex){
5794                 return i;
5795             }
5796         }
5797         return -1;
5798     },
5799     
5800     
5801     moveColumn : function(oldIndex, newIndex){
5802         var c = this.config[oldIndex];
5803         this.config.splice(oldIndex, 1);
5804         this.config.splice(newIndex, 0, c);
5805         this.dataMap = null;
5806         this.fireEvent("columnmoved", this, oldIndex, newIndex);
5807     },
5808
5809     isLocked : function(colIndex){
5810         return this.config[colIndex].locked === true;
5811     },
5812
5813     setLocked : function(colIndex, value, suppressEvent){
5814         if(this.isLocked(colIndex) == value){
5815             return;
5816         }
5817         this.config[colIndex].locked = value;
5818         if(!suppressEvent){
5819             this.fireEvent("columnlockchange", this, colIndex, value);
5820         }
5821     },
5822
5823     getTotalLockedWidth : function(){
5824         var totalWidth = 0;
5825         for(var i = 0; i < this.config.length; i++){
5826             if(this.isLocked(i) && !this.isHidden(i)){
5827                 this.totalWidth += this.getColumnWidth(i);
5828             }
5829         }
5830         return totalWidth;
5831     },
5832
5833     getLockedCount : function(){
5834         for(var i = 0, len = this.config.length; i < len; i++){
5835             if(!this.isLocked(i)){
5836                 return i;
5837             }
5838         }
5839         
5840         return this.config.length;
5841     },
5842
5843     /**
5844      * Returns the number of columns.
5845      * @return {Number}
5846      */
5847     getColumnCount : function(visibleOnly){
5848         if(visibleOnly === true){
5849             var c = 0;
5850             for(var i = 0, len = this.config.length; i < len; i++){
5851                 if(!this.isHidden(i)){
5852                     c++;
5853                 }
5854             }
5855             return c;
5856         }
5857         return this.config.length;
5858     },
5859
5860     /**
5861      * Returns the column configs that return true by the passed function that is called with (columnConfig, index)
5862      * @param {Function} fn
5863      * @param {Object} scope (optional)
5864      * @return {Array} result
5865      */
5866     getColumnsBy : function(fn, scope){
5867         var r = [];
5868         for(var i = 0, len = this.config.length; i < len; i++){
5869             var c = this.config[i];
5870             if(fn.call(scope||this, c, i) === true){
5871                 r[r.length] = c;
5872             }
5873         }
5874         return r;
5875     },
5876
5877     /**
5878      * Returns true if the specified column is sortable.
5879      * @param {Number} col The column index
5880      * @return {Boolean}
5881      */
5882     isSortable : function(col){
5883         if(typeof this.config[col].sortable == "undefined"){
5884             return this.defaultSortable;
5885         }
5886         return this.config[col].sortable;
5887     },
5888
5889     /**
5890      * Returns the rendering (formatting) function defined for the column.
5891      * @param {Number} col The column index.
5892      * @return {Function} The function used to render the cell. See {@link #setRenderer}.
5893      */
5894     getRenderer : function(col){
5895         if(!this.config[col].renderer){
5896             return Roo.grid.ColumnModel.defaultRenderer;
5897         }
5898         return this.config[col].renderer;
5899     },
5900
5901     /**
5902      * Sets the rendering (formatting) function for a column.
5903      * @param {Number} col The column index
5904      * @param {Function} fn The function to use to process the cell's raw data
5905      * to return HTML markup for the grid view. The render function is called with
5906      * the following parameters:<ul>
5907      * <li>Data value.</li>
5908      * <li>Cell metadata. An object in which you may set the following attributes:<ul>
5909      * <li>css A CSS style string to apply to the table cell.</li>
5910      * <li>attr An HTML attribute definition string to apply to the data container element <i>within</i> the table cell.</li></ul>
5911      * <li>The {@link Roo.data.Record} from which the data was extracted.</li>
5912      * <li>Row index</li>
5913      * <li>Column index</li>
5914      * <li>The {@link Roo.data.Store} object from which the Record was extracted</li></ul>
5915      */
5916     setRenderer : function(col, fn){
5917         this.config[col].renderer = fn;
5918     },
5919
5920     /**
5921      * Returns the width for the specified column.
5922      * @param {Number} col The column index
5923      * @return {Number}
5924      */
5925     getColumnWidth : function(col){
5926         return this.config[col].width * 1 || this.defaultWidth;
5927     },
5928
5929     /**
5930      * Sets the width for a column.
5931      * @param {Number} col The column index
5932      * @param {Number} width The new width
5933      */
5934     setColumnWidth : function(col, width, suppressEvent){
5935         this.config[col].width = width;
5936         this.totalWidth = null;
5937         if(!suppressEvent){
5938              this.fireEvent("widthchange", this, col, width);
5939         }
5940     },
5941
5942     /**
5943      * Returns the total width of all columns.
5944      * @param {Boolean} includeHidden True to include hidden column widths
5945      * @return {Number}
5946      */
5947     getTotalWidth : function(includeHidden){
5948         if(!this.totalWidth){
5949             this.totalWidth = 0;
5950             for(var i = 0, len = this.config.length; i < len; i++){
5951                 if(includeHidden || !this.isHidden(i)){
5952                     this.totalWidth += this.getColumnWidth(i);
5953                 }
5954             }
5955         }
5956         return this.totalWidth;
5957     },
5958
5959     /**
5960      * Returns the header for the specified column.
5961      * @param {Number} col The column index
5962      * @return {String}
5963      */
5964     getColumnHeader : function(col){
5965         return this.config[col].header;
5966     },
5967
5968     /**
5969      * Sets the header for a column.
5970      * @param {Number} col The column index
5971      * @param {String} header The new header
5972      */
5973     setColumnHeader : function(col, header){
5974         this.config[col].header = header;
5975         this.fireEvent("headerchange", this, col, header);
5976     },
5977
5978     /**
5979      * Returns the tooltip for the specified column.
5980      * @param {Number} col The column index
5981      * @return {String}
5982      */
5983     getColumnTooltip : function(col){
5984             return this.config[col].tooltip;
5985     },
5986     /**
5987      * Sets the tooltip for a column.
5988      * @param {Number} col The column index
5989      * @param {String} tooltip The new tooltip
5990      */
5991     setColumnTooltip : function(col, tooltip){
5992             this.config[col].tooltip = tooltip;
5993     },
5994
5995     /**
5996      * Returns the dataIndex for the specified column.
5997      * @param {Number} col The column index
5998      * @return {Number}
5999      */
6000     getDataIndex : function(col){
6001         return this.config[col].dataIndex;
6002     },
6003
6004     /**
6005      * Sets the dataIndex for a column.
6006      * @param {Number} col The column index
6007      * @param {Number} dataIndex The new dataIndex
6008      */
6009     setDataIndex : function(col, dataIndex){
6010         this.config[col].dataIndex = dataIndex;
6011     },
6012
6013     
6014     
6015     /**
6016      * Returns true if the cell is editable.
6017      * @param {Number} colIndex The column index
6018      * @param {Number} rowIndex The row index - this is nto actually used..?
6019      * @return {Boolean}
6020      */
6021     isCellEditable : function(colIndex, rowIndex){
6022         return (this.config[colIndex].editable || (typeof this.config[colIndex].editable == "undefined" && this.config[colIndex].editor)) ? true : false;
6023     },
6024
6025     /**
6026      * Returns the editor defined for the cell/column.
6027      * return false or null to disable editing.
6028      * @param {Number} colIndex The column index
6029      * @param {Number} rowIndex The row index
6030      * @return {Object}
6031      */
6032     getCellEditor : function(colIndex, rowIndex){
6033         return this.config[colIndex].editor;
6034     },
6035
6036     /**
6037      * Sets if a column is editable.
6038      * @param {Number} col The column index
6039      * @param {Boolean} editable True if the column is editable
6040      */
6041     setEditable : function(col, editable){
6042         this.config[col].editable = editable;
6043     },
6044
6045
6046     /**
6047      * Returns true if the column is hidden.
6048      * @param {Number} colIndex The column index
6049      * @return {Boolean}
6050      */
6051     isHidden : function(colIndex){
6052         return this.config[colIndex].hidden;
6053     },
6054
6055
6056     /**
6057      * Returns true if the column width cannot be changed
6058      */
6059     isFixed : function(colIndex){
6060         return this.config[colIndex].fixed;
6061     },
6062
6063     /**
6064      * Returns true if the column can be resized
6065      * @return {Boolean}
6066      */
6067     isResizable : function(colIndex){
6068         return colIndex >= 0 && this.config[colIndex].resizable !== false && this.config[colIndex].fixed !== true;
6069     },
6070     /**
6071      * Sets if a column is hidden.
6072      * @param {Number} colIndex The column index
6073      * @param {Boolean} hidden True if the column is hidden
6074      */
6075     setHidden : function(colIndex, hidden){
6076         this.config[colIndex].hidden = hidden;
6077         this.totalWidth = null;
6078         this.fireEvent("hiddenchange", this, colIndex, hidden);
6079     },
6080
6081     /**
6082      * Sets the editor for a column.
6083      * @param {Number} col The column index
6084      * @param {Object} editor The editor object
6085      */
6086     setEditor : function(col, editor){
6087         this.config[col].editor = editor;
6088     }
6089 });
6090
6091 Roo.grid.ColumnModel.defaultRenderer = function(value)
6092 {
6093     if(typeof value == "object") {
6094         return value;
6095     }
6096         if(typeof value == "string" && value.length < 1){
6097             return "&#160;";
6098         }
6099     
6100         return String.format("{0}", value);
6101 };
6102
6103 // Alias for backwards compatibility
6104 Roo.grid.DefaultColumnModel = Roo.grid.ColumnModel;
6105 /*
6106  * Based on:
6107  * Ext JS Library 1.1.1
6108  * Copyright(c) 2006-2007, Ext JS, LLC.
6109  *
6110  * Originally Released Under LGPL - original licence link has changed is not relivant.
6111  *
6112  * Fork - LGPL
6113  * <script type="text/javascript">
6114  */
6115  
6116 /**
6117  * @class Roo.LoadMask
6118  * A simple utility class for generically masking elements while loading data.  If the element being masked has
6119  * an underlying {@link Roo.data.Store}, the masking will be automatically synchronized with the store's loading
6120  * process and the mask element will be cached for reuse.  For all other elements, this mask will replace the
6121  * element's UpdateManager load indicator and will be destroyed after the initial load.
6122  * @constructor
6123  * Create a new LoadMask
6124  * @param {String/HTMLElement/Roo.Element} el The element or DOM node, or its id
6125  * @param {Object} config The config object
6126  */
6127 Roo.LoadMask = function(el, config){
6128     this.el = Roo.get(el);
6129     Roo.apply(this, config);
6130     if(this.store){
6131         this.store.on('beforeload', this.onBeforeLoad, this);
6132         this.store.on('load', this.onLoad, this);
6133         this.store.on('loadexception', this.onLoadException, this);
6134         this.removeMask = false;
6135     }else{
6136         var um = this.el.getUpdateManager();
6137         um.showLoadIndicator = false; // disable the default indicator
6138         um.on('beforeupdate', this.onBeforeLoad, this);
6139         um.on('update', this.onLoad, this);
6140         um.on('failure', this.onLoad, this);
6141         this.removeMask = true;
6142     }
6143 };
6144
6145 Roo.LoadMask.prototype = {
6146     /**
6147      * @cfg {Boolean} removeMask
6148      * True to create a single-use mask that is automatically destroyed after loading (useful for page loads),
6149      * False to persist the mask element reference for multiple uses (e.g., for paged data widgets).  Defaults to false.
6150      */
6151     /**
6152      * @cfg {String} msg
6153      * The text to display in a centered loading message box (defaults to 'Loading...')
6154      */
6155     msg : 'Loading...',
6156     /**
6157      * @cfg {String} msgCls
6158      * The CSS class to apply to the loading message element (defaults to "x-mask-loading")
6159      */
6160     msgCls : 'x-mask-loading',
6161
6162     /**
6163      * Read-only. True if the mask is currently disabled so that it will not be displayed (defaults to false)
6164      * @type Boolean
6165      */
6166     disabled: false,
6167
6168     /**
6169      * Disables the mask to prevent it from being displayed
6170      */
6171     disable : function(){
6172        this.disabled = true;
6173     },
6174
6175     /**
6176      * Enables the mask so that it can be displayed
6177      */
6178     enable : function(){
6179         this.disabled = false;
6180     },
6181     
6182     onLoadException : function()
6183     {
6184         Roo.log(arguments);
6185         
6186         if (typeof(arguments[3]) != 'undefined') {
6187             Roo.MessageBox.alert("Error loading",arguments[3]);
6188         } 
6189         /*
6190         try {
6191             if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
6192                 Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
6193             }   
6194         } catch(e) {
6195             
6196         }
6197         */
6198     
6199         (function() { this.el.unmask(this.removeMask); }).defer(50, this);
6200     },
6201     // private
6202     onLoad : function()
6203     {
6204         (function() { this.el.unmask(this.removeMask); }).defer(50, this);
6205     },
6206
6207     // private
6208     onBeforeLoad : function(){
6209         if(!this.disabled){
6210             (function() { this.el.mask(this.msg, this.msgCls); }).defer(50, this);
6211         }
6212     },
6213
6214     // private
6215     destroy : function(){
6216         if(this.store){
6217             this.store.un('beforeload', this.onBeforeLoad, this);
6218             this.store.un('load', this.onLoad, this);
6219             this.store.un('loadexception', this.onLoadException, this);
6220         }else{
6221             var um = this.el.getUpdateManager();
6222             um.un('beforeupdate', this.onBeforeLoad, this);
6223             um.un('update', this.onLoad, this);
6224             um.un('failure', this.onLoad, this);
6225         }
6226     }
6227 };/*
6228  * - LGPL
6229  *
6230  * table
6231  * 
6232  */
6233
6234 /**
6235  * @class Roo.bootstrap.Table
6236  * @extends Roo.bootstrap.Component
6237  * Bootstrap Table class
6238  * @cfg {String} cls table class
6239  * @cfg {String} align (left|center|right) Specifies the alignment of a table according to surrounding text
6240  * @cfg {String} bgcolor Specifies the background color for a table
6241  * @cfg {Number} border Specifies whether the table cells should have borders or not
6242  * @cfg {Number} cellpadding Specifies the space between the cell wall and the cell content
6243  * @cfg {Number} cellspacing Specifies the space between cells
6244  * @cfg {String} frame Specifies which parts of the outside borders that should be visible
6245  * @cfg {String} rules Specifies which parts of the inside borders that should be visible
6246  * @cfg {String} sortable Specifies that the table should be sortable
6247  * @cfg {String} summary Specifies a summary of the content of a table
6248  * @cfg {Number} width Specifies the width of a table
6249  * @cfg {String} layout table layout (auto | fixed | initial | inherit)
6250  * 
6251  * @cfg {boolean} striped Should the rows be alternative striped
6252  * @cfg {boolean} bordered Add borders to the table
6253  * @cfg {boolean} hover Add hover highlighting
6254  * @cfg {boolean} condensed Format condensed
6255  * @cfg {boolean} responsive Format condensed
6256  * @cfg {Boolean} loadMask (true|false) default false
6257  * @cfg {Boolean} footerShow (true|false) generate tfoot, default true
6258  * @cfg {Boolean} headerShow (true|false) generate thead, default true
6259  * @cfg {Boolean} rowSelection (true|false) default false
6260  * @cfg {Boolean} cellSelection (true|false) default false
6261  * @cfg {Boolean} scrollBody (true|false) default false - body scrolled / fixed header
6262  * @cfg {Roo.bootstrap.PagingToolbar} footer  a paging toolbar
6263  * @cfg {Boolean} lazyLoad  auto load data while scrolling to the end (default false)
6264  * @cfg {Boolean} auto_hide_footer  auto hide footer if only one page (default false)
6265  
6266  * 
6267  * @constructor
6268  * Create a new Table
6269  * @param {Object} config The config object
6270  */
6271
6272 Roo.bootstrap.Table = function(config){
6273     Roo.bootstrap.Table.superclass.constructor.call(this, config);
6274     
6275   
6276     
6277     // BC...
6278     this.rowSelection = (typeof(config.rowSelection) != 'undefined') ? config.rowSelection : this.rowSelection;
6279     this.cellSelection = (typeof(config.cellSelection) != 'undefined') ? config.cellSelection : this.cellSelection;
6280     this.headerShow = (typeof(config.thead) != 'undefined') ? config.thead : this.headerShow;
6281     this.footerShow = (typeof(config.tfoot) != 'undefined') ? config.tfoot : this.footerShow;
6282     
6283     this.sm = this.sm || {xtype: 'RowSelectionModel'};
6284     if (this.sm) {
6285         this.sm.grid = this;
6286         this.selModel = Roo.factory(this.sm, Roo.bootstrap.Table);
6287         this.sm = this.selModel;
6288         this.sm.xmodule = this.xmodule || false;
6289     }
6290     
6291     if (this.cm && typeof(this.cm.config) == 'undefined') {
6292         this.colModel = new Roo.grid.ColumnModel(this.cm);
6293         this.cm = this.colModel;
6294         this.cm.xmodule = this.xmodule || false;
6295     }
6296     if (this.store) {
6297         this.store= Roo.factory(this.store, Roo.data);
6298         this.ds = this.store;
6299         this.ds.xmodule = this.xmodule || false;
6300          
6301     }
6302     if (this.footer && this.store) {
6303         this.footer.dataSource = this.ds;
6304         this.footer = Roo.factory(this.footer);
6305     }
6306     
6307     /** @private */
6308     this.addEvents({
6309         /**
6310          * @event cellclick
6311          * Fires when a cell is clicked
6312          * @param {Roo.bootstrap.Table} this
6313          * @param {Roo.Element} el
6314          * @param {Number} rowIndex
6315          * @param {Number} columnIndex
6316          * @param {Roo.EventObject} e
6317          */
6318         "cellclick" : true,
6319         /**
6320          * @event celldblclick
6321          * Fires when a cell is double clicked
6322          * @param {Roo.bootstrap.Table} this
6323          * @param {Roo.Element} el
6324          * @param {Number} rowIndex
6325          * @param {Number} columnIndex
6326          * @param {Roo.EventObject} e
6327          */
6328         "celldblclick" : true,
6329         /**
6330          * @event rowclick
6331          * Fires when a row is clicked
6332          * @param {Roo.bootstrap.Table} this
6333          * @param {Roo.Element} el
6334          * @param {Number} rowIndex
6335          * @param {Roo.EventObject} e
6336          */
6337         "rowclick" : true,
6338         /**
6339          * @event rowdblclick
6340          * Fires when a row is double clicked
6341          * @param {Roo.bootstrap.Table} this
6342          * @param {Roo.Element} el
6343          * @param {Number} rowIndex
6344          * @param {Roo.EventObject} e
6345          */
6346         "rowdblclick" : true,
6347         /**
6348          * @event mouseover
6349          * Fires when a mouseover occur
6350          * @param {Roo.bootstrap.Table} this
6351          * @param {Roo.Element} el
6352          * @param {Number} rowIndex
6353          * @param {Number} columnIndex
6354          * @param {Roo.EventObject} e
6355          */
6356         "mouseover" : true,
6357         /**
6358          * @event mouseout
6359          * Fires when a mouseout occur
6360          * @param {Roo.bootstrap.Table} this
6361          * @param {Roo.Element} el
6362          * @param {Number} rowIndex
6363          * @param {Number} columnIndex
6364          * @param {Roo.EventObject} e
6365          */
6366         "mouseout" : true,
6367         /**
6368          * @event rowclass
6369          * Fires when a row is rendered, so you can change add a style to it.
6370          * @param {Roo.bootstrap.Table} this
6371          * @param {Object} rowcfg   contains record  rowIndex colIndex and rowClass - set rowClass to add a style.
6372          */
6373         'rowclass' : true,
6374           /**
6375          * @event rowsrendered
6376          * Fires when all the  rows have been rendered
6377          * @param {Roo.bootstrap.Table} this
6378          */
6379         'rowsrendered' : true,
6380         /**
6381          * @event contextmenu
6382          * The raw contextmenu event for the entire grid.
6383          * @param {Roo.EventObject} e
6384          */
6385         "contextmenu" : true,
6386         /**
6387          * @event rowcontextmenu
6388          * Fires when a row is right clicked
6389          * @param {Roo.bootstrap.Table} this
6390          * @param {Number} rowIndex
6391          * @param {Roo.EventObject} e
6392          */
6393         "rowcontextmenu" : true,
6394         /**
6395          * @event cellcontextmenu
6396          * Fires when a cell is right clicked
6397          * @param {Roo.bootstrap.Table} this
6398          * @param {Number} rowIndex
6399          * @param {Number} cellIndex
6400          * @param {Roo.EventObject} e
6401          */
6402          "cellcontextmenu" : true,
6403          /**
6404          * @event headercontextmenu
6405          * Fires when a header is right clicked
6406          * @param {Roo.bootstrap.Table} this
6407          * @param {Number} columnIndex
6408          * @param {Roo.EventObject} e
6409          */
6410         "headercontextmenu" : true
6411     });
6412 };
6413
6414 Roo.extend(Roo.bootstrap.Table, Roo.bootstrap.Component,  {
6415     
6416     cls: false,
6417     align: false,
6418     bgcolor: false,
6419     border: false,
6420     cellpadding: false,
6421     cellspacing: false,
6422     frame: false,
6423     rules: false,
6424     sortable: false,
6425     summary: false,
6426     width: false,
6427     striped : false,
6428     scrollBody : false,
6429     bordered: false,
6430     hover:  false,
6431     condensed : false,
6432     responsive : false,
6433     sm : false,
6434     cm : false,
6435     store : false,
6436     loadMask : false,
6437     footerShow : true,
6438     headerShow : true,
6439   
6440     rowSelection : false,
6441     cellSelection : false,
6442     layout : false,
6443     
6444     // Roo.Element - the tbody
6445     mainBody: false,
6446     // Roo.Element - thead element
6447     mainHead: false,
6448     
6449     container: false, // used by gridpanel...
6450     
6451     lazyLoad : false,
6452     
6453     CSS : Roo.util.CSS,
6454     
6455     auto_hide_footer : false,
6456     
6457     getAutoCreate : function()
6458     {
6459         var cfg = Roo.apply({}, Roo.bootstrap.Table.superclass.getAutoCreate.call(this));
6460         
6461         cfg = {
6462             tag: 'table',
6463             cls : 'table',
6464             cn : []
6465         };
6466         if (this.scrollBody) {
6467             cfg.cls += ' table-body-fixed';
6468         }    
6469         if (this.striped) {
6470             cfg.cls += ' table-striped';
6471         }
6472         
6473         if (this.hover) {
6474             cfg.cls += ' table-hover';
6475         }
6476         if (this.bordered) {
6477             cfg.cls += ' table-bordered';
6478         }
6479         if (this.condensed) {
6480             cfg.cls += ' table-condensed';
6481         }
6482         if (this.responsive) {
6483             cfg.cls += ' table-responsive';
6484         }
6485         
6486         if (this.cls) {
6487             cfg.cls+=  ' ' +this.cls;
6488         }
6489         
6490         // this lot should be simplifed...
6491         var _t = this;
6492         var cp = [
6493             'align',
6494             'bgcolor',
6495             'border',
6496             'cellpadding',
6497             'cellspacing',
6498             'frame',
6499             'rules',
6500             'sortable',
6501             'summary',
6502             'width'
6503         ].forEach(function(k) {
6504             if (_t[k]) {
6505                 cfg[k] = _t[k];
6506             }
6507         });
6508         
6509         
6510         if (this.layout) {
6511             cfg.style = (typeof(cfg.style) == 'undefined') ? ('table-layout:' + this.layout + ';') : (cfg.style + ('table-layout:' + this.layout + ';'));
6512         }
6513         
6514         if(this.store || this.cm){
6515             if(this.headerShow){
6516                 cfg.cn.push(this.renderHeader());
6517             }
6518             
6519             cfg.cn.push(this.renderBody());
6520             
6521             if(this.footerShow){
6522                 cfg.cn.push(this.renderFooter());
6523             }
6524             // where does this come from?
6525             //cfg.cls+=  ' TableGrid';
6526         }
6527         
6528         return { cn : [ cfg ] };
6529     },
6530     
6531     initEvents : function()
6532     {   
6533         if(!this.store || !this.cm){
6534             return;
6535         }
6536         if (this.selModel) {
6537             this.selModel.initEvents();
6538         }
6539         
6540         
6541         //Roo.log('initEvents with ds!!!!');
6542         
6543         this.mainBody = this.el.select('tbody', true).first();
6544         this.mainHead = this.el.select('thead', true).first();
6545         this.mainFoot = this.el.select('tfoot', true).first();
6546         
6547         
6548         
6549         var _this = this;
6550         
6551         Roo.each(this.el.select('thead th.sortable', true).elements, function(e){
6552             e.on('click', _this.sort, _this);
6553         });
6554         
6555         this.mainBody.on("click", this.onClick, this);
6556         this.mainBody.on("dblclick", this.onDblClick, this);
6557         
6558         // why is this done????? = it breaks dialogs??
6559         //this.parent().el.setStyle('position', 'relative');
6560         
6561         
6562         if (this.footer) {
6563             this.footer.parentId = this.id;
6564             this.footer.onRender(this.el.select('tfoot tr td').first(), null);
6565             
6566             if(this.lazyLoad){
6567                 this.el.select('tfoot tr td').first().addClass('hide');
6568             }
6569         } 
6570         
6571         if(this.loadMask) {
6572             this.maskEl = new Roo.LoadMask(this.el, { store : this.ds, msgCls: 'roo-el-mask-msg' });
6573         }
6574         
6575         this.store.on('load', this.onLoad, this);
6576         this.store.on('beforeload', this.onBeforeLoad, this);
6577         this.store.on('update', this.onUpdate, this);
6578         this.store.on('add', this.onAdd, this);
6579         this.store.on("clear", this.clear, this);
6580         
6581         this.el.on("contextmenu", this.onContextMenu, this);
6582         
6583         this.mainBody.on('scroll', this.onBodyScroll, this);
6584         
6585         this.cm.on("headerchange", this.onHeaderChange, this);
6586         
6587         this.cm.on("hiddenchange", this.onHiddenChange, this, arguments);
6588         
6589     },
6590     
6591     onContextMenu : function(e, t)
6592     {
6593         this.processEvent("contextmenu", e);
6594     },
6595     
6596     processEvent : function(name, e)
6597     {
6598         if (name != 'touchstart' ) {
6599             this.fireEvent(name, e);    
6600         }
6601         
6602         var t = e.getTarget();
6603         
6604         var cell = Roo.get(t);
6605         
6606         if(!cell){
6607             return;
6608         }
6609         
6610         if(cell.findParent('tfoot', false, true)){
6611             return;
6612         }
6613         
6614         if(cell.findParent('thead', false, true)){
6615             
6616             if(e.getTarget().nodeName.toLowerCase() != 'th'){
6617                 cell = Roo.get(t).findParent('th', false, true);
6618                 if (!cell) {
6619                     Roo.log("failed to find th in thead?");
6620                     Roo.log(e.getTarget());
6621                     return;
6622                 }
6623             }
6624             
6625             var cellIndex = cell.dom.cellIndex;
6626             
6627             var ename = name == 'touchstart' ? 'click' : name;
6628             this.fireEvent("header" + ename, this, cellIndex, e);
6629             
6630             return;
6631         }
6632         
6633         if(e.getTarget().nodeName.toLowerCase() != 'td'){
6634             cell = Roo.get(t).findParent('td', false, true);
6635             if (!cell) {
6636                 Roo.log("failed to find th in tbody?");
6637                 Roo.log(e.getTarget());
6638                 return;
6639             }
6640         }
6641         
6642         var row = cell.findParent('tr', false, true);
6643         var cellIndex = cell.dom.cellIndex;
6644         var rowIndex = row.dom.rowIndex - 1;
6645         
6646         if(row !== false){
6647             
6648             this.fireEvent("row" + name, this, rowIndex, e);
6649             
6650             if(cell !== false){
6651             
6652                 this.fireEvent("cell" + name, this, rowIndex, cellIndex, e);
6653             }
6654         }
6655         
6656     },
6657     
6658     onMouseover : function(e, el)
6659     {
6660         var cell = Roo.get(el);
6661         
6662         if(!cell){
6663             return;
6664         }
6665         
6666         if(e.getTarget().nodeName.toLowerCase() != 'td'){
6667             cell = cell.findParent('td', false, true);
6668         }
6669         
6670         var row = cell.findParent('tr', false, true);
6671         var cellIndex = cell.dom.cellIndex;
6672         var rowIndex = row.dom.rowIndex - 1; // start from 0
6673         
6674         this.fireEvent('mouseover', this, cell, rowIndex, cellIndex, e);
6675         
6676     },
6677     
6678     onMouseout : function(e, el)
6679     {
6680         var cell = Roo.get(el);
6681         
6682         if(!cell){
6683             return;
6684         }
6685         
6686         if(e.getTarget().nodeName.toLowerCase() != 'td'){
6687             cell = cell.findParent('td', false, true);
6688         }
6689         
6690         var row = cell.findParent('tr', false, true);
6691         var cellIndex = cell.dom.cellIndex;
6692         var rowIndex = row.dom.rowIndex - 1; // start from 0
6693         
6694         this.fireEvent('mouseout', this, cell, rowIndex, cellIndex, e);
6695         
6696     },
6697     
6698     onClick : function(e, el)
6699     {
6700         var cell = Roo.get(el);
6701         
6702         if(!cell || (!this.cellSelection && !this.rowSelection)){
6703             return;
6704         }
6705         
6706         if(e.getTarget().nodeName.toLowerCase() != 'td'){
6707             cell = cell.findParent('td', false, true);
6708         }
6709         
6710         if(!cell || typeof(cell) == 'undefined'){
6711             return;
6712         }
6713         
6714         var row = cell.findParent('tr', false, true);
6715         
6716         if(!row || typeof(row) == 'undefined'){
6717             return;
6718         }
6719         
6720         var cellIndex = cell.dom.cellIndex;
6721         var rowIndex = this.getRowIndex(row);
6722         
6723         // why??? - should these not be based on SelectionModel?
6724         if(this.cellSelection){
6725             this.fireEvent('cellclick', this, cell, rowIndex, cellIndex, e);
6726         }
6727         
6728         if(this.rowSelection){
6729             this.fireEvent('rowclick', this, row, rowIndex, e);
6730         }
6731         
6732         
6733     },
6734         
6735     onDblClick : function(e,el)
6736     {
6737         var cell = Roo.get(el);
6738         
6739         if(!cell || (!this.cellSelection && !this.rowSelection)){
6740             return;
6741         }
6742         
6743         if(e.getTarget().nodeName.toLowerCase() != 'td'){
6744             cell = cell.findParent('td', false, true);
6745         }
6746         
6747         if(!cell || typeof(cell) == 'undefined'){
6748             return;
6749         }
6750         
6751         var row = cell.findParent('tr', false, true);
6752         
6753         if(!row || typeof(row) == 'undefined'){
6754             return;
6755         }
6756         
6757         var cellIndex = cell.dom.cellIndex;
6758         var rowIndex = this.getRowIndex(row);
6759         
6760         if(this.cellSelection){
6761             this.fireEvent('celldblclick', this, cell, rowIndex, cellIndex, e);
6762         }
6763         
6764         if(this.rowSelection){
6765             this.fireEvent('rowdblclick', this, row, rowIndex, e);
6766         }
6767     },
6768     
6769     sort : function(e,el)
6770     {
6771         var col = Roo.get(el);
6772         
6773         if(!col.hasClass('sortable')){
6774             return;
6775         }
6776         
6777         var sort = col.attr('sort');
6778         var dir = 'ASC';
6779         
6780         if(col.select('i', true).first().hasClass('glyphicon-arrow-up')){
6781             dir = 'DESC';
6782         }
6783         
6784         this.store.sortInfo = {field : sort, direction : dir};
6785         
6786         if (this.footer) {
6787             Roo.log("calling footer first");
6788             this.footer.onClick('first');
6789         } else {
6790         
6791             this.store.load({ params : { start : 0 } });
6792         }
6793     },
6794     
6795     renderHeader : function()
6796     {
6797         var header = {
6798             tag: 'thead',
6799             cn : []
6800         };
6801         
6802         var cm = this.cm;
6803         this.totalWidth = 0;
6804         
6805         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
6806             
6807             var config = cm.config[i];
6808             
6809             var c = {
6810                 tag: 'th',
6811                 cls : 'x-hcol-' + i,
6812                 style : '',
6813                 html: cm.getColumnHeader(i)
6814             };
6815             
6816             var hh = '';
6817             
6818             if(typeof(config.sortable) != 'undefined' && config.sortable){
6819                 c.cls = 'sortable';
6820                 c.html = '<i class="glyphicon"></i>' + c.html;
6821             }
6822             
6823             // could use BS4 hidden-..-down 
6824             
6825             if(typeof(config.lgHeader) != 'undefined'){
6826                 hh += '<span class="hidden-xs hidden-sm hidden-md ">' + config.lgHeader + '</span>';
6827             }
6828             
6829             if(typeof(config.mdHeader) != 'undefined'){
6830                 hh += '<span class="hidden-xs hidden-sm hidden-lg">' + config.mdHeader + '</span>';
6831             }
6832             
6833             if(typeof(config.smHeader) != 'undefined'){
6834                 hh += '<span class="hidden-xs hidden-md hidden-lg">' + config.smHeader + '</span>';
6835             }
6836             
6837             if(typeof(config.xsHeader) != 'undefined'){
6838                 hh += '<span class="hidden-sm hidden-md hidden-lg">' + config.xsHeader + '</span>';
6839             }
6840             
6841             if(hh.length){
6842                 c.html = hh;
6843             }
6844             
6845             if(typeof(config.tooltip) != 'undefined'){
6846                 c.tooltip = config.tooltip;
6847             }
6848             
6849             if(typeof(config.colspan) != 'undefined'){
6850                 c.colspan = config.colspan;
6851             }
6852             
6853             if(typeof(config.hidden) != 'undefined' && config.hidden){
6854                 c.style += ' display:none;';
6855             }
6856             
6857             if(typeof(config.dataIndex) != 'undefined'){
6858                 c.sort = config.dataIndex;
6859             }
6860             
6861            
6862             
6863             if(typeof(config.align) != 'undefined' && config.align.length){
6864                 c.style += ' text-align:' + config.align + ';';
6865             }
6866             
6867             if(typeof(config.width) != 'undefined'){
6868                 c.style += ' width:' + config.width + 'px;';
6869                 this.totalWidth += config.width;
6870             } else {
6871                 this.totalWidth += 100; // assume minimum of 100 per column?
6872             }
6873             
6874             if(typeof(config.cls) != 'undefined'){
6875                 c.cls = (typeof(c.cls) == 'undefined') ? config.cls : (c.cls + ' ' + config.cls);
6876             }
6877             
6878             ['xs','sm','md','lg'].map(function(size){
6879                 
6880                 if(typeof(config[size]) == 'undefined'){
6881                     return;
6882                 }
6883                  
6884                 if (!config[size]) { // 0 = hidden
6885                     // BS 4 '0' is treated as hide that column and below.
6886                     c.cls += ' hidden-' + size + ' hidden' + size + '-down';
6887                     return;
6888                 }
6889                 
6890                 c.cls += ' col-' + size + '-' + config[size] + (
6891                     size == 'xs' ? (' col-' + config[size] ) : '' // bs4 col-{num} replaces col-xs
6892                 );
6893                 
6894                 
6895             });
6896             
6897             header.cn.push(c)
6898         }
6899         
6900         return header;
6901     },
6902     
6903     renderBody : function()
6904     {
6905         var body = {
6906             tag: 'tbody',
6907             cn : [
6908                 {
6909                     tag: 'tr',
6910                     cn : [
6911                         {
6912                             tag : 'td',
6913                             colspan :  this.cm.getColumnCount()
6914                         }
6915                     ]
6916                 }
6917             ]
6918         };
6919         
6920         return body;
6921     },
6922     
6923     renderFooter : function()
6924     {
6925         var footer = {
6926             tag: 'tfoot',
6927             cn : [
6928                 {
6929                     tag: 'tr',
6930                     cn : [
6931                         {
6932                             tag : 'td',
6933                             colspan :  this.cm.getColumnCount()
6934                         }
6935                     ]
6936                 }
6937             ]
6938         };
6939         
6940         return footer;
6941     },
6942     
6943     
6944     
6945     onLoad : function()
6946     {
6947 //        Roo.log('ds onload');
6948         this.clear();
6949         
6950         var _this = this;
6951         var cm = this.cm;
6952         var ds = this.store;
6953         
6954         Roo.each(this.el.select('thead th.sortable', true).elements, function(e){
6955             e.select('i', true).removeClass(['glyphicon-arrow-up', 'glyphicon-arrow-down']);
6956             if (_this.store.sortInfo) {
6957                     
6958                 if(e.hasClass('sortable') && e.attr('sort') == _this.store.sortInfo.field && _this.store.sortInfo.direction.toUpperCase() == 'ASC'){
6959                     e.select('i', true).addClass(['glyphicon-arrow-up']);
6960                 }
6961                 
6962                 if(e.hasClass('sortable') && e.attr('sort') == _this.store.sortInfo.field && _this.store.sortInfo.direction.toUpperCase() == 'DESC'){
6963                     e.select('i', true).addClass(['glyphicon-arrow-down']);
6964                 }
6965             }
6966         });
6967         
6968         var tbody =  this.mainBody;
6969               
6970         if(ds.getCount() > 0){
6971             ds.data.each(function(d,rowIndex){
6972                 var row =  this.renderRow(cm, ds, rowIndex);
6973                 
6974                 tbody.createChild(row);
6975                 
6976                 var _this = this;
6977                 
6978                 if(row.cellObjects.length){
6979                     Roo.each(row.cellObjects, function(r){
6980                         _this.renderCellObject(r);
6981                     })
6982                 }
6983                 
6984             }, this);
6985         }
6986         
6987         var tfoot = this.el.select('tfoot', true).first();
6988         
6989         if(this.footerShow && this.auto_hide_footer && this.mainFoot){
6990             
6991             this.mainFoot.setVisibilityMode(Roo.Element.DISPLAY).hide();
6992             
6993             var total = this.ds.getTotalCount();
6994             
6995             if(this.footer.pageSize < total){
6996                 this.mainFoot.show();
6997             }
6998         }
6999         
7000         Roo.each(this.el.select('tbody td', true).elements, function(e){
7001             e.on('mouseover', _this.onMouseover, _this);
7002         });
7003         
7004         Roo.each(this.el.select('tbody td', true).elements, function(e){
7005             e.on('mouseout', _this.onMouseout, _this);
7006         });
7007         this.fireEvent('rowsrendered', this);
7008         
7009         this.autoSize();
7010     },
7011     
7012     
7013     onUpdate : function(ds,record)
7014     {
7015         this.refreshRow(record);
7016         this.autoSize();
7017     },
7018     
7019     onRemove : function(ds, record, index, isUpdate){
7020         if(isUpdate !== true){
7021             this.fireEvent("beforerowremoved", this, index, record);
7022         }
7023         var bt = this.mainBody.dom;
7024         
7025         var rows = this.el.select('tbody > tr', true).elements;
7026         
7027         if(typeof(rows[index]) != 'undefined'){
7028             bt.removeChild(rows[index].dom);
7029         }
7030         
7031 //        if(bt.rows[index]){
7032 //            bt.removeChild(bt.rows[index]);
7033 //        }
7034         
7035         if(isUpdate !== true){
7036             //this.stripeRows(index);
7037             //this.syncRowHeights(index, index);
7038             //this.layout();
7039             this.fireEvent("rowremoved", this, index, record);
7040         }
7041     },
7042     
7043     onAdd : function(ds, records, rowIndex)
7044     {
7045         //Roo.log('on Add called');
7046         // - note this does not handle multiple adding very well..
7047         var bt = this.mainBody.dom;
7048         for (var i =0 ; i < records.length;i++) {
7049             //Roo.log('call insert row Add called on ' + rowIndex + ':' + i);
7050             //Roo.log(records[i]);
7051             //Roo.log(this.store.getAt(rowIndex+i));
7052             this.insertRow(this.store, rowIndex + i, false);
7053             return;
7054         }
7055         
7056     },
7057     
7058     
7059     refreshRow : function(record){
7060         var ds = this.store, index;
7061         if(typeof record == 'number'){
7062             index = record;
7063             record = ds.getAt(index);
7064         }else{
7065             index = ds.indexOf(record);
7066         }
7067         this.insertRow(ds, index, true);
7068         this.autoSize();
7069         this.onRemove(ds, record, index+1, true);
7070         this.autoSize();
7071         //this.syncRowHeights(index, index);
7072         //this.layout();
7073         this.fireEvent("rowupdated", this, index, record);
7074     },
7075     
7076     insertRow : function(dm, rowIndex, isUpdate){
7077         
7078         if(!isUpdate){
7079             this.fireEvent("beforerowsinserted", this, rowIndex);
7080         }
7081             //var s = this.getScrollState();
7082         var row = this.renderRow(this.cm, this.store, rowIndex);
7083         // insert before rowIndex..
7084         var e = this.mainBody.createChild(row,this.getRowDom(rowIndex));
7085         
7086         var _this = this;
7087                 
7088         if(row.cellObjects.length){
7089             Roo.each(row.cellObjects, function(r){
7090                 _this.renderCellObject(r);
7091             })
7092         }
7093             
7094         if(!isUpdate){
7095             this.fireEvent("rowsinserted", this, rowIndex);
7096             //this.syncRowHeights(firstRow, lastRow);
7097             //this.stripeRows(firstRow);
7098             //this.layout();
7099         }
7100         
7101     },
7102     
7103     
7104     getRowDom : function(rowIndex)
7105     {
7106         var rows = this.el.select('tbody > tr', true).elements;
7107         
7108         return (typeof(rows[rowIndex]) == 'undefined') ? false : rows[rowIndex];
7109         
7110     },
7111     // returns the object tree for a tr..
7112   
7113     
7114     renderRow : function(cm, ds, rowIndex) 
7115     {
7116         var d = ds.getAt(rowIndex);
7117         
7118         var row = {
7119             tag : 'tr',
7120             cls : 'x-row-' + rowIndex,
7121             cn : []
7122         };
7123             
7124         var cellObjects = [];
7125         
7126         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
7127             var config = cm.config[i];
7128             
7129             var renderer = cm.getRenderer(i);
7130             var value = '';
7131             var id = false;
7132             
7133             if(typeof(renderer) !== 'undefined'){
7134                 value = renderer(d.data[cm.getDataIndex(i)], false, d);
7135             }
7136             // if object are returned, then they are expected to be Roo.bootstrap.Component instances
7137             // and are rendered into the cells after the row is rendered - using the id for the element.
7138             
7139             if(typeof(value) === 'object'){
7140                 id = Roo.id();
7141                 cellObjects.push({
7142                     container : id,
7143                     cfg : value 
7144                 })
7145             }
7146             
7147             var rowcfg = {
7148                 record: d,
7149                 rowIndex : rowIndex,
7150                 colIndex : i,
7151                 rowClass : ''
7152             };
7153
7154             this.fireEvent('rowclass', this, rowcfg);
7155             
7156             var td = {
7157                 tag: 'td',
7158                 cls : rowcfg.rowClass + ' x-col-' + i,
7159                 style: '',
7160                 html: (typeof(value) === 'object') ? '' : value
7161             };
7162             
7163             if (id) {
7164                 td.id = id;
7165             }
7166             
7167             if(typeof(config.colspan) != 'undefined'){
7168                 td.colspan = config.colspan;
7169             }
7170             
7171             if(typeof(config.hidden) != 'undefined' && config.hidden){
7172                 td.style += ' display:none;';
7173             }
7174             
7175             if(typeof(config.align) != 'undefined' && config.align.length){
7176                 td.style += ' text-align:' + config.align + ';';
7177             }
7178             if(typeof(config.valign) != 'undefined' && config.valign.length){
7179                 td.style += ' vertical-align:' + config.valign + ';';
7180             }
7181             
7182             if(typeof(config.width) != 'undefined'){
7183                 td.style += ' width:' +  config.width + 'px;';
7184             }
7185             
7186             if(typeof(config.cursor) != 'undefined'){
7187                 td.style += ' cursor:' +  config.cursor + ';';
7188             }
7189             
7190             if(typeof(config.cls) != 'undefined'){
7191                 td.cls = (typeof(td.cls) == 'undefined') ? config.cls : (td.cls + ' ' + config.cls);
7192             }
7193             
7194             ['xs','sm','md','lg'].map(function(size){
7195                 
7196                 if(typeof(config[size]) == 'undefined'){
7197                     return;
7198                 }
7199                 
7200                 
7201                   
7202                 if (!config[size]) { // 0 = hidden
7203                     // BS 4 '0' is treated as hide that column and below.
7204                     td.cls += ' hidden-' + size + ' hidden' + size + '-down';
7205                     return;
7206                 }
7207                 
7208                 td.cls += ' col-' + size + '-' + config[size] + (
7209                     size == 'xs' ? (' col-' +   config[size] ) : '' // bs4 col-{num} replaces col-xs
7210                 );
7211                  
7212
7213             });
7214             
7215             row.cn.push(td);
7216            
7217         }
7218         
7219         row.cellObjects = cellObjects;
7220         
7221         return row;
7222           
7223     },
7224     
7225     
7226     
7227     onBeforeLoad : function()
7228     {
7229         
7230     },
7231      /**
7232      * Remove all rows
7233      */
7234     clear : function()
7235     {
7236         this.el.select('tbody', true).first().dom.innerHTML = '';
7237     },
7238     /**
7239      * Show or hide a row.
7240      * @param {Number} rowIndex to show or hide
7241      * @param {Boolean} state hide
7242      */
7243     setRowVisibility : function(rowIndex, state)
7244     {
7245         var bt = this.mainBody.dom;
7246         
7247         var rows = this.el.select('tbody > tr', true).elements;
7248         
7249         if(typeof(rows[rowIndex]) == 'undefined'){
7250             return;
7251         }
7252         rows[rowIndex].dom.style.display = state ? '' : 'none';
7253     },
7254     
7255     
7256     getSelectionModel : function(){
7257         if(!this.selModel){
7258             this.selModel = new Roo.bootstrap.Table.RowSelectionModel({grid: this});
7259         }
7260         return this.selModel;
7261     },
7262     /*
7263      * Render the Roo.bootstrap object from renderder
7264      */
7265     renderCellObject : function(r)
7266     {
7267         var _this = this;
7268         
7269         r.cfg.parentId = (typeof(r.container) == 'string') ? r.container : r.container.id;
7270         
7271         var t = r.cfg.render(r.container);
7272         
7273         if(r.cfg.cn){
7274             Roo.each(r.cfg.cn, function(c){
7275                 var child = {
7276                     container: t.getChildContainer(),
7277                     cfg: c
7278                 };
7279                 _this.renderCellObject(child);
7280             })
7281         }
7282     },
7283     
7284     getRowIndex : function(row)
7285     {
7286         var rowIndex = -1;
7287         
7288         Roo.each(this.el.select('tbody > tr', true).elements, function(el, index){
7289             if(el != row){
7290                 return;
7291             }
7292             
7293             rowIndex = index;
7294         });
7295         
7296         return rowIndex;
7297     },
7298      /**
7299      * Returns the grid's underlying element = used by panel.Grid
7300      * @return {Element} The element
7301      */
7302     getGridEl : function(){
7303         return this.el;
7304     },
7305      /**
7306      * Forces a resize - used by panel.Grid
7307      * @return {Element} The element
7308      */
7309     autoSize : function()
7310     {
7311         //var ctr = Roo.get(this.container.dom.parentElement);
7312         var ctr = Roo.get(this.el.dom);
7313         
7314         var thd = this.getGridEl().select('thead',true).first();
7315         var tbd = this.getGridEl().select('tbody', true).first();
7316         var tfd = this.getGridEl().select('tfoot', true).first();
7317         
7318         var cw = ctr.getWidth();
7319         
7320         if (tbd) {
7321             
7322             tbd.setSize(ctr.getWidth(),
7323                         ctr.getHeight() - ((thd ? thd.getHeight() : 0) + (tfd ? tfd.getHeight() : 0))
7324             );
7325             var barsize = (tbd.dom.offsetWidth - tbd.dom.clientWidth);
7326             cw -= barsize;
7327         }
7328         cw = Math.max(cw, this.totalWidth);
7329         this.getGridEl().select('tr',true).setWidth(cw);
7330         // resize 'expandable coloumn?
7331         
7332         return; // we doe not have a view in this design..
7333         
7334     },
7335     onBodyScroll: function()
7336     {
7337         //Roo.log("body scrolled');" + this.mainBody.dom.scrollLeft);
7338         if(this.mainHead){
7339             this.mainHead.setStyle({
7340                 'position' : 'relative',
7341                 'left': (-1* this.mainBody.dom.scrollLeft) + 'px'
7342             });
7343         }
7344         
7345         if(this.lazyLoad){
7346             
7347             var scrollHeight = this.mainBody.dom.scrollHeight;
7348             
7349             var scrollTop = Math.ceil(this.mainBody.getScroll().top);
7350             
7351             var height = this.mainBody.getHeight();
7352             
7353             if(scrollHeight - height == scrollTop) {
7354                 
7355                 var total = this.ds.getTotalCount();
7356                 
7357                 if(this.footer.cursor + this.footer.pageSize < total){
7358                     
7359                     this.footer.ds.load({
7360                         params : {
7361                             start : this.footer.cursor + this.footer.pageSize,
7362                             limit : this.footer.pageSize
7363                         },
7364                         add : true
7365                     });
7366                 }
7367             }
7368             
7369         }
7370     },
7371     
7372     onHeaderChange : function()
7373     {
7374         var header = this.renderHeader();
7375         var table = this.el.select('table', true).first();
7376         
7377         this.mainHead.remove();
7378         this.mainHead = table.createChild(header, this.mainBody, false);
7379     },
7380     
7381     onHiddenChange : function(colModel, colIndex, hidden)
7382     {
7383         var thSelector = '#' + this.id + ' .x-hcol-' + colIndex;
7384         var tdSelector = '#' + this.id + ' .x-col-' + colIndex;
7385         
7386         this.CSS.updateRule(thSelector, "display", "");
7387         this.CSS.updateRule(tdSelector, "display", "");
7388         
7389         if(hidden){
7390             this.CSS.updateRule(thSelector, "display", "none");
7391             this.CSS.updateRule(tdSelector, "display", "none");
7392         }
7393         
7394         this.onHeaderChange();
7395         this.onLoad();
7396     },
7397     
7398     setColumnWidth: function(col_index, width)
7399     {
7400         // width = "md-2 xs-2..."
7401         if(!this.colModel.config[col_index]) {
7402             return;
7403         }
7404         
7405         var w = width.split(" ");
7406         
7407         var rows = this.el.dom.getElementsByClassName("x-col-"+col_index);
7408         
7409         var h_row = this.el.dom.getElementsByClassName("x-hcol-"+col_index);
7410         
7411         
7412         for(var j = 0; j < w.length; j++) {
7413             
7414             if(!w[j]) {
7415                 continue;
7416             }
7417             
7418             var size_cls = w[j].split("-");
7419             
7420             if(!Number.isInteger(size_cls[1] * 1)) {
7421                 continue;
7422             }
7423             
7424             if(!this.colModel.config[col_index][size_cls[0]]) {
7425                 continue;
7426             }
7427             
7428             if(!h_row[0].classList.contains("col-"+size_cls[0]+"-"+this.colModel.config[col_index][size_cls[0]])) {
7429                 continue;
7430             }
7431             
7432             h_row[0].classList.replace(
7433                 "col-"+size_cls[0]+"-"+this.colModel.config[col_index][size_cls[0]],
7434                 "col-"+size_cls[0]+"-"+size_cls[1]
7435             );
7436             
7437             for(var i = 0; i < rows.length; i++) {
7438                 
7439                 var size_cls = w[j].split("-");
7440                 
7441                 if(!Number.isInteger(size_cls[1] * 1)) {
7442                     continue;
7443                 }
7444                 
7445                 if(!this.colModel.config[col_index][size_cls[0]]) {
7446                     continue;
7447                 }
7448                 
7449                 if(!rows[i].classList.contains("col-"+size_cls[0]+"-"+this.colModel.config[col_index][size_cls[0]])) {
7450                     continue;
7451                 }
7452                 
7453                 rows[i].classList.replace(
7454                     "col-"+size_cls[0]+"-"+this.colModel.config[col_index][size_cls[0]],
7455                     "col-"+size_cls[0]+"-"+size_cls[1]
7456                 );
7457             }
7458             
7459             this.colModel.config[col_index][size_cls[0]] = size_cls[1];
7460         }
7461     }
7462 });
7463
7464  
7465
7466  /*
7467  * - LGPL
7468  *
7469  * table cell
7470  * 
7471  */
7472
7473 /**
7474  * @class Roo.bootstrap.TableCell
7475  * @extends Roo.bootstrap.Component
7476  * Bootstrap TableCell class
7477  * @cfg {String} html cell contain text
7478  * @cfg {String} cls cell class
7479  * @cfg {String} tag cell tag (td|th) default td
7480  * @cfg {String} abbr Specifies an abbreviated version of the content in a cell
7481  * @cfg {String} align Aligns the content in a cell
7482  * @cfg {String} axis Categorizes cells
7483  * @cfg {String} bgcolor Specifies the background color of a cell
7484  * @cfg {Number} charoff Sets the number of characters the content will be aligned from the character specified by the char attribute
7485  * @cfg {Number} colspan Specifies the number of columns a cell should span
7486  * @cfg {String} headers Specifies one or more header cells a cell is related to
7487  * @cfg {Number} height Sets the height of a cell
7488  * @cfg {String} nowrap Specifies that the content inside a cell should not wrap
7489  * @cfg {Number} rowspan Sets the number of rows a cell should span
7490  * @cfg {String} scope Defines a way to associate header cells and data cells in a table
7491  * @cfg {String} valign Vertical aligns the content in a cell
7492  * @cfg {Number} width Specifies the width of a cell
7493  * 
7494  * @constructor
7495  * Create a new TableCell
7496  * @param {Object} config The config object
7497  */
7498
7499 Roo.bootstrap.TableCell = function(config){
7500     Roo.bootstrap.TableCell.superclass.constructor.call(this, config);
7501 };
7502
7503 Roo.extend(Roo.bootstrap.TableCell, Roo.bootstrap.Component,  {
7504     
7505     html: false,
7506     cls: false,
7507     tag: false,
7508     abbr: false,
7509     align: false,
7510     axis: false,
7511     bgcolor: false,
7512     charoff: false,
7513     colspan: false,
7514     headers: false,
7515     height: false,
7516     nowrap: false,
7517     rowspan: false,
7518     scope: false,
7519     valign: false,
7520     width: false,
7521     
7522     
7523     getAutoCreate : function(){
7524         var cfg = Roo.apply({}, Roo.bootstrap.TableCell.superclass.getAutoCreate.call(this));
7525         
7526         cfg = {
7527             tag: 'td'
7528         };
7529         
7530         if(this.tag){
7531             cfg.tag = this.tag;
7532         }
7533         
7534         if (this.html) {
7535             cfg.html=this.html
7536         }
7537         if (this.cls) {
7538             cfg.cls=this.cls
7539         }
7540         if (this.abbr) {
7541             cfg.abbr=this.abbr
7542         }
7543         if (this.align) {
7544             cfg.align=this.align
7545         }
7546         if (this.axis) {
7547             cfg.axis=this.axis
7548         }
7549         if (this.bgcolor) {
7550             cfg.bgcolor=this.bgcolor
7551         }
7552         if (this.charoff) {
7553             cfg.charoff=this.charoff
7554         }
7555         if (this.colspan) {
7556             cfg.colspan=this.colspan
7557         }
7558         if (this.headers) {
7559             cfg.headers=this.headers
7560         }
7561         if (this.height) {
7562             cfg.height=this.height
7563         }
7564         if (this.nowrap) {
7565             cfg.nowrap=this.nowrap
7566         }
7567         if (this.rowspan) {
7568             cfg.rowspan=this.rowspan
7569         }
7570         if (this.scope) {
7571             cfg.scope=this.scope
7572         }
7573         if (this.valign) {
7574             cfg.valign=this.valign
7575         }
7576         if (this.width) {
7577             cfg.width=this.width
7578         }
7579         
7580         
7581         return cfg;
7582     }
7583    
7584 });
7585
7586  
7587
7588  /*
7589  * - LGPL
7590  *
7591  * table row
7592  * 
7593  */
7594
7595 /**
7596  * @class Roo.bootstrap.TableRow
7597  * @extends Roo.bootstrap.Component
7598  * Bootstrap TableRow class
7599  * @cfg {String} cls row class
7600  * @cfg {String} align Aligns the content in a table row
7601  * @cfg {String} bgcolor Specifies a background color for a table row
7602  * @cfg {Number} charoff Sets the number of characters the content will be aligned from the character specified by the char attribute
7603  * @cfg {String} valign Vertical aligns the content in a table row
7604  * 
7605  * @constructor
7606  * Create a new TableRow
7607  * @param {Object} config The config object
7608  */
7609
7610 Roo.bootstrap.TableRow = function(config){
7611     Roo.bootstrap.TableRow.superclass.constructor.call(this, config);
7612 };
7613
7614 Roo.extend(Roo.bootstrap.TableRow, Roo.bootstrap.Component,  {
7615     
7616     cls: false,
7617     align: false,
7618     bgcolor: false,
7619     charoff: false,
7620     valign: false,
7621     
7622     getAutoCreate : function(){
7623         var cfg = Roo.apply({}, Roo.bootstrap.TableRow.superclass.getAutoCreate.call(this));
7624         
7625         cfg = {
7626             tag: 'tr'
7627         };
7628             
7629         if(this.cls){
7630             cfg.cls = this.cls;
7631         }
7632         if(this.align){
7633             cfg.align = this.align;
7634         }
7635         if(this.bgcolor){
7636             cfg.bgcolor = this.bgcolor;
7637         }
7638         if(this.charoff){
7639             cfg.charoff = this.charoff;
7640         }
7641         if(this.valign){
7642             cfg.valign = this.valign;
7643         }
7644         
7645         return cfg;
7646     }
7647    
7648 });
7649
7650  
7651
7652  /*
7653  * - LGPL
7654  *
7655  * table body
7656  * 
7657  */
7658
7659 /**
7660  * @class Roo.bootstrap.TableBody
7661  * @extends Roo.bootstrap.Component
7662  * Bootstrap TableBody class
7663  * @cfg {String} cls element class
7664  * @cfg {String} tag element tag (thead|tbody|tfoot) default tbody
7665  * @cfg {String} align Aligns the content inside the element
7666  * @cfg {Number} charoff Sets the number of characters the content inside the element will be aligned from the character specified by the char attribute
7667  * @cfg {String} valign Vertical aligns the content inside the <tbody> element
7668  * 
7669  * @constructor
7670  * Create a new TableBody
7671  * @param {Object} config The config object
7672  */
7673
7674 Roo.bootstrap.TableBody = function(config){
7675     Roo.bootstrap.TableBody.superclass.constructor.call(this, config);
7676 };
7677
7678 Roo.extend(Roo.bootstrap.TableBody, Roo.bootstrap.Component,  {
7679     
7680     cls: false,
7681     tag: false,
7682     align: false,
7683     charoff: false,
7684     valign: false,
7685     
7686     getAutoCreate : function(){
7687         var cfg = Roo.apply({}, Roo.bootstrap.TableBody.superclass.getAutoCreate.call(this));
7688         
7689         cfg = {
7690             tag: 'tbody'
7691         };
7692             
7693         if (this.cls) {
7694             cfg.cls=this.cls
7695         }
7696         if(this.tag){
7697             cfg.tag = this.tag;
7698         }
7699         
7700         if(this.align){
7701             cfg.align = this.align;
7702         }
7703         if(this.charoff){
7704             cfg.charoff = this.charoff;
7705         }
7706         if(this.valign){
7707             cfg.valign = this.valign;
7708         }
7709         
7710         return cfg;
7711     }
7712     
7713     
7714 //    initEvents : function()
7715 //    {
7716 //        
7717 //        if(!this.store){
7718 //            return;
7719 //        }
7720 //        
7721 //        this.store = Roo.factory(this.store, Roo.data);
7722 //        this.store.on('load', this.onLoad, this);
7723 //        
7724 //        this.store.load();
7725 //        
7726 //    },
7727 //    
7728 //    onLoad: function () 
7729 //    {   
7730 //        this.fireEvent('load', this);
7731 //    }
7732 //    
7733 //   
7734 });
7735
7736  
7737
7738  /*
7739  * Based on:
7740  * Ext JS Library 1.1.1
7741  * Copyright(c) 2006-2007, Ext JS, LLC.
7742  *
7743  * Originally Released Under LGPL - original licence link has changed is not relivant.
7744  *
7745  * Fork - LGPL
7746  * <script type="text/javascript">
7747  */
7748
7749 // as we use this in bootstrap.
7750 Roo.namespace('Roo.form');
7751  /**
7752  * @class Roo.form.Action
7753  * Internal Class used to handle form actions
7754  * @constructor
7755  * @param {Roo.form.BasicForm} el The form element or its id
7756  * @param {Object} config Configuration options
7757  */
7758
7759  
7760  
7761 // define the action interface
7762 Roo.form.Action = function(form, options){
7763     this.form = form;
7764     this.options = options || {};
7765 };
7766 /**
7767  * Client Validation Failed
7768  * @const 
7769  */
7770 Roo.form.Action.CLIENT_INVALID = 'client';
7771 /**
7772  * Server Validation Failed
7773  * @const 
7774  */
7775 Roo.form.Action.SERVER_INVALID = 'server';
7776  /**
7777  * Connect to Server Failed
7778  * @const 
7779  */
7780 Roo.form.Action.CONNECT_FAILURE = 'connect';
7781 /**
7782  * Reading Data from Server Failed
7783  * @const 
7784  */
7785 Roo.form.Action.LOAD_FAILURE = 'load';
7786
7787 Roo.form.Action.prototype = {
7788     type : 'default',
7789     failureType : undefined,
7790     response : undefined,
7791     result : undefined,
7792
7793     // interface method
7794     run : function(options){
7795
7796     },
7797
7798     // interface method
7799     success : function(response){
7800
7801     },
7802
7803     // interface method
7804     handleResponse : function(response){
7805
7806     },
7807
7808     // default connection failure
7809     failure : function(response){
7810         
7811         this.response = response;
7812         this.failureType = Roo.form.Action.CONNECT_FAILURE;
7813         this.form.afterAction(this, false);
7814     },
7815
7816     processResponse : function(response){
7817         this.response = response;
7818         if(!response.responseText){
7819             return true;
7820         }
7821         this.result = this.handleResponse(response);
7822         return this.result;
7823     },
7824
7825     // utility functions used internally
7826     getUrl : function(appendParams){
7827         var url = this.options.url || this.form.url || this.form.el.dom.action;
7828         if(appendParams){
7829             var p = this.getParams();
7830             if(p){
7831                 url += (url.indexOf('?') != -1 ? '&' : '?') + p;
7832             }
7833         }
7834         return url;
7835     },
7836
7837     getMethod : function(){
7838         return (this.options.method || this.form.method || this.form.el.dom.method || 'POST').toUpperCase();
7839     },
7840
7841     getParams : function(){
7842         var bp = this.form.baseParams;
7843         var p = this.options.params;
7844         if(p){
7845             if(typeof p == "object"){
7846                 p = Roo.urlEncode(Roo.applyIf(p, bp));
7847             }else if(typeof p == 'string' && bp){
7848                 p += '&' + Roo.urlEncode(bp);
7849             }
7850         }else if(bp){
7851             p = Roo.urlEncode(bp);
7852         }
7853         return p;
7854     },
7855
7856     createCallback : function(){
7857         return {
7858             success: this.success,
7859             failure: this.failure,
7860             scope: this,
7861             timeout: (this.form.timeout*1000),
7862             upload: this.form.fileUpload ? this.success : undefined
7863         };
7864     }
7865 };
7866
7867 Roo.form.Action.Submit = function(form, options){
7868     Roo.form.Action.Submit.superclass.constructor.call(this, form, options);
7869 };
7870
7871 Roo.extend(Roo.form.Action.Submit, Roo.form.Action, {
7872     type : 'submit',
7873
7874     haveProgress : false,
7875     uploadComplete : false,
7876     
7877     // uploadProgress indicator.
7878     uploadProgress : function()
7879     {
7880         if (!this.form.progressUrl) {
7881             return;
7882         }
7883         
7884         if (!this.haveProgress) {
7885             Roo.MessageBox.progress("Uploading", "Uploading");
7886         }
7887         if (this.uploadComplete) {
7888            Roo.MessageBox.hide();
7889            return;
7890         }
7891         
7892         this.haveProgress = true;
7893    
7894         var uid = this.form.findField('UPLOAD_IDENTIFIER').getValue();
7895         
7896         var c = new Roo.data.Connection();
7897         c.request({
7898             url : this.form.progressUrl,
7899             params: {
7900                 id : uid
7901             },
7902             method: 'GET',
7903             success : function(req){
7904                //console.log(data);
7905                 var rdata = false;
7906                 var edata;
7907                 try  {
7908                    rdata = Roo.decode(req.responseText)
7909                 } catch (e) {
7910                     Roo.log("Invalid data from server..");
7911                     Roo.log(edata);
7912                     return;
7913                 }
7914                 if (!rdata || !rdata.success) {
7915                     Roo.log(rdata);
7916                     Roo.MessageBox.alert(Roo.encode(rdata));
7917                     return;
7918                 }
7919                 var data = rdata.data;
7920                 
7921                 if (this.uploadComplete) {
7922                    Roo.MessageBox.hide();
7923                    return;
7924                 }
7925                    
7926                 if (data){
7927                     Roo.MessageBox.updateProgress(data.bytes_uploaded/data.bytes_total,
7928                        Math.floor((data.bytes_total - data.bytes_uploaded)/1000) + 'k remaining'
7929                     );
7930                 }
7931                 this.uploadProgress.defer(2000,this);
7932             },
7933        
7934             failure: function(data) {
7935                 Roo.log('progress url failed ');
7936                 Roo.log(data);
7937             },
7938             scope : this
7939         });
7940            
7941     },
7942     
7943     
7944     run : function()
7945     {
7946         // run get Values on the form, so it syncs any secondary forms.
7947         this.form.getValues();
7948         
7949         var o = this.options;
7950         var method = this.getMethod();
7951         var isPost = method == 'POST';
7952         if(o.clientValidation === false || this.form.isValid()){
7953             
7954             if (this.form.progressUrl) {
7955                 this.form.findField('UPLOAD_IDENTIFIER').setValue(
7956                     (new Date() * 1) + '' + Math.random());
7957                     
7958             } 
7959             
7960             
7961             Roo.Ajax.request(Roo.apply(this.createCallback(), {
7962                 form:this.form.el.dom,
7963                 url:this.getUrl(!isPost),
7964                 method: method,
7965                 params:isPost ? this.getParams() : null,
7966                 isUpload: this.form.fileUpload,
7967                 formData : this.form.formData
7968             }));
7969             
7970             this.uploadProgress();
7971
7972         }else if (o.clientValidation !== false){ // client validation failed
7973             this.failureType = Roo.form.Action.CLIENT_INVALID;
7974             this.form.afterAction(this, false);
7975         }
7976     },
7977
7978     success : function(response)
7979     {
7980         this.uploadComplete= true;
7981         if (this.haveProgress) {
7982             Roo.MessageBox.hide();
7983         }
7984         
7985         
7986         var result = this.processResponse(response);
7987         if(result === true || result.success){
7988             this.form.afterAction(this, true);
7989             return;
7990         }
7991         if(result.errors){
7992             this.form.markInvalid(result.errors);
7993             this.failureType = Roo.form.Action.SERVER_INVALID;
7994         }
7995         this.form.afterAction(this, false);
7996     },
7997     failure : function(response)
7998     {
7999         this.uploadComplete= true;
8000         if (this.haveProgress) {
8001             Roo.MessageBox.hide();
8002         }
8003         
8004         this.response = response;
8005         this.failureType = Roo.form.Action.CONNECT_FAILURE;
8006         this.form.afterAction(this, false);
8007     },
8008     
8009     handleResponse : function(response){
8010         if(this.form.errorReader){
8011             var rs = this.form.errorReader.read(response);
8012             var errors = [];
8013             if(rs.records){
8014                 for(var i = 0, len = rs.records.length; i < len; i++) {
8015                     var r = rs.records[i];
8016                     errors[i] = r.data;
8017                 }
8018             }
8019             if(errors.length < 1){
8020                 errors = null;
8021             }
8022             return {
8023                 success : rs.success,
8024                 errors : errors
8025             };
8026         }
8027         var ret = false;
8028         try {
8029             ret = Roo.decode(response.responseText);
8030         } catch (e) {
8031             ret = {
8032                 success: false,
8033                 errorMsg: "Failed to read server message: " + (response ? response.responseText : ' - no message'),
8034                 errors : []
8035             };
8036         }
8037         return ret;
8038         
8039     }
8040 });
8041
8042
8043 Roo.form.Action.Load = function(form, options){
8044     Roo.form.Action.Load.superclass.constructor.call(this, form, options);
8045     this.reader = this.form.reader;
8046 };
8047
8048 Roo.extend(Roo.form.Action.Load, Roo.form.Action, {
8049     type : 'load',
8050
8051     run : function(){
8052         
8053         Roo.Ajax.request(Roo.apply(
8054                 this.createCallback(), {
8055                     method:this.getMethod(),
8056                     url:this.getUrl(false),
8057                     params:this.getParams()
8058         }));
8059     },
8060
8061     success : function(response){
8062         
8063         var result = this.processResponse(response);
8064         if(result === true || !result.success || !result.data){
8065             this.failureType = Roo.form.Action.LOAD_FAILURE;
8066             this.form.afterAction(this, false);
8067             return;
8068         }
8069         this.form.clearInvalid();
8070         this.form.setValues(result.data);
8071         this.form.afterAction(this, true);
8072     },
8073
8074     handleResponse : function(response){
8075         if(this.form.reader){
8076             var rs = this.form.reader.read(response);
8077             var data = rs.records && rs.records[0] ? rs.records[0].data : null;
8078             return {
8079                 success : rs.success,
8080                 data : data
8081             };
8082         }
8083         return Roo.decode(response.responseText);
8084     }
8085 });
8086
8087 Roo.form.Action.ACTION_TYPES = {
8088     'load' : Roo.form.Action.Load,
8089     'submit' : Roo.form.Action.Submit
8090 };/*
8091  * - LGPL
8092  *
8093  * form
8094  *
8095  */
8096
8097 /**
8098  * @class Roo.bootstrap.Form
8099  * @extends Roo.bootstrap.Component
8100  * Bootstrap Form class
8101  * @cfg {String} method  GET | POST (default POST)
8102  * @cfg {String} labelAlign top | left (default top)
8103  * @cfg {String} align left  | right - for navbars
8104  * @cfg {Boolean} loadMask load mask when submit (default true)
8105
8106  *
8107  * @constructor
8108  * Create a new Form
8109  * @param {Object} config The config object
8110  */
8111
8112
8113 Roo.bootstrap.Form = function(config){
8114     
8115     Roo.bootstrap.Form.superclass.constructor.call(this, config);
8116     
8117     Roo.bootstrap.Form.popover.apply();
8118     
8119     this.addEvents({
8120         /**
8121          * @event clientvalidation
8122          * If the monitorValid config option is true, this event fires repetitively to notify of valid state
8123          * @param {Form} this
8124          * @param {Boolean} valid true if the form has passed client-side validation
8125          */
8126         clientvalidation: true,
8127         /**
8128          * @event beforeaction
8129          * Fires before any action is performed. Return false to cancel the action.
8130          * @param {Form} this
8131          * @param {Action} action The action to be performed
8132          */
8133         beforeaction: true,
8134         /**
8135          * @event actionfailed
8136          * Fires when an action fails.
8137          * @param {Form} this
8138          * @param {Action} action The action that failed
8139          */
8140         actionfailed : true,
8141         /**
8142          * @event actioncomplete
8143          * Fires when an action is completed.
8144          * @param {Form} this
8145          * @param {Action} action The action that completed
8146          */
8147         actioncomplete : true
8148     });
8149 };
8150
8151 Roo.extend(Roo.bootstrap.Form, Roo.bootstrap.Component,  {
8152
8153      /**
8154      * @cfg {String} method
8155      * The request method to use (GET or POST) for form actions if one isn't supplied in the action options.
8156      */
8157     method : 'POST',
8158     /**
8159      * @cfg {String} url
8160      * The URL to use for form actions if one isn't supplied in the action options.
8161      */
8162     /**
8163      * @cfg {Boolean} fileUpload
8164      * Set to true if this form is a file upload.
8165      */
8166
8167     /**
8168      * @cfg {Object} baseParams
8169      * Parameters to pass with all requests. e.g. baseParams: {id: '123', foo: 'bar'}.
8170      */
8171
8172     /**
8173      * @cfg {Number} timeout Timeout for form actions in seconds (default is 30 seconds).
8174      */
8175     timeout: 30,
8176     /**
8177      * @cfg {Sting} align (left|right) for navbar forms
8178      */
8179     align : 'left',
8180
8181     // private
8182     activeAction : null,
8183
8184     /**
8185      * By default wait messages are displayed with Roo.MessageBox.wait. You can target a specific
8186      * element by passing it or its id or mask the form itself by passing in true.
8187      * @type Mixed
8188      */
8189     waitMsgTarget : false,
8190
8191     loadMask : true,
8192     
8193     /**
8194      * @cfg {Boolean} errorMask (true|false) default false
8195      */
8196     errorMask : false,
8197     
8198     /**
8199      * @cfg {Number} maskOffset Default 100
8200      */
8201     maskOffset : 100,
8202     
8203     /**
8204      * @cfg {Boolean} maskBody
8205      */
8206     maskBody : false,
8207
8208     getAutoCreate : function(){
8209
8210         var cfg = {
8211             tag: 'form',
8212             method : this.method || 'POST',
8213             id : this.id || Roo.id(),
8214             cls : ''
8215         };
8216         if (this.parent().xtype.match(/^Nav/)) {
8217             cfg.cls = 'navbar-form form-inline navbar-' + this.align;
8218
8219         }
8220
8221         if (this.labelAlign == 'left' ) {
8222             cfg.cls += ' form-horizontal';
8223         }
8224
8225
8226         return cfg;
8227     },
8228     initEvents : function()
8229     {
8230         this.el.on('submit', this.onSubmit, this);
8231         // this was added as random key presses on the form where triggering form submit.
8232         this.el.on('keypress', function(e) {
8233             if (e.getCharCode() != 13) {
8234                 return true;
8235             }
8236             // we might need to allow it for textareas.. and some other items.
8237             // check e.getTarget().
8238
8239             if(e.getTarget().nodeName.toLowerCase() === 'textarea'){
8240                 return true;
8241             }
8242
8243             Roo.log("keypress blocked");
8244
8245             e.preventDefault();
8246             return false;
8247         });
8248         
8249     },
8250     // private
8251     onSubmit : function(e){
8252         e.stopEvent();
8253     },
8254
8255      /**
8256      * Returns true if client-side validation on the form is successful.
8257      * @return Boolean
8258      */
8259     isValid : function(){
8260         var items = this.getItems();
8261         var valid = true;
8262         var target = false;
8263         
8264         items.each(function(f){
8265             
8266             if(f.validate()){
8267                 return;
8268             }
8269             
8270             Roo.log('invalid field: ' + f.name);
8271             
8272             valid = false;
8273
8274             if(!target && f.el.isVisible(true)){
8275                 target = f;
8276             }
8277            
8278         });
8279         
8280         if(this.errorMask && !valid){
8281             Roo.bootstrap.Form.popover.mask(this, target);
8282         }
8283         
8284         return valid;
8285     },
8286     
8287     /**
8288      * Returns true if any fields in this form have changed since their original load.
8289      * @return Boolean
8290      */
8291     isDirty : function(){
8292         var dirty = false;
8293         var items = this.getItems();
8294         items.each(function(f){
8295            if(f.isDirty()){
8296                dirty = true;
8297                return false;
8298            }
8299            return true;
8300         });
8301         return dirty;
8302     },
8303      /**
8304      * Performs a predefined action (submit or load) or custom actions you define on this form.
8305      * @param {String} actionName The name of the action type
8306      * @param {Object} options (optional) The options to pass to the action.  All of the config options listed
8307      * below are supported by both the submit and load actions unless otherwise noted (custom actions could also
8308      * accept other config options):
8309      * <pre>
8310 Property          Type             Description
8311 ----------------  ---------------  ----------------------------------------------------------------------------------
8312 url               String           The url for the action (defaults to the form's url)
8313 method            String           The form method to use (defaults to the form's method, or POST if not defined)
8314 params            String/Object    The params to pass (defaults to the form's baseParams, or none if not defined)
8315 clientValidation  Boolean          Applies to submit only.  Pass true to call form.isValid() prior to posting to
8316                                    validate the form on the client (defaults to false)
8317      * </pre>
8318      * @return {BasicForm} this
8319      */
8320     doAction : function(action, options){
8321         if(typeof action == 'string'){
8322             action = new Roo.form.Action.ACTION_TYPES[action](this, options);
8323         }
8324         if(this.fireEvent('beforeaction', this, action) !== false){
8325             this.beforeAction(action);
8326             action.run.defer(100, action);
8327         }
8328         return this;
8329     },
8330
8331     // private
8332     beforeAction : function(action){
8333         var o = action.options;
8334         
8335         if(this.loadMask){
8336             
8337             if(this.maskBody){
8338                 Roo.get(document.body).mask(o.waitMsg || "Sending", 'x-mask-loading')
8339             } else {
8340                 this.el.mask(o.waitMsg || "Sending", 'x-mask-loading');
8341             }
8342         }
8343         // not really supported yet.. ??
8344
8345         //if(this.waitMsgTarget === true){
8346         //  this.el.mask(o.waitMsg || "Sending", 'x-mask-loading');
8347         //}else if(this.waitMsgTarget){
8348         //    this.waitMsgTarget = Roo.get(this.waitMsgTarget);
8349         //    this.waitMsgTarget.mask(o.waitMsg || "Sending", 'x-mask-loading');
8350         //}else {
8351         //    Roo.MessageBox.wait(o.waitMsg || "Sending", o.waitTitle || this.waitTitle || 'Please Wait...');
8352        // }
8353
8354     },
8355
8356     // private
8357     afterAction : function(action, success){
8358         this.activeAction = null;
8359         var o = action.options;
8360
8361         if(this.loadMask){
8362             
8363             if(this.maskBody){
8364                 Roo.get(document.body).unmask();
8365             } else {
8366                 this.el.unmask();
8367             }
8368         }
8369         
8370         //if(this.waitMsgTarget === true){
8371 //            this.el.unmask();
8372         //}else if(this.waitMsgTarget){
8373         //    this.waitMsgTarget.unmask();
8374         //}else{
8375         //    Roo.MessageBox.updateProgress(1);
8376         //    Roo.MessageBox.hide();
8377        // }
8378         //
8379         if(success){
8380             if(o.reset){
8381                 this.reset();
8382             }
8383             Roo.callback(o.success, o.scope, [this, action]);
8384             this.fireEvent('actioncomplete', this, action);
8385
8386         }else{
8387
8388             // failure condition..
8389             // we have a scenario where updates need confirming.
8390             // eg. if a locking scenario exists..
8391             // we look for { errors : { needs_confirm : true }} in the response.
8392             if (
8393                 (typeof(action.result) != 'undefined')  &&
8394                 (typeof(action.result.errors) != 'undefined')  &&
8395                 (typeof(action.result.errors.needs_confirm) != 'undefined')
8396            ){
8397                 var _t = this;
8398                 Roo.log("not supported yet");
8399                  /*
8400
8401                 Roo.MessageBox.confirm(
8402                     "Change requires confirmation",
8403                     action.result.errorMsg,
8404                     function(r) {
8405                         if (r != 'yes') {
8406                             return;
8407                         }
8408                         _t.doAction('submit', { params :  { _submit_confirmed : 1 } }  );
8409                     }
8410
8411                 );
8412                 */
8413
8414
8415                 return;
8416             }
8417
8418             Roo.callback(o.failure, o.scope, [this, action]);
8419             // show an error message if no failed handler is set..
8420             if (!this.hasListener('actionfailed')) {
8421                 Roo.log("need to add dialog support");
8422                 /*
8423                 Roo.MessageBox.alert("Error",
8424                     (typeof(action.result) != 'undefined' && typeof(action.result.errorMsg) != 'undefined') ?
8425                         action.result.errorMsg :
8426                         "Saving Failed, please check your entries or try again"
8427                 );
8428                 */
8429             }
8430
8431             this.fireEvent('actionfailed', this, action);
8432         }
8433
8434     },
8435     /**
8436      * Find a Roo.form.Field in this form by id, dataIndex, name or hiddenName
8437      * @param {String} id The value to search for
8438      * @return Field
8439      */
8440     findField : function(id){
8441         var items = this.getItems();
8442         var field = items.get(id);
8443         if(!field){
8444              items.each(function(f){
8445                 if(f.isFormField && (f.dataIndex == id || f.id == id || f.getName() == id)){
8446                     field = f;
8447                     return false;
8448                 }
8449                 return true;
8450             });
8451         }
8452         return field || null;
8453     },
8454      /**
8455      * Mark fields in this form invalid in bulk.
8456      * @param {Array/Object} errors Either an array in the form [{id:'fieldId', msg:'The message'},...] or an object hash of {id: msg, id2: msg2}
8457      * @return {BasicForm} this
8458      */
8459     markInvalid : function(errors){
8460         if(errors instanceof Array){
8461             for(var i = 0, len = errors.length; i < len; i++){
8462                 var fieldError = errors[i];
8463                 var f = this.findField(fieldError.id);
8464                 if(f){
8465                     f.markInvalid(fieldError.msg);
8466                 }
8467             }
8468         }else{
8469             var field, id;
8470             for(id in errors){
8471                 if(typeof errors[id] != 'function' && (field = this.findField(id))){
8472                     field.markInvalid(errors[id]);
8473                 }
8474             }
8475         }
8476         //Roo.each(this.childForms || [], function (f) {
8477         //    f.markInvalid(errors);
8478         //});
8479
8480         return this;
8481     },
8482
8483     /**
8484      * Set values for fields in this form in bulk.
8485      * @param {Array/Object} values Either an array in the form [{id:'fieldId', value:'foo'},...] or an object hash of {id: value, id2: value2}
8486      * @return {BasicForm} this
8487      */
8488     setValues : function(values){
8489         if(values instanceof Array){ // array of objects
8490             for(var i = 0, len = values.length; i < len; i++){
8491                 var v = values[i];
8492                 var f = this.findField(v.id);
8493                 if(f){
8494                     f.setValue(v.value);
8495                     if(this.trackResetOnLoad){
8496                         f.originalValue = f.getValue();
8497                     }
8498                 }
8499             }
8500         }else{ // object hash
8501             var field, id;
8502             for(id in values){
8503                 if(typeof values[id] != 'function' && (field = this.findField(id))){
8504
8505                     if (field.setFromData &&
8506                         field.valueField &&
8507                         field.displayField &&
8508                         // combos' with local stores can
8509                         // be queried via setValue()
8510                         // to set their value..
8511                         (field.store && !field.store.isLocal)
8512                         ) {
8513                         // it's a combo
8514                         var sd = { };
8515                         sd[field.valueField] = typeof(values[field.hiddenName]) == 'undefined' ? '' : values[field.hiddenName];
8516                         sd[field.displayField] = typeof(values[field.name]) == 'undefined' ? '' : values[field.name];
8517                         field.setFromData(sd);
8518
8519                     } else if(field.setFromData && (field.store && !field.store.isLocal)) {
8520                         
8521                         field.setFromData(values);
8522                         
8523                     } else {
8524                         field.setValue(values[id]);
8525                     }
8526
8527
8528                     if(this.trackResetOnLoad){
8529                         field.originalValue = field.getValue();
8530                     }
8531                 }
8532             }
8533         }
8534
8535         //Roo.each(this.childForms || [], function (f) {
8536         //    f.setValues(values);
8537         //});
8538
8539         return this;
8540     },
8541
8542     /**
8543      * Returns the fields in this form as an object with key/value pairs. If multiple fields exist with the same name
8544      * they are returned as an array.
8545      * @param {Boolean} asString
8546      * @return {Object}
8547      */
8548     getValues : function(asString){
8549         //if (this.childForms) {
8550             // copy values from the child forms
8551         //    Roo.each(this.childForms, function (f) {
8552         //        this.setValues(f.getValues());
8553         //    }, this);
8554         //}
8555
8556
8557
8558         var fs = Roo.lib.Ajax.serializeForm(this.el.dom);
8559         if(asString === true){
8560             return fs;
8561         }
8562         return Roo.urlDecode(fs);
8563     },
8564
8565     /**
8566      * Returns the fields in this form as an object with key/value pairs.
8567      * This differs from getValues as it calls getValue on each child item, rather than using dom data.
8568      * @return {Object}
8569      */
8570     getFieldValues : function(with_hidden)
8571     {
8572         var items = this.getItems();
8573         var ret = {};
8574         items.each(function(f){
8575             
8576             if (!f.getName()) {
8577                 return;
8578             }
8579             
8580             var v = f.getValue();
8581             
8582             if (f.inputType =='radio') {
8583                 if (typeof(ret[f.getName()]) == 'undefined') {
8584                     ret[f.getName()] = ''; // empty..
8585                 }
8586
8587                 if (!f.el.dom.checked) {
8588                     return;
8589
8590                 }
8591                 v = f.el.dom.value;
8592
8593             }
8594             
8595             if(f.xtype == 'MoneyField'){
8596                 ret[f.currencyName] = f.getCurrency();
8597             }
8598
8599             // not sure if this supported any more..
8600             if ((typeof(v) == 'object') && f.getRawValue) {
8601                 v = f.getRawValue() ; // dates..
8602             }
8603             // combo boxes where name != hiddenName...
8604             if (f.name !== false && f.name != '' && f.name != f.getName()) {
8605                 ret[f.name] = f.getRawValue();
8606             }
8607             ret[f.getName()] = v;
8608         });
8609
8610         return ret;
8611     },
8612
8613     /**
8614      * Clears all invalid messages in this form.
8615      * @return {BasicForm} this
8616      */
8617     clearInvalid : function(){
8618         var items = this.getItems();
8619
8620         items.each(function(f){
8621            f.clearInvalid();
8622         });
8623
8624         return this;
8625     },
8626
8627     /**
8628      * Resets this form.
8629      * @return {BasicForm} this
8630      */
8631     reset : function(){
8632         var items = this.getItems();
8633         items.each(function(f){
8634             f.reset();
8635         });
8636
8637         Roo.each(this.childForms || [], function (f) {
8638             f.reset();
8639         });
8640
8641
8642         return this;
8643     },
8644     
8645     getItems : function()
8646     {
8647         var r=new Roo.util.MixedCollection(false, function(o){
8648             return o.id || (o.id = Roo.id());
8649         });
8650         var iter = function(el) {
8651             if (el.inputEl) {
8652                 r.add(el);
8653             }
8654             if (!el.items) {
8655                 return;
8656             }
8657             Roo.each(el.items,function(e) {
8658                 iter(e);
8659             });
8660         };
8661
8662         iter(this);
8663         return r;
8664     },
8665     
8666     hideFields : function(items)
8667     {
8668         Roo.each(items, function(i){
8669             
8670             var f = this.findField(i);
8671             
8672             if(!f){
8673                 return;
8674             }
8675             
8676             f.hide();
8677             
8678         }, this);
8679     },
8680     
8681     showFields : function(items)
8682     {
8683         Roo.each(items, function(i){
8684             
8685             var f = this.findField(i);
8686             
8687             if(!f){
8688                 return;
8689             }
8690             
8691             f.show();
8692             
8693         }, this);
8694     }
8695
8696 });
8697
8698 Roo.apply(Roo.bootstrap.Form, {
8699     
8700     popover : {
8701         
8702         padding : 5,
8703         
8704         isApplied : false,
8705         
8706         isMasked : false,
8707         
8708         form : false,
8709         
8710         target : false,
8711         
8712         toolTip : false,
8713         
8714         intervalID : false,
8715         
8716         maskEl : false,
8717         
8718         apply : function()
8719         {
8720             if(this.isApplied){
8721                 return;
8722             }
8723             
8724             this.maskEl = {
8725                 top : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-top-mask" }, true),
8726                 left : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-left-mask" }, true),
8727                 bottom : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-bottom-mask" }, true),
8728                 right : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-right-mask" }, true)
8729             };
8730             
8731             this.maskEl.top.enableDisplayMode("block");
8732             this.maskEl.left.enableDisplayMode("block");
8733             this.maskEl.bottom.enableDisplayMode("block");
8734             this.maskEl.right.enableDisplayMode("block");
8735             
8736             this.toolTip = new Roo.bootstrap.Tooltip({
8737                 cls : 'roo-form-error-popover',
8738                 alignment : {
8739                     'left' : ['r-l', [-2,0], 'right'],
8740                     'right' : ['l-r', [2,0], 'left'],
8741                     'bottom' : ['tl-bl', [0,2], 'top'],
8742                     'top' : [ 'bl-tl', [0,-2], 'bottom']
8743                 }
8744             });
8745             
8746             this.toolTip.render(Roo.get(document.body));
8747
8748             this.toolTip.el.enableDisplayMode("block");
8749             
8750             Roo.get(document.body).on('click', function(){
8751                 this.unmask();
8752             }, this);
8753             
8754             Roo.get(document.body).on('touchstart', function(){
8755                 this.unmask();
8756             }, this);
8757             
8758             this.isApplied = true
8759         },
8760         
8761         mask : function(form, target)
8762         {
8763             this.form = form;
8764             
8765             this.target = target;
8766             
8767             if(!this.form.errorMask || !target.el){
8768                 return;
8769             }
8770             
8771             var scrollable = this.target.el.findScrollableParent() || this.target.el.findParent('div.modal', 100, true) || Roo.get(document.body);
8772             
8773             Roo.log(scrollable);
8774             
8775             var ot = this.target.el.calcOffsetsTo(scrollable);
8776             
8777             var scrollTo = ot[1] - this.form.maskOffset;
8778             
8779             scrollTo = Math.min(scrollTo, scrollable.dom.scrollHeight);
8780             
8781             scrollable.scrollTo('top', scrollTo);
8782             
8783             var box = this.target.el.getBox();
8784             Roo.log(box);
8785             var zIndex = Roo.bootstrap.Modal.zIndex++;
8786
8787             
8788             this.maskEl.top.setStyle('position', 'absolute');
8789             this.maskEl.top.setStyle('z-index', zIndex);
8790             this.maskEl.top.setSize(Roo.lib.Dom.getDocumentWidth(), box.y - this.padding);
8791             this.maskEl.top.setLeft(0);
8792             this.maskEl.top.setTop(0);
8793             this.maskEl.top.show();
8794             
8795             this.maskEl.left.setStyle('position', 'absolute');
8796             this.maskEl.left.setStyle('z-index', zIndex);
8797             this.maskEl.left.setSize(box.x - this.padding, box.height + this.padding * 2);
8798             this.maskEl.left.setLeft(0);
8799             this.maskEl.left.setTop(box.y - this.padding);
8800             this.maskEl.left.show();
8801
8802             this.maskEl.bottom.setStyle('position', 'absolute');
8803             this.maskEl.bottom.setStyle('z-index', zIndex);
8804             this.maskEl.bottom.setSize(Roo.lib.Dom.getDocumentWidth(), Roo.lib.Dom.getDocumentHeight() - box.bottom - this.padding);
8805             this.maskEl.bottom.setLeft(0);
8806             this.maskEl.bottom.setTop(box.bottom + this.padding);
8807             this.maskEl.bottom.show();
8808
8809             this.maskEl.right.setStyle('position', 'absolute');
8810             this.maskEl.right.setStyle('z-index', zIndex);
8811             this.maskEl.right.setSize(Roo.lib.Dom.getDocumentWidth() - box.right - this.padding, box.height + this.padding * 2);
8812             this.maskEl.right.setLeft(box.right + this.padding);
8813             this.maskEl.right.setTop(box.y - this.padding);
8814             this.maskEl.right.show();
8815
8816             this.toolTip.bindEl = this.target.el;
8817
8818             this.toolTip.el.setStyle('z-index', Roo.bootstrap.Modal.zIndex++);
8819
8820             var tip = this.target.blankText;
8821
8822             if(this.target.getValue() !== '' ) {
8823                 
8824                 if (this.target.invalidText.length) {
8825                     tip = this.target.invalidText;
8826                 } else if (this.target.regexText.length){
8827                     tip = this.target.regexText;
8828                 }
8829             }
8830
8831             this.toolTip.show(tip);
8832
8833             this.intervalID = window.setInterval(function() {
8834                 Roo.bootstrap.Form.popover.unmask();
8835             }, 10000);
8836
8837             window.onwheel = function(){ return false;};
8838             
8839             (function(){ this.isMasked = true; }).defer(500, this);
8840             
8841         },
8842         
8843         unmask : function()
8844         {
8845             if(!this.isApplied || !this.isMasked || !this.form || !this.target || !this.form.errorMask){
8846                 return;
8847             }
8848             
8849             this.maskEl.top.setStyle('position', 'absolute');
8850             this.maskEl.top.setSize(0, 0).setXY([0, 0]);
8851             this.maskEl.top.hide();
8852
8853             this.maskEl.left.setStyle('position', 'absolute');
8854             this.maskEl.left.setSize(0, 0).setXY([0, 0]);
8855             this.maskEl.left.hide();
8856
8857             this.maskEl.bottom.setStyle('position', 'absolute');
8858             this.maskEl.bottom.setSize(0, 0).setXY([0, 0]);
8859             this.maskEl.bottom.hide();
8860
8861             this.maskEl.right.setStyle('position', 'absolute');
8862             this.maskEl.right.setSize(0, 0).setXY([0, 0]);
8863             this.maskEl.right.hide();
8864             
8865             this.toolTip.hide();
8866             
8867             this.toolTip.el.hide();
8868             
8869             window.onwheel = function(){ return true;};
8870             
8871             if(this.intervalID){
8872                 window.clearInterval(this.intervalID);
8873                 this.intervalID = false;
8874             }
8875             
8876             this.isMasked = false;
8877             
8878         }
8879         
8880     }
8881     
8882 });
8883
8884 /*
8885  * Based on:
8886  * Ext JS Library 1.1.1
8887  * Copyright(c) 2006-2007, Ext JS, LLC.
8888  *
8889  * Originally Released Under LGPL - original licence link has changed is not relivant.
8890  *
8891  * Fork - LGPL
8892  * <script type="text/javascript">
8893  */
8894 /**
8895  * @class Roo.form.VTypes
8896  * Overridable validation definitions. The validations provided are basic and intended to be easily customizable and extended.
8897  * @singleton
8898  */
8899 Roo.form.VTypes = function(){
8900     // closure these in so they are only created once.
8901     var alpha = /^[a-zA-Z_]+$/;
8902     var alphanum = /^[a-zA-Z0-9_]+$/;
8903     var email = /^([\w]+)(.[\w]+)*@([\w-]+\.){1,5}([A-Za-z]){2,24}$/;
8904     var url = /(((https?)|(ftp)):\/\/([\-\w]+\.)+\w{2,3}(\/[%\-\w]+(\.\w{2,})?)*(([\w\-\.\?\\\/+@&#;`~=%!]*)(\.\w{2,})?)*\/?)/i;
8905
8906     // All these messages and functions are configurable
8907     return {
8908         /**
8909          * The function used to validate email addresses
8910          * @param {String} value The email address
8911          */
8912         'email' : function(v){
8913             return email.test(v);
8914         },
8915         /**
8916          * The error text to display when the email validation function returns false
8917          * @type String
8918          */
8919         'emailText' : 'This field should be an e-mail address in the format "user@domain.com"',
8920         /**
8921          * The keystroke filter mask to be applied on email input
8922          * @type RegExp
8923          */
8924         'emailMask' : /[a-z0-9_\.\-@]/i,
8925
8926         /**
8927          * The function used to validate URLs
8928          * @param {String} value The URL
8929          */
8930         'url' : function(v){
8931             return url.test(v);
8932         },
8933         /**
8934          * The error text to display when the url validation function returns false
8935          * @type String
8936          */
8937         'urlText' : 'This field should be a URL in the format "http:/'+'/www.domain.com"',
8938         
8939         /**
8940          * The function used to validate alpha values
8941          * @param {String} value The value
8942          */
8943         'alpha' : function(v){
8944             return alpha.test(v);
8945         },
8946         /**
8947          * The error text to display when the alpha validation function returns false
8948          * @type String
8949          */
8950         'alphaText' : 'This field should only contain letters and _',
8951         /**
8952          * The keystroke filter mask to be applied on alpha input
8953          * @type RegExp
8954          */
8955         'alphaMask' : /[a-z_]/i,
8956
8957         /**
8958          * The function used to validate alphanumeric values
8959          * @param {String} value The value
8960          */
8961         'alphanum' : function(v){
8962             return alphanum.test(v);
8963         },
8964         /**
8965          * The error text to display when the alphanumeric validation function returns false
8966          * @type String
8967          */
8968         'alphanumText' : 'This field should only contain letters, numbers and _',
8969         /**
8970          * The keystroke filter mask to be applied on alphanumeric input
8971          * @type RegExp
8972          */
8973         'alphanumMask' : /[a-z0-9_]/i
8974     };
8975 }();/*
8976  * - LGPL
8977  *
8978  * Input
8979  * 
8980  */
8981
8982 /**
8983  * @class Roo.bootstrap.Input
8984  * @extends Roo.bootstrap.Component
8985  * Bootstrap Input class
8986  * @cfg {Boolean} disabled is it disabled
8987  * @cfg {String} inputType button | checkbox | email | file | hidden | image | number | password | radio | range | reset | search | submit | text
8988  * @cfg {String} name name of the input
8989  * @cfg {string} fieldLabel - the label associated
8990  * @cfg {string} placeholder - placeholder to put in text.
8991  * @cfg {string}  before - input group add on before
8992  * @cfg {string} after - input group add on after
8993  * @cfg {string} size - (lg|sm) or leave empty..
8994  * @cfg {Number} xs colspan out of 12 for mobile-sized screens
8995  * @cfg {Number} sm colspan out of 12 for tablet-sized screens
8996  * @cfg {Number} md colspan out of 12 for computer-sized screens
8997  * @cfg {Number} lg colspan out of 12 for large computer-sized screens
8998  * @cfg {string} value default value of the input
8999  * @cfg {Number} labelWidth set the width of label 
9000  * @cfg {Number} labellg set the width of label (1-12)
9001  * @cfg {Number} labelmd set the width of label (1-12)
9002  * @cfg {Number} labelsm set the width of label (1-12)
9003  * @cfg {Number} labelxs set the width of label (1-12)
9004  * @cfg {String} labelAlign (top|left)
9005  * @cfg {Boolean} readOnly Specifies that the field should be read-only
9006  * @cfg {String} autocomplete - default is new-password see: https://developers.google.com/web/fundamentals/input/form/label-and-name-inputs?hl=en
9007  * @cfg {String} indicatorpos (left|right) default left
9008  * @cfg {String} capture (user|camera) use for file input only. (default empty)
9009  * @cfg {String} accept (image|video|audio) use for file input only. (default empty)
9010
9011  * @cfg {String} align (left|center|right) Default left
9012  * @cfg {Boolean} forceFeedback (true|false) Default false
9013  * 
9014  * @constructor
9015  * Create a new Input
9016  * @param {Object} config The config object
9017  */
9018
9019 Roo.bootstrap.Input = function(config){
9020     
9021     Roo.bootstrap.Input.superclass.constructor.call(this, config);
9022     
9023     this.addEvents({
9024         /**
9025          * @event focus
9026          * Fires when this field receives input focus.
9027          * @param {Roo.form.Field} this
9028          */
9029         focus : true,
9030         /**
9031          * @event blur
9032          * Fires when this field loses input focus.
9033          * @param {Roo.form.Field} this
9034          */
9035         blur : true,
9036         /**
9037          * @event specialkey
9038          * Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check
9039          * {@link Roo.EventObject#getKey} to determine which key was pressed.
9040          * @param {Roo.form.Field} this
9041          * @param {Roo.EventObject} e The event object
9042          */
9043         specialkey : true,
9044         /**
9045          * @event change
9046          * Fires just before the field blurs if the field value has changed.
9047          * @param {Roo.form.Field} this
9048          * @param {Mixed} newValue The new value
9049          * @param {Mixed} oldValue The original value
9050          */
9051         change : true,
9052         /**
9053          * @event invalid
9054          * Fires after the field has been marked as invalid.
9055          * @param {Roo.form.Field} this
9056          * @param {String} msg The validation message
9057          */
9058         invalid : true,
9059         /**
9060          * @event valid
9061          * Fires after the field has been validated with no errors.
9062          * @param {Roo.form.Field} this
9063          */
9064         valid : true,
9065          /**
9066          * @event keyup
9067          * Fires after the key up
9068          * @param {Roo.form.Field} this
9069          * @param {Roo.EventObject}  e The event Object
9070          */
9071         keyup : true
9072     });
9073 };
9074
9075 Roo.extend(Roo.bootstrap.Input, Roo.bootstrap.Component,  {
9076      /**
9077      * @cfg {String/Boolean} validationEvent The event that should initiate field validation. Set to false to disable
9078       automatic validation (defaults to "keyup").
9079      */
9080     validationEvent : "keyup",
9081      /**
9082      * @cfg {Boolean} validateOnBlur Whether the field should validate when it loses focus (defaults to true).
9083      */
9084     validateOnBlur : true,
9085     /**
9086      * @cfg {Number} validationDelay The length of time in milliseconds after user input begins until validation is initiated (defaults to 250)
9087      */
9088     validationDelay : 250,
9089      /**
9090      * @cfg {String} focusClass The CSS class to use when the field receives focus (defaults to "x-form-focus")
9091      */
9092     focusClass : "x-form-focus",  // not needed???
9093     
9094        
9095     /**
9096      * @cfg {String} invalidClass DEPRICATED - code uses BS4 - is-valid / is-invalid
9097      */
9098     invalidClass : "has-warning",
9099     
9100     /**
9101      * @cfg {String} validClass DEPRICATED - code uses BS4 - is-valid / is-invalid
9102      */
9103     validClass : "has-success",
9104     
9105     /**
9106      * @cfg {Boolean} hasFeedback (true|false) default true
9107      */
9108     hasFeedback : true,
9109     
9110     /**
9111      * @cfg {String} invalidFeedbackIcon The CSS class to use when create feedback icon (defaults to "x-form-invalid")
9112      */
9113     invalidFeedbackClass : "glyphicon-warning-sign",
9114     
9115     /**
9116      * @cfg {String} validFeedbackIcon The CSS class to use when create feedback icon (defaults to "x-form-invalid")
9117      */
9118     validFeedbackClass : "glyphicon-ok",
9119     
9120     /**
9121      * @cfg {Boolean} selectOnFocus True to automatically select any existing field text when the field receives input focus (defaults to false)
9122      */
9123     selectOnFocus : false,
9124     
9125      /**
9126      * @cfg {String} maskRe An input mask regular expression that will be used to filter keystrokes that don't match (defaults to null)
9127      */
9128     maskRe : null,
9129        /**
9130      * @cfg {String} vtype A validation type name as defined in {@link Roo.form.VTypes} (defaults to null)
9131      */
9132     vtype : null,
9133     
9134       /**
9135      * @cfg {Boolean} disableKeyFilter True to disable input keystroke filtering (defaults to false)
9136      */
9137     disableKeyFilter : false,
9138     
9139        /**
9140      * @cfg {Boolean} disabled True to disable the field (defaults to false).
9141      */
9142     disabled : false,
9143      /**
9144      * @cfg {Boolean} allowBlank False to validate that the value length > 0 (defaults to true)
9145      */
9146     allowBlank : true,
9147     /**
9148      * @cfg {String} blankText Error text to display if the allow blank validation fails (defaults to "This field is required")
9149      */
9150     blankText : "Please complete this mandatory field",
9151     
9152      /**
9153      * @cfg {Number} minLength Minimum input field length required (defaults to 0)
9154      */
9155     minLength : 0,
9156     /**
9157      * @cfg {Number} maxLength Maximum input field length allowed (defaults to Number.MAX_VALUE)
9158      */
9159     maxLength : Number.MAX_VALUE,
9160     /**
9161      * @cfg {String} minLengthText Error text to display if the minimum length validation fails (defaults to "The minimum length for this field is {minLength}")
9162      */
9163     minLengthText : "The minimum length for this field is {0}",
9164     /**
9165      * @cfg {String} maxLengthText Error text to display if the maximum length validation fails (defaults to "The maximum length for this field is {maxLength}")
9166      */
9167     maxLengthText : "The maximum length for this field is {0}",
9168   
9169     
9170     /**
9171      * @cfg {Function} validator A custom validation function to be called during field validation (defaults to null).
9172      * If available, this function will be called only after the basic validators all return true, and will be passed the
9173      * current field value and expected to return boolean true if the value is valid or a string error message if invalid.
9174      */
9175     validator : null,
9176     /**
9177      * @cfg {RegExp} regex A JavaScript RegExp object to be tested against the field value during validation (defaults to null).
9178      * If available, this regex will be evaluated only after the basic validators all return true, and will be passed the
9179      * current field value.  If the test fails, the field will be marked invalid using {@link #regexText}.
9180      */
9181     regex : null,
9182     /**
9183      * @cfg {String} regexText -- Depricated - use Invalid Text
9184      */
9185     regexText : "",
9186     
9187     /**
9188      * @cfg {String} invalidText The error text to display if {@link #validator} test fails during validation (defaults to "")
9189      */
9190     invalidText : "",
9191     
9192     
9193     
9194     autocomplete: false,
9195     
9196     
9197     fieldLabel : '',
9198     inputType : 'text',
9199     
9200     name : false,
9201     placeholder: false,
9202     before : false,
9203     after : false,
9204     size : false,
9205     hasFocus : false,
9206     preventMark: false,
9207     isFormField : true,
9208     value : '',
9209     labelWidth : 2,
9210     labelAlign : false,
9211     readOnly : false,
9212     align : false,
9213     formatedValue : false,
9214     forceFeedback : false,
9215     
9216     indicatorpos : 'left',
9217     
9218     labellg : 0,
9219     labelmd : 0,
9220     labelsm : 0,
9221     labelxs : 0,
9222     
9223     capture : '',
9224     accept : '',
9225     
9226     parentLabelAlign : function()
9227     {
9228         var parent = this;
9229         while (parent.parent()) {
9230             parent = parent.parent();
9231             if (typeof(parent.labelAlign) !='undefined') {
9232                 return parent.labelAlign;
9233             }
9234         }
9235         return 'left';
9236         
9237     },
9238     
9239     getAutoCreate : function()
9240     {
9241         var align = (!this.labelAlign) ? this.parentLabelAlign() : this.labelAlign;
9242         
9243         var id = Roo.id();
9244         
9245         var cfg = {};
9246         
9247         if(this.inputType != 'hidden'){
9248             cfg.cls = 'form-group' //input-group
9249         }
9250         
9251         var input =  {
9252             tag: 'input',
9253             id : id,
9254             type : this.inputType,
9255             value : this.value,
9256             cls : 'form-control',
9257             placeholder : this.placeholder || '',
9258             autocomplete : this.autocomplete || 'new-password'
9259         };
9260         
9261         if(this.capture.length){
9262             input.capture = this.capture;
9263         }
9264         
9265         if(this.accept.length){
9266             input.accept = this.accept + "/*";
9267         }
9268         
9269         if(this.align){
9270             input.style = (typeof(input.style) == 'undefined') ? ('text-align:' + this.align) : (input.style + 'text-align:' + this.align);
9271         }
9272         
9273         if(this.maxLength && this.maxLength != Number.MAX_VALUE){
9274             input.maxLength = this.maxLength;
9275         }
9276         
9277         if (this.disabled) {
9278             input.disabled=true;
9279         }
9280         
9281         if (this.readOnly) {
9282             input.readonly=true;
9283         }
9284         
9285         if (this.name) {
9286             input.name = this.name;
9287         }
9288         
9289         if (this.size) {
9290             input.cls += ' input-' + this.size;
9291         }
9292         
9293         var settings=this;
9294         ['xs','sm','md','lg'].map(function(size){
9295             if (settings[size]) {
9296                 cfg.cls += ' col-' + size + '-' + settings[size];
9297             }
9298         });
9299         
9300         var inputblock = input;
9301         
9302         var feedback = {
9303             tag: 'span',
9304             cls: 'glyphicon form-control-feedback'
9305         };
9306             
9307         if(this.hasFeedback && this.inputType != 'hidden' && !this.allowBlank){
9308             
9309             inputblock = {
9310                 cls : 'has-feedback',
9311                 cn :  [
9312                     input,
9313                     feedback
9314                 ] 
9315             };  
9316         }
9317         
9318         if (this.before || this.after) {
9319             
9320             inputblock = {
9321                 cls : 'input-group',
9322                 cn :  [] 
9323             };
9324             
9325             if (this.before && typeof(this.before) == 'string') {
9326                 
9327                 inputblock.cn.push({
9328                     tag :'span',
9329                     cls : 'roo-input-before input-group-addon input-group-prepend input-group-text',
9330                     html : this.before
9331                 });
9332             }
9333             if (this.before && typeof(this.before) == 'object') {
9334                 this.before = Roo.factory(this.before);
9335                 
9336                 inputblock.cn.push({
9337                     tag :'span',
9338                     cls : 'roo-input-before input-group-prepend input-group-text input-group-' +
9339                         (this.before.xtype == 'Button' ? 'btn' : 'addon')  //?? what about checkboxes - that looks like a bit of a hack thought? 
9340                 });
9341             }
9342             
9343             inputblock.cn.push(input);
9344             
9345             if (this.after && typeof(this.after) == 'string') {
9346                 inputblock.cn.push({
9347                     tag :'span',
9348                     cls : 'roo-input-after input-group-append input-group-text input-group-addon',
9349                     html : this.after
9350                 });
9351             }
9352             if (this.after && typeof(this.after) == 'object') {
9353                 this.after = Roo.factory(this.after);
9354                 
9355                 inputblock.cn.push({
9356                     tag :'span',
9357                     cls : 'roo-input-after input-group-append input-group-text input-group-' +
9358                         (this.after.xtype == 'Button' ? 'btn' : 'addon')  //?? what about checkboxes - that looks like a bit of a hack thought? 
9359                 });
9360             }
9361             
9362             if(this.hasFeedback && this.inputType != 'hidden' && !this.allowBlank){
9363                 inputblock.cls += ' has-feedback';
9364                 inputblock.cn.push(feedback);
9365             }
9366         };
9367         var indicator = {
9368             tag : 'i',
9369             cls : 'roo-required-indicator ' + (this.indicatorpos == 'right'  ? 'right' : 'left') +'-indicator text-danger fa fa-lg fa-star',
9370             tooltip : 'This field is required'
9371         };
9372         if (Roo.bootstrap.version == 4) {
9373             indicator = {
9374                 tag : 'i',
9375                 style : 'display-none'
9376             };
9377         }
9378         if (align ==='left' && this.fieldLabel.length) {
9379             
9380             cfg.cls += ' roo-form-group-label-left'  + (Roo.bootstrap.version == 4 ? ' row' : '');
9381             
9382             cfg.cn = [
9383                 indicator,
9384                 {
9385                     tag: 'label',
9386                     'for' :  id,
9387                     cls : 'control-label col-form-label',
9388                     html : this.fieldLabel
9389
9390                 },
9391                 {
9392                     cls : "", 
9393                     cn: [
9394                         inputblock
9395                     ]
9396                 }
9397             ];
9398             
9399             var labelCfg = cfg.cn[1];
9400             var contentCfg = cfg.cn[2];
9401             
9402             if(this.indicatorpos == 'right'){
9403                 cfg.cn = [
9404                     {
9405                         tag: 'label',
9406                         'for' :  id,
9407                         cls : 'control-label col-form-label',
9408                         cn : [
9409                             {
9410                                 tag : 'span',
9411                                 html : this.fieldLabel
9412                             },
9413                             indicator
9414                         ]
9415                     },
9416                     {
9417                         cls : "",
9418                         cn: [
9419                             inputblock
9420                         ]
9421                     }
9422
9423                 ];
9424                 
9425                 labelCfg = cfg.cn[0];
9426                 contentCfg = cfg.cn[1];
9427             
9428             }
9429             
9430             if(this.labelWidth > 12){
9431                 labelCfg.style = "width: " + this.labelWidth + 'px';
9432             }
9433             
9434             if(this.labelWidth < 13 && this.labelmd == 0){
9435                 this.labelmd = this.labelWidth;
9436             }
9437             
9438             if(this.labellg > 0){
9439                 labelCfg.cls += ' col-lg-' + this.labellg;
9440                 contentCfg.cls += ' col-lg-' + (12 - this.labellg);
9441             }
9442             
9443             if(this.labelmd > 0){
9444                 labelCfg.cls += ' col-md-' + this.labelmd;
9445                 contentCfg.cls += ' col-md-' + (12 - this.labelmd);
9446             }
9447             
9448             if(this.labelsm > 0){
9449                 labelCfg.cls += ' col-sm-' + this.labelsm;
9450                 contentCfg.cls += ' col-sm-' + (12 - this.labelsm);
9451             }
9452             
9453             if(this.labelxs > 0){
9454                 labelCfg.cls += ' col-xs-' + this.labelxs;
9455                 contentCfg.cls += ' col-xs-' + (12 - this.labelxs);
9456             }
9457             
9458             
9459         } else if ( this.fieldLabel.length) {
9460                 
9461             cfg.cn = [
9462                 {
9463                     tag : 'i',
9464                     cls : 'roo-required-indicator left-indicator text-danger fa fa-lg fa-star',
9465                     tooltip : 'This field is required'
9466                 },
9467                 {
9468                     tag: 'label',
9469                    //cls : 'input-group-addon',
9470                     html : this.fieldLabel
9471
9472                 },
9473
9474                inputblock
9475
9476            ];
9477            
9478            if(this.indicatorpos == 'right'){
9479                 
9480                 cfg.cn = [
9481                     {
9482                         tag: 'label',
9483                        //cls : 'input-group-addon',
9484                         html : this.fieldLabel
9485
9486                     },
9487                     {
9488                         tag : 'i',
9489                         cls : 'roo-required-indicator right-indicator text-danger fa fa-lg fa-star',
9490                         tooltip : 'This field is required'
9491                     },
9492
9493                    inputblock
9494
9495                ];
9496
9497             }
9498
9499         } else {
9500             
9501             cfg.cn = [
9502
9503                     inputblock
9504
9505             ];
9506                 
9507                 
9508         };
9509         
9510         if (this.parentType === 'Navbar' &&  this.parent().bar) {
9511            cfg.cls += ' navbar-form';
9512         }
9513         
9514         if (this.parentType === 'NavGroup' && !(Roo.bootstrap.version == 4 && this.parent().form)) {
9515             // on BS4 we do this only if not form 
9516             cfg.cls += ' navbar-form';
9517             cfg.tag = 'li';
9518         }
9519         
9520         return cfg;
9521         
9522     },
9523     /**
9524      * return the real input element.
9525      */
9526     inputEl: function ()
9527     {
9528         return this.el.select('input.form-control',true).first();
9529     },
9530     
9531     tooltipEl : function()
9532     {
9533         return this.inputEl();
9534     },
9535     
9536     indicatorEl : function()
9537     {
9538         if (Roo.bootstrap.version == 4) {
9539             return false; // not enabled in v4 yet.
9540         }
9541         
9542         var indicator = this.el.select('i.roo-required-indicator',true).first();
9543         
9544         if(!indicator){
9545             return false;
9546         }
9547         
9548         return indicator;
9549         
9550     },
9551     
9552     setDisabled : function(v)
9553     {
9554         var i  = this.inputEl().dom;
9555         if (!v) {
9556             i.removeAttribute('disabled');
9557             return;
9558             
9559         }
9560         i.setAttribute('disabled','true');
9561     },
9562     initEvents : function()
9563     {
9564           
9565         this.inputEl().on("keydown" , this.fireKey,  this);
9566         this.inputEl().on("focus", this.onFocus,  this);
9567         this.inputEl().on("blur", this.onBlur,  this);
9568         
9569         this.inputEl().relayEvent('keyup', this);
9570         
9571         this.indicator = this.indicatorEl();
9572         
9573         if(this.indicator){
9574             this.indicator.addClass(this.indicatorpos == 'right' ? 'hidden' : 'invisible'); // changed from invisible??? - 
9575         }
9576  
9577         // reference to original value for reset
9578         this.originalValue = this.getValue();
9579         //Roo.form.TextField.superclass.initEvents.call(this);
9580         if(this.validationEvent == 'keyup'){
9581             this.validationTask = new Roo.util.DelayedTask(this.validate, this);
9582             this.inputEl().on('keyup', this.filterValidation, this);
9583         }
9584         else if(this.validationEvent !== false){
9585             this.inputEl().on(this.validationEvent, this.validate, this, {buffer: this.validationDelay});
9586         }
9587         
9588         if(this.selectOnFocus){
9589             this.on("focus", this.preFocus, this);
9590             
9591         }
9592         if(this.maskRe || (this.vtype && this.disableKeyFilter !== true && (this.maskRe = Roo.form.VTypes[this.vtype+'Mask']))){
9593             this.inputEl().on("keypress", this.filterKeys, this);
9594         } else {
9595             this.inputEl().relayEvent('keypress', this);
9596         }
9597        /* if(this.grow){
9598             this.el.on("keyup", this.onKeyUp,  this, {buffer:50});
9599             this.el.on("click", this.autoSize,  this);
9600         }
9601         */
9602         if(this.inputEl().is('input[type=password]') && Roo.isSafari){
9603             this.inputEl().on('keydown', this.SafariOnKeyDown, this);
9604         }
9605         
9606         if (typeof(this.before) == 'object') {
9607             this.before.render(this.el.select('.roo-input-before',true).first());
9608         }
9609         if (typeof(this.after) == 'object') {
9610             this.after.render(this.el.select('.roo-input-after',true).first());
9611         }
9612         
9613         this.inputEl().on('change', this.onChange, this);
9614         
9615     },
9616     filterValidation : function(e){
9617         if(!e.isNavKeyPress()){
9618             this.validationTask.delay(this.validationDelay);
9619         }
9620     },
9621      /**
9622      * Validates the field value
9623      * @return {Boolean} True if the value is valid, else false
9624      */
9625     validate : function(){
9626         //if(this.disabled || this.validateValue(this.processValue(this.getRawValue()))){
9627         if(this.disabled || this.validateValue(this.getRawValue())){
9628             this.markValid();
9629             return true;
9630         }
9631         
9632         this.markInvalid();
9633         return false;
9634     },
9635     
9636     
9637     /**
9638      * Validates a value according to the field's validation rules and marks the field as invalid
9639      * if the validation fails
9640      * @param {Mixed} value The value to validate
9641      * @return {Boolean} True if the value is valid, else false
9642      */
9643     validateValue : function(value)
9644     {
9645         if(this.getVisibilityEl().hasClass('hidden')){
9646             return true;
9647         }
9648         
9649         if(value.length < 1)  { // if it's blank
9650             if(this.allowBlank){
9651                 return true;
9652             }
9653             return false;
9654         }
9655         
9656         if(value.length < this.minLength){
9657             return false;
9658         }
9659         if(value.length > this.maxLength){
9660             return false;
9661         }
9662         if(this.vtype){
9663             var vt = Roo.form.VTypes;
9664             if(!vt[this.vtype](value, this)){
9665                 return false;
9666             }
9667         }
9668         if(typeof this.validator == "function"){
9669             var msg = this.validator(value);
9670             if(msg !== true){
9671                 return false;
9672             }
9673             if (typeof(msg) == 'string') {
9674                 this.invalidText = msg;
9675             }
9676         }
9677         
9678         if(this.regex && !this.regex.test(value)){
9679             return false;
9680         }
9681         
9682         return true;
9683     },
9684     
9685      // private
9686     fireKey : function(e){
9687         //Roo.log('field ' + e.getKey());
9688         if(e.isNavKeyPress()){
9689             this.fireEvent("specialkey", this, e);
9690         }
9691     },
9692     focus : function (selectText){
9693         if(this.rendered){
9694             this.inputEl().focus();
9695             if(selectText === true){
9696                 this.inputEl().dom.select();
9697             }
9698         }
9699         return this;
9700     } ,
9701     
9702     onFocus : function(){
9703         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
9704            // this.el.addClass(this.focusClass);
9705         }
9706         if(!this.hasFocus){
9707             this.hasFocus = true;
9708             this.startValue = this.getValue();
9709             this.fireEvent("focus", this);
9710         }
9711     },
9712     
9713     beforeBlur : Roo.emptyFn,
9714
9715     
9716     // private
9717     onBlur : function(){
9718         this.beforeBlur();
9719         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
9720             //this.el.removeClass(this.focusClass);
9721         }
9722         this.hasFocus = false;
9723         if(this.validationEvent !== false && this.validateOnBlur && this.validationEvent != "blur"){
9724             this.validate();
9725         }
9726         var v = this.getValue();
9727         if(String(v) !== String(this.startValue)){
9728             this.fireEvent('change', this, v, this.startValue);
9729         }
9730         this.fireEvent("blur", this);
9731     },
9732     
9733     onChange : function(e)
9734     {
9735         var v = this.getValue();
9736         if(String(v) !== String(this.startValue)){
9737             this.fireEvent('change', this, v, this.startValue);
9738         }
9739         
9740     },
9741     
9742     /**
9743      * Resets the current field value to the originally loaded value and clears any validation messages
9744      */
9745     reset : function(){
9746         this.setValue(this.originalValue);
9747         this.validate();
9748     },
9749      /**
9750      * Returns the name of the field
9751      * @return {Mixed} name The name field
9752      */
9753     getName: function(){
9754         return this.name;
9755     },
9756      /**
9757      * Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}.
9758      * @return {Mixed} value The field value
9759      */
9760     getValue : function(){
9761         
9762         var v = this.inputEl().getValue();
9763         
9764         return v;
9765     },
9766     /**
9767      * Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}.
9768      * @return {Mixed} value The field value
9769      */
9770     getRawValue : function(){
9771         var v = this.inputEl().getValue();
9772         
9773         return v;
9774     },
9775     
9776     /**
9777      * Sets the underlying DOM field's value directly, bypassing validation.  To set the value with validation see {@link #setValue}.
9778      * @param {Mixed} value The value to set
9779      */
9780     setRawValue : function(v){
9781         return this.inputEl().dom.value = (v === null || v === undefined ? '' : v);
9782     },
9783     
9784     selectText : function(start, end){
9785         var v = this.getRawValue();
9786         if(v.length > 0){
9787             start = start === undefined ? 0 : start;
9788             end = end === undefined ? v.length : end;
9789             var d = this.inputEl().dom;
9790             if(d.setSelectionRange){
9791                 d.setSelectionRange(start, end);
9792             }else if(d.createTextRange){
9793                 var range = d.createTextRange();
9794                 range.moveStart("character", start);
9795                 range.moveEnd("character", v.length-end);
9796                 range.select();
9797             }
9798         }
9799     },
9800     
9801     /**
9802      * Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}.
9803      * @param {Mixed} value The value to set
9804      */
9805     setValue : function(v){
9806         this.value = v;
9807         if(this.rendered){
9808             this.inputEl().dom.value = (v === null || v === undefined ? '' : v);
9809             this.validate();
9810         }
9811     },
9812     
9813     /*
9814     processValue : function(value){
9815         if(this.stripCharsRe){
9816             var newValue = value.replace(this.stripCharsRe, '');
9817             if(newValue !== value){
9818                 this.setRawValue(newValue);
9819                 return newValue;
9820             }
9821         }
9822         return value;
9823     },
9824   */
9825     preFocus : function(){
9826         
9827         if(this.selectOnFocus){
9828             this.inputEl().dom.select();
9829         }
9830     },
9831     filterKeys : function(e){
9832         var k = e.getKey();
9833         if(!Roo.isIE && (e.isNavKeyPress() || k == e.BACKSPACE || (k == e.DELETE && e.button == -1))){
9834             return;
9835         }
9836         var c = e.getCharCode(), cc = String.fromCharCode(c);
9837         if(Roo.isIE && (e.isSpecialKey() || !cc)){
9838             return;
9839         }
9840         if(!this.maskRe.test(cc)){
9841             e.stopEvent();
9842         }
9843     },
9844      /**
9845      * Clear any invalid styles/messages for this field
9846      */
9847     clearInvalid : function(){
9848         
9849         if(!this.el || this.preventMark){ // not rendered
9850             return;
9851         }
9852         
9853         
9854         this.el.removeClass([this.invalidClass, 'is-invalid']);
9855         
9856         if(this.hasFeedback && this.inputType != 'hidden' && !this.allowBlank){
9857             
9858             var feedback = this.el.select('.form-control-feedback', true).first();
9859             
9860             if(feedback){
9861                 this.el.select('.form-control-feedback', true).first().removeClass(this.invalidFeedbackClass);
9862             }
9863             
9864         }
9865         
9866         if(this.indicator){
9867             this.indicator.removeClass('visible');
9868             this.indicator.addClass(this.indicatorpos == 'right' ? 'hidden' : 'invisible');
9869         }
9870         
9871         this.fireEvent('valid', this);
9872     },
9873     
9874      /**
9875      * Mark this field as valid
9876      */
9877     markValid : function()
9878     {
9879         if(!this.el  || this.preventMark){ // not rendered...
9880             return;
9881         }
9882         
9883         this.el.removeClass([this.invalidClass, this.validClass]);
9884         this.inputEl().removeClass(['is-valid', 'is-invalid']);
9885
9886         var feedback = this.el.select('.form-control-feedback', true).first();
9887             
9888         if(feedback){
9889             this.el.select('.form-control-feedback', true).first().removeClass([this.invalidFeedbackClass, this.validFeedbackClass]);
9890         }
9891         
9892         if(this.indicator){
9893             this.indicator.removeClass('visible');
9894             this.indicator.addClass(this.indicatorpos == 'right' ? 'hidden' : 'invisible');
9895         }
9896         
9897         if(this.disabled){
9898             return;
9899         }
9900         
9901         if(this.allowBlank && !this.getRawValue().length){
9902             return;
9903         }
9904         if (Roo.bootstrap.version == 3) {
9905             this.el.addClass(this.validClass);
9906         } else {
9907             this.inputEl().addClass('is-valid');
9908         }
9909
9910         if(this.hasFeedback && this.inputType != 'hidden' && !this.allowBlank && (this.getValue().length || this.forceFeedback)){
9911             
9912             var feedback = this.el.select('.form-control-feedback', true).first();
9913             
9914             if(feedback){
9915                 this.el.select('.form-control-feedback', true).first().removeClass([this.invalidFeedbackClass, this.validFeedbackClass]);
9916                 this.el.select('.form-control-feedback', true).first().addClass([this.validFeedbackClass]);
9917             }
9918             
9919         }
9920         
9921         this.fireEvent('valid', this);
9922     },
9923     
9924      /**
9925      * Mark this field as invalid
9926      * @param {String} msg The validation message
9927      */
9928     markInvalid : function(msg)
9929     {
9930         if(!this.el  || this.preventMark){ // not rendered
9931             return;
9932         }
9933         
9934         this.el.removeClass([this.invalidClass, this.validClass]);
9935         this.inputEl().removeClass(['is-valid', 'is-invalid']);
9936         
9937         var feedback = this.el.select('.form-control-feedback', true).first();
9938             
9939         if(feedback){
9940             this.el.select('.form-control-feedback', true).first().removeClass(
9941                     [this.invalidFeedbackClass, this.validFeedbackClass]);
9942         }
9943
9944         if(this.disabled){
9945             return;
9946         }
9947         
9948         if(this.allowBlank && !this.getRawValue().length){
9949             return;
9950         }
9951         
9952         if(this.indicator){
9953             this.indicator.removeClass(this.indicatorpos == 'right' ? 'hidden' : 'invisible');
9954             this.indicator.addClass('visible');
9955         }
9956         if (Roo.bootstrap.version == 3) {
9957             this.el.addClass(this.invalidClass);
9958         } else {
9959             this.inputEl().addClass('is-invalid');
9960         }
9961         
9962         
9963         
9964         if(this.hasFeedback && this.inputType != 'hidden' && !this.allowBlank){
9965             
9966             var feedback = this.el.select('.form-control-feedback', true).first();
9967             
9968             if(feedback){
9969                 this.el.select('.form-control-feedback', true).first().removeClass([this.invalidFeedbackClass, this.validFeedbackClass]);
9970                 
9971                 if(this.getValue().length || this.forceFeedback){
9972                     this.el.select('.form-control-feedback', true).first().addClass([this.invalidFeedbackClass]);
9973                 }
9974                 
9975             }
9976             
9977         }
9978         
9979         this.fireEvent('invalid', this, msg);
9980     },
9981     // private
9982     SafariOnKeyDown : function(event)
9983     {
9984         // this is a workaround for a password hang bug on chrome/ webkit.
9985         if (this.inputEl().dom.type != 'password') {
9986             return;
9987         }
9988         
9989         var isSelectAll = false;
9990         
9991         if(this.inputEl().dom.selectionEnd > 0){
9992             isSelectAll = (this.inputEl().dom.selectionEnd - this.inputEl().dom.selectionStart - this.getValue().length == 0) ? true : false;
9993         }
9994         if(((event.getKey() == 8 || event.getKey() == 46) && this.getValue().length ==1)){ // backspace and delete key
9995             event.preventDefault();
9996             this.setValue('');
9997             return;
9998         }
9999         
10000         if(isSelectAll  && event.getCharCode() > 31 && !event.ctrlKey) { // not backspace and delete key (or ctrl-v)
10001             
10002             event.preventDefault();
10003             // this is very hacky as keydown always get's upper case.
10004             //
10005             var cc = String.fromCharCode(event.getCharCode());
10006             this.setValue( event.shiftKey ?  cc : cc.toLowerCase());
10007             
10008         }
10009     },
10010     adjustWidth : function(tag, w){
10011         tag = tag.toLowerCase();
10012         if(typeof w == 'number' && Roo.isStrict && !Roo.isSafari){
10013             if(Roo.isIE && (tag == 'input' || tag == 'textarea')){
10014                 if(tag == 'input'){
10015                     return w + 2;
10016                 }
10017                 if(tag == 'textarea'){
10018                     return w-2;
10019                 }
10020             }else if(Roo.isOpera){
10021                 if(tag == 'input'){
10022                     return w + 2;
10023                 }
10024                 if(tag == 'textarea'){
10025                     return w-2;
10026                 }
10027             }
10028         }
10029         return w;
10030     },
10031     
10032     setFieldLabel : function(v)
10033     {
10034         if(!this.rendered){
10035             return;
10036         }
10037         
10038         if(this.indicatorEl()){
10039             var ar = this.el.select('label > span',true);
10040             
10041             if (ar.elements.length) {
10042                 this.el.select('label > span',true).first().dom.innerHTML = (v === null || v === undefined ? '' : v);
10043                 this.fieldLabel = v;
10044                 return;
10045             }
10046             
10047             var br = this.el.select('label',true);
10048             
10049             if(br.elements.length) {
10050                 this.el.select('label',true).first().dom.innerHTML = (v === null || v === undefined ? '' : v);
10051                 this.fieldLabel = v;
10052                 return;
10053             }
10054             
10055             Roo.log('Cannot Found any of label > span || label in input');
10056             return;
10057         }
10058         
10059         this.el.select('label',true).first().dom.innerHTML = (v === null || v === undefined ? '' : v);
10060         this.fieldLabel = v;
10061         
10062         
10063     }
10064 });
10065
10066  
10067 /*
10068  * - LGPL
10069  *
10070  * Input
10071  * 
10072  */
10073
10074 /**
10075  * @class Roo.bootstrap.TextArea
10076  * @extends Roo.bootstrap.Input
10077  * Bootstrap TextArea class
10078  * @cfg {Number} cols Specifies the visible width of a text area
10079  * @cfg {Number} rows Specifies the visible number of lines in a text area
10080  * @cfg {string} wrap (soft|hard)Specifies how the text in a text area is to be wrapped when submitted in a form
10081  * @cfg {string} resize (none|both|horizontal|vertical|inherit|initial)
10082  * @cfg {string} html text
10083  * 
10084  * @constructor
10085  * Create a new TextArea
10086  * @param {Object} config The config object
10087  */
10088
10089 Roo.bootstrap.TextArea = function(config){
10090     Roo.bootstrap.TextArea.superclass.constructor.call(this, config);
10091    
10092 };
10093
10094 Roo.extend(Roo.bootstrap.TextArea, Roo.bootstrap.Input,  {
10095      
10096     cols : false,
10097     rows : 5,
10098     readOnly : false,
10099     warp : 'soft',
10100     resize : false,
10101     value: false,
10102     html: false,
10103     
10104     getAutoCreate : function(){
10105         
10106         var align = (!this.labelAlign) ? this.parentLabelAlign() : this.labelAlign;
10107         
10108         var id = Roo.id();
10109         
10110         var cfg = {};
10111         
10112         if(this.inputType != 'hidden'){
10113             cfg.cls = 'form-group' //input-group
10114         }
10115         
10116         var input =  {
10117             tag: 'textarea',
10118             id : id,
10119             warp : this.warp,
10120             rows : this.rows,
10121             value : this.value || '',
10122             html: this.html || '',
10123             cls : 'form-control',
10124             placeholder : this.placeholder || '' 
10125             
10126         };
10127         
10128         if(this.maxLength && this.maxLength != Number.MAX_VALUE){
10129             input.maxLength = this.maxLength;
10130         }
10131         
10132         if(this.resize){
10133             input.style = (typeof(input.style) == 'undefined') ? 'resize:' + this.resize : input.style + 'resize:' + this.resize;
10134         }
10135         
10136         if(this.cols){
10137             input.cols = this.cols;
10138         }
10139         
10140         if (this.readOnly) {
10141             input.readonly = true;
10142         }
10143         
10144         if (this.name) {
10145             input.name = this.name;
10146         }
10147         
10148         if (this.size) {
10149             input.cls = (typeof(input.cls) == 'undefined') ? 'input-' + this.size : input.cls + ' input-' + this.size;
10150         }
10151         
10152         var settings=this;
10153         ['xs','sm','md','lg'].map(function(size){
10154             if (settings[size]) {
10155                 cfg.cls += ' col-' + size + '-' + settings[size];
10156             }
10157         });
10158         
10159         var inputblock = input;
10160         
10161         if(this.hasFeedback && !this.allowBlank){
10162             
10163             var feedback = {
10164                 tag: 'span',
10165                 cls: 'glyphicon form-control-feedback'
10166             };
10167
10168             inputblock = {
10169                 cls : 'has-feedback',
10170                 cn :  [
10171                     input,
10172                     feedback
10173                 ] 
10174             };  
10175         }
10176         
10177         
10178         if (this.before || this.after) {
10179             
10180             inputblock = {
10181                 cls : 'input-group',
10182                 cn :  [] 
10183             };
10184             if (this.before) {
10185                 inputblock.cn.push({
10186                     tag :'span',
10187                     cls : 'input-group-addon',
10188                     html : this.before
10189                 });
10190             }
10191             
10192             inputblock.cn.push(input);
10193             
10194             if(this.hasFeedback && !this.allowBlank){
10195                 inputblock.cls += ' has-feedback';
10196                 inputblock.cn.push(feedback);
10197             }
10198             
10199             if (this.after) {
10200                 inputblock.cn.push({
10201                     tag :'span',
10202                     cls : 'input-group-addon',
10203                     html : this.after
10204                 });
10205             }
10206             
10207         }
10208         
10209         if (align ==='left' && this.fieldLabel.length) {
10210             cfg.cn = [
10211                 {
10212                     tag: 'label',
10213                     'for' :  id,
10214                     cls : 'control-label',
10215                     html : this.fieldLabel
10216                 },
10217                 {
10218                     cls : "",
10219                     cn: [
10220                         inputblock
10221                     ]
10222                 }
10223
10224             ];
10225             
10226             if(this.labelWidth > 12){
10227                 cfg.cn[0].style = "width: " + this.labelWidth + 'px';
10228             }
10229
10230             if(this.labelWidth < 13 && this.labelmd == 0){
10231                 this.labelmd = this.labelWidth;
10232             }
10233
10234             if(this.labellg > 0){
10235                 cfg.cn[0].cls += ' col-lg-' + this.labellg;
10236                 cfg.cn[1].cls += ' col-lg-' + (12 - this.labellg);
10237             }
10238
10239             if(this.labelmd > 0){
10240                 cfg.cn[0].cls += ' col-md-' + this.labelmd;
10241                 cfg.cn[1].cls += ' col-md-' + (12 - this.labelmd);
10242             }
10243
10244             if(this.labelsm > 0){
10245                 cfg.cn[0].cls += ' col-sm-' + this.labelsm;
10246                 cfg.cn[1].cls += ' col-sm-' + (12 - this.labelsm);
10247             }
10248
10249             if(this.labelxs > 0){
10250                 cfg.cn[0].cls += ' col-xs-' + this.labelxs;
10251                 cfg.cn[1].cls += ' col-xs-' + (12 - this.labelxs);
10252             }
10253             
10254         } else if ( this.fieldLabel.length) {
10255             cfg.cn = [
10256
10257                {
10258                    tag: 'label',
10259                    //cls : 'input-group-addon',
10260                    html : this.fieldLabel
10261
10262                },
10263
10264                inputblock
10265
10266            ];
10267
10268         } else {
10269
10270             cfg.cn = [
10271
10272                 inputblock
10273
10274             ];
10275                 
10276         }
10277         
10278         if (this.disabled) {
10279             input.disabled=true;
10280         }
10281         
10282         return cfg;
10283         
10284     },
10285     /**
10286      * return the real textarea element.
10287      */
10288     inputEl: function ()
10289     {
10290         return this.el.select('textarea.form-control',true).first();
10291     },
10292     
10293     /**
10294      * Clear any invalid styles/messages for this field
10295      */
10296     clearInvalid : function()
10297     {
10298         
10299         if(!this.el || this.preventMark){ // not rendered
10300             return;
10301         }
10302         
10303         var label = this.el.select('label', true).first();
10304         var icon = this.el.select('i.fa-star', true).first();
10305         
10306         if(label && icon){
10307             icon.remove();
10308         }
10309         this.el.removeClass( this.validClass);
10310         this.inputEl().removeClass('is-invalid');
10311          
10312         if(this.hasFeedback && this.inputType != 'hidden' && !this.allowBlank){
10313             
10314             var feedback = this.el.select('.form-control-feedback', true).first();
10315             
10316             if(feedback){
10317                 this.el.select('.form-control-feedback', true).first().removeClass(this.invalidFeedbackClass);
10318             }
10319             
10320         }
10321         
10322         this.fireEvent('valid', this);
10323     },
10324     
10325      /**
10326      * Mark this field as valid
10327      */
10328     markValid : function()
10329     {
10330         if(!this.el  || this.preventMark){ // not rendered
10331             return;
10332         }
10333         
10334         this.el.removeClass([this.invalidClass, this.validClass]);
10335         this.inputEl().removeClass(['is-valid', 'is-invalid']);
10336         
10337         var feedback = this.el.select('.form-control-feedback', true).first();
10338             
10339         if(feedback){
10340             this.el.select('.form-control-feedback', true).first().removeClass([this.invalidFeedbackClass, this.validFeedbackClass]);
10341         }
10342
10343         if(this.disabled || this.allowBlank){
10344             return;
10345         }
10346         
10347         var label = this.el.select('label', true).first();
10348         var icon = this.el.select('i.fa-star', true).first();
10349         
10350         if(label && icon){
10351             icon.remove();
10352         }
10353         if (Roo.bootstrap.version == 3) {
10354             this.el.addClass(this.validClass);
10355         } else {
10356             this.inputEl().addClass('is-valid');
10357         }
10358         
10359         
10360         if(this.hasFeedback && this.inputType != 'hidden' && !this.allowBlank && (this.getValue().length || this.forceFeedback)){
10361             
10362             var feedback = this.el.select('.form-control-feedback', true).first();
10363             
10364             if(feedback){
10365                 this.el.select('.form-control-feedback', true).first().removeClass([this.invalidFeedbackClass, this.validFeedbackClass]);
10366                 this.el.select('.form-control-feedback', true).first().addClass([this.validFeedbackClass]);
10367             }
10368             
10369         }
10370         
10371         this.fireEvent('valid', this);
10372     },
10373     
10374      /**
10375      * Mark this field as invalid
10376      * @param {String} msg The validation message
10377      */
10378     markInvalid : function(msg)
10379     {
10380         if(!this.el  || this.preventMark){ // not rendered
10381             return;
10382         }
10383         
10384         this.el.removeClass([this.invalidClass, this.validClass]);
10385         this.inputEl().removeClass(['is-valid', 'is-invalid']);
10386         
10387         var feedback = this.el.select('.form-control-feedback', true).first();
10388             
10389         if(feedback){
10390             this.el.select('.form-control-feedback', true).first().removeClass([this.invalidFeedbackClass, this.validFeedbackClass]);
10391         }
10392
10393         if(this.disabled || this.allowBlank){
10394             return;
10395         }
10396         
10397         var label = this.el.select('label', true).first();
10398         var icon = this.el.select('i.fa-star', true).first();
10399         
10400         if(!this.getValue().length && label && !icon){
10401             this.el.createChild({
10402                 tag : 'i',
10403                 cls : 'text-danger fa fa-lg fa-star',
10404                 tooltip : 'This field is required',
10405                 style : 'margin-right:5px;'
10406             }, label, true);
10407         }
10408         
10409         if (Roo.bootstrap.version == 3) {
10410             this.el.addClass(this.invalidClass);
10411         } else {
10412             this.inputEl().addClass('is-invalid');
10413         }
10414         
10415         // fixme ... this may be depricated need to test..
10416         if(this.hasFeedback && this.inputType != 'hidden' && !this.allowBlank){
10417             
10418             var feedback = this.el.select('.form-control-feedback', true).first();
10419             
10420             if(feedback){
10421                 this.el.select('.form-control-feedback', true).first().removeClass([this.invalidFeedbackClass, this.validFeedbackClass]);
10422                 
10423                 if(this.getValue().length || this.forceFeedback){
10424                     this.el.select('.form-control-feedback', true).first().addClass([this.invalidFeedbackClass]);
10425                 }
10426                 
10427             }
10428             
10429         }
10430         
10431         this.fireEvent('invalid', this, msg);
10432     }
10433 });
10434
10435  
10436 /*
10437  * - LGPL
10438  *
10439  * trigger field - base class for combo..
10440  * 
10441  */
10442  
10443 /**
10444  * @class Roo.bootstrap.TriggerField
10445  * @extends Roo.bootstrap.Input
10446  * Provides a convenient wrapper for TextFields that adds a clickable trigger button (looks like a combobox by default).
10447  * The trigger has no default action, so you must assign a function to implement the trigger click handler by
10448  * overriding {@link #onTriggerClick}. You can create a TriggerField directly, as it renders exactly like a combobox
10449  * for which you can provide a custom implementation.  For example:
10450  * <pre><code>
10451 var trigger = new Roo.bootstrap.TriggerField();
10452 trigger.onTriggerClick = myTriggerFn;
10453 trigger.applyTo('my-field');
10454 </code></pre>
10455  *
10456  * However, in general you will most likely want to use TriggerField as the base class for a reusable component.
10457  * {@link Roo.bootstrap.DateField} and {@link Roo.bootstrap.ComboBox} are perfect examples of this.
10458  * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
10459  * class 'x-form-trigger' by default and triggerClass will be <b>appended</b> if specified.
10460  * @cfg {String} caret (search|calendar) BS3 only - carat fa name
10461
10462  * @constructor
10463  * Create a new TriggerField.
10464  * @param {Object} config Configuration options (valid {@Roo.bootstrap.Input} config options will also be applied
10465  * to the base TextField)
10466  */
10467 Roo.bootstrap.TriggerField = function(config){
10468     this.mimicing = false;
10469     Roo.bootstrap.TriggerField.superclass.constructor.call(this, config);
10470 };
10471
10472 Roo.extend(Roo.bootstrap.TriggerField, Roo.bootstrap.Input,  {
10473     /**
10474      * @cfg {String} triggerClass A CSS class to apply to the trigger
10475      */
10476      /**
10477      * @cfg {Boolean} hideTrigger True to hide the trigger element and display only the base text field (defaults to false)
10478      */
10479     hideTrigger:false,
10480
10481     /**
10482      * @cfg {Boolean} removable (true|false) special filter default false
10483      */
10484     removable : false,
10485     
10486     /** @cfg {Boolean} grow @hide */
10487     /** @cfg {Number} growMin @hide */
10488     /** @cfg {Number} growMax @hide */
10489
10490     /**
10491      * @hide 
10492      * @method
10493      */
10494     autoSize: Roo.emptyFn,
10495     // private
10496     monitorTab : true,
10497     // private
10498     deferHeight : true,
10499
10500     
10501     actionMode : 'wrap',
10502     
10503     caret : false,
10504     
10505     
10506     getAutoCreate : function(){
10507        
10508         var align = this.labelAlign || this.parentLabelAlign();
10509         
10510         var id = Roo.id();
10511         
10512         var cfg = {
10513             cls: 'form-group' //input-group
10514         };
10515         
10516         
10517         var input =  {
10518             tag: 'input',
10519             id : id,
10520             type : this.inputType,
10521             cls : 'form-control',
10522             autocomplete: 'new-password',
10523             placeholder : this.placeholder || '' 
10524             
10525         };
10526         if (this.name) {
10527             input.name = this.name;
10528         }
10529         if (this.size) {
10530             input.cls += ' input-' + this.size;
10531         }
10532         
10533         if (this.disabled) {
10534             input.disabled=true;
10535         }
10536         
10537         var inputblock = input;
10538         
10539         if(this.hasFeedback && !this.allowBlank){
10540             
10541             var feedback = {
10542                 tag: 'span',
10543                 cls: 'glyphicon form-control-feedback'
10544             };
10545             
10546             if(this.removable && !this.editable && !this.tickable){
10547                 inputblock = {
10548                     cls : 'has-feedback',
10549                     cn :  [
10550                         inputblock,
10551                         {
10552                             tag: 'button',
10553                             html : 'x',
10554                             cls : 'roo-combo-removable-btn close'
10555                         },
10556                         feedback
10557                     ] 
10558                 };
10559             } else {
10560                 inputblock = {
10561                     cls : 'has-feedback',
10562                     cn :  [
10563                         inputblock,
10564                         feedback
10565                     ] 
10566                 };
10567             }
10568
10569         } else {
10570             if(this.removable && !this.editable && !this.tickable){
10571                 inputblock = {
10572                     cls : 'roo-removable',
10573                     cn :  [
10574                         inputblock,
10575                         {
10576                             tag: 'button',
10577                             html : 'x',
10578                             cls : 'roo-combo-removable-btn close'
10579                         }
10580                     ] 
10581                 };
10582             }
10583         }
10584         
10585         if (this.before || this.after) {
10586             
10587             inputblock = {
10588                 cls : 'input-group',
10589                 cn :  [] 
10590             };
10591             if (this.before) {
10592                 inputblock.cn.push({
10593                     tag :'span',
10594                     cls : 'input-group-addon input-group-prepend input-group-text',
10595                     html : this.before
10596                 });
10597             }
10598             
10599             inputblock.cn.push(input);
10600             
10601             if(this.hasFeedback && !this.allowBlank){
10602                 inputblock.cls += ' has-feedback';
10603                 inputblock.cn.push(feedback);
10604             }
10605             
10606             if (this.after) {
10607                 inputblock.cn.push({
10608                     tag :'span',
10609                     cls : 'input-group-addon input-group-append input-group-text',
10610                     html : this.after
10611                 });
10612             }
10613             
10614         };
10615         
10616       
10617         
10618         var ibwrap = inputblock;
10619         
10620         if(this.multiple){
10621             ibwrap = {
10622                 tag: 'ul',
10623                 cls: 'roo-select2-choices',
10624                 cn:[
10625                     {
10626                         tag: 'li',
10627                         cls: 'roo-select2-search-field',
10628                         cn: [
10629
10630                             inputblock
10631                         ]
10632                     }
10633                 ]
10634             };
10635                 
10636         }
10637         
10638         var combobox = {
10639             cls: 'roo-select2-container input-group',
10640             cn: [
10641                  {
10642                     tag: 'input',
10643                     type : 'hidden',
10644                     cls: 'form-hidden-field'
10645                 },
10646                 ibwrap
10647             ]
10648         };
10649         
10650         if(!this.multiple && this.showToggleBtn){
10651             
10652             var caret = {
10653                         tag: 'span',
10654                         cls: 'caret'
10655              };
10656             if (this.caret != false) {
10657                 caret = {
10658                      tag: 'i',
10659                      cls: 'fa fa-' + this.caret
10660                 };
10661                 
10662             }
10663             
10664             combobox.cn.push({
10665                 tag :'span',
10666                 cls : 'input-group-addon input-group-append input-group-text btn dropdown-toggle',
10667                 cn : [
10668                     Roo.bootstrap.version == 3 ? caret : '',
10669                     {
10670                         tag: 'span',
10671                         cls: 'combobox-clear',
10672                         cn  : [
10673                             {
10674                                 tag : 'i',
10675                                 cls: 'icon-remove'
10676                             }
10677                         ]
10678                     }
10679                 ]
10680
10681             })
10682         }
10683         
10684         if(this.multiple){
10685             combobox.cls += ' roo-select2-container-multi';
10686         }
10687          var indicator = {
10688             tag : 'i',
10689             cls : 'roo-required-indicator ' + (this.indicatorpos == 'right'  ? 'right' : 'left') +'-indicator text-danger fa fa-lg fa-star',
10690             tooltip : 'This field is required'
10691         };
10692         if (Roo.bootstrap.version == 4) {
10693             indicator = {
10694                 tag : 'i',
10695                 style : 'display:none'
10696             };
10697         }
10698         
10699         
10700         if (align ==='left' && this.fieldLabel.length) {
10701             
10702             cfg.cls += ' roo-form-group-label-left'  + (Roo.bootstrap.version == 4 ? ' row' : '');
10703
10704             cfg.cn = [
10705                 indicator,
10706                 {
10707                     tag: 'label',
10708                     'for' :  id,
10709                     cls : 'control-label',
10710                     html : this.fieldLabel
10711
10712                 },
10713                 {
10714                     cls : "", 
10715                     cn: [
10716                         combobox
10717                     ]
10718                 }
10719
10720             ];
10721             
10722             var labelCfg = cfg.cn[1];
10723             var contentCfg = cfg.cn[2];
10724             
10725             if(this.indicatorpos == 'right'){
10726                 cfg.cn = [
10727                     {
10728                         tag: 'label',
10729                         'for' :  id,
10730                         cls : 'control-label',
10731                         cn : [
10732                             {
10733                                 tag : 'span',
10734                                 html : this.fieldLabel
10735                             },
10736                             indicator
10737                         ]
10738                     },
10739                     {
10740                         cls : "", 
10741                         cn: [
10742                             combobox
10743                         ]
10744                     }
10745
10746                 ];
10747                 
10748                 labelCfg = cfg.cn[0];
10749                 contentCfg = cfg.cn[1];
10750             }
10751             
10752             if(this.labelWidth > 12){
10753                 labelCfg.style = "width: " + this.labelWidth + 'px';
10754             }
10755             
10756             if(this.labelWidth < 13 && this.labelmd == 0){
10757                 this.labelmd = this.labelWidth;
10758             }
10759             
10760             if(this.labellg > 0){
10761                 labelCfg.cls += ' col-lg-' + this.labellg;
10762                 contentCfg.cls += ' col-lg-' + (12 - this.labellg);
10763             }
10764             
10765             if(this.labelmd > 0){
10766                 labelCfg.cls += ' col-md-' + this.labelmd;
10767                 contentCfg.cls += ' col-md-' + (12 - this.labelmd);
10768             }
10769             
10770             if(this.labelsm > 0){
10771                 labelCfg.cls += ' col-sm-' + this.labelsm;
10772                 contentCfg.cls += ' col-sm-' + (12 - this.labelsm);
10773             }
10774             
10775             if(this.labelxs > 0){
10776                 labelCfg.cls += ' col-xs-' + this.labelxs;
10777                 contentCfg.cls += ' col-xs-' + (12 - this.labelxs);
10778             }
10779             
10780         } else if ( this.fieldLabel.length) {
10781 //                Roo.log(" label");
10782             cfg.cn = [
10783                 indicator,
10784                {
10785                    tag: 'label',
10786                    //cls : 'input-group-addon',
10787                    html : this.fieldLabel
10788
10789                },
10790
10791                combobox
10792
10793             ];
10794             
10795             if(this.indicatorpos == 'right'){
10796                 
10797                 cfg.cn = [
10798                     {
10799                        tag: 'label',
10800                        cn : [
10801                            {
10802                                tag : 'span',
10803                                html : this.fieldLabel
10804                            },
10805                            indicator
10806                        ]
10807
10808                     },
10809                     combobox
10810
10811                 ];
10812
10813             }
10814
10815         } else {
10816             
10817 //                Roo.log(" no label && no align");
10818                 cfg = combobox
10819                      
10820                 
10821         }
10822         
10823         var settings=this;
10824         ['xs','sm','md','lg'].map(function(size){
10825             if (settings[size]) {
10826                 cfg.cls += ' col-' + size + '-' + settings[size];
10827             }
10828         });
10829         
10830         return cfg;
10831         
10832     },
10833     
10834     
10835     
10836     // private
10837     onResize : function(w, h){
10838 //        Roo.bootstrap.TriggerField.superclass.onResize.apply(this, arguments);
10839 //        if(typeof w == 'number'){
10840 //            var x = w - this.trigger.getWidth();
10841 //            this.inputEl().setWidth(this.adjustWidth('input', x));
10842 //            this.trigger.setStyle('left', x+'px');
10843 //        }
10844     },
10845
10846     // private
10847     adjustSize : Roo.BoxComponent.prototype.adjustSize,
10848
10849     // private
10850     getResizeEl : function(){
10851         return this.inputEl();
10852     },
10853
10854     // private
10855     getPositionEl : function(){
10856         return this.inputEl();
10857     },
10858
10859     // private
10860     alignErrorIcon : function(){
10861         this.errorIcon.alignTo(this.inputEl(), 'tl-tr', [2, 0]);
10862     },
10863
10864     // private
10865     initEvents : function(){
10866         
10867         this.createList();
10868         
10869         Roo.bootstrap.TriggerField.superclass.initEvents.call(this);
10870         //this.wrap = this.el.wrap({cls: "x-form-field-wrap"});
10871         if(!this.multiple && this.showToggleBtn){
10872             this.trigger = this.el.select('span.dropdown-toggle',true).first();
10873             if(this.hideTrigger){
10874                 this.trigger.setDisplayed(false);
10875             }
10876             this.trigger.on("click", this.onTriggerClick, this, {preventDefault:true});
10877         }
10878         
10879         if(this.multiple){
10880             this.inputEl().on("click", this.onTriggerClick, this, {preventDefault:true});
10881         }
10882         
10883         if(this.removable && !this.editable && !this.tickable){
10884             var close = this.closeTriggerEl();
10885             
10886             if(close){
10887                 close.setVisibilityMode(Roo.Element.DISPLAY).hide();
10888                 close.on('click', this.removeBtnClick, this, close);
10889             }
10890         }
10891         
10892         //this.trigger.addClassOnOver('x-form-trigger-over');
10893         //this.trigger.addClassOnClick('x-form-trigger-click');
10894         
10895         //if(!this.width){
10896         //    this.wrap.setWidth(this.el.getWidth()+this.trigger.getWidth());
10897         //}
10898     },
10899     
10900     closeTriggerEl : function()
10901     {
10902         var close = this.el.select('.roo-combo-removable-btn', true).first();
10903         return close ? close : false;
10904     },
10905     
10906     removeBtnClick : function(e, h, el)
10907     {
10908         e.preventDefault();
10909         
10910         if(this.fireEvent("remove", this) !== false){
10911             this.reset();
10912             this.fireEvent("afterremove", this)
10913         }
10914     },
10915     
10916     createList : function()
10917     {
10918         this.list = Roo.get(document.body).createChild({
10919             tag: Roo.bootstrap.version == 4 ? 'div' : 'ul',
10920             cls: 'typeahead typeahead-long dropdown-menu',
10921             style: 'display:none'
10922         });
10923         
10924         this.list.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';;
10925         
10926     },
10927
10928     // private
10929     initTrigger : function(){
10930        
10931     },
10932
10933     // private
10934     onDestroy : function(){
10935         if(this.trigger){
10936             this.trigger.removeAllListeners();
10937           //  this.trigger.remove();
10938         }
10939         //if(this.wrap){
10940         //    this.wrap.remove();
10941         //}
10942         Roo.bootstrap.TriggerField.superclass.onDestroy.call(this);
10943     },
10944
10945     // private
10946     onFocus : function(){
10947         Roo.bootstrap.TriggerField.superclass.onFocus.call(this);
10948         /*
10949         if(!this.mimicing){
10950             this.wrap.addClass('x-trigger-wrap-focus');
10951             this.mimicing = true;
10952             Roo.get(Roo.isIE ? document.body : document).on("mousedown", this.mimicBlur, this);
10953             if(this.monitorTab){
10954                 this.el.on("keydown", this.checkTab, this);
10955             }
10956         }
10957         */
10958     },
10959
10960     // private
10961     checkTab : function(e){
10962         if(e.getKey() == e.TAB){
10963             this.triggerBlur();
10964         }
10965     },
10966
10967     // private
10968     onBlur : function(){
10969         // do nothing
10970     },
10971
10972     // private
10973     mimicBlur : function(e, t){
10974         /*
10975         if(!this.wrap.contains(t) && this.validateBlur()){
10976             this.triggerBlur();
10977         }
10978         */
10979     },
10980
10981     // private
10982     triggerBlur : function(){
10983         this.mimicing = false;
10984         Roo.get(Roo.isIE ? document.body : document).un("mousedown", this.mimicBlur);
10985         if(this.monitorTab){
10986             this.el.un("keydown", this.checkTab, this);
10987         }
10988         //this.wrap.removeClass('x-trigger-wrap-focus');
10989         Roo.bootstrap.TriggerField.superclass.onBlur.call(this);
10990     },
10991
10992     // private
10993     // This should be overriden by any subclass that needs to check whether or not the field can be blurred.
10994     validateBlur : function(e, t){
10995         return true;
10996     },
10997
10998     // private
10999     onDisable : function(){
11000         this.inputEl().dom.disabled = true;
11001         //Roo.bootstrap.TriggerField.superclass.onDisable.call(this);
11002         //if(this.wrap){
11003         //    this.wrap.addClass('x-item-disabled');
11004         //}
11005     },
11006
11007     // private
11008     onEnable : function(){
11009         this.inputEl().dom.disabled = false;
11010         //Roo.bootstrap.TriggerField.superclass.onEnable.call(this);
11011         //if(this.wrap){
11012         //    this.el.removeClass('x-item-disabled');
11013         //}
11014     },
11015
11016     // private
11017     onShow : function(){
11018         var ae = this.getActionEl();
11019         
11020         if(ae){
11021             ae.dom.style.display = '';
11022             ae.dom.style.visibility = 'visible';
11023         }
11024     },
11025
11026     // private
11027     
11028     onHide : function(){
11029         var ae = this.getActionEl();
11030         ae.dom.style.display = 'none';
11031     },
11032
11033     /**
11034      * The function that should handle the trigger's click event.  This method does nothing by default until overridden
11035      * by an implementing function.
11036      * @method
11037      * @param {EventObject} e
11038      */
11039     onTriggerClick : Roo.emptyFn
11040 });
11041  /*
11042  * Based on:
11043  * Ext JS Library 1.1.1
11044  * Copyright(c) 2006-2007, Ext JS, LLC.
11045  *
11046  * Originally Released Under LGPL - original licence link has changed is not relivant.
11047  *
11048  * Fork - LGPL
11049  * <script type="text/javascript">
11050  */
11051
11052
11053 /**
11054  * @class Roo.data.SortTypes
11055  * @singleton
11056  * Defines the default sorting (casting?) comparison functions used when sorting data.
11057  */
11058 Roo.data.SortTypes = {
11059     /**
11060      * Default sort that does nothing
11061      * @param {Mixed} s The value being converted
11062      * @return {Mixed} The comparison value
11063      */
11064     none : function(s){
11065         return s;
11066     },
11067     
11068     /**
11069      * The regular expression used to strip tags
11070      * @type {RegExp}
11071      * @property
11072      */
11073     stripTagsRE : /<\/?[^>]+>/gi,
11074     
11075     /**
11076      * Strips all HTML tags to sort on text only
11077      * @param {Mixed} s The value being converted
11078      * @return {String} The comparison value
11079      */
11080     asText : function(s){
11081         return String(s).replace(this.stripTagsRE, "");
11082     },
11083     
11084     /**
11085      * Strips all HTML tags to sort on text only - Case insensitive
11086      * @param {Mixed} s The value being converted
11087      * @return {String} The comparison value
11088      */
11089     asUCText : function(s){
11090         return String(s).toUpperCase().replace(this.stripTagsRE, "");
11091     },
11092     
11093     /**
11094      * Case insensitive string
11095      * @param {Mixed} s The value being converted
11096      * @return {String} The comparison value
11097      */
11098     asUCString : function(s) {
11099         return String(s).toUpperCase();
11100     },
11101     
11102     /**
11103      * Date sorting
11104      * @param {Mixed} s The value being converted
11105      * @return {Number} The comparison value
11106      */
11107     asDate : function(s) {
11108         if(!s){
11109             return 0;
11110         }
11111         if(s instanceof Date){
11112             return s.getTime();
11113         }
11114         return Date.parse(String(s));
11115     },
11116     
11117     /**
11118      * Float sorting
11119      * @param {Mixed} s The value being converted
11120      * @return {Float} The comparison value
11121      */
11122     asFloat : function(s) {
11123         var val = parseFloat(String(s).replace(/,/g, ""));
11124         if(isNaN(val)) {
11125             val = 0;
11126         }
11127         return val;
11128     },
11129     
11130     /**
11131      * Integer sorting
11132      * @param {Mixed} s The value being converted
11133      * @return {Number} The comparison value
11134      */
11135     asInt : function(s) {
11136         var val = parseInt(String(s).replace(/,/g, ""));
11137         if(isNaN(val)) {
11138             val = 0;
11139         }
11140         return val;
11141     }
11142 };/*
11143  * Based on:
11144  * Ext JS Library 1.1.1
11145  * Copyright(c) 2006-2007, Ext JS, LLC.
11146  *
11147  * Originally Released Under LGPL - original licence link has changed is not relivant.
11148  *
11149  * Fork - LGPL
11150  * <script type="text/javascript">
11151  */
11152
11153 /**
11154 * @class Roo.data.Record
11155  * Instances of this class encapsulate both record <em>definition</em> information, and record
11156  * <em>value</em> information for use in {@link Roo.data.Store} objects, or any code which needs
11157  * to access Records cached in an {@link Roo.data.Store} object.<br>
11158  * <p>
11159  * Constructors for this class are generated by passing an Array of field definition objects to {@link #create}.
11160  * Instances are usually only created by {@link Roo.data.Reader} implementations when processing unformatted data
11161  * objects.<br>
11162  * <p>
11163  * Record objects generated by this constructor inherit all the methods of Roo.data.Record listed below.
11164  * @constructor
11165  * This constructor should not be used to create Record objects. Instead, use the constructor generated by
11166  * {@link #create}. The parameters are the same.
11167  * @param {Array} data An associative Array of data values keyed by the field name.
11168  * @param {Object} id (Optional) The id of the record. This id should be unique, and is used by the
11169  * {@link Roo.data.Store} object which owns the Record to index its collection of Records. If
11170  * not specified an integer id is generated.
11171  */
11172 Roo.data.Record = function(data, id){
11173     this.id = (id || id === 0) ? id : ++Roo.data.Record.AUTO_ID;
11174     this.data = data;
11175 };
11176
11177 /**
11178  * Generate a constructor for a specific record layout.
11179  * @param {Array} o An Array of field definition objects which specify field names, and optionally,
11180  * data types, and a mapping for an {@link Roo.data.Reader} to extract the field's value from a data object.
11181  * Each field definition object may contain the following properties: <ul>
11182  * <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,
11183  * for example the <em>dataIndex</em> property in column definition objects passed to {@link Roo.grid.ColumnModel}</p></li>
11184  * <li><b>mapping</b> : String<p style="margin-left:1em">(Optional) A path specification for use by the {@link Roo.data.Reader} implementation
11185  * that is creating the Record to access the data value from the data object. If an {@link Roo.data.JsonReader}
11186  * is being used, then this is a string containing the javascript expression to reference the data relative to 
11187  * the record item's root. If an {@link Roo.data.XmlReader} is being used, this is an {@link Roo.DomQuery} path
11188  * to the data item relative to the record element. If the mapping expression is the same as the field name,
11189  * this may be omitted.</p></li>
11190  * <li><b>type</b> : String<p style="margin-left:1em">(Optional) The data type for conversion to displayable value. Possible values are
11191  * <ul><li>auto (Default, implies no conversion)</li>
11192  * <li>string</li>
11193  * <li>int</li>
11194  * <li>float</li>
11195  * <li>boolean</li>
11196  * <li>date</li></ul></p></li>
11197  * <li><b>sortType</b> : Mixed<p style="margin-left:1em">(Optional) A member of {@link Roo.data.SortTypes}.</p></li>
11198  * <li><b>sortDir</b> : String<p style="margin-left:1em">(Optional) Initial direction to sort. "ASC" or "DESC"</p></li>
11199  * <li><b>convert</b> : Function<p style="margin-left:1em">(Optional) A function which converts the value provided
11200  * by the Reader into an object that will be stored in the Record. It is passed the
11201  * following parameters:<ul>
11202  * <li><b>v</b> : Mixed<p style="margin-left:1em">The data value as read by the Reader.</p></li>
11203  * </ul></p></li>
11204  * <li><b>dateFormat</b> : String<p style="margin-left:1em">(Optional) A format String for the Date.parseDate function.</p></li>
11205  * </ul>
11206  * <br>usage:<br><pre><code>
11207 var TopicRecord = Roo.data.Record.create(
11208     {name: 'title', mapping: 'topic_title'},
11209     {name: 'author', mapping: 'username'},
11210     {name: 'totalPosts', mapping: 'topic_replies', type: 'int'},
11211     {name: 'lastPost', mapping: 'post_time', type: 'date'},
11212     {name: 'lastPoster', mapping: 'user2'},
11213     {name: 'excerpt', mapping: 'post_text'}
11214 );
11215
11216 var myNewRecord = new TopicRecord({
11217     title: 'Do my job please',
11218     author: 'noobie',
11219     totalPosts: 1,
11220     lastPost: new Date(),
11221     lastPoster: 'Animal',
11222     excerpt: 'No way dude!'
11223 });
11224 myStore.add(myNewRecord);
11225 </code></pre>
11226  * @method create
11227  * @static
11228  */
11229 Roo.data.Record.create = function(o){
11230     var f = function(){
11231         f.superclass.constructor.apply(this, arguments);
11232     };
11233     Roo.extend(f, Roo.data.Record);
11234     var p = f.prototype;
11235     p.fields = new Roo.util.MixedCollection(false, function(field){
11236         return field.name;
11237     });
11238     for(var i = 0, len = o.length; i < len; i++){
11239         p.fields.add(new Roo.data.Field(o[i]));
11240     }
11241     f.getField = function(name){
11242         return p.fields.get(name);  
11243     };
11244     return f;
11245 };
11246
11247 Roo.data.Record.AUTO_ID = 1000;
11248 Roo.data.Record.EDIT = 'edit';
11249 Roo.data.Record.REJECT = 'reject';
11250 Roo.data.Record.COMMIT = 'commit';
11251
11252 Roo.data.Record.prototype = {
11253     /**
11254      * Readonly flag - true if this record has been modified.
11255      * @type Boolean
11256      */
11257     dirty : false,
11258     editing : false,
11259     error: null,
11260     modified: null,
11261
11262     // private
11263     join : function(store){
11264         this.store = store;
11265     },
11266
11267     /**
11268      * Set the named field to the specified value.
11269      * @param {String} name The name of the field to set.
11270      * @param {Object} value The value to set the field to.
11271      */
11272     set : function(name, value){
11273         if(this.data[name] == value){
11274             return;
11275         }
11276         this.dirty = true;
11277         if(!this.modified){
11278             this.modified = {};
11279         }
11280         if(typeof this.modified[name] == 'undefined'){
11281             this.modified[name] = this.data[name];
11282         }
11283         this.data[name] = value;
11284         if(!this.editing && this.store){
11285             this.store.afterEdit(this);
11286         }       
11287     },
11288
11289     /**
11290      * Get the value of the named field.
11291      * @param {String} name The name of the field to get the value of.
11292      * @return {Object} The value of the field.
11293      */
11294     get : function(name){
11295         return this.data[name]; 
11296     },
11297
11298     // private
11299     beginEdit : function(){
11300         this.editing = true;
11301         this.modified = {}; 
11302     },
11303
11304     // private
11305     cancelEdit : function(){
11306         this.editing = false;
11307         delete this.modified;
11308     },
11309
11310     // private
11311     endEdit : function(){
11312         this.editing = false;
11313         if(this.dirty && this.store){
11314             this.store.afterEdit(this);
11315         }
11316     },
11317
11318     /**
11319      * Usually called by the {@link Roo.data.Store} which owns the Record.
11320      * Rejects all changes made to the Record since either creation, or the last commit operation.
11321      * Modified fields are reverted to their original values.
11322      * <p>
11323      * Developers should subscribe to the {@link Roo.data.Store#update} event to have their code notified
11324      * of reject operations.
11325      */
11326     reject : function(){
11327         var m = this.modified;
11328         for(var n in m){
11329             if(typeof m[n] != "function"){
11330                 this.data[n] = m[n];
11331             }
11332         }
11333         this.dirty = false;
11334         delete this.modified;
11335         this.editing = false;
11336         if(this.store){
11337             this.store.afterReject(this);
11338         }
11339     },
11340
11341     /**
11342      * Usually called by the {@link Roo.data.Store} which owns the Record.
11343      * Commits all changes made to the Record since either creation, or the last commit operation.
11344      * <p>
11345      * Developers should subscribe to the {@link Roo.data.Store#update} event to have their code notified
11346      * of commit operations.
11347      */
11348     commit : function(){
11349         this.dirty = false;
11350         delete this.modified;
11351         this.editing = false;
11352         if(this.store){
11353             this.store.afterCommit(this);
11354         }
11355     },
11356
11357     // private
11358     hasError : function(){
11359         return this.error != null;
11360     },
11361
11362     // private
11363     clearError : function(){
11364         this.error = null;
11365     },
11366
11367     /**
11368      * Creates a copy of this record.
11369      * @param {String} id (optional) A new record id if you don't want to use this record's id
11370      * @return {Record}
11371      */
11372     copy : function(newId) {
11373         return new this.constructor(Roo.apply({}, this.data), newId || this.id);
11374     }
11375 };/*
11376  * Based on:
11377  * Ext JS Library 1.1.1
11378  * Copyright(c) 2006-2007, Ext JS, LLC.
11379  *
11380  * Originally Released Under LGPL - original licence link has changed is not relivant.
11381  *
11382  * Fork - LGPL
11383  * <script type="text/javascript">
11384  */
11385
11386
11387
11388 /**
11389  * @class Roo.data.Store
11390  * @extends Roo.util.Observable
11391  * The Store class encapsulates a client side cache of {@link Roo.data.Record} objects which provide input data
11392  * for widgets such as the Roo.grid.Grid, or the Roo.form.ComboBox.<br>
11393  * <p>
11394  * 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
11395  * has no knowledge of the format of the data returned by the Proxy.<br>
11396  * <p>
11397  * A Store object uses its configured implementation of {@link Roo.data.DataReader} to create {@link Roo.data.Record}
11398  * instances from the data object. These records are cached and made available through accessor functions.
11399  * @constructor
11400  * Creates a new Store.
11401  * @param {Object} config A config object containing the objects needed for the Store to access data,
11402  * and read the data into Records.
11403  */
11404 Roo.data.Store = function(config){
11405     this.data = new Roo.util.MixedCollection(false);
11406     this.data.getKey = function(o){
11407         return o.id;
11408     };
11409     this.baseParams = {};
11410     // private
11411     this.paramNames = {
11412         "start" : "start",
11413         "limit" : "limit",
11414         "sort" : "sort",
11415         "dir" : "dir",
11416         "multisort" : "_multisort"
11417     };
11418
11419     if(config && config.data){
11420         this.inlineData = config.data;
11421         delete config.data;
11422     }
11423
11424     Roo.apply(this, config);
11425     
11426     if(this.reader){ // reader passed
11427         this.reader = Roo.factory(this.reader, Roo.data);
11428         this.reader.xmodule = this.xmodule || false;
11429         if(!this.recordType){
11430             this.recordType = this.reader.recordType;
11431         }
11432         if(this.reader.onMetaChange){
11433             this.reader.onMetaChange = this.onMetaChange.createDelegate(this);
11434         }
11435     }
11436
11437     if(this.recordType){
11438         this.fields = this.recordType.prototype.fields;
11439     }
11440     this.modified = [];
11441
11442     this.addEvents({
11443         /**
11444          * @event datachanged
11445          * Fires when the data cache has changed, and a widget which is using this Store
11446          * as a Record cache should refresh its view.
11447          * @param {Store} this
11448          */
11449         datachanged : true,
11450         /**
11451          * @event metachange
11452          * Fires when this store's reader provides new metadata (fields). This is currently only support for JsonReaders.
11453          * @param {Store} this
11454          * @param {Object} meta The JSON metadata
11455          */
11456         metachange : true,
11457         /**
11458          * @event add
11459          * Fires when Records have been added to the Store
11460          * @param {Store} this
11461          * @param {Roo.data.Record[]} records The array of Records added
11462          * @param {Number} index The index at which the record(s) were added
11463          */
11464         add : true,
11465         /**
11466          * @event remove
11467          * Fires when a Record has been removed from the Store
11468          * @param {Store} this
11469          * @param {Roo.data.Record} record The Record that was removed
11470          * @param {Number} index The index at which the record was removed
11471          */
11472         remove : true,
11473         /**
11474          * @event update
11475          * Fires when a Record has been updated
11476          * @param {Store} this
11477          * @param {Roo.data.Record} record The Record that was updated
11478          * @param {String} operation The update operation being performed.  Value may be one of:
11479          * <pre><code>
11480  Roo.data.Record.EDIT
11481  Roo.data.Record.REJECT
11482  Roo.data.Record.COMMIT
11483          * </code></pre>
11484          */
11485         update : true,
11486         /**
11487          * @event clear
11488          * Fires when the data cache has been cleared.
11489          * @param {Store} this
11490          */
11491         clear : true,
11492         /**
11493          * @event beforeload
11494          * Fires before a request is made for a new data object.  If the beforeload handler returns false
11495          * the load action will be canceled.
11496          * @param {Store} this
11497          * @param {Object} options The loading options that were specified (see {@link #load} for details)
11498          */
11499         beforeload : true,
11500         /**
11501          * @event beforeloadadd
11502          * Fires after a new set of Records has been loaded.
11503          * @param {Store} this
11504          * @param {Roo.data.Record[]} records The Records that were loaded
11505          * @param {Object} options The loading options that were specified (see {@link #load} for details)
11506          */
11507         beforeloadadd : true,
11508         /**
11509          * @event load
11510          * Fires after a new set of Records has been loaded, before they are added to the store.
11511          * @param {Store} this
11512          * @param {Roo.data.Record[]} records The Records that were loaded
11513          * @param {Object} options The loading options that were specified (see {@link #load} for details)
11514          * @params {Object} return from reader
11515          */
11516         load : true,
11517         /**
11518          * @event loadexception
11519          * Fires if an exception occurs in the Proxy during loading.
11520          * Called with the signature of the Proxy's "loadexception" event.
11521          * If you return Json { data: [] , success: false, .... } then this will be thrown with the following args
11522          * 
11523          * @param {Proxy} 
11524          * @param {Object} return from JsonData.reader() - success, totalRecords, records
11525          * @param {Object} load options 
11526          * @param {Object} jsonData from your request (normally this contains the Exception)
11527          */
11528         loadexception : true
11529     });
11530     
11531     if(this.proxy){
11532         this.proxy = Roo.factory(this.proxy, Roo.data);
11533         this.proxy.xmodule = this.xmodule || false;
11534         this.relayEvents(this.proxy,  ["loadexception"]);
11535     }
11536     this.sortToggle = {};
11537     this.sortOrder = []; // array of order of sorting - updated by grid if multisort is enabled.
11538
11539     Roo.data.Store.superclass.constructor.call(this);
11540
11541     if(this.inlineData){
11542         this.loadData(this.inlineData);
11543         delete this.inlineData;
11544     }
11545 };
11546
11547 Roo.extend(Roo.data.Store, Roo.util.Observable, {
11548      /**
11549     * @cfg {boolean} isLocal   flag if data is locally available (and can be always looked up
11550     * without a remote query - used by combo/forms at present.
11551     */
11552     
11553     /**
11554     * @cfg {Roo.data.DataProxy} proxy The Proxy object which provides access to a data object.
11555     */
11556     /**
11557     * @cfg {Array} data Inline data to be loaded when the store is initialized.
11558     */
11559     /**
11560     * @cfg {Roo.data.Reader} reader The Reader object which processes the data object and returns
11561     * an Array of Roo.data.record objects which are cached keyed by their <em>id</em> property.
11562     */
11563     /**
11564     * @cfg {Object} baseParams An object containing properties which are to be sent as parameters
11565     * on any HTTP request
11566     */
11567     /**
11568     * @cfg {Object} sortInfo A config object in the format: {field: "fieldName", direction: "ASC|DESC"}
11569     */
11570     /**
11571     * @cfg {Boolean} multiSort enable multi column sorting (sort is based on the order of columns, remote only at present)
11572     */
11573     multiSort: false,
11574     /**
11575     * @cfg {boolean} remoteSort True if sorting is to be handled by requesting the Proxy to provide a refreshed
11576     * version of the data object in sorted order, as opposed to sorting the Record cache in place (defaults to false).
11577     */
11578     remoteSort : false,
11579
11580     /**
11581     * @cfg {boolean} pruneModifiedRecords True to clear all modified record information each time the store is
11582      * loaded or when a record is removed. (defaults to false).
11583     */
11584     pruneModifiedRecords : false,
11585
11586     // private
11587     lastOptions : null,
11588
11589     /**
11590      * Add Records to the Store and fires the add event.
11591      * @param {Roo.data.Record[]} records An Array of Roo.data.Record objects to add to the cache.
11592      */
11593     add : function(records){
11594         records = [].concat(records);
11595         for(var i = 0, len = records.length; i < len; i++){
11596             records[i].join(this);
11597         }
11598         var index = this.data.length;
11599         this.data.addAll(records);
11600         this.fireEvent("add", this, records, index);
11601     },
11602
11603     /**
11604      * Remove a Record from the Store and fires the remove event.
11605      * @param {Ext.data.Record} record The Roo.data.Record object to remove from the cache.
11606      */
11607     remove : function(record){
11608         var index = this.data.indexOf(record);
11609         this.data.removeAt(index);
11610  
11611         if(this.pruneModifiedRecords){
11612             this.modified.remove(record);
11613         }
11614         this.fireEvent("remove", this, record, index);
11615     },
11616
11617     /**
11618      * Remove all Records from the Store and fires the clear event.
11619      */
11620     removeAll : function(){
11621         this.data.clear();
11622         if(this.pruneModifiedRecords){
11623             this.modified = [];
11624         }
11625         this.fireEvent("clear", this);
11626     },
11627
11628     /**
11629      * Inserts Records to the Store at the given index and fires the add event.
11630      * @param {Number} index The start index at which to insert the passed Records.
11631      * @param {Roo.data.Record[]} records An Array of Roo.data.Record objects to add to the cache.
11632      */
11633     insert : function(index, records){
11634         records = [].concat(records);
11635         for(var i = 0, len = records.length; i < len; i++){
11636             this.data.insert(index, records[i]);
11637             records[i].join(this);
11638         }
11639         this.fireEvent("add", this, records, index);
11640     },
11641
11642     /**
11643      * Get the index within the cache of the passed Record.
11644      * @param {Roo.data.Record} record The Roo.data.Record object to to find.
11645      * @return {Number} The index of the passed Record. Returns -1 if not found.
11646      */
11647     indexOf : function(record){
11648         return this.data.indexOf(record);
11649     },
11650
11651     /**
11652      * Get the index within the cache of the Record with the passed id.
11653      * @param {String} id The id of the Record to find.
11654      * @return {Number} The index of the Record. Returns -1 if not found.
11655      */
11656     indexOfId : function(id){
11657         return this.data.indexOfKey(id);
11658     },
11659
11660     /**
11661      * Get the Record with the specified id.
11662      * @param {String} id The id of the Record to find.
11663      * @return {Roo.data.Record} The Record with the passed id. Returns undefined if not found.
11664      */
11665     getById : function(id){
11666         return this.data.key(id);
11667     },
11668
11669     /**
11670      * Get the Record at the specified index.
11671      * @param {Number} index The index of the Record to find.
11672      * @return {Roo.data.Record} The Record at the passed index. Returns undefined if not found.
11673      */
11674     getAt : function(index){
11675         return this.data.itemAt(index);
11676     },
11677
11678     /**
11679      * Returns a range of Records between specified indices.
11680      * @param {Number} startIndex (optional) The starting index (defaults to 0)
11681      * @param {Number} endIndex (optional) The ending index (defaults to the last Record in the Store)
11682      * @return {Roo.data.Record[]} An array of Records
11683      */
11684     getRange : function(start, end){
11685         return this.data.getRange(start, end);
11686     },
11687
11688     // private
11689     storeOptions : function(o){
11690         o = Roo.apply({}, o);
11691         delete o.callback;
11692         delete o.scope;
11693         this.lastOptions = o;
11694     },
11695
11696     /**
11697      * Loads the Record cache from the configured Proxy using the configured Reader.
11698      * <p>
11699      * If using remote paging, then the first load call must specify the <em>start</em>
11700      * and <em>limit</em> properties in the options.params property to establish the initial
11701      * position within the dataset, and the number of Records to cache on each read from the Proxy.
11702      * <p>
11703      * <strong>It is important to note that for remote data sources, loading is asynchronous,
11704      * and this call will return before the new data has been loaded. Perform any post-processing
11705      * in a callback function, or in a "load" event handler.</strong>
11706      * <p>
11707      * @param {Object} options An object containing properties which control loading options:<ul>
11708      * <li>params {Object} An object containing properties to pass as HTTP parameters to a remote data source.</li>
11709      * <li>callback {Function} A function to be called after the Records have been loaded. The callback is
11710      * passed the following arguments:<ul>
11711      * <li>r : Roo.data.Record[]</li>
11712      * <li>options: Options object from the load call</li>
11713      * <li>success: Boolean success indicator</li></ul></li>
11714      * <li>scope {Object} Scope with which to call the callback (defaults to the Store object)</li>
11715      * <li>add {Boolean} indicator to append loaded records rather than replace the current cache.</li>
11716      * </ul>
11717      */
11718     load : function(options){
11719         options = options || {};
11720         if(this.fireEvent("beforeload", this, options) !== false){
11721             this.storeOptions(options);
11722             var p = Roo.apply(options.params || {}, this.baseParams);
11723             // if meta was not loaded from remote source.. try requesting it.
11724             if (!this.reader.metaFromRemote) {
11725                 p._requestMeta = 1;
11726             }
11727             if(this.sortInfo && this.remoteSort){
11728                 var pn = this.paramNames;
11729                 p[pn["sort"]] = this.sortInfo.field;
11730                 p[pn["dir"]] = this.sortInfo.direction;
11731             }
11732             if (this.multiSort) {
11733                 var pn = this.paramNames;
11734                 p[pn["multisort"]] = Roo.encode( { sort : this.sortToggle, order: this.sortOrder });
11735             }
11736             
11737             this.proxy.load(p, this.reader, this.loadRecords, this, options);
11738         }
11739     },
11740
11741     /**
11742      * Reloads the Record cache from the configured Proxy using the configured Reader and
11743      * the options from the last load operation performed.
11744      * @param {Object} options (optional) An object containing properties which may override the options
11745      * used in the last load operation. See {@link #load} for details (defaults to null, in which case
11746      * the most recently used options are reused).
11747      */
11748     reload : function(options){
11749         this.load(Roo.applyIf(options||{}, this.lastOptions));
11750     },
11751
11752     // private
11753     // Called as a callback by the Reader during a load operation.
11754     loadRecords : function(o, options, success){
11755         if(!o || success === false){
11756             if(success !== false){
11757                 this.fireEvent("load", this, [], options, o);
11758             }
11759             if(options.callback){
11760                 options.callback.call(options.scope || this, [], options, false);
11761             }
11762             return;
11763         }
11764         // if data returned failure - throw an exception.
11765         if (o.success === false) {
11766             // show a message if no listener is registered.
11767             if (!this.hasListener('loadexception') && typeof(o.raw.errorMsg) != 'undefined') {
11768                     Roo.MessageBox.alert("Error loading",o.raw.errorMsg);
11769             }
11770             // loadmask wil be hooked into this..
11771             this.fireEvent("loadexception", this, o, options, o.raw.errorMsg);
11772             return;
11773         }
11774         var r = o.records, t = o.totalRecords || r.length;
11775         
11776         this.fireEvent("beforeloadadd", this, r, options, o);
11777         
11778         if(!options || options.add !== true){
11779             if(this.pruneModifiedRecords){
11780                 this.modified = [];
11781             }
11782             for(var i = 0, len = r.length; i < len; i++){
11783                 r[i].join(this);
11784             }
11785             if(this.snapshot){
11786                 this.data = this.snapshot;
11787                 delete this.snapshot;
11788             }
11789             this.data.clear();
11790             this.data.addAll(r);
11791             this.totalLength = t;
11792             this.applySort();
11793             this.fireEvent("datachanged", this);
11794         }else{
11795             this.totalLength = Math.max(t, this.data.length+r.length);
11796             this.add(r);
11797         }
11798         
11799         if(this.parent && !Roo.isIOS && !this.useNativeIOS && this.parent.emptyTitle.length) {
11800                 
11801             var e = new Roo.data.Record({});
11802
11803             e.set(this.parent.displayField, this.parent.emptyTitle);
11804             e.set(this.parent.valueField, '');
11805
11806             this.insert(0, e);
11807         }
11808             
11809         this.fireEvent("load", this, r, options, o);
11810         if(options.callback){
11811             options.callback.call(options.scope || this, r, options, true);
11812         }
11813     },
11814
11815
11816     /**
11817      * Loads data from a passed data block. A Reader which understands the format of the data
11818      * must have been configured in the constructor.
11819      * @param {Object} data The data block from which to read the Records.  The format of the data expected
11820      * is dependent on the type of Reader that is configured and should correspond to that Reader's readRecords parameter.
11821      * @param {Boolean} append (Optional) True to append the new Records rather than replace the existing cache.
11822      */
11823     loadData : function(o, append){
11824         var r = this.reader.readRecords(o);
11825         this.loadRecords(r, {add: append}, true);
11826     },
11827
11828     /**
11829      * Gets the number of cached records.
11830      * <p>
11831      * <em>If using paging, this may not be the total size of the dataset. If the data object
11832      * used by the Reader contains the dataset size, then the getTotalCount() function returns
11833      * the data set size</em>
11834      */
11835     getCount : function(){
11836         return this.data.length || 0;
11837     },
11838
11839     /**
11840      * Gets the total number of records in the dataset as returned by the server.
11841      * <p>
11842      * <em>If using paging, for this to be accurate, the data object used by the Reader must contain
11843      * the dataset size</em>
11844      */
11845     getTotalCount : function(){
11846         return this.totalLength || 0;
11847     },
11848
11849     /**
11850      * Returns the sort state of the Store as an object with two properties:
11851      * <pre><code>
11852  field {String} The name of the field by which the Records are sorted
11853  direction {String} The sort order, "ASC" or "DESC"
11854      * </code></pre>
11855      */
11856     getSortState : function(){
11857         return this.sortInfo;
11858     },
11859
11860     // private
11861     applySort : function(){
11862         if(this.sortInfo && !this.remoteSort){
11863             var s = this.sortInfo, f = s.field;
11864             var st = this.fields.get(f).sortType;
11865             var fn = function(r1, r2){
11866                 var v1 = st(r1.data[f]), v2 = st(r2.data[f]);
11867                 return v1 > v2 ? 1 : (v1 < v2 ? -1 : 0);
11868             };
11869             this.data.sort(s.direction, fn);
11870             if(this.snapshot && this.snapshot != this.data){
11871                 this.snapshot.sort(s.direction, fn);
11872             }
11873         }
11874     },
11875
11876     /**
11877      * Sets the default sort column and order to be used by the next load operation.
11878      * @param {String} fieldName The name of the field to sort by.
11879      * @param {String} dir (optional) The sort order, "ASC" or "DESC" (defaults to "ASC")
11880      */
11881     setDefaultSort : function(field, dir){
11882         this.sortInfo = {field: field, direction: dir ? dir.toUpperCase() : "ASC"};
11883     },
11884
11885     /**
11886      * Sort the Records.
11887      * If remote sorting is used, the sort is performed on the server, and the cache is
11888      * reloaded. If local sorting is used, the cache is sorted internally.
11889      * @param {String} fieldName The name of the field to sort by.
11890      * @param {String} dir (optional) The sort order, "ASC" or "DESC" (defaults to "ASC")
11891      */
11892     sort : function(fieldName, dir){
11893         var f = this.fields.get(fieldName);
11894         if(!dir){
11895             this.sortToggle[f.name] = this.sortToggle[f.name] || f.sortDir;
11896             
11897             if(this.multiSort || (this.sortInfo && this.sortInfo.field == f.name) ){ // toggle sort dir
11898                 dir = (this.sortToggle[f.name] || "ASC").toggle("ASC", "DESC");
11899             }else{
11900                 dir = f.sortDir;
11901             }
11902         }
11903         this.sortToggle[f.name] = dir;
11904         this.sortInfo = {field: f.name, direction: dir};
11905         if(!this.remoteSort){
11906             this.applySort();
11907             this.fireEvent("datachanged", this);
11908         }else{
11909             this.load(this.lastOptions);
11910         }
11911     },
11912
11913     /**
11914      * Calls the specified function for each of the Records in the cache.
11915      * @param {Function} fn The function to call. The Record is passed as the first parameter.
11916      * Returning <em>false</em> aborts and exits the iteration.
11917      * @param {Object} scope (optional) The scope in which to call the function (defaults to the Record).
11918      */
11919     each : function(fn, scope){
11920         this.data.each(fn, scope);
11921     },
11922
11923     /**
11924      * Gets all records modified since the last commit.  Modified records are persisted across load operations
11925      * (e.g., during paging).
11926      * @return {Roo.data.Record[]} An array of Records containing outstanding modifications.
11927      */
11928     getModifiedRecords : function(){
11929         return this.modified;
11930     },
11931
11932     // private
11933     createFilterFn : function(property, value, anyMatch){
11934         if(!value.exec){ // not a regex
11935             value = String(value);
11936             if(value.length == 0){
11937                 return false;
11938             }
11939             value = new RegExp((anyMatch === true ? '' : '^') + Roo.escapeRe(value), "i");
11940         }
11941         return function(r){
11942             return value.test(r.data[property]);
11943         };
11944     },
11945
11946     /**
11947      * Sums the value of <i>property</i> for each record between start and end and returns the result.
11948      * @param {String} property A field on your records
11949      * @param {Number} start The record index to start at (defaults to 0)
11950      * @param {Number} end The last record index to include (defaults to length - 1)
11951      * @return {Number} The sum
11952      */
11953     sum : function(property, start, end){
11954         var rs = this.data.items, v = 0;
11955         start = start || 0;
11956         end = (end || end === 0) ? end : rs.length-1;
11957
11958         for(var i = start; i <= end; i++){
11959             v += (rs[i].data[property] || 0);
11960         }
11961         return v;
11962     },
11963
11964     /**
11965      * Filter the records by a specified property.
11966      * @param {String} field A field on your records
11967      * @param {String/RegExp} value Either a string that the field
11968      * should start with or a RegExp to test against the field
11969      * @param {Boolean} anyMatch True to match any part not just the beginning
11970      */
11971     filter : function(property, value, anyMatch){
11972         var fn = this.createFilterFn(property, value, anyMatch);
11973         return fn ? this.filterBy(fn) : this.clearFilter();
11974     },
11975
11976     /**
11977      * Filter by a function. The specified function will be called with each
11978      * record in this data source. If the function returns true the record is included,
11979      * otherwise it is filtered.
11980      * @param {Function} fn The function to be called, it will receive 2 args (record, id)
11981      * @param {Object} scope (optional) The scope of the function (defaults to this)
11982      */
11983     filterBy : function(fn, scope){
11984         this.snapshot = this.snapshot || this.data;
11985         this.data = this.queryBy(fn, scope||this);
11986         this.fireEvent("datachanged", this);
11987     },
11988
11989     /**
11990      * Query the records by a specified property.
11991      * @param {String} field A field on your records
11992      * @param {String/RegExp} value Either a string that the field
11993      * should start with or a RegExp to test against the field
11994      * @param {Boolean} anyMatch True to match any part not just the beginning
11995      * @return {MixedCollection} Returns an Roo.util.MixedCollection of the matched records
11996      */
11997     query : function(property, value, anyMatch){
11998         var fn = this.createFilterFn(property, value, anyMatch);
11999         return fn ? this.queryBy(fn) : this.data.clone();
12000     },
12001
12002     /**
12003      * Query by a function. The specified function will be called with each
12004      * record in this data source. If the function returns true the record is included
12005      * in the results.
12006      * @param {Function} fn The function to be called, it will receive 2 args (record, id)
12007      * @param {Object} scope (optional) The scope of the function (defaults to this)
12008       @return {MixedCollection} Returns an Roo.util.MixedCollection of the matched records
12009      **/
12010     queryBy : function(fn, scope){
12011         var data = this.snapshot || this.data;
12012         return data.filterBy(fn, scope||this);
12013     },
12014
12015     /**
12016      * Collects unique values for a particular dataIndex from this store.
12017      * @param {String} dataIndex The property to collect
12018      * @param {Boolean} allowNull (optional) Pass true to allow null, undefined or empty string values
12019      * @param {Boolean} bypassFilter (optional) Pass true to collect from all records, even ones which are filtered
12020      * @return {Array} An array of the unique values
12021      **/
12022     collect : function(dataIndex, allowNull, bypassFilter){
12023         var d = (bypassFilter === true && this.snapshot) ?
12024                 this.snapshot.items : this.data.items;
12025         var v, sv, r = [], l = {};
12026         for(var i = 0, len = d.length; i < len; i++){
12027             v = d[i].data[dataIndex];
12028             sv = String(v);
12029             if((allowNull || !Roo.isEmpty(v)) && !l[sv]){
12030                 l[sv] = true;
12031                 r[r.length] = v;
12032             }
12033         }
12034         return r;
12035     },
12036
12037     /**
12038      * Revert to a view of the Record cache with no filtering applied.
12039      * @param {Boolean} suppressEvent If true the filter is cleared silently without notifying listeners
12040      */
12041     clearFilter : function(suppressEvent){
12042         if(this.snapshot && this.snapshot != this.data){
12043             this.data = this.snapshot;
12044             delete this.snapshot;
12045             if(suppressEvent !== true){
12046                 this.fireEvent("datachanged", this);
12047             }
12048         }
12049     },
12050
12051     // private
12052     afterEdit : function(record){
12053         if(this.modified.indexOf(record) == -1){
12054             this.modified.push(record);
12055         }
12056         this.fireEvent("update", this, record, Roo.data.Record.EDIT);
12057     },
12058     
12059     // private
12060     afterReject : function(record){
12061         this.modified.remove(record);
12062         this.fireEvent("update", this, record, Roo.data.Record.REJECT);
12063     },
12064
12065     // private
12066     afterCommit : function(record){
12067         this.modified.remove(record);
12068         this.fireEvent("update", this, record, Roo.data.Record.COMMIT);
12069     },
12070
12071     /**
12072      * Commit all Records with outstanding changes. To handle updates for changes, subscribe to the
12073      * Store's "update" event, and perform updating when the third parameter is Roo.data.Record.COMMIT.
12074      */
12075     commitChanges : function(){
12076         var m = this.modified.slice(0);
12077         this.modified = [];
12078         for(var i = 0, len = m.length; i < len; i++){
12079             m[i].commit();
12080         }
12081     },
12082
12083     /**
12084      * Cancel outstanding changes on all changed records.
12085      */
12086     rejectChanges : function(){
12087         var m = this.modified.slice(0);
12088         this.modified = [];
12089         for(var i = 0, len = m.length; i < len; i++){
12090             m[i].reject();
12091         }
12092     },
12093
12094     onMetaChange : function(meta, rtype, o){
12095         this.recordType = rtype;
12096         this.fields = rtype.prototype.fields;
12097         delete this.snapshot;
12098         this.sortInfo = meta.sortInfo || this.sortInfo;
12099         this.modified = [];
12100         this.fireEvent('metachange', this, this.reader.meta);
12101     },
12102     
12103     moveIndex : function(data, type)
12104     {
12105         var index = this.indexOf(data);
12106         
12107         var newIndex = index + type;
12108         
12109         this.remove(data);
12110         
12111         this.insert(newIndex, data);
12112         
12113     }
12114 });/*
12115  * Based on:
12116  * Ext JS Library 1.1.1
12117  * Copyright(c) 2006-2007, Ext JS, LLC.
12118  *
12119  * Originally Released Under LGPL - original licence link has changed is not relivant.
12120  *
12121  * Fork - LGPL
12122  * <script type="text/javascript">
12123  */
12124
12125 /**
12126  * @class Roo.data.SimpleStore
12127  * @extends Roo.data.Store
12128  * Small helper class to make creating Stores from Array data easier.
12129  * @cfg {Number} id The array index of the record id. Leave blank to auto generate ids.
12130  * @cfg {Array} fields An array of field definition objects, or field name strings.
12131  * @cfg {Array} data The multi-dimensional array of data
12132  * @constructor
12133  * @param {Object} config
12134  */
12135 Roo.data.SimpleStore = function(config){
12136     Roo.data.SimpleStore.superclass.constructor.call(this, {
12137         isLocal : true,
12138         reader: new Roo.data.ArrayReader({
12139                 id: config.id
12140             },
12141             Roo.data.Record.create(config.fields)
12142         ),
12143         proxy : new Roo.data.MemoryProxy(config.data)
12144     });
12145     this.load();
12146 };
12147 Roo.extend(Roo.data.SimpleStore, Roo.data.Store);/*
12148  * Based on:
12149  * Ext JS Library 1.1.1
12150  * Copyright(c) 2006-2007, Ext JS, LLC.
12151  *
12152  * Originally Released Under LGPL - original licence link has changed is not relivant.
12153  *
12154  * Fork - LGPL
12155  * <script type="text/javascript">
12156  */
12157
12158 /**
12159 /**
12160  * @extends Roo.data.Store
12161  * @class Roo.data.JsonStore
12162  * Small helper class to make creating Stores for JSON data easier. <br/>
12163 <pre><code>
12164 var store = new Roo.data.JsonStore({
12165     url: 'get-images.php',
12166     root: 'images',
12167     fields: ['name', 'url', {name:'size', type: 'float'}, {name:'lastmod', type:'date'}]
12168 });
12169 </code></pre>
12170  * <b>Note: Although they are not listed, this class inherits all of the config options of Store,
12171  * JsonReader and HttpProxy (unless inline data is provided).</b>
12172  * @cfg {Array} fields An array of field definition objects, or field name strings.
12173  * @constructor
12174  * @param {Object} config
12175  */
12176 Roo.data.JsonStore = function(c){
12177     Roo.data.JsonStore.superclass.constructor.call(this, Roo.apply(c, {
12178         proxy: !c.data ? new Roo.data.HttpProxy({url: c.url}) : undefined,
12179         reader: new Roo.data.JsonReader(c, c.fields)
12180     }));
12181 };
12182 Roo.extend(Roo.data.JsonStore, Roo.data.Store);/*
12183  * Based on:
12184  * Ext JS Library 1.1.1
12185  * Copyright(c) 2006-2007, Ext JS, LLC.
12186  *
12187  * Originally Released Under LGPL - original licence link has changed is not relivant.
12188  *
12189  * Fork - LGPL
12190  * <script type="text/javascript">
12191  */
12192
12193  
12194 Roo.data.Field = function(config){
12195     if(typeof config == "string"){
12196         config = {name: config};
12197     }
12198     Roo.apply(this, config);
12199     
12200     if(!this.type){
12201         this.type = "auto";
12202     }
12203     
12204     var st = Roo.data.SortTypes;
12205     // named sortTypes are supported, here we look them up
12206     if(typeof this.sortType == "string"){
12207         this.sortType = st[this.sortType];
12208     }
12209     
12210     // set default sortType for strings and dates
12211     if(!this.sortType){
12212         switch(this.type){
12213             case "string":
12214                 this.sortType = st.asUCString;
12215                 break;
12216             case "date":
12217                 this.sortType = st.asDate;
12218                 break;
12219             default:
12220                 this.sortType = st.none;
12221         }
12222     }
12223
12224     // define once
12225     var stripRe = /[\$,%]/g;
12226
12227     // prebuilt conversion function for this field, instead of
12228     // switching every time we're reading a value
12229     if(!this.convert){
12230         var cv, dateFormat = this.dateFormat;
12231         switch(this.type){
12232             case "":
12233             case "auto":
12234             case undefined:
12235                 cv = function(v){ return v; };
12236                 break;
12237             case "string":
12238                 cv = function(v){ return (v === undefined || v === null) ? '' : String(v); };
12239                 break;
12240             case "int":
12241                 cv = function(v){
12242                     return v !== undefined && v !== null && v !== '' ?
12243                            parseInt(String(v).replace(stripRe, ""), 10) : '';
12244                     };
12245                 break;
12246             case "float":
12247                 cv = function(v){
12248                     return v !== undefined && v !== null && v !== '' ?
12249                            parseFloat(String(v).replace(stripRe, ""), 10) : ''; 
12250                     };
12251                 break;
12252             case "bool":
12253             case "boolean":
12254                 cv = function(v){ return v === true || v === "true" || v == 1; };
12255                 break;
12256             case "date":
12257                 cv = function(v){
12258                     if(!v){
12259                         return '';
12260                     }
12261                     if(v instanceof Date){
12262                         return v;
12263                     }
12264                     if(dateFormat){
12265                         if(dateFormat == "timestamp"){
12266                             return new Date(v*1000);
12267                         }
12268                         return Date.parseDate(v, dateFormat);
12269                     }
12270                     var parsed = Date.parse(v);
12271                     return parsed ? new Date(parsed) : null;
12272                 };
12273              break;
12274             
12275         }
12276         this.convert = cv;
12277     }
12278 };
12279
12280 Roo.data.Field.prototype = {
12281     dateFormat: null,
12282     defaultValue: "",
12283     mapping: null,
12284     sortType : null,
12285     sortDir : "ASC"
12286 };/*
12287  * Based on:
12288  * Ext JS Library 1.1.1
12289  * Copyright(c) 2006-2007, Ext JS, LLC.
12290  *
12291  * Originally Released Under LGPL - original licence link has changed is not relivant.
12292  *
12293  * Fork - LGPL
12294  * <script type="text/javascript">
12295  */
12296  
12297 // Base class for reading structured data from a data source.  This class is intended to be
12298 // extended (see ArrayReader, JsonReader and XmlReader) and should not be created directly.
12299
12300 /**
12301  * @class Roo.data.DataReader
12302  * Base class for reading structured data from a data source.  This class is intended to be
12303  * extended (see {Roo.data.ArrayReader}, {Roo.data.JsonReader} and {Roo.data.XmlReader}) and should not be created directly.
12304  */
12305
12306 Roo.data.DataReader = function(meta, recordType){
12307     
12308     this.meta = meta;
12309     
12310     this.recordType = recordType instanceof Array ? 
12311         Roo.data.Record.create(recordType) : recordType;
12312 };
12313
12314 Roo.data.DataReader.prototype = {
12315      /**
12316      * Create an empty record
12317      * @param {Object} data (optional) - overlay some values
12318      * @return {Roo.data.Record} record created.
12319      */
12320     newRow :  function(d) {
12321         var da =  {};
12322         this.recordType.prototype.fields.each(function(c) {
12323             switch( c.type) {
12324                 case 'int' : da[c.name] = 0; break;
12325                 case 'date' : da[c.name] = new Date(); break;
12326                 case 'float' : da[c.name] = 0.0; break;
12327                 case 'boolean' : da[c.name] = false; break;
12328                 default : da[c.name] = ""; break;
12329             }
12330             
12331         });
12332         return new this.recordType(Roo.apply(da, d));
12333     }
12334     
12335 };/*
12336  * Based on:
12337  * Ext JS Library 1.1.1
12338  * Copyright(c) 2006-2007, Ext JS, LLC.
12339  *
12340  * Originally Released Under LGPL - original licence link has changed is not relivant.
12341  *
12342  * Fork - LGPL
12343  * <script type="text/javascript">
12344  */
12345
12346 /**
12347  * @class Roo.data.DataProxy
12348  * @extends Roo.data.Observable
12349  * This class is an abstract base class for implementations which provide retrieval of
12350  * unformatted data objects.<br>
12351  * <p>
12352  * DataProxy implementations are usually used in conjunction with an implementation of Roo.data.DataReader
12353  * (of the appropriate type which knows how to parse the data object) to provide a block of
12354  * {@link Roo.data.Records} to an {@link Roo.data.Store}.<br>
12355  * <p>
12356  * Custom implementations must implement the load method as described in
12357  * {@link Roo.data.HttpProxy#load}.
12358  */
12359 Roo.data.DataProxy = function(){
12360     this.addEvents({
12361         /**
12362          * @event beforeload
12363          * Fires before a network request is made to retrieve a data object.
12364          * @param {Object} This DataProxy object.
12365          * @param {Object} params The params parameter to the load function.
12366          */
12367         beforeload : true,
12368         /**
12369          * @event load
12370          * Fires before the load method's callback is called.
12371          * @param {Object} This DataProxy object.
12372          * @param {Object} o The data object.
12373          * @param {Object} arg The callback argument object passed to the load function.
12374          */
12375         load : true,
12376         /**
12377          * @event loadexception
12378          * Fires if an Exception occurs during data retrieval.
12379          * @param {Object} This DataProxy object.
12380          * @param {Object} o The data object.
12381          * @param {Object} arg The callback argument object passed to the load function.
12382          * @param {Object} e The Exception.
12383          */
12384         loadexception : true
12385     });
12386     Roo.data.DataProxy.superclass.constructor.call(this);
12387 };
12388
12389 Roo.extend(Roo.data.DataProxy, Roo.util.Observable);
12390
12391     /**
12392      * @cfg {void} listeners (Not available) Constructor blocks listeners from being set
12393      */
12394 /*
12395  * Based on:
12396  * Ext JS Library 1.1.1
12397  * Copyright(c) 2006-2007, Ext JS, LLC.
12398  *
12399  * Originally Released Under LGPL - original licence link has changed is not relivant.
12400  *
12401  * Fork - LGPL
12402  * <script type="text/javascript">
12403  */
12404 /**
12405  * @class Roo.data.MemoryProxy
12406  * An implementation of Roo.data.DataProxy that simply passes the data specified in its constructor
12407  * to the Reader when its load method is called.
12408  * @constructor
12409  * @param {Object} data The data object which the Reader uses to construct a block of Roo.data.Records.
12410  */
12411 Roo.data.MemoryProxy = function(data){
12412     if (data.data) {
12413         data = data.data;
12414     }
12415     Roo.data.MemoryProxy.superclass.constructor.call(this);
12416     this.data = data;
12417 };
12418
12419 Roo.extend(Roo.data.MemoryProxy, Roo.data.DataProxy, {
12420     
12421     /**
12422      * Load data from the requested source (in this case an in-memory
12423      * data object passed to the constructor), read the data object into
12424      * a block of Roo.data.Records using the passed Roo.data.DataReader implementation, and
12425      * process that block using the passed callback.
12426      * @param {Object} params This parameter is not used by the MemoryProxy class.
12427      * @param {Roo.data.DataReader} reader The Reader object which converts the data
12428      * object into a block of Roo.data.Records.
12429      * @param {Function} callback The function into which to pass the block of Roo.data.records.
12430      * The function must be passed <ul>
12431      * <li>The Record block object</li>
12432      * <li>The "arg" argument from the load function</li>
12433      * <li>A boolean success indicator</li>
12434      * </ul>
12435      * @param {Object} scope The scope in which to call the callback
12436      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
12437      */
12438     load : function(params, reader, callback, scope, arg){
12439         params = params || {};
12440         var result;
12441         try {
12442             result = reader.readRecords(params.data ? params.data :this.data);
12443         }catch(e){
12444             this.fireEvent("loadexception", this, arg, null, e);
12445             callback.call(scope, null, arg, false);
12446             return;
12447         }
12448         callback.call(scope, result, arg, true);
12449     },
12450     
12451     // private
12452     update : function(params, records){
12453         
12454     }
12455 });/*
12456  * Based on:
12457  * Ext JS Library 1.1.1
12458  * Copyright(c) 2006-2007, Ext JS, LLC.
12459  *
12460  * Originally Released Under LGPL - original licence link has changed is not relivant.
12461  *
12462  * Fork - LGPL
12463  * <script type="text/javascript">
12464  */
12465 /**
12466  * @class Roo.data.HttpProxy
12467  * @extends Roo.data.DataProxy
12468  * An implementation of {@link Roo.data.DataProxy} that reads a data object from an {@link Roo.data.Connection} object
12469  * configured to reference a certain URL.<br><br>
12470  * <p>
12471  * <em>Note that this class cannot be used to retrieve data from a domain other than the domain
12472  * from which the running page was served.<br><br>
12473  * <p>
12474  * For cross-domain access to remote data, use an {@link Roo.data.ScriptTagProxy}.</em><br><br>
12475  * <p>
12476  * Be aware that to enable the browser to parse an XML document, the server must set
12477  * the Content-Type header in the HTTP response to "text/xml".
12478  * @constructor
12479  * @param {Object} conn Connection config options to add to each request (e.g. {url: 'foo.php'} or
12480  * an {@link Roo.data.Connection} object.  If a Connection config is passed, the singleton {@link Roo.Ajax} object
12481  * will be used to make the request.
12482  */
12483 Roo.data.HttpProxy = function(conn){
12484     Roo.data.HttpProxy.superclass.constructor.call(this);
12485     // is conn a conn config or a real conn?
12486     this.conn = conn;
12487     this.useAjax = !conn || !conn.events;
12488   
12489 };
12490
12491 Roo.extend(Roo.data.HttpProxy, Roo.data.DataProxy, {
12492     // thse are take from connection...
12493     
12494     /**
12495      * @cfg {String} url (Optional) The default URL to be used for requests to the server. (defaults to undefined)
12496      */
12497     /**
12498      * @cfg {Object} extraParams (Optional) An object containing properties which are used as
12499      * extra parameters to each request made by this object. (defaults to undefined)
12500      */
12501     /**
12502      * @cfg {Object} defaultHeaders (Optional) An object containing request headers which are added
12503      *  to each request made by this object. (defaults to undefined)
12504      */
12505     /**
12506      * @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)
12507      */
12508     /**
12509      * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
12510      */
12511      /**
12512      * @cfg {Boolean} autoAbort (Optional) Whether this request should abort any pending requests. (defaults to false)
12513      * @type Boolean
12514      */
12515   
12516
12517     /**
12518      * @cfg {Boolean} disableCaching (Optional) True to add a unique cache-buster param to GET requests. (defaults to true)
12519      * @type Boolean
12520      */
12521     /**
12522      * Return the {@link Roo.data.Connection} object being used by this Proxy.
12523      * @return {Connection} The Connection object. This object may be used to subscribe to events on
12524      * a finer-grained basis than the DataProxy events.
12525      */
12526     getConnection : function(){
12527         return this.useAjax ? Roo.Ajax : this.conn;
12528     },
12529
12530     /**
12531      * Load data from the configured {@link Roo.data.Connection}, read the data object into
12532      * a block of Roo.data.Records using the passed {@link Roo.data.DataReader} implementation, and
12533      * process that block using the passed callback.
12534      * @param {Object} params An object containing properties which are to be used as HTTP parameters
12535      * for the request to the remote server.
12536      * @param {Roo.data.DataReader} reader The Reader object which converts the data
12537      * object into a block of Roo.data.Records.
12538      * @param {Function} callback The function into which to pass the block of Roo.data.Records.
12539      * The function must be passed <ul>
12540      * <li>The Record block object</li>
12541      * <li>The "arg" argument from the load function</li>
12542      * <li>A boolean success indicator</li>
12543      * </ul>
12544      * @param {Object} scope The scope in which to call the callback
12545      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
12546      */
12547     load : function(params, reader, callback, scope, arg){
12548         if(this.fireEvent("beforeload", this, params) !== false){
12549             var  o = {
12550                 params : params || {},
12551                 request: {
12552                     callback : callback,
12553                     scope : scope,
12554                     arg : arg
12555                 },
12556                 reader: reader,
12557                 callback : this.loadResponse,
12558                 scope: this
12559             };
12560             if(this.useAjax){
12561                 Roo.applyIf(o, this.conn);
12562                 if(this.activeRequest){
12563                     Roo.Ajax.abort(this.activeRequest);
12564                 }
12565                 this.activeRequest = Roo.Ajax.request(o);
12566             }else{
12567                 this.conn.request(o);
12568             }
12569         }else{
12570             callback.call(scope||this, null, arg, false);
12571         }
12572     },
12573
12574     // private
12575     loadResponse : function(o, success, response){
12576         delete this.activeRequest;
12577         if(!success){
12578             this.fireEvent("loadexception", this, o, response);
12579             o.request.callback.call(o.request.scope, null, o.request.arg, false);
12580             return;
12581         }
12582         var result;
12583         try {
12584             result = o.reader.read(response);
12585         }catch(e){
12586             this.fireEvent("loadexception", this, o, response, e);
12587             o.request.callback.call(o.request.scope, null, o.request.arg, false);
12588             return;
12589         }
12590         
12591         this.fireEvent("load", this, o, o.request.arg);
12592         o.request.callback.call(o.request.scope, result, o.request.arg, true);
12593     },
12594
12595     // private
12596     update : function(dataSet){
12597
12598     },
12599
12600     // private
12601     updateResponse : function(dataSet){
12602
12603     }
12604 });/*
12605  * Based on:
12606  * Ext JS Library 1.1.1
12607  * Copyright(c) 2006-2007, Ext JS, LLC.
12608  *
12609  * Originally Released Under LGPL - original licence link has changed is not relivant.
12610  *
12611  * Fork - LGPL
12612  * <script type="text/javascript">
12613  */
12614
12615 /**
12616  * @class Roo.data.ScriptTagProxy
12617  * An implementation of Roo.data.DataProxy that reads a data object from a URL which may be in a domain
12618  * other than the originating domain of the running page.<br><br>
12619  * <p>
12620  * <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
12621  * of the running page, you must use this class, rather than DataProxy.</em><br><br>
12622  * <p>
12623  * The content passed back from a server resource requested by a ScriptTagProxy is executable JavaScript
12624  * source code that is used as the source inside a &lt;script> tag.<br><br>
12625  * <p>
12626  * In order for the browser to process the returned data, the server must wrap the data object
12627  * with a call to a callback function, the name of which is passed as a parameter by the ScriptTagProxy.
12628  * Below is a Java example for a servlet which returns data for either a ScriptTagProxy, or an HttpProxy
12629  * depending on whether the callback name was passed:
12630  * <p>
12631  * <pre><code>
12632 boolean scriptTag = false;
12633 String cb = request.getParameter("callback");
12634 if (cb != null) {
12635     scriptTag = true;
12636     response.setContentType("text/javascript");
12637 } else {
12638     response.setContentType("application/x-json");
12639 }
12640 Writer out = response.getWriter();
12641 if (scriptTag) {
12642     out.write(cb + "(");
12643 }
12644 out.print(dataBlock.toJsonString());
12645 if (scriptTag) {
12646     out.write(");");
12647 }
12648 </pre></code>
12649  *
12650  * @constructor
12651  * @param {Object} config A configuration object.
12652  */
12653 Roo.data.ScriptTagProxy = function(config){
12654     Roo.data.ScriptTagProxy.superclass.constructor.call(this);
12655     Roo.apply(this, config);
12656     this.head = document.getElementsByTagName("head")[0];
12657 };
12658
12659 Roo.data.ScriptTagProxy.TRANS_ID = 1000;
12660
12661 Roo.extend(Roo.data.ScriptTagProxy, Roo.data.DataProxy, {
12662     /**
12663      * @cfg {String} url The URL from which to request the data object.
12664      */
12665     /**
12666      * @cfg {Number} timeout (Optional) The number of milliseconds to wait for a response. Defaults to 30 seconds.
12667      */
12668     timeout : 30000,
12669     /**
12670      * @cfg {String} callbackParam (Optional) The name of the parameter to pass to the server which tells
12671      * the server the name of the callback function set up by the load call to process the returned data object.
12672      * Defaults to "callback".<p>The server-side processing must read this parameter value, and generate
12673      * javascript output which calls this named function passing the data object as its only parameter.
12674      */
12675     callbackParam : "callback",
12676     /**
12677      *  @cfg {Boolean} nocache (Optional) Defaults to true. Disable cacheing by adding a unique parameter
12678      * name to the request.
12679      */
12680     nocache : true,
12681
12682     /**
12683      * Load data from the configured URL, read the data object into
12684      * a block of Roo.data.Records using the passed Roo.data.DataReader implementation, and
12685      * process that block using the passed callback.
12686      * @param {Object} params An object containing properties which are to be used as HTTP parameters
12687      * for the request to the remote server.
12688      * @param {Roo.data.DataReader} reader The Reader object which converts the data
12689      * object into a block of Roo.data.Records.
12690      * @param {Function} callback The function into which to pass the block of Roo.data.Records.
12691      * The function must be passed <ul>
12692      * <li>The Record block object</li>
12693      * <li>The "arg" argument from the load function</li>
12694      * <li>A boolean success indicator</li>
12695      * </ul>
12696      * @param {Object} scope The scope in which to call the callback
12697      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
12698      */
12699     load : function(params, reader, callback, scope, arg){
12700         if(this.fireEvent("beforeload", this, params) !== false){
12701
12702             var p = Roo.urlEncode(Roo.apply(params, this.extraParams));
12703
12704             var url = this.url;
12705             url += (url.indexOf("?") != -1 ? "&" : "?") + p;
12706             if(this.nocache){
12707                 url += "&_dc=" + (new Date().getTime());
12708             }
12709             var transId = ++Roo.data.ScriptTagProxy.TRANS_ID;
12710             var trans = {
12711                 id : transId,
12712                 cb : "stcCallback"+transId,
12713                 scriptId : "stcScript"+transId,
12714                 params : params,
12715                 arg : arg,
12716                 url : url,
12717                 callback : callback,
12718                 scope : scope,
12719                 reader : reader
12720             };
12721             var conn = this;
12722
12723             window[trans.cb] = function(o){
12724                 conn.handleResponse(o, trans);
12725             };
12726
12727             url += String.format("&{0}={1}", this.callbackParam, trans.cb);
12728
12729             if(this.autoAbort !== false){
12730                 this.abort();
12731             }
12732
12733             trans.timeoutId = this.handleFailure.defer(this.timeout, this, [trans]);
12734
12735             var script = document.createElement("script");
12736             script.setAttribute("src", url);
12737             script.setAttribute("type", "text/javascript");
12738             script.setAttribute("id", trans.scriptId);
12739             this.head.appendChild(script);
12740
12741             this.trans = trans;
12742         }else{
12743             callback.call(scope||this, null, arg, false);
12744         }
12745     },
12746
12747     // private
12748     isLoading : function(){
12749         return this.trans ? true : false;
12750     },
12751
12752     /**
12753      * Abort the current server request.
12754      */
12755     abort : function(){
12756         if(this.isLoading()){
12757             this.destroyTrans(this.trans);
12758         }
12759     },
12760
12761     // private
12762     destroyTrans : function(trans, isLoaded){
12763         this.head.removeChild(document.getElementById(trans.scriptId));
12764         clearTimeout(trans.timeoutId);
12765         if(isLoaded){
12766             window[trans.cb] = undefined;
12767             try{
12768                 delete window[trans.cb];
12769             }catch(e){}
12770         }else{
12771             // if hasn't been loaded, wait for load to remove it to prevent script error
12772             window[trans.cb] = function(){
12773                 window[trans.cb] = undefined;
12774                 try{
12775                     delete window[trans.cb];
12776                 }catch(e){}
12777             };
12778         }
12779     },
12780
12781     // private
12782     handleResponse : function(o, trans){
12783         this.trans = false;
12784         this.destroyTrans(trans, true);
12785         var result;
12786         try {
12787             result = trans.reader.readRecords(o);
12788         }catch(e){
12789             this.fireEvent("loadexception", this, o, trans.arg, e);
12790             trans.callback.call(trans.scope||window, null, trans.arg, false);
12791             return;
12792         }
12793         this.fireEvent("load", this, o, trans.arg);
12794         trans.callback.call(trans.scope||window, result, trans.arg, true);
12795     },
12796
12797     // private
12798     handleFailure : function(trans){
12799         this.trans = false;
12800         this.destroyTrans(trans, false);
12801         this.fireEvent("loadexception", this, null, trans.arg);
12802         trans.callback.call(trans.scope||window, null, trans.arg, false);
12803     }
12804 });/*
12805  * Based on:
12806  * Ext JS Library 1.1.1
12807  * Copyright(c) 2006-2007, Ext JS, LLC.
12808  *
12809  * Originally Released Under LGPL - original licence link has changed is not relivant.
12810  *
12811  * Fork - LGPL
12812  * <script type="text/javascript">
12813  */
12814
12815 /**
12816  * @class Roo.data.JsonReader
12817  * @extends Roo.data.DataReader
12818  * Data reader class to create an Array of Roo.data.Record objects from a JSON response
12819  * based on mappings in a provided Roo.data.Record constructor.
12820  * 
12821  * The default behaviour of a store is to send ?_requestMeta=1, unless the class has recieved 'metaData' property
12822  * in the reply previously. 
12823  * 
12824  * <p>
12825  * Example code:
12826  * <pre><code>
12827 var RecordDef = Roo.data.Record.create([
12828     {name: 'name', mapping: 'name'},     // "mapping" property not needed if it's the same as "name"
12829     {name: 'occupation'}                 // This field will use "occupation" as the mapping.
12830 ]);
12831 var myReader = new Roo.data.JsonReader({
12832     totalProperty: "results",    // The property which contains the total dataset size (optional)
12833     root: "rows",                // The property which contains an Array of row objects
12834     id: "id"                     // The property within each row object that provides an ID for the record (optional)
12835 }, RecordDef);
12836 </code></pre>
12837  * <p>
12838  * This would consume a JSON file like this:
12839  * <pre><code>
12840 { 'results': 2, 'rows': [
12841     { 'id': 1, 'name': 'Bill', occupation: 'Gardener' },
12842     { 'id': 2, 'name': 'Ben', occupation: 'Horticulturalist' } ]
12843 }
12844 </code></pre>
12845  * @cfg {String} totalProperty Name of the property from which to retrieve the total number of records
12846  * in the dataset. This is only needed if the whole dataset is not passed in one go, but is being
12847  * paged from the remote server.
12848  * @cfg {String} successProperty Name of the property from which to retrieve the success attribute used by forms.
12849  * @cfg {String} root name of the property which contains the Array of row objects.
12850  * @cfg {String} id Name of the property within a row object that contains a record identifier value.
12851  * @cfg {Array} fields Array of field definition objects
12852  * @constructor
12853  * Create a new JsonReader
12854  * @param {Object} meta Metadata configuration options
12855  * @param {Object} recordType Either an Array of field definition objects,
12856  * or an {@link Roo.data.Record} object created using {@link Roo.data.Record#create}.
12857  */
12858 Roo.data.JsonReader = function(meta, recordType){
12859     
12860     meta = meta || {};
12861     // set some defaults:
12862     Roo.applyIf(meta, {
12863         totalProperty: 'total',
12864         successProperty : 'success',
12865         root : 'data',
12866         id : 'id'
12867     });
12868     
12869     Roo.data.JsonReader.superclass.constructor.call(this, meta, recordType||meta.fields);
12870 };
12871 Roo.extend(Roo.data.JsonReader, Roo.data.DataReader, {
12872     
12873     /**
12874      * @prop {Boolean} metaFromRemote  - if the meta data was loaded from the remote source.
12875      * Used by Store query builder to append _requestMeta to params.
12876      * 
12877      */
12878     metaFromRemote : false,
12879     /**
12880      * This method is only used by a DataProxy which has retrieved data from a remote server.
12881      * @param {Object} response The XHR object which contains the JSON data in its responseText.
12882      * @return {Object} data A data block which is used by an Roo.data.Store object as
12883      * a cache of Roo.data.Records.
12884      */
12885     read : function(response){
12886         var json = response.responseText;
12887        
12888         var o = /* eval:var:o */ eval("("+json+")");
12889         if(!o) {
12890             throw {message: "JsonReader.read: Json object not found"};
12891         }
12892         
12893         if(o.metaData){
12894             
12895             delete this.ef;
12896             this.metaFromRemote = true;
12897             this.meta = o.metaData;
12898             this.recordType = Roo.data.Record.create(o.metaData.fields);
12899             this.onMetaChange(this.meta, this.recordType, o);
12900         }
12901         return this.readRecords(o);
12902     },
12903
12904     // private function a store will implement
12905     onMetaChange : function(meta, recordType, o){
12906
12907     },
12908
12909     /**
12910          * @ignore
12911          */
12912     simpleAccess: function(obj, subsc) {
12913         return obj[subsc];
12914     },
12915
12916         /**
12917          * @ignore
12918          */
12919     getJsonAccessor: function(){
12920         var re = /[\[\.]/;
12921         return function(expr) {
12922             try {
12923                 return(re.test(expr))
12924                     ? new Function("obj", "return obj." + expr)
12925                     : function(obj){
12926                         return obj[expr];
12927                     };
12928             } catch(e){}
12929             return Roo.emptyFn;
12930         };
12931     }(),
12932
12933     /**
12934      * Create a data block containing Roo.data.Records from an XML document.
12935      * @param {Object} o An object which contains an Array of row objects in the property specified
12936      * in the config as 'root, and optionally a property, specified in the config as 'totalProperty'
12937      * which contains the total size of the dataset.
12938      * @return {Object} data A data block which is used by an Roo.data.Store object as
12939      * a cache of Roo.data.Records.
12940      */
12941     readRecords : function(o){
12942         /**
12943          * After any data loads, the raw JSON data is available for further custom processing.
12944          * @type Object
12945          */
12946         this.o = o;
12947         var s = this.meta, Record = this.recordType,
12948             f = Record ? Record.prototype.fields : null, fi = f ? f.items : [], fl = f ? f.length : 0;
12949
12950 //      Generate extraction functions for the totalProperty, the root, the id, and for each field
12951         if (!this.ef) {
12952             if(s.totalProperty) {
12953                     this.getTotal = this.getJsonAccessor(s.totalProperty);
12954                 }
12955                 if(s.successProperty) {
12956                     this.getSuccess = this.getJsonAccessor(s.successProperty);
12957                 }
12958                 this.getRoot = s.root ? this.getJsonAccessor(s.root) : function(p){return p;};
12959                 if (s.id) {
12960                         var g = this.getJsonAccessor(s.id);
12961                         this.getId = function(rec) {
12962                                 var r = g(rec);  
12963                                 return (r === undefined || r === "") ? null : r;
12964                         };
12965                 } else {
12966                         this.getId = function(){return null;};
12967                 }
12968             this.ef = [];
12969             for(var jj = 0; jj < fl; jj++){
12970                 f = fi[jj];
12971                 var map = (f.mapping !== undefined && f.mapping !== null) ? f.mapping : f.name;
12972                 this.ef[jj] = this.getJsonAccessor(map);
12973             }
12974         }
12975
12976         var root = this.getRoot(o), c = root.length, totalRecords = c, success = true;
12977         if(s.totalProperty){
12978             var vt = parseInt(this.getTotal(o), 10);
12979             if(!isNaN(vt)){
12980                 totalRecords = vt;
12981             }
12982         }
12983         if(s.successProperty){
12984             var vs = this.getSuccess(o);
12985             if(vs === false || vs === 'false'){
12986                 success = false;
12987             }
12988         }
12989         var records = [];
12990         for(var i = 0; i < c; i++){
12991                 var n = root[i];
12992             var values = {};
12993             var id = this.getId(n);
12994             for(var j = 0; j < fl; j++){
12995                 f = fi[j];
12996             var v = this.ef[j](n);
12997             if (!f.convert) {
12998                 Roo.log('missing convert for ' + f.name);
12999                 Roo.log(f);
13000                 continue;
13001             }
13002             values[f.name] = f.convert((v !== undefined) ? v : f.defaultValue);
13003             }
13004             var record = new Record(values, id);
13005             record.json = n;
13006             records[i] = record;
13007         }
13008         return {
13009             raw : o,
13010             success : success,
13011             records : records,
13012             totalRecords : totalRecords
13013         };
13014     }
13015 });/*
13016  * Based on:
13017  * Ext JS Library 1.1.1
13018  * Copyright(c) 2006-2007, Ext JS, LLC.
13019  *
13020  * Originally Released Under LGPL - original licence link has changed is not relivant.
13021  *
13022  * Fork - LGPL
13023  * <script type="text/javascript">
13024  */
13025
13026 /**
13027  * @class Roo.data.ArrayReader
13028  * @extends Roo.data.DataReader
13029  * Data reader class to create an Array of Roo.data.Record objects from an Array.
13030  * Each element of that Array represents a row of data fields. The
13031  * fields are pulled into a Record object using as a subscript, the <em>mapping</em> property
13032  * of the field definition if it exists, or the field's ordinal position in the definition.<br>
13033  * <p>
13034  * Example code:.
13035  * <pre><code>
13036 var RecordDef = Roo.data.Record.create([
13037     {name: 'name', mapping: 1},         // "mapping" only needed if an "id" field is present which
13038     {name: 'occupation', mapping: 2}    // precludes using the ordinal position as the index.
13039 ]);
13040 var myReader = new Roo.data.ArrayReader({
13041     id: 0                     // The subscript within row Array that provides an ID for the Record (optional)
13042 }, RecordDef);
13043 </code></pre>
13044  * <p>
13045  * This would consume an Array like this:
13046  * <pre><code>
13047 [ [1, 'Bill', 'Gardener'], [2, 'Ben', 'Horticulturalist'] ]
13048   </code></pre>
13049  
13050  * @constructor
13051  * Create a new JsonReader
13052  * @param {Object} meta Metadata configuration options.
13053  * @param {Object|Array} recordType Either an Array of field definition objects
13054  * 
13055  * @cfg {Array} fields Array of field definition objects
13056  * @cfg {String} id Name of the property within a row object that contains a record identifier value.
13057  * as specified to {@link Roo.data.Record#create},
13058  * or an {@link Roo.data.Record} object
13059  *
13060  * 
13061  * created using {@link Roo.data.Record#create}.
13062  */
13063 Roo.data.ArrayReader = function(meta, recordType){
13064     
13065      
13066     Roo.data.ArrayReader.superclass.constructor.call(this, meta, recordType||meta.fields);
13067 };
13068
13069 Roo.extend(Roo.data.ArrayReader, Roo.data.JsonReader, {
13070     /**
13071      * Create a data block containing Roo.data.Records from an XML document.
13072      * @param {Object} o An Array of row objects which represents the dataset.
13073      * @return {Object} A data block which is used by an {@link Roo.data.Store} object as
13074      * a cache of Roo.data.Records.
13075      */
13076     readRecords : function(o){
13077         var sid = this.meta ? this.meta.id : null;
13078         var recordType = this.recordType, fields = recordType.prototype.fields;
13079         var records = [];
13080         var root = o;
13081             for(var i = 0; i < root.length; i++){
13082                     var n = root[i];
13083                 var values = {};
13084                 var id = ((sid || sid === 0) && n[sid] !== undefined && n[sid] !== "" ? n[sid] : null);
13085                 for(var j = 0, jlen = fields.length; j < jlen; j++){
13086                 var f = fields.items[j];
13087                 var k = f.mapping !== undefined && f.mapping !== null ? f.mapping : j;
13088                 var v = n[k] !== undefined ? n[k] : f.defaultValue;
13089                 v = f.convert(v);
13090                 values[f.name] = v;
13091             }
13092                 var record = new recordType(values, id);
13093                 record.json = n;
13094                 records[records.length] = record;
13095             }
13096             return {
13097                 records : records,
13098                 totalRecords : records.length
13099             };
13100     }
13101 });/*
13102  * - LGPL
13103  * * 
13104  */
13105
13106 /**
13107  * @class Roo.bootstrap.ComboBox
13108  * @extends Roo.bootstrap.TriggerField
13109  * A combobox control with support for autocomplete, remote-loading, paging and many other features.
13110  * @cfg {Boolean} append (true|false) default false
13111  * @cfg {Boolean} autoFocus (true|false) auto focus the first item, default true
13112  * @cfg {Boolean} tickable ComboBox with tickable selections (true|false), default false
13113  * @cfg {Boolean} triggerList trigger show the list or not (true|false) default true
13114  * @cfg {Boolean} showToggleBtn show toggle button or not (true|false) default true
13115  * @cfg {String} btnPosition set the position of the trigger button (left | right) default right
13116  * @cfg {Boolean} animate default true
13117  * @cfg {Boolean} emptyResultText only for touch device
13118  * @cfg {String} triggerText multiple combobox trigger button text default 'Select'
13119  * @cfg {String} emptyTitle default ''
13120  * @constructor
13121  * Create a new ComboBox.
13122  * @param {Object} config Configuration options
13123  */
13124 Roo.bootstrap.ComboBox = function(config){
13125     Roo.bootstrap.ComboBox.superclass.constructor.call(this, config);
13126     this.addEvents({
13127         /**
13128          * @event expand
13129          * Fires when the dropdown list is expanded
13130         * @param {Roo.bootstrap.ComboBox} combo This combo box
13131         */
13132         'expand' : true,
13133         /**
13134          * @event collapse
13135          * Fires when the dropdown list is collapsed
13136         * @param {Roo.bootstrap.ComboBox} combo This combo box
13137         */
13138         'collapse' : true,
13139         /**
13140          * @event beforeselect
13141          * Fires before a list item is selected. Return false to cancel the selection.
13142         * @param {Roo.bootstrap.ComboBox} combo This combo box
13143         * @param {Roo.data.Record} record The data record returned from the underlying store
13144         * @param {Number} index The index of the selected item in the dropdown list
13145         */
13146         'beforeselect' : true,
13147         /**
13148          * @event select
13149          * Fires when a list item is selected
13150         * @param {Roo.bootstrap.ComboBox} combo This combo box
13151         * @param {Roo.data.Record} record The data record returned from the underlying store (or false on clear)
13152         * @param {Number} index The index of the selected item in the dropdown list
13153         */
13154         'select' : true,
13155         /**
13156          * @event beforequery
13157          * Fires before all queries are processed. Return false to cancel the query or set cancel to true.
13158          * The event object passed has these properties:
13159         * @param {Roo.bootstrap.ComboBox} combo This combo box
13160         * @param {String} query The query
13161         * @param {Boolean} forceAll true to force "all" query
13162         * @param {Boolean} cancel true to cancel the query
13163         * @param {Object} e The query event object
13164         */
13165         'beforequery': true,
13166          /**
13167          * @event add
13168          * Fires when the 'add' icon is pressed (add a listener to enable add button)
13169         * @param {Roo.bootstrap.ComboBox} combo This combo box
13170         */
13171         'add' : true,
13172         /**
13173          * @event edit
13174          * Fires when the 'edit' icon is pressed (add a listener to enable add button)
13175         * @param {Roo.bootstrap.ComboBox} combo This combo box
13176         * @param {Roo.data.Record|false} record The data record returned from the underlying store (or false on nothing selected)
13177         */
13178         'edit' : true,
13179         /**
13180          * @event remove
13181          * Fires when the remove value from the combobox array
13182         * @param {Roo.bootstrap.ComboBox} combo This combo box
13183         */
13184         'remove' : true,
13185         /**
13186          * @event afterremove
13187          * Fires when the remove value from the combobox array
13188         * @param {Roo.bootstrap.ComboBox} combo This combo box
13189         */
13190         'afterremove' : true,
13191         /**
13192          * @event specialfilter
13193          * Fires when specialfilter
13194             * @param {Roo.bootstrap.ComboBox} combo This combo box
13195             */
13196         'specialfilter' : true,
13197         /**
13198          * @event tick
13199          * Fires when tick the element
13200             * @param {Roo.bootstrap.ComboBox} combo This combo box
13201             */
13202         'tick' : true,
13203         /**
13204          * @event touchviewdisplay
13205          * Fires when touch view require special display (default is using displayField)
13206             * @param {Roo.bootstrap.ComboBox} combo This combo box
13207             * @param {Object} cfg set html .
13208             */
13209         'touchviewdisplay' : true
13210         
13211     });
13212     
13213     this.item = [];
13214     this.tickItems = [];
13215     
13216     this.selectedIndex = -1;
13217     if(this.mode == 'local'){
13218         if(config.queryDelay === undefined){
13219             this.queryDelay = 10;
13220         }
13221         if(config.minChars === undefined){
13222             this.minChars = 0;
13223         }
13224     }
13225 };
13226
13227 Roo.extend(Roo.bootstrap.ComboBox, Roo.bootstrap.TriggerField, {
13228      
13229     /**
13230      * @cfg {Boolean} lazyRender True to prevent the ComboBox from rendering until requested (should always be used when
13231      * rendering into an Roo.Editor, defaults to false)
13232      */
13233     /**
13234      * @cfg {Boolean/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to:
13235      * {tag: "input", type: "text", size: "24", autocomplete: "off"})
13236      */
13237     /**
13238      * @cfg {Roo.data.Store} store The data store to which this combo is bound (defaults to undefined)
13239      */
13240     /**
13241      * @cfg {String} title If supplied, a header element is created containing this text and added into the top of
13242      * the dropdown list (defaults to undefined, with no header element)
13243      */
13244
13245      /**
13246      * @cfg {String/Roo.Template} tpl The template to use to render the output
13247      */
13248      
13249      /**
13250      * @cfg {Number} listWidth The width in pixels of the dropdown list (defaults to the width of the ComboBox field)
13251      */
13252     listWidth: undefined,
13253     /**
13254      * @cfg {String} displayField The underlying data field name to bind to this CombBox (defaults to undefined if
13255      * mode = 'remote' or 'text' if mode = 'local')
13256      */
13257     displayField: undefined,
13258     
13259     /**
13260      * @cfg {String} valueField The underlying data value name to bind to this CombBox (defaults to undefined if
13261      * mode = 'remote' or 'value' if mode = 'local'). 
13262      * Note: use of a valueField requires the user make a selection
13263      * in order for a value to be mapped.
13264      */
13265     valueField: undefined,
13266     /**
13267      * @cfg {String} modalTitle The title of the dialog that pops up on mobile views.
13268      */
13269     modalTitle : '',
13270     
13271     /**
13272      * @cfg {String} hiddenName If specified, a hidden form field with this name is dynamically generated to store the
13273      * field's data value (defaults to the underlying DOM element's name)
13274      */
13275     hiddenName: undefined,
13276     /**
13277      * @cfg {String} listClass CSS class to apply to the dropdown list element (defaults to '')
13278      */
13279     listClass: '',
13280     /**
13281      * @cfg {String} selectedClass CSS class to apply to the selected item in the dropdown list (defaults to 'x-combo-selected')
13282      */
13283     selectedClass: 'active',
13284     
13285     /**
13286      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
13287      */
13288     shadow:'sides',
13289     /**
13290      * @cfg {String} listAlign A valid anchor position value. See {@link Roo.Element#alignTo} for details on supported
13291      * anchor positions (defaults to 'tl-bl')
13292      */
13293     listAlign: 'tl-bl?',
13294     /**
13295      * @cfg {Number} maxHeight The maximum height in pixels of the dropdown list before scrollbars are shown (defaults to 300)
13296      */
13297     maxHeight: 300,
13298     /**
13299      * @cfg {String} triggerAction The action to execute when the trigger field is activated.  Use 'all' to run the
13300      * query specified by the allQuery config option (defaults to 'query')
13301      */
13302     triggerAction: 'query',
13303     /**
13304      * @cfg {Number} minChars The minimum number of characters the user must type before autocomplete and typeahead activate
13305      * (defaults to 4, does not apply if editable = false)
13306      */
13307     minChars : 4,
13308     /**
13309      * @cfg {Boolean} typeAhead True to populate and autoselect the remainder of the text being typed after a configurable
13310      * delay (typeAheadDelay) if it matches a known value (defaults to false)
13311      */
13312     typeAhead: false,
13313     /**
13314      * @cfg {Number} queryDelay The length of time in milliseconds to delay between the start of typing and sending the
13315      * query to filter the dropdown list (defaults to 500 if mode = 'remote' or 10 if mode = 'local')
13316      */
13317     queryDelay: 500,
13318     /**
13319      * @cfg {Number} pageSize If greater than 0, a paging toolbar is displayed in the footer of the dropdown list and the
13320      * filter queries will execute with page start and limit parameters.  Only applies when mode = 'remote' (defaults to 0)
13321      */
13322     pageSize: 0,
13323     /**
13324      * @cfg {Boolean} selectOnFocus True to select any existing text in the field immediately on focus.  Only applies
13325      * when editable = true (defaults to false)
13326      */
13327     selectOnFocus:false,
13328     /**
13329      * @cfg {String} queryParam Name of the query as it will be passed on the querystring (defaults to 'query')
13330      */
13331     queryParam: 'query',
13332     /**
13333      * @cfg {String} loadingText The text to display in the dropdown list while data is loading.  Only applies
13334      * when mode = 'remote' (defaults to 'Loading...')
13335      */
13336     loadingText: 'Loading...',
13337     /**
13338      * @cfg {Boolean} resizable True to add a resize handle to the bottom of the dropdown list (defaults to false)
13339      */
13340     resizable: false,
13341     /**
13342      * @cfg {Number} handleHeight The height in pixels of the dropdown list resize handle if resizable = true (defaults to 8)
13343      */
13344     handleHeight : 8,
13345     /**
13346      * @cfg {Boolean} editable False to prevent the user from typing text directly into the field, just like a
13347      * traditional select (defaults to true)
13348      */
13349     editable: true,
13350     /**
13351      * @cfg {String} allQuery The text query to send to the server to return all records for the list with no filtering (defaults to '')
13352      */
13353     allQuery: '',
13354     /**
13355      * @cfg {String} mode Set to 'local' if the ComboBox loads local data (defaults to 'remote' which loads from the server)
13356      */
13357     mode: 'remote',
13358     /**
13359      * @cfg {Number} minListWidth The minimum width of the dropdown list in pixels (defaults to 70, will be ignored if
13360      * listWidth has a higher value)
13361      */
13362     minListWidth : 70,
13363     /**
13364      * @cfg {Boolean} forceSelection True to restrict the selected value to one of the values in the list, false to
13365      * allow the user to set arbitrary text into the field (defaults to false)
13366      */
13367     forceSelection:false,
13368     /**
13369      * @cfg {Number} typeAheadDelay The length of time in milliseconds to wait until the typeahead text is displayed
13370      * if typeAhead = true (defaults to 250)
13371      */
13372     typeAheadDelay : 250,
13373     /**
13374      * @cfg {String} valueNotFoundText When using a name/value combo, if the value passed to setValue is not found in
13375      * the store, valueNotFoundText will be displayed as the field text if defined (defaults to undefined)
13376      */
13377     valueNotFoundText : undefined,
13378     /**
13379      * @cfg {Boolean} blockFocus Prevents all focus calls, so it can work with things like HTML edtor bar
13380      */
13381     blockFocus : false,
13382     
13383     /**
13384      * @cfg {Boolean} disableClear Disable showing of clear button.
13385      */
13386     disableClear : false,
13387     /**
13388      * @cfg {Boolean} alwaysQuery  Disable caching of results, and always send query
13389      */
13390     alwaysQuery : false,
13391     
13392     /**
13393      * @cfg {Boolean} multiple  (true|false) ComboBobArray, default false
13394      */
13395     multiple : false,
13396     
13397     /**
13398      * @cfg {String} invalidClass DEPRICATED - uses BS4 is-valid now
13399      */
13400     invalidClass : "has-warning",
13401     
13402     /**
13403      * @cfg {String} validClass DEPRICATED - uses BS4 is-valid now
13404      */
13405     validClass : "has-success",
13406     
13407     /**
13408      * @cfg {Boolean} specialFilter (true|false) special filter default false
13409      */
13410     specialFilter : false,
13411     
13412     /**
13413      * @cfg {Boolean} mobileTouchView (true|false) show mobile touch view when using a mobile default true
13414      */
13415     mobileTouchView : true,
13416     
13417     /**
13418      * @cfg {Boolean} useNativeIOS (true|false) render it as classic select for ios, not support dynamic load data (default false)
13419      */
13420     useNativeIOS : false,
13421     
13422     /**
13423      * @cfg {Boolean} mobile_restrict_height (true|false) restrict height for touch view
13424      */
13425     mobile_restrict_height : false,
13426     
13427     ios_options : false,
13428     
13429     //private
13430     addicon : false,
13431     editicon: false,
13432     
13433     page: 0,
13434     hasQuery: false,
13435     append: false,
13436     loadNext: false,
13437     autoFocus : true,
13438     tickable : false,
13439     btnPosition : 'right',
13440     triggerList : true,
13441     showToggleBtn : true,
13442     animate : true,
13443     emptyResultText: 'Empty',
13444     triggerText : 'Select',
13445     emptyTitle : '',
13446     
13447     // element that contains real text value.. (when hidden is used..)
13448     
13449     getAutoCreate : function()
13450     {   
13451         var cfg = false;
13452         //render
13453         /*
13454          * Render classic select for iso
13455          */
13456         
13457         if(Roo.isIOS && this.useNativeIOS){
13458             cfg = this.getAutoCreateNativeIOS();
13459             return cfg;
13460         }
13461         
13462         /*
13463          * Touch Devices
13464          */
13465         
13466         if(Roo.isTouch && this.mobileTouchView){
13467             cfg = this.getAutoCreateTouchView();
13468             return cfg;;
13469         }
13470         
13471         /*
13472          *  Normal ComboBox
13473          */
13474         if(!this.tickable){
13475             cfg = Roo.bootstrap.ComboBox.superclass.getAutoCreate.call(this);
13476             return cfg;
13477         }
13478         
13479         /*
13480          *  ComboBox with tickable selections
13481          */
13482              
13483         var align = this.labelAlign || this.parentLabelAlign();
13484         
13485         cfg = {
13486             cls : 'form-group roo-combobox-tickable' //input-group
13487         };
13488         
13489         var btn_text_select = '';
13490         var btn_text_done = '';
13491         var btn_text_cancel = '';
13492         
13493         if (this.btn_text_show) {
13494             btn_text_select = 'Select';
13495             btn_text_done = 'Done';
13496             btn_text_cancel = 'Cancel'; 
13497         }
13498         
13499         var buttons = {
13500             tag : 'div',
13501             cls : 'tickable-buttons',
13502             cn : [
13503                 {
13504                     tag : 'button',
13505                     type : 'button',
13506                     cls : 'btn btn-link btn-edit pull-' + this.btnPosition,
13507                     //html : this.triggerText
13508                     html: btn_text_select
13509                 },
13510                 {
13511                     tag : 'button',
13512                     type : 'button',
13513                     name : 'ok',
13514                     cls : 'btn btn-link btn-ok pull-' + this.btnPosition,
13515                     //html : 'Done'
13516                     html: btn_text_done
13517                 },
13518                 {
13519                     tag : 'button',
13520                     type : 'button',
13521                     name : 'cancel',
13522                     cls : 'btn btn-link btn-cancel pull-' + this.btnPosition,
13523                     //html : 'Cancel'
13524                     html: btn_text_cancel
13525                 }
13526             ]
13527         };
13528         
13529         if(this.editable){
13530             buttons.cn.unshift({
13531                 tag: 'input',
13532                 cls: 'roo-select2-search-field-input'
13533             });
13534         }
13535         
13536         var _this = this;
13537         
13538         Roo.each(buttons.cn, function(c){
13539             if (_this.size) {
13540                 c.cls += ' btn-' + _this.size;
13541             }
13542
13543             if (_this.disabled) {
13544                 c.disabled = true;
13545             }
13546         });
13547         
13548         var box = {
13549             tag: 'div',
13550             style : 'display: contents',
13551             cn: [
13552                 {
13553                     tag: 'input',
13554                     type : 'hidden',
13555                     cls: 'form-hidden-field'
13556                 },
13557                 {
13558                     tag: 'ul',
13559                     cls: 'roo-select2-choices',
13560                     cn:[
13561                         {
13562                             tag: 'li',
13563                             cls: 'roo-select2-search-field',
13564                             cn: [
13565                                 buttons
13566                             ]
13567                         }
13568                     ]
13569                 }
13570             ]
13571         };
13572         
13573         var combobox = {
13574             cls: 'roo-select2-container input-group roo-select2-container-multi',
13575             cn: [
13576                 
13577                 box
13578 //                {
13579 //                    tag: 'ul',
13580 //                    cls: 'typeahead typeahead-long dropdown-menu',
13581 //                    style: 'display:none; max-height:' + this.maxHeight + 'px;'
13582 //                }
13583             ]
13584         };
13585         
13586         if(this.hasFeedback && !this.allowBlank){
13587             
13588             var feedback = {
13589                 tag: 'span',
13590                 cls: 'glyphicon form-control-feedback'
13591             };
13592
13593             combobox.cn.push(feedback);
13594         }
13595         
13596         var indicator = {
13597             tag : 'i',
13598             cls : 'roo-required-indicator ' + (this.indicatorpos == 'right'  ? 'right' : 'left') +'-indicator text-danger fa fa-lg fa-star',
13599             tooltip : 'This field is required'
13600         };
13601         if (Roo.bootstrap.version == 4) {
13602             indicator = {
13603                 tag : 'i',
13604                 style : 'display:none'
13605             };
13606         }
13607         if (align ==='left' && this.fieldLabel.length) {
13608             
13609             cfg.cls += ' roo-form-group-label-left'  + (Roo.bootstrap.version == 4 ? ' row' : '');
13610             
13611             cfg.cn = [
13612                 indicator,
13613                 {
13614                     tag: 'label',
13615                     'for' :  id,
13616                     cls : 'control-label col-form-label',
13617                     html : this.fieldLabel
13618
13619                 },
13620                 {
13621                     cls : "", 
13622                     cn: [
13623                         combobox
13624                     ]
13625                 }
13626
13627             ];
13628             
13629             var labelCfg = cfg.cn[1];
13630             var contentCfg = cfg.cn[2];
13631             
13632
13633             if(this.indicatorpos == 'right'){
13634                 
13635                 cfg.cn = [
13636                     {
13637                         tag: 'label',
13638                         'for' :  id,
13639                         cls : 'control-label col-form-label',
13640                         cn : [
13641                             {
13642                                 tag : 'span',
13643                                 html : this.fieldLabel
13644                             },
13645                             indicator
13646                         ]
13647                     },
13648                     {
13649                         cls : "",
13650                         cn: [
13651                             combobox
13652                         ]
13653                     }
13654
13655                 ];
13656                 
13657                 
13658                 
13659                 labelCfg = cfg.cn[0];
13660                 contentCfg = cfg.cn[1];
13661             
13662             }
13663             
13664             if(this.labelWidth > 12){
13665                 labelCfg.style = "width: " + this.labelWidth + 'px';
13666             }
13667             
13668             if(this.labelWidth < 13 && this.labelmd == 0){
13669                 this.labelmd = this.labelWidth;
13670             }
13671             
13672             if(this.labellg > 0){
13673                 labelCfg.cls += ' col-lg-' + this.labellg;
13674                 contentCfg.cls += ' col-lg-' + (12 - this.labellg);
13675             }
13676             
13677             if(this.labelmd > 0){
13678                 labelCfg.cls += ' col-md-' + this.labelmd;
13679                 contentCfg.cls += ' col-md-' + (12 - this.labelmd);
13680             }
13681             
13682             if(this.labelsm > 0){
13683                 labelCfg.cls += ' col-sm-' + this.labelsm;
13684                 contentCfg.cls += ' col-sm-' + (12 - this.labelsm);
13685             }
13686             
13687             if(this.labelxs > 0){
13688                 labelCfg.cls += ' col-xs-' + this.labelxs;
13689                 contentCfg.cls += ' col-xs-' + (12 - this.labelxs);
13690             }
13691                 
13692                 
13693         } else if ( this.fieldLabel.length) {
13694 //                Roo.log(" label");
13695                  cfg.cn = [
13696                    indicator,
13697                     {
13698                         tag: 'label',
13699                         //cls : 'input-group-addon',
13700                         html : this.fieldLabel
13701                     },
13702                     combobox
13703                 ];
13704                 
13705                 if(this.indicatorpos == 'right'){
13706                     cfg.cn = [
13707                         {
13708                             tag: 'label',
13709                             //cls : 'input-group-addon',
13710                             html : this.fieldLabel
13711                         },
13712                         indicator,
13713                         combobox
13714                     ];
13715                     
13716                 }
13717
13718         } else {
13719             
13720 //                Roo.log(" no label && no align");
13721                 cfg = combobox
13722                      
13723                 
13724         }
13725          
13726         var settings=this;
13727         ['xs','sm','md','lg'].map(function(size){
13728             if (settings[size]) {
13729                 cfg.cls += ' col-' + size + '-' + settings[size];
13730             }
13731         });
13732         
13733         return cfg;
13734         
13735     },
13736     
13737     _initEventsCalled : false,
13738     
13739     // private
13740     initEvents: function()
13741     {   
13742         if (this._initEventsCalled) { // as we call render... prevent looping...
13743             return;
13744         }
13745         this._initEventsCalled = true;
13746         
13747         if (!this.store) {
13748             throw "can not find store for combo";
13749         }
13750         
13751         this.indicator = this.indicatorEl();
13752         
13753         this.store = Roo.factory(this.store, Roo.data);
13754         this.store.parent = this;
13755         
13756         // if we are building from html. then this element is so complex, that we can not really
13757         // use the rendered HTML.
13758         // so we have to trash and replace the previous code.
13759         if (Roo.XComponent.build_from_html) {
13760             // remove this element....
13761             var e = this.el.dom, k=0;
13762             while (e ) { e = e.previousSibling;  ++k;}
13763
13764             this.el.remove();
13765             
13766             this.el=false;
13767             this.rendered = false;
13768             
13769             this.render(this.parent().getChildContainer(true), k);
13770         }
13771         
13772         if(Roo.isIOS && this.useNativeIOS){
13773             this.initIOSView();
13774             return;
13775         }
13776         
13777         /*
13778          * Touch Devices
13779          */
13780         
13781         if(Roo.isTouch && this.mobileTouchView){
13782             this.initTouchView();
13783             return;
13784         }
13785         
13786         if(this.tickable){
13787             this.initTickableEvents();
13788             return;
13789         }
13790         
13791         Roo.bootstrap.ComboBox.superclass.initEvents.call(this);
13792         
13793         if(this.hiddenName){
13794             
13795             this.hiddenField = this.el.select('input.form-hidden-field',true).first();
13796             
13797             this.hiddenField.dom.value =
13798                 this.hiddenValue !== undefined ? this.hiddenValue :
13799                 this.value !== undefined ? this.value : '';
13800
13801             // prevent input submission
13802             this.el.dom.removeAttribute('name');
13803             this.hiddenField.dom.setAttribute('name', this.hiddenName);
13804              
13805              
13806         }
13807         //if(Roo.isGecko){
13808         //    this.el.dom.setAttribute('autocomplete', 'off');
13809         //}
13810         
13811         var cls = 'x-combo-list';
13812         
13813         //this.list = new Roo.Layer({
13814         //    shadow: this.shadow, cls: [cls, this.listClass].join(' '), constrain:false
13815         //});
13816         
13817         var _this = this;
13818         
13819         (function(){
13820             var lw = _this.listWidth || Math.max(_this.inputEl().getWidth(), _this.minListWidth);
13821             _this.list.setWidth(lw);
13822         }).defer(100);
13823         
13824         this.list.on('mouseover', this.onViewOver, this);
13825         this.list.on('mousemove', this.onViewMove, this);
13826         this.list.on('scroll', this.onViewScroll, this);
13827         
13828         /*
13829         this.list.swallowEvent('mousewheel');
13830         this.assetHeight = 0;
13831
13832         if(this.title){
13833             this.header = this.list.createChild({cls:cls+'-hd', html: this.title});
13834             this.assetHeight += this.header.getHeight();
13835         }
13836
13837         this.innerList = this.list.createChild({cls:cls+'-inner'});
13838         this.innerList.on('mouseover', this.onViewOver, this);
13839         this.innerList.on('mousemove', this.onViewMove, this);
13840         this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
13841         
13842         if(this.allowBlank && !this.pageSize && !this.disableClear){
13843             this.footer = this.list.createChild({cls:cls+'-ft'});
13844             this.pageTb = new Roo.Toolbar(this.footer);
13845            
13846         }
13847         if(this.pageSize){
13848             this.footer = this.list.createChild({cls:cls+'-ft'});
13849             this.pageTb = new Roo.PagingToolbar(this.footer, this.store,
13850                     {pageSize: this.pageSize});
13851             
13852         }
13853         
13854         if (this.pageTb && this.allowBlank && !this.disableClear) {
13855             var _this = this;
13856             this.pageTb.add(new Roo.Toolbar.Fill(), {
13857                 cls: 'x-btn-icon x-btn-clear',
13858                 text: '&#160;',
13859                 handler: function()
13860                 {
13861                     _this.collapse();
13862                     _this.clearValue();
13863                     _this.onSelect(false, -1);
13864                 }
13865             });
13866         }
13867         if (this.footer) {
13868             this.assetHeight += this.footer.getHeight();
13869         }
13870         */
13871             
13872         if(!this.tpl){
13873             this.tpl = Roo.bootstrap.version == 4 ?
13874                 '<a class="dropdown-item" href="#">{' + this.displayField + '}</a>' :  // 4 does not need <li> and it get's really confisued.
13875                 '<li><a class="dropdown-item" href="#">{' + this.displayField + '}</a></li>';
13876         }
13877
13878         this.view = new Roo.View(this.list, this.tpl, {
13879             singleSelect:true, store: this.store, selectedClass: this.selectedClass
13880         });
13881         //this.view.wrapEl.setDisplayed(false);
13882         this.view.on('click', this.onViewClick, this);
13883         
13884         
13885         this.store.on('beforeload', this.onBeforeLoad, this);
13886         this.store.on('load', this.onLoad, this);
13887         this.store.on('loadexception', this.onLoadException, this);
13888         /*
13889         if(this.resizable){
13890             this.resizer = new Roo.Resizable(this.list,  {
13891                pinned:true, handles:'se'
13892             });
13893             this.resizer.on('resize', function(r, w, h){
13894                 this.maxHeight = h-this.handleHeight-this.list.getFrameWidth('tb')-this.assetHeight;
13895                 this.listWidth = w;
13896                 this.innerList.setWidth(w - this.list.getFrameWidth('lr'));
13897                 this.restrictHeight();
13898             }, this);
13899             this[this.pageSize?'footer':'innerList'].setStyle('margin-bottom', this.handleHeight+'px');
13900         }
13901         */
13902         if(!this.editable){
13903             this.editable = true;
13904             this.setEditable(false);
13905         }
13906         
13907         /*
13908         
13909         if (typeof(this.events.add.listeners) != 'undefined') {
13910             
13911             this.addicon = this.wrap.createChild(
13912                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-add' });  
13913        
13914             this.addicon.on('click', function(e) {
13915                 this.fireEvent('add', this);
13916             }, this);
13917         }
13918         if (typeof(this.events.edit.listeners) != 'undefined') {
13919             
13920             this.editicon = this.wrap.createChild(
13921                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-edit' });  
13922             if (this.addicon) {
13923                 this.editicon.setStyle('margin-left', '40px');
13924             }
13925             this.editicon.on('click', function(e) {
13926                 
13927                 // we fire even  if inothing is selected..
13928                 this.fireEvent('edit', this, this.lastData );
13929                 
13930             }, this);
13931         }
13932         */
13933         
13934         this.keyNav = new Roo.KeyNav(this.inputEl(), {
13935             "up" : function(e){
13936                 this.inKeyMode = true;
13937                 this.selectPrev();
13938             },
13939
13940             "down" : function(e){
13941                 if(!this.isExpanded()){
13942                     this.onTriggerClick();
13943                 }else{
13944                     this.inKeyMode = true;
13945                     this.selectNext();
13946                 }
13947             },
13948
13949             "enter" : function(e){
13950 //                this.onViewClick();
13951                 //return true;
13952                 this.collapse();
13953                 
13954                 if(this.fireEvent("specialkey", this, e)){
13955                     this.onViewClick(false);
13956                 }
13957                 
13958                 return true;
13959             },
13960
13961             "esc" : function(e){
13962                 this.collapse();
13963             },
13964
13965             "tab" : function(e){
13966                 this.collapse();
13967                 
13968                 if(this.fireEvent("specialkey", this, e)){
13969                     this.onViewClick(false);
13970                 }
13971                 
13972                 return true;
13973             },
13974
13975             scope : this,
13976
13977             doRelay : function(foo, bar, hname){
13978                 if(hname == 'down' || this.scope.isExpanded()){
13979                    return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
13980                 }
13981                 return true;
13982             },
13983
13984             forceKeyDown: true
13985         });
13986         
13987         
13988         this.queryDelay = Math.max(this.queryDelay || 10,
13989                 this.mode == 'local' ? 10 : 250);
13990         
13991         
13992         this.dqTask = new Roo.util.DelayedTask(this.initQuery, this);
13993         
13994         if(this.typeAhead){
13995             this.taTask = new Roo.util.DelayedTask(this.onTypeAhead, this);
13996         }
13997         if(this.editable !== false){
13998             this.inputEl().on("keyup", this.onKeyUp, this);
13999         }
14000         if(this.forceSelection){
14001             this.inputEl().on('blur', this.doForce, this);
14002         }
14003         
14004         if(this.multiple){
14005             this.choices = this.el.select('ul.roo-select2-choices', true).first();
14006             this.searchField = this.el.select('ul li.roo-select2-search-field', true).first();
14007         }
14008     },
14009     
14010     initTickableEvents: function()
14011     {   
14012         this.createList();
14013         
14014         if(this.hiddenName){
14015             
14016             this.hiddenField = this.el.select('input.form-hidden-field',true).first();
14017             
14018             this.hiddenField.dom.value =
14019                 this.hiddenValue !== undefined ? this.hiddenValue :
14020                 this.value !== undefined ? this.value : '';
14021
14022             // prevent input submission
14023             this.el.dom.removeAttribute('name');
14024             this.hiddenField.dom.setAttribute('name', this.hiddenName);
14025              
14026              
14027         }
14028         
14029 //        this.list = this.el.select('ul.dropdown-menu',true).first();
14030         
14031         this.choices = this.el.select('ul.roo-select2-choices', true).first();
14032         this.searchField = this.el.select('ul li.roo-select2-search-field', true).first();
14033         if(this.triggerList){
14034             this.searchField.on("click", this.onSearchFieldClick, this, {preventDefault:true});
14035         }
14036          
14037         this.trigger = this.el.select('.tickable-buttons > .btn-edit', true).first();
14038         this.trigger.on("click", this.onTickableTriggerClick, this, {preventDefault:true});
14039         
14040         this.okBtn = this.el.select('.tickable-buttons > .btn-ok', true).first();
14041         this.cancelBtn = this.el.select('.tickable-buttons > .btn-cancel', true).first();
14042         
14043         this.okBtn.on('click', this.onTickableFooterButtonClick, this, this.okBtn);
14044         this.cancelBtn.on('click', this.onTickableFooterButtonClick, this, this.cancelBtn);
14045         
14046         this.trigger.setVisibilityMode(Roo.Element.DISPLAY);
14047         this.okBtn.setVisibilityMode(Roo.Element.DISPLAY);
14048         this.cancelBtn.setVisibilityMode(Roo.Element.DISPLAY);
14049         
14050         this.okBtn.hide();
14051         this.cancelBtn.hide();
14052         
14053         var _this = this;
14054         
14055         (function(){
14056             var lw = _this.listWidth || Math.max(_this.inputEl().getWidth(), _this.minListWidth);
14057             _this.list.setWidth(lw);
14058         }).defer(100);
14059         
14060         this.list.on('mouseover', this.onViewOver, this);
14061         this.list.on('mousemove', this.onViewMove, this);
14062         
14063         this.list.on('scroll', this.onViewScroll, this);
14064         
14065         if(!this.tpl){
14066             this.tpl = '<li class="roo-select2-result"><div class="checkbox"><input id="{roo-id}"' + 
14067                 'type="checkbox" {roo-data-checked}><label for="{roo-id}"><b>{' + this.displayField + '}</b></label></div></li>';
14068         }
14069
14070         this.view = new Roo.View(this.list, this.tpl, {
14071             singleSelect:true,
14072             tickable:true,
14073             parent:this,
14074             store: this.store,
14075             selectedClass: this.selectedClass
14076         });
14077         
14078         //this.view.wrapEl.setDisplayed(false);
14079         this.view.on('click', this.onViewClick, this);
14080         
14081         
14082         
14083         this.store.on('beforeload', this.onBeforeLoad, this);
14084         this.store.on('load', this.onLoad, this);
14085         this.store.on('loadexception', this.onLoadException, this);
14086         
14087         if(this.editable){
14088             this.keyNav = new Roo.KeyNav(this.tickableInputEl(), {
14089                 "up" : function(e){
14090                     this.inKeyMode = true;
14091                     this.selectPrev();
14092                 },
14093
14094                 "down" : function(e){
14095                     this.inKeyMode = true;
14096                     this.selectNext();
14097                 },
14098
14099                 "enter" : function(e){
14100                     if(this.fireEvent("specialkey", this, e)){
14101                         this.onViewClick(false);
14102                     }
14103                     
14104                     return true;
14105                 },
14106
14107                 "esc" : function(e){
14108                     this.onTickableFooterButtonClick(e, false, false);
14109                 },
14110
14111                 "tab" : function(e){
14112                     this.fireEvent("specialkey", this, e);
14113                     
14114                     this.onTickableFooterButtonClick(e, false, false);
14115                     
14116                     return true;
14117                 },
14118
14119                 scope : this,
14120
14121                 doRelay : function(e, fn, key){
14122                     if(this.scope.isExpanded()){
14123                        return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
14124                     }
14125                     return true;
14126                 },
14127
14128                 forceKeyDown: true
14129             });
14130         }
14131         
14132         this.queryDelay = Math.max(this.queryDelay || 10,
14133                 this.mode == 'local' ? 10 : 250);
14134         
14135         
14136         this.dqTask = new Roo.util.DelayedTask(this.initQuery, this);
14137         
14138         if(this.typeAhead){
14139             this.taTask = new Roo.util.DelayedTask(this.onTypeAhead, this);
14140         }
14141         
14142         if(this.editable !== false){
14143             this.tickableInputEl().on("keyup", this.onKeyUp, this);
14144         }
14145         
14146         this.indicator = this.indicatorEl();
14147         
14148         if(this.indicator){
14149             this.indicator.setVisibilityMode(Roo.Element.DISPLAY);
14150             this.indicator.hide();
14151         }
14152         
14153     },
14154
14155     onDestroy : function(){
14156         if(this.view){
14157             this.view.setStore(null);
14158             this.view.el.removeAllListeners();
14159             this.view.el.remove();
14160             this.view.purgeListeners();
14161         }
14162         if(this.list){
14163             this.list.dom.innerHTML  = '';
14164         }
14165         
14166         if(this.store){
14167             this.store.un('beforeload', this.onBeforeLoad, this);
14168             this.store.un('load', this.onLoad, this);
14169             this.store.un('loadexception', this.onLoadException, this);
14170         }
14171         Roo.bootstrap.ComboBox.superclass.onDestroy.call(this);
14172     },
14173
14174     // private
14175     fireKey : function(e){
14176         if(e.isNavKeyPress() && !this.list.isVisible()){
14177             this.fireEvent("specialkey", this, e);
14178         }
14179     },
14180
14181     // private
14182     onResize: function(w, h){
14183 //        Roo.bootstrap.ComboBox.superclass.onResize.apply(this, arguments);
14184 //        
14185 //        if(typeof w != 'number'){
14186 //            // we do not handle it!?!?
14187 //            return;
14188 //        }
14189 //        var tw = this.trigger.getWidth();
14190 //       // tw += this.addicon ? this.addicon.getWidth() : 0;
14191 //       // tw += this.editicon ? this.editicon.getWidth() : 0;
14192 //        var x = w - tw;
14193 //        this.inputEl().setWidth( this.adjustWidth('input', x));
14194 //            
14195 //        //this.trigger.setStyle('left', x+'px');
14196 //        
14197 //        if(this.list && this.listWidth === undefined){
14198 //            var lw = Math.max(x + this.trigger.getWidth(), this.minListWidth);
14199 //            this.list.setWidth(lw);
14200 //            this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
14201 //        }
14202         
14203     
14204         
14205     },
14206
14207     /**
14208      * Allow or prevent the user from directly editing the field text.  If false is passed,
14209      * the user will only be able to select from the items defined in the dropdown list.  This method
14210      * is the runtime equivalent of setting the 'editable' config option at config time.
14211      * @param {Boolean} value True to allow the user to directly edit the field text
14212      */
14213     setEditable : function(value){
14214         if(value == this.editable){
14215             return;
14216         }
14217         this.editable = value;
14218         if(!value){
14219             this.inputEl().dom.setAttribute('readOnly', true);
14220             this.inputEl().on('mousedown', this.onTriggerClick,  this);
14221             this.inputEl().addClass('x-combo-noedit');
14222         }else{
14223             this.inputEl().dom.setAttribute('readOnly', false);
14224             this.inputEl().un('mousedown', this.onTriggerClick,  this);
14225             this.inputEl().removeClass('x-combo-noedit');
14226         }
14227     },
14228
14229     // private
14230     
14231     onBeforeLoad : function(combo,opts){
14232         if(!this.hasFocus){
14233             return;
14234         }
14235          if (!opts.add) {
14236             this.list.dom.innerHTML = '<li class="loading-indicator">'+(this.loadingText||'loading')+'</li>' ;
14237          }
14238         this.restrictHeight();
14239         this.selectedIndex = -1;
14240     },
14241
14242     // private
14243     onLoad : function(){
14244         
14245         this.hasQuery = false;
14246         
14247         if(!this.hasFocus){
14248             return;
14249         }
14250         
14251         if(typeof(this.loading) !== 'undefined' && this.loading !== null){
14252             this.loading.hide();
14253         }
14254         
14255         if(this.store.getCount() > 0){
14256             
14257             this.expand();
14258             this.restrictHeight();
14259             if(this.lastQuery == this.allQuery){
14260                 if(this.editable && !this.tickable){
14261                     this.inputEl().dom.select();
14262                 }
14263                 
14264                 if(
14265                     !this.selectByValue(this.value, true) &&
14266                     this.autoFocus && 
14267                     (
14268                         !this.store.lastOptions ||
14269                         typeof(this.store.lastOptions.add) == 'undefined' || 
14270                         this.store.lastOptions.add != true
14271                     )
14272                 ){
14273                     this.select(0, true);
14274                 }
14275             }else{
14276                 if(this.autoFocus){
14277                     this.selectNext();
14278                 }
14279                 if(this.typeAhead && this.lastKey != Roo.EventObject.BACKSPACE && this.lastKey != Roo.EventObject.DELETE){
14280                     this.taTask.delay(this.typeAheadDelay);
14281                 }
14282             }
14283         }else{
14284             this.onEmptyResults();
14285         }
14286         
14287         //this.el.focus();
14288     },
14289     // private
14290     onLoadException : function()
14291     {
14292         this.hasQuery = false;
14293         
14294         if(typeof(this.loading) !== 'undefined' && this.loading !== null){
14295             this.loading.hide();
14296         }
14297         
14298         if(this.tickable && this.editable){
14299             return;
14300         }
14301         
14302         this.collapse();
14303         // only causes errors at present
14304         //Roo.log(this.store.reader.jsonData);
14305         //if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
14306             // fixme
14307             //Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
14308         //}
14309         
14310         
14311     },
14312     // private
14313     onTypeAhead : function(){
14314         if(this.store.getCount() > 0){
14315             var r = this.store.getAt(0);
14316             var newValue = r.data[this.displayField];
14317             var len = newValue.length;
14318             var selStart = this.getRawValue().length;
14319             
14320             if(selStart != len){
14321                 this.setRawValue(newValue);
14322                 this.selectText(selStart, newValue.length);
14323             }
14324         }
14325     },
14326
14327     // private
14328     onSelect : function(record, index){
14329         
14330         if(this.fireEvent('beforeselect', this, record, index) !== false){
14331         
14332             this.setFromData(index > -1 ? record.data : false);
14333             
14334             this.collapse();
14335             this.fireEvent('select', this, record, index);
14336         }
14337     },
14338
14339     /**
14340      * Returns the currently selected field value or empty string if no value is set.
14341      * @return {String} value The selected value
14342      */
14343     getValue : function()
14344     {
14345         if(Roo.isIOS && this.useNativeIOS){
14346             return this.ios_options[this.inputEl().dom.selectedIndex].data[this.valueField];
14347         }
14348         
14349         if(this.multiple){
14350             return (this.hiddenField) ? this.hiddenField.dom.value : this.value;
14351         }
14352         
14353         if(this.valueField){
14354             return typeof this.value != 'undefined' ? this.value : '';
14355         }else{
14356             return Roo.bootstrap.ComboBox.superclass.getValue.call(this);
14357         }
14358     },
14359     
14360     getRawValue : function()
14361     {
14362         if(Roo.isIOS && this.useNativeIOS){
14363             return this.ios_options[this.inputEl().dom.selectedIndex].data[this.displayField];
14364         }
14365         
14366         var v = this.inputEl().getValue();
14367         
14368         return v;
14369     },
14370
14371     /**
14372      * Clears any text/value currently set in the field
14373      */
14374     clearValue : function(){
14375         
14376         if(this.hiddenField){
14377             this.hiddenField.dom.value = '';
14378         }
14379         this.value = '';
14380         this.setRawValue('');
14381         this.lastSelectionText = '';
14382         this.lastData = false;
14383         
14384         var close = this.closeTriggerEl();
14385         
14386         if(close){
14387             close.hide();
14388         }
14389         
14390         this.validate();
14391         
14392     },
14393
14394     /**
14395      * Sets the specified value into the field.  If the value finds a match, the corresponding record text
14396      * will be displayed in the field.  If the value does not match the data value of an existing item,
14397      * and the valueNotFoundText config option is defined, it will be displayed as the default field text.
14398      * Otherwise the field will be blank (although the value will still be set).
14399      * @param {String} value The value to match
14400      */
14401     setValue : function(v)
14402     {
14403         if(Roo.isIOS && this.useNativeIOS){
14404             this.setIOSValue(v);
14405             return;
14406         }
14407         
14408         if(this.multiple){
14409             this.syncValue();
14410             return;
14411         }
14412         
14413         var text = v;
14414         if(this.valueField){
14415             var r = this.findRecord(this.valueField, v);
14416             if(r){
14417                 text = r.data[this.displayField];
14418             }else if(this.valueNotFoundText !== undefined){
14419                 text = this.valueNotFoundText;
14420             }
14421         }
14422         this.lastSelectionText = text;
14423         if(this.hiddenField){
14424             this.hiddenField.dom.value = v;
14425         }
14426         Roo.bootstrap.ComboBox.superclass.setValue.call(this, text);
14427         this.value = v;
14428         
14429         var close = this.closeTriggerEl();
14430         
14431         if(close){
14432             (v && (v.length || v * 1 > 0)) ? close.show() : close.hide();
14433         }
14434         
14435         this.validate();
14436     },
14437     /**
14438      * @property {Object} the last set data for the element
14439      */
14440     
14441     lastData : false,
14442     /**
14443      * Sets the value of the field based on a object which is related to the record format for the store.
14444      * @param {Object} value the value to set as. or false on reset?
14445      */
14446     setFromData : function(o){
14447         
14448         if(this.multiple){
14449             this.addItem(o);
14450             return;
14451         }
14452             
14453         var dv = ''; // display value
14454         var vv = ''; // value value..
14455         this.lastData = o;
14456         if (this.displayField) {
14457             dv = !o || typeof(o[this.displayField]) == 'undefined' ? '' : o[this.displayField];
14458         } else {
14459             // this is an error condition!!!
14460             Roo.log('no  displayField value set for '+ (this.name ? this.name : this.id));
14461         }
14462         
14463         if(this.valueField){
14464             vv = !o || typeof(o[this.valueField]) == 'undefined' ? dv : o[this.valueField];
14465         }
14466         
14467         var close = this.closeTriggerEl();
14468         
14469         if(close){
14470             if(dv.length || vv * 1 > 0){
14471                 close.show() ;
14472                 this.blockFocus=true;
14473             } else {
14474                 close.hide();
14475             }             
14476         }
14477         
14478         if(this.hiddenField){
14479             this.hiddenField.dom.value = vv;
14480             
14481             this.lastSelectionText = dv;
14482             Roo.bootstrap.ComboBox.superclass.setValue.call(this, dv);
14483             this.value = vv;
14484             return;
14485         }
14486         // no hidden field.. - we store the value in 'value', but still display
14487         // display field!!!!
14488         this.lastSelectionText = dv;
14489         Roo.bootstrap.ComboBox.superclass.setValue.call(this, dv);
14490         this.value = vv;
14491         
14492         
14493         
14494     },
14495     // private
14496     reset : function(){
14497         // overridden so that last data is reset..
14498         
14499         if(this.multiple){
14500             this.clearItem();
14501             return;
14502         }
14503         
14504         this.setValue(this.originalValue);
14505         //this.clearInvalid();
14506         this.lastData = false;
14507         if (this.view) {
14508             this.view.clearSelections();
14509         }
14510         
14511         this.validate();
14512     },
14513     // private
14514     findRecord : function(prop, value){
14515         var record;
14516         if(this.store.getCount() > 0){
14517             this.store.each(function(r){
14518                 if(r.data[prop] == value){
14519                     record = r;
14520                     return false;
14521                 }
14522                 return true;
14523             });
14524         }
14525         return record;
14526     },
14527     
14528     getName: function()
14529     {
14530         // returns hidden if it's set..
14531         if (!this.rendered) {return ''};
14532         return !this.hiddenName && this.inputEl().dom.name  ? this.inputEl().dom.name : (this.hiddenName || '');
14533         
14534     },
14535     // private
14536     onViewMove : function(e, t){
14537         this.inKeyMode = false;
14538     },
14539
14540     // private
14541     onViewOver : function(e, t){
14542         if(this.inKeyMode){ // prevent key nav and mouse over conflicts
14543             return;
14544         }
14545         var item = this.view.findItemFromChild(t);
14546         
14547         if(item){
14548             var index = this.view.indexOf(item);
14549             this.select(index, false);
14550         }
14551     },
14552
14553     // private
14554     onViewClick : function(view, doFocus, el, e)
14555     {
14556         var index = this.view.getSelectedIndexes()[0];
14557         
14558         var r = this.store.getAt(index);
14559         
14560         if(this.tickable){
14561             
14562             if(typeof(e) != 'undefined' && e.getTarget().nodeName.toLowerCase() != 'input'){
14563                 return;
14564             }
14565             
14566             var rm = false;
14567             var _this = this;
14568             
14569             Roo.each(this.tickItems, function(v,k){
14570                 
14571                 if(typeof(v) != 'undefined' && v[_this.valueField] == r.data[_this.valueField]){
14572                     Roo.log(v);
14573                     _this.tickItems.splice(k, 1);
14574                     
14575                     if(typeof(e) == 'undefined' && view == false){
14576                         Roo.get(_this.view.getNodes(index, index)[0]).select('input', true).first().dom.checked = false;
14577                     }
14578                     
14579                     rm = true;
14580                     return;
14581                 }
14582             });
14583             
14584             if(rm){
14585                 return;
14586             }
14587             
14588             if(this.fireEvent('tick', this, r, index, Roo.get(_this.view.getNodes(index, index)[0]).select('input', true).first().dom.checked) !== false){
14589                 this.tickItems.push(r.data);
14590             }
14591             
14592             if(typeof(e) == 'undefined' && view == false){
14593                 Roo.get(_this.view.getNodes(index, index)[0]).select('input', true).first().dom.checked = true;
14594             }
14595                     
14596             return;
14597         }
14598         
14599         if(r){
14600             this.onSelect(r, index);
14601         }
14602         if(doFocus !== false && !this.blockFocus){
14603             this.inputEl().focus();
14604         }
14605     },
14606
14607     // private
14608     restrictHeight : function(){
14609         //this.innerList.dom.style.height = '';
14610         //var inner = this.innerList.dom;
14611         //var h = Math.max(inner.clientHeight, inner.offsetHeight, inner.scrollHeight);
14612         //this.innerList.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
14613         //this.list.beginUpdate();
14614         //this.list.setHeight(this.innerList.getHeight()+this.list.getFrameWidth('tb')+(this.resizable?this.handleHeight:0)+this.assetHeight);
14615         this.list.alignTo(this.inputEl(), this.listAlign);
14616         this.list.alignTo(this.inputEl(), this.listAlign);
14617         //this.list.endUpdate();
14618     },
14619
14620     // private
14621     onEmptyResults : function(){
14622         
14623         if(this.tickable && this.editable){
14624             this.hasFocus = false;
14625             this.restrictHeight();
14626             return;
14627         }
14628         
14629         this.collapse();
14630     },
14631
14632     /**
14633      * Returns true if the dropdown list is expanded, else false.
14634      */
14635     isExpanded : function(){
14636         return this.list.isVisible();
14637     },
14638
14639     /**
14640      * Select an item in the dropdown list by its data value. This function does NOT cause the select event to fire.
14641      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
14642      * @param {String} value The data value of the item to select
14643      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
14644      * selected item if it is not currently in view (defaults to true)
14645      * @return {Boolean} True if the value matched an item in the list, else false
14646      */
14647     selectByValue : function(v, scrollIntoView){
14648         if(v !== undefined && v !== null){
14649             var r = this.findRecord(this.valueField || this.displayField, v);
14650             if(r){
14651                 this.select(this.store.indexOf(r), scrollIntoView);
14652                 return true;
14653             }
14654         }
14655         return false;
14656     },
14657
14658     /**
14659      * Select an item in the dropdown list by its numeric index in the list. This function does NOT cause the select event to fire.
14660      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
14661      * @param {Number} index The zero-based index of the list item to select
14662      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
14663      * selected item if it is not currently in view (defaults to true)
14664      */
14665     select : function(index, scrollIntoView){
14666         this.selectedIndex = index;
14667         this.view.select(index);
14668         if(scrollIntoView !== false){
14669             var el = this.view.getNode(index);
14670             /*
14671              * el && !this.multiple && !this.tickable // not sure why we disable multiple before..
14672              */
14673             if(el){
14674                 this.list.scrollChildIntoView(el, false);
14675             }
14676         }
14677     },
14678
14679     // private
14680     selectNext : function(){
14681         var ct = this.store.getCount();
14682         if(ct > 0){
14683             if(this.selectedIndex == -1){
14684                 this.select(0);
14685             }else if(this.selectedIndex < ct-1){
14686                 this.select(this.selectedIndex+1);
14687             }
14688         }
14689     },
14690
14691     // private
14692     selectPrev : function(){
14693         var ct = this.store.getCount();
14694         if(ct > 0){
14695             if(this.selectedIndex == -1){
14696                 this.select(0);
14697             }else if(this.selectedIndex != 0){
14698                 this.select(this.selectedIndex-1);
14699             }
14700         }
14701     },
14702
14703     // private
14704     onKeyUp : function(e){
14705         if(this.editable !== false && !e.isSpecialKey()){
14706             this.lastKey = e.getKey();
14707             this.dqTask.delay(this.queryDelay);
14708         }
14709     },
14710
14711     // private
14712     validateBlur : function(){
14713         return !this.list || !this.list.isVisible();   
14714     },
14715
14716     // private
14717     initQuery : function(){
14718         
14719         var v = this.getRawValue();
14720         
14721         if(this.tickable && this.editable){
14722             v = this.tickableInputEl().getValue();
14723         }
14724         
14725         this.doQuery(v);
14726     },
14727
14728     // private
14729     doForce : function(){
14730         if(this.inputEl().dom.value.length > 0){
14731             this.inputEl().dom.value =
14732                 this.lastSelectionText === undefined ? '' : this.lastSelectionText;
14733              
14734         }
14735     },
14736
14737     /**
14738      * Execute a query to filter the dropdown list.  Fires the beforequery event prior to performing the
14739      * query allowing the query action to be canceled if needed.
14740      * @param {String} query The SQL query to execute
14741      * @param {Boolean} forceAll True to force the query to execute even if there are currently fewer characters
14742      * in the field than the minimum specified by the minChars config option.  It also clears any filter previously
14743      * saved in the current store (defaults to false)
14744      */
14745     doQuery : function(q, forceAll){
14746         
14747         if(q === undefined || q === null){
14748             q = '';
14749         }
14750         var qe = {
14751             query: q,
14752             forceAll: forceAll,
14753             combo: this,
14754             cancel:false
14755         };
14756         if(this.fireEvent('beforequery', qe)===false || qe.cancel){
14757             return false;
14758         }
14759         q = qe.query;
14760         
14761         forceAll = qe.forceAll;
14762         if(forceAll === true || (q.length >= this.minChars)){
14763             
14764             this.hasQuery = true;
14765             
14766             if(this.lastQuery != q || this.alwaysQuery){
14767                 this.lastQuery = q;
14768                 if(this.mode == 'local'){
14769                     this.selectedIndex = -1;
14770                     if(forceAll){
14771                         this.store.clearFilter();
14772                     }else{
14773                         
14774                         if(this.specialFilter){
14775                             this.fireEvent('specialfilter', this);
14776                             this.onLoad();
14777                             return;
14778                         }
14779                         
14780                         this.store.filter(this.displayField, q);
14781                     }
14782                     
14783                     this.store.fireEvent("datachanged", this.store);
14784                     
14785                     this.onLoad();
14786                     
14787                     
14788                 }else{
14789                     
14790                     this.store.baseParams[this.queryParam] = q;
14791                     
14792                     var options = {params : this.getParams(q)};
14793                     
14794                     if(this.loadNext){
14795                         options.add = true;
14796                         options.params.start = this.page * this.pageSize;
14797                     }
14798                     
14799                     this.store.load(options);
14800                     
14801                     /*
14802                      *  this code will make the page width larger, at the beginning, the list not align correctly, 
14803                      *  we should expand the list on onLoad
14804                      *  so command out it
14805                      */
14806 //                    this.expand();
14807                 }
14808             }else{
14809                 this.selectedIndex = -1;
14810                 this.onLoad();   
14811             }
14812         }
14813         
14814         this.loadNext = false;
14815     },
14816     
14817     // private
14818     getParams : function(q){
14819         var p = {};
14820         //p[this.queryParam] = q;
14821         
14822         if(this.pageSize){
14823             p.start = 0;
14824             p.limit = this.pageSize;
14825         }
14826         return p;
14827     },
14828
14829     /**
14830      * Hides the dropdown list if it is currently expanded. Fires the 'collapse' event on completion.
14831      */
14832     collapse : function(){
14833         if(!this.isExpanded()){
14834             return;
14835         }
14836         
14837         this.list.hide();
14838         
14839         this.hasFocus = false;
14840         
14841         if(this.tickable){
14842             this.okBtn.hide();
14843             this.cancelBtn.hide();
14844             this.trigger.show();
14845             
14846             if(this.editable){
14847                 this.tickableInputEl().dom.value = '';
14848                 this.tickableInputEl().blur();
14849             }
14850             
14851         }
14852         
14853         Roo.get(document).un('mousedown', this.collapseIf, this);
14854         Roo.get(document).un('mousewheel', this.collapseIf, this);
14855         if (!this.editable) {
14856             Roo.get(document).un('keydown', this.listKeyPress, this);
14857         }
14858         this.fireEvent('collapse', this);
14859         
14860         this.validate();
14861     },
14862
14863     // private
14864     collapseIf : function(e){
14865         var in_combo  = e.within(this.el);
14866         var in_list =  e.within(this.list);
14867         var is_list = (Roo.get(e.getTarget()).id == this.list.id) ? true : false;
14868         
14869         if (in_combo || in_list || is_list) {
14870             //e.stopPropagation();
14871             return;
14872         }
14873         
14874         if(this.tickable){
14875             this.onTickableFooterButtonClick(e, false, false);
14876         }
14877
14878         this.collapse();
14879         
14880     },
14881
14882     /**
14883      * Expands the dropdown list if it is currently hidden. Fires the 'expand' event on completion.
14884      */
14885     expand : function(){
14886        
14887         if(this.isExpanded() || !this.hasFocus){
14888             return;
14889         }
14890         
14891         var lw = this.listWidth || Math.max(this.inputEl().getWidth(), this.minListWidth);
14892         this.list.setWidth(lw);
14893         
14894         Roo.log('expand');
14895         
14896         this.list.show();
14897         
14898         this.restrictHeight();
14899         
14900         if(this.tickable){
14901             
14902             this.tickItems = Roo.apply([], this.item);
14903             
14904             this.okBtn.show();
14905             this.cancelBtn.show();
14906             this.trigger.hide();
14907             
14908             if(this.editable){
14909                 this.tickableInputEl().focus();
14910             }
14911             
14912         }
14913         
14914         Roo.get(document).on('mousedown', this.collapseIf, this);
14915         Roo.get(document).on('mousewheel', this.collapseIf, this);
14916         if (!this.editable) {
14917             Roo.get(document).on('keydown', this.listKeyPress, this);
14918         }
14919         
14920         this.fireEvent('expand', this);
14921     },
14922
14923     // private
14924     // Implements the default empty TriggerField.onTriggerClick function
14925     onTriggerClick : function(e)
14926     {
14927         Roo.log('trigger click');
14928         
14929         if(this.disabled || !this.triggerList){
14930             return;
14931         }
14932         
14933         this.page = 0;
14934         this.loadNext = false;
14935         
14936         if(this.isExpanded()){
14937             this.collapse();
14938             if (!this.blockFocus) {
14939                 this.inputEl().focus();
14940             }
14941             
14942         }else {
14943             this.hasFocus = true;
14944             if(this.triggerAction == 'all') {
14945                 this.doQuery(this.allQuery, true);
14946             } else {
14947                 this.doQuery(this.getRawValue());
14948             }
14949             if (!this.blockFocus) {
14950                 this.inputEl().focus();
14951             }
14952         }
14953     },
14954     
14955     onTickableTriggerClick : function(e)
14956     {
14957         if(this.disabled){
14958             return;
14959         }
14960         
14961         this.page = 0;
14962         this.loadNext = false;
14963         this.hasFocus = true;
14964         
14965         if(this.triggerAction == 'all') {
14966             this.doQuery(this.allQuery, true);
14967         } else {
14968             this.doQuery(this.getRawValue());
14969         }
14970     },
14971     
14972     onSearchFieldClick : function(e)
14973     {
14974         if(this.hasFocus && !this.disabled && e.getTarget().nodeName.toLowerCase() != 'button'){
14975             this.onTickableFooterButtonClick(e, false, false);
14976             return;
14977         }
14978         
14979         if(this.hasFocus || this.disabled || e.getTarget().nodeName.toLowerCase() == 'button'){
14980             return;
14981         }
14982         
14983         this.page = 0;
14984         this.loadNext = false;
14985         this.hasFocus = true;
14986         
14987         if(this.triggerAction == 'all') {
14988             this.doQuery(this.allQuery, true);
14989         } else {
14990             this.doQuery(this.getRawValue());
14991         }
14992     },
14993     
14994     listKeyPress : function(e)
14995     {
14996         //Roo.log('listkeypress');
14997         // scroll to first matching element based on key pres..
14998         if (e.isSpecialKey()) {
14999             return false;
15000         }
15001         var k = String.fromCharCode(e.getKey()).toUpperCase();
15002         //Roo.log(k);
15003         var match  = false;
15004         var csel = this.view.getSelectedNodes();
15005         var cselitem = false;
15006         if (csel.length) {
15007             var ix = this.view.indexOf(csel[0]);
15008             cselitem  = this.store.getAt(ix);
15009             if (!cselitem.get(this.displayField) || cselitem.get(this.displayField).substring(0,1).toUpperCase() != k) {
15010                 cselitem = false;
15011             }
15012             
15013         }
15014         
15015         this.store.each(function(v) { 
15016             if (cselitem) {
15017                 // start at existing selection.
15018                 if (cselitem.id == v.id) {
15019                     cselitem = false;
15020                 }
15021                 return true;
15022             }
15023                 
15024             if (v.get(this.displayField) && v.get(this.displayField).substring(0,1).toUpperCase() == k) {
15025                 match = this.store.indexOf(v);
15026                 return false;
15027             }
15028             return true;
15029         }, this);
15030         
15031         if (match === false) {
15032             return true; // no more action?
15033         }
15034         // scroll to?
15035         this.view.select(match);
15036         var sn = Roo.get(this.view.getSelectedNodes()[0]);
15037         sn.scrollIntoView(sn.dom.parentNode, false);
15038     },
15039     
15040     onViewScroll : function(e, t){
15041         
15042         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){
15043             return;
15044         }
15045         
15046         this.hasQuery = true;
15047         
15048         this.loading = this.list.select('.loading', true).first();
15049         
15050         if(this.loading === null){
15051             this.list.createChild({
15052                 tag: 'div',
15053                 cls: 'loading roo-select2-more-results roo-select2-active',
15054                 html: 'Loading more results...'
15055             });
15056             
15057             this.loading = this.list.select('.loading', true).first();
15058             
15059             this.loading.setVisibilityMode(Roo.Element.DISPLAY);
15060             
15061             this.loading.hide();
15062         }
15063         
15064         this.loading.show();
15065         
15066         var _combo = this;
15067         
15068         this.page++;
15069         this.loadNext = true;
15070         
15071         (function() { _combo.doQuery(_combo.allQuery, true); }).defer(500);
15072         
15073         return;
15074     },
15075     
15076     addItem : function(o)
15077     {   
15078         var dv = ''; // display value
15079         
15080         if (this.displayField) {
15081             dv = !o || typeof(o[this.displayField]) == 'undefined' ? '' : o[this.displayField];
15082         } else {
15083             // this is an error condition!!!
15084             Roo.log('no  displayField value set for '+ (this.name ? this.name : this.id));
15085         }
15086         
15087         if(!dv.length){
15088             return;
15089         }
15090         
15091         var choice = this.choices.createChild({
15092             tag: 'li',
15093             cls: 'roo-select2-search-choice',
15094             cn: [
15095                 {
15096                     tag: 'div',
15097                     html: dv
15098                 },
15099                 {
15100                     tag: 'a',
15101                     href: '#',
15102                     cls: 'roo-select2-search-choice-close fa fa-times',
15103                     tabindex: '-1'
15104                 }
15105             ]
15106             
15107         }, this.searchField);
15108         
15109         var close = choice.select('a.roo-select2-search-choice-close', true).first();
15110         
15111         close.on('click', this.onRemoveItem, this, { item : choice, data : o} );
15112         
15113         this.item.push(o);
15114         
15115         this.lastData = o;
15116         
15117         this.syncValue();
15118         
15119         this.inputEl().dom.value = '';
15120         
15121         this.validate();
15122     },
15123     
15124     onRemoveItem : function(e, _self, o)
15125     {
15126         e.preventDefault();
15127         
15128         this.lastItem = Roo.apply([], this.item);
15129         
15130         var index = this.item.indexOf(o.data) * 1;
15131         
15132         if( index < 0){
15133             Roo.log('not this item?!');
15134             return;
15135         }
15136         
15137         this.item.splice(index, 1);
15138         o.item.remove();
15139         
15140         this.syncValue();
15141         
15142         this.fireEvent('remove', this, e);
15143         
15144         this.validate();
15145         
15146     },
15147     
15148     syncValue : function()
15149     {
15150         if(!this.item.length){
15151             this.clearValue();
15152             return;
15153         }
15154             
15155         var value = [];
15156         var _this = this;
15157         Roo.each(this.item, function(i){
15158             if(_this.valueField){
15159                 value.push(i[_this.valueField]);
15160                 return;
15161             }
15162
15163             value.push(i);
15164         });
15165
15166         this.value = value.join(',');
15167
15168         if(this.hiddenField){
15169             this.hiddenField.dom.value = this.value;
15170         }
15171         
15172         this.store.fireEvent("datachanged", this.store);
15173         
15174         this.validate();
15175     },
15176     
15177     clearItem : function()
15178     {
15179         if(!this.multiple){
15180             return;
15181         }
15182         
15183         this.item = [];
15184         
15185         Roo.each(this.choices.select('>li.roo-select2-search-choice', true).elements, function(c){
15186            c.remove();
15187         });
15188         
15189         this.syncValue();
15190         
15191         this.validate();
15192         
15193         if(this.tickable && !Roo.isTouch){
15194             this.view.refresh();
15195         }
15196     },
15197     
15198     inputEl: function ()
15199     {
15200         if(Roo.isIOS && this.useNativeIOS){
15201             return this.el.select('select.roo-ios-select', true).first();
15202         }
15203         
15204         if(Roo.isTouch && this.mobileTouchView){
15205             return this.el.select('input.form-control',true).first();
15206         }
15207         
15208         if(this.tickable){
15209             return this.searchField;
15210         }
15211         
15212         return this.el.select('input.form-control',true).first();
15213     },
15214     
15215     onTickableFooterButtonClick : function(e, btn, el)
15216     {
15217         e.preventDefault();
15218         
15219         this.lastItem = Roo.apply([], this.item);
15220         
15221         if(btn && btn.name == 'cancel'){
15222             this.tickItems = Roo.apply([], this.item);
15223             this.collapse();
15224             return;
15225         }
15226         
15227         this.clearItem();
15228         
15229         var _this = this;
15230         
15231         Roo.each(this.tickItems, function(o){
15232             _this.addItem(o);
15233         });
15234         
15235         this.collapse();
15236         
15237     },
15238     
15239     validate : function()
15240     {
15241         if(this.getVisibilityEl().hasClass('hidden')){
15242             return true;
15243         }
15244         
15245         var v = this.getRawValue();
15246         
15247         if(this.multiple){
15248             v = this.getValue();
15249         }
15250         
15251         if(this.disabled || this.allowBlank || v.length){
15252             this.markValid();
15253             return true;
15254         }
15255         
15256         this.markInvalid();
15257         return false;
15258     },
15259     
15260     tickableInputEl : function()
15261     {
15262         if(!this.tickable || !this.editable){
15263             return this.inputEl();
15264         }
15265         
15266         return this.inputEl().select('.roo-select2-search-field-input', true).first();
15267     },
15268     
15269     
15270     getAutoCreateTouchView : function()
15271     {
15272         var id = Roo.id();
15273         
15274         var cfg = {
15275             cls: 'form-group' //input-group
15276         };
15277         
15278         var input =  {
15279             tag: 'input',
15280             id : id,
15281             type : this.inputType,
15282             cls : 'form-control x-combo-noedit',
15283             autocomplete: 'new-password',
15284             placeholder : this.placeholder || '',
15285             readonly : true
15286         };
15287         
15288         if (this.name) {
15289             input.name = this.name;
15290         }
15291         
15292         if (this.size) {
15293             input.cls += ' input-' + this.size;
15294         }
15295         
15296         if (this.disabled) {
15297             input.disabled = true;
15298         }
15299         
15300         var inputblock = {
15301             cls : '',
15302             cn : [
15303                 input
15304             ]
15305         };
15306         
15307         if(this.before){
15308             inputblock.cls += ' input-group';
15309             
15310             inputblock.cn.unshift({
15311                 tag :'span',
15312                 cls : 'input-group-addon input-group-prepend input-group-text',
15313                 html : this.before
15314             });
15315         }
15316         
15317         if(this.removable && !this.multiple){
15318             inputblock.cls += ' roo-removable';
15319             
15320             inputblock.cn.push({
15321                 tag: 'button',
15322                 html : 'x',
15323                 cls : 'roo-combo-removable-btn close'
15324             });
15325         }
15326
15327         if(this.hasFeedback && !this.allowBlank){
15328             
15329             inputblock.cls += ' has-feedback';
15330             
15331             inputblock.cn.push({
15332                 tag: 'span',
15333                 cls: 'glyphicon form-control-feedback'
15334             });
15335             
15336         }
15337         
15338         if (this.after) {
15339             
15340             inputblock.cls += (this.before) ? '' : ' input-group';
15341             
15342             inputblock.cn.push({
15343                 tag :'span',
15344                 cls : 'input-group-addon input-group-append input-group-text',
15345                 html : this.after
15346             });
15347         }
15348
15349         
15350         var ibwrap = inputblock;
15351         
15352         if(this.multiple){
15353             ibwrap = {
15354                 tag: 'ul',
15355                 cls: 'roo-select2-choices',
15356                 cn:[
15357                     {
15358                         tag: 'li',
15359                         cls: 'roo-select2-search-field',
15360                         cn: [
15361
15362                             inputblock
15363                         ]
15364                     }
15365                 ]
15366             };
15367         
15368             
15369         }
15370         
15371         var combobox = {
15372             cls: 'roo-select2-container input-group roo-touchview-combobox ',
15373             cn: [
15374                 {
15375                     tag: 'input',
15376                     type : 'hidden',
15377                     cls: 'form-hidden-field'
15378                 },
15379                 ibwrap
15380             ]
15381         };
15382         
15383         if(!this.multiple && this.showToggleBtn){
15384             
15385             var caret = {
15386                 cls: 'caret'
15387             };
15388             
15389             if (this.caret != false) {
15390                 caret = {
15391                      tag: 'i',
15392                      cls: 'fa fa-' + this.caret
15393                 };
15394                 
15395             }
15396             
15397             combobox.cn.push({
15398                 tag :'span',
15399                 cls : 'input-group-addon input-group-append input-group-text btn dropdown-toggle',
15400                 cn : [
15401                     Roo.bootstrap.version == 3 ? caret : '',
15402                     {
15403                         tag: 'span',
15404                         cls: 'combobox-clear',
15405                         cn  : [
15406                             {
15407                                 tag : 'i',
15408                                 cls: 'icon-remove'
15409                             }
15410                         ]
15411                     }
15412                 ]
15413
15414             })
15415         }
15416         
15417         if(this.multiple){
15418             combobox.cls += ' roo-select2-container-multi';
15419         }
15420         
15421         var align = this.labelAlign || this.parentLabelAlign();
15422         
15423         if (align ==='left' && this.fieldLabel.length) {
15424
15425             cfg.cn = [
15426                 {
15427                    tag : 'i',
15428                    cls : 'roo-required-indicator left-indicator text-danger fa fa-lg fa-star',
15429                    tooltip : 'This field is required'
15430                 },
15431                 {
15432                     tag: 'label',
15433                     cls : 'control-label col-form-label',
15434                     html : this.fieldLabel
15435
15436                 },
15437                 {
15438                     cls : '', 
15439                     cn: [
15440                         combobox
15441                     ]
15442                 }
15443             ];
15444             
15445             var labelCfg = cfg.cn[1];
15446             var contentCfg = cfg.cn[2];
15447             
15448
15449             if(this.indicatorpos == 'right'){
15450                 cfg.cn = [
15451                     {
15452                         tag: 'label',
15453                         'for' :  id,
15454                         cls : 'control-label col-form-label',
15455                         cn : [
15456                             {
15457                                 tag : 'span',
15458                                 html : this.fieldLabel
15459                             },
15460                             {
15461                                 tag : 'i',
15462                                 cls : 'roo-required-indicator right-indicator text-danger fa fa-lg fa-star',
15463                                 tooltip : 'This field is required'
15464                             }
15465                         ]
15466                     },
15467                     {
15468                         cls : "",
15469                         cn: [
15470                             combobox
15471                         ]
15472                     }
15473
15474                 ];
15475                 
15476                 labelCfg = cfg.cn[0];
15477                 contentCfg = cfg.cn[1];
15478             }
15479             
15480            
15481             
15482             if(this.labelWidth > 12){
15483                 labelCfg.style = "width: " + this.labelWidth + 'px';
15484             }
15485             
15486             if(this.labelWidth < 13 && this.labelmd == 0){
15487                 this.labelmd = this.labelWidth;
15488             }
15489             
15490             if(this.labellg > 0){
15491                 labelCfg.cls += ' col-lg-' + this.labellg;
15492                 contentCfg.cls += ' col-lg-' + (12 - this.labellg);
15493             }
15494             
15495             if(this.labelmd > 0){
15496                 labelCfg.cls += ' col-md-' + this.labelmd;
15497                 contentCfg.cls += ' col-md-' + (12 - this.labelmd);
15498             }
15499             
15500             if(this.labelsm > 0){
15501                 labelCfg.cls += ' col-sm-' + this.labelsm;
15502                 contentCfg.cls += ' col-sm-' + (12 - this.labelsm);
15503             }
15504             
15505             if(this.labelxs > 0){
15506                 labelCfg.cls += ' col-xs-' + this.labelxs;
15507                 contentCfg.cls += ' col-xs-' + (12 - this.labelxs);
15508             }
15509                 
15510                 
15511         } else if ( this.fieldLabel.length) {
15512             cfg.cn = [
15513                 {
15514                    tag : 'i',
15515                    cls : 'roo-required-indicator left-indicator text-danger fa fa-lg fa-star',
15516                    tooltip : 'This field is required'
15517                 },
15518                 {
15519                     tag: 'label',
15520                     cls : 'control-label',
15521                     html : this.fieldLabel
15522
15523                 },
15524                 {
15525                     cls : '', 
15526                     cn: [
15527                         combobox
15528                     ]
15529                 }
15530             ];
15531             
15532             if(this.indicatorpos == 'right'){
15533                 cfg.cn = [
15534                     {
15535                         tag: 'label',
15536                         cls : 'control-label',
15537                         html : this.fieldLabel,
15538                         cn : [
15539                             {
15540                                tag : 'i',
15541                                cls : 'roo-required-indicator right-indicator text-danger fa fa-lg fa-star',
15542                                tooltip : 'This field is required'
15543                             }
15544                         ]
15545                     },
15546                     {
15547                         cls : '', 
15548                         cn: [
15549                             combobox
15550                         ]
15551                     }
15552                 ];
15553             }
15554         } else {
15555             cfg.cn = combobox;    
15556         }
15557         
15558         
15559         var settings = this;
15560         
15561         ['xs','sm','md','lg'].map(function(size){
15562             if (settings[size]) {
15563                 cfg.cls += ' col-' + size + '-' + settings[size];
15564             }
15565         });
15566         
15567         return cfg;
15568     },
15569     
15570     initTouchView : function()
15571     {
15572         this.renderTouchView();
15573         
15574         this.touchViewEl.on('scroll', function(){
15575             this.el.dom.scrollTop = 0;
15576         }, this);
15577         
15578         this.originalValue = this.getValue();
15579         
15580         this.triggerEl = this.el.select('span.dropdown-toggle',true).first();
15581         
15582         this.inputEl().on("click", this.showTouchView, this);
15583         if (this.triggerEl) {
15584             this.triggerEl.on("click", this.showTouchView, this);
15585         }
15586         
15587         
15588         this.touchViewFooterEl.select('.roo-touch-view-cancel', true).first().on('click', this.hideTouchView, this);
15589         this.touchViewFooterEl.select('.roo-touch-view-ok', true).first().on('click', this.setTouchViewValue, this);
15590         
15591         this.maskEl = new Roo.LoadMask(this.touchViewEl, { store : this.store, msgCls: 'roo-el-mask-msg' });
15592         
15593         this.store.on('beforeload', this.onTouchViewBeforeLoad, this);
15594         this.store.on('load', this.onTouchViewLoad, this);
15595         this.store.on('loadexception', this.onTouchViewLoadException, this);
15596         
15597         if(this.hiddenName){
15598             
15599             this.hiddenField = this.el.select('input.form-hidden-field',true).first();
15600             
15601             this.hiddenField.dom.value =
15602                 this.hiddenValue !== undefined ? this.hiddenValue :
15603                 this.value !== undefined ? this.value : '';
15604         
15605             this.el.dom.removeAttribute('name');
15606             this.hiddenField.dom.setAttribute('name', this.hiddenName);
15607         }
15608         
15609         if(this.multiple){
15610             this.choices = this.el.select('ul.roo-select2-choices', true).first();
15611             this.searchField = this.el.select('ul li.roo-select2-search-field', true).first();
15612         }
15613         
15614         if(this.removable && !this.multiple){
15615             var close = this.closeTriggerEl();
15616             if(close){
15617                 close.setVisibilityMode(Roo.Element.DISPLAY).hide();
15618                 close.on('click', this.removeBtnClick, this, close);
15619             }
15620         }
15621         /*
15622          * fix the bug in Safari iOS8
15623          */
15624         this.inputEl().on("focus", function(e){
15625             document.activeElement.blur();
15626         }, this);
15627         
15628         this._touchViewMask = Roo.DomHelper.append(document.body, {tag: "div", cls:"x-dlg-mask"}, true);
15629         
15630         return;
15631         
15632         
15633     },
15634     
15635     renderTouchView : function()
15636     {
15637         this.touchViewEl = Roo.get(document.body).createChild(Roo.bootstrap.ComboBox.touchViewTemplate);
15638         this.touchViewEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
15639         
15640         this.touchViewHeaderEl = this.touchViewEl.select('.modal-header', true).first();
15641         this.touchViewHeaderEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
15642         
15643         this.touchViewBodyEl = this.touchViewEl.select('.modal-body', true).first();
15644         this.touchViewBodyEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
15645         this.touchViewBodyEl.setStyle('overflow', 'auto');
15646         
15647         this.touchViewListGroup = this.touchViewBodyEl.select('.list-group', true).first();
15648         this.touchViewListGroup.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
15649         
15650         this.touchViewFooterEl = this.touchViewEl.select('.modal-footer', true).first();
15651         this.touchViewFooterEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
15652         
15653     },
15654     
15655     showTouchView : function()
15656     {
15657         if(this.disabled){
15658             return;
15659         }
15660         
15661         this.touchViewHeaderEl.hide();
15662
15663         if(this.modalTitle.length){
15664             this.touchViewHeaderEl.dom.innerHTML = this.modalTitle;
15665             this.touchViewHeaderEl.show();
15666         }
15667
15668         this.touchViewEl.setStyle('z-index', Roo.bootstrap.Modal.zIndex++);
15669         this.touchViewEl.show();
15670
15671         this.touchViewEl.select('.modal-dialog', true).first().setStyle({ margin : '0px', width : '100%'});
15672         
15673         //this.touchViewEl.select('.modal-dialog > .modal-content', true).first().setSize(
15674         //        Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
15675
15676         var bodyHeight = Roo.lib.Dom.getViewHeight() - this.touchViewFooterEl.getHeight() + this.touchViewBodyEl.getPadding('tb');
15677
15678         if(this.modalTitle.length){
15679             bodyHeight = bodyHeight - this.touchViewHeaderEl.getHeight();
15680         }
15681         
15682         this.touchViewBodyEl.setHeight(bodyHeight);
15683
15684         if(this.animate){
15685             var _this = this;
15686             (function(){ _this.touchViewEl.addClass('in'); }).defer(50);
15687         }else{
15688             this.touchViewEl.addClass('in');
15689         }
15690         
15691         if(this._touchViewMask){
15692             Roo.get(document.body).addClass("x-body-masked");
15693             this._touchViewMask.setSize(Roo.lib.Dom.getViewWidth(true),   Roo.lib.Dom.getViewHeight(true));
15694             this._touchViewMask.setStyle('z-index', 10000);
15695             this._touchViewMask.addClass('show');
15696         }
15697         
15698         this.doTouchViewQuery();
15699         
15700     },
15701     
15702     hideTouchView : function()
15703     {
15704         this.touchViewEl.removeClass('in');
15705
15706         if(this.animate){
15707             var _this = this;
15708             (function(){ _this.touchViewEl.setStyle('display', 'none'); }).defer(150);
15709         }else{
15710             this.touchViewEl.setStyle('display', 'none');
15711         }
15712         
15713         if(this._touchViewMask){
15714             this._touchViewMask.removeClass('show');
15715             Roo.get(document.body).removeClass("x-body-masked");
15716         }
15717     },
15718     
15719     setTouchViewValue : function()
15720     {
15721         if(this.multiple){
15722             this.clearItem();
15723         
15724             var _this = this;
15725
15726             Roo.each(this.tickItems, function(o){
15727                 this.addItem(o);
15728             }, this);
15729         }
15730         
15731         this.hideTouchView();
15732     },
15733     
15734     doTouchViewQuery : function()
15735     {
15736         var qe = {
15737             query: '',
15738             forceAll: true,
15739             combo: this,
15740             cancel:false
15741         };
15742         
15743         if(this.fireEvent('beforequery', qe) ===false || qe.cancel){
15744             return false;
15745         }
15746         
15747         if(!this.alwaysQuery || this.mode == 'local'){
15748             this.onTouchViewLoad();
15749             return;
15750         }
15751         
15752         this.store.load();
15753     },
15754     
15755     onTouchViewBeforeLoad : function(combo,opts)
15756     {
15757         return;
15758     },
15759
15760     // private
15761     onTouchViewLoad : function()
15762     {
15763         if(this.store.getCount() < 1){
15764             this.onTouchViewEmptyResults();
15765             return;
15766         }
15767         
15768         this.clearTouchView();
15769         
15770         var rawValue = this.getRawValue();
15771         
15772         var template = (this.multiple) ? Roo.bootstrap.ComboBox.listItemCheckbox : Roo.bootstrap.ComboBox.listItemRadio;
15773         
15774         this.tickItems = [];
15775         
15776         this.store.data.each(function(d, rowIndex){
15777             var row = this.touchViewListGroup.createChild(template);
15778             
15779             if(typeof(d.data.cls) != 'undefined' && d.data.cls.length){
15780                 row.addClass(d.data.cls);
15781             }
15782             
15783             if(this.displayField && typeof(d.data[this.displayField]) != 'undefined'){
15784                 var cfg = {
15785                     data : d.data,
15786                     html : d.data[this.displayField]
15787                 };
15788                 
15789                 if(this.fireEvent('touchviewdisplay', this, cfg) !== false){
15790                     row.select('.roo-combobox-list-group-item-value', true).first().dom.innerHTML = cfg.html;
15791                 }
15792             }
15793             row.removeClass('selected');
15794             if(!this.multiple && this.valueField &&
15795                     typeof(d.data[this.valueField]) != 'undefined' && d.data[this.valueField] == this.getValue())
15796             {
15797                 // radio buttons..
15798                 row.select('.roo-combobox-list-group-item-box > input', true).first().attr('checked', true);
15799                 row.addClass('selected');
15800             }
15801             
15802             if(this.multiple && this.valueField &&
15803                     typeof(d.data[this.valueField]) != 'undefined' && this.getValue().indexOf(d.data[this.valueField]) != -1)
15804             {
15805                 
15806                 // checkboxes...
15807                 row.select('.roo-combobox-list-group-item-box > input', true).first().attr('checked', true);
15808                 this.tickItems.push(d.data);
15809             }
15810             
15811             row.on('click', this.onTouchViewClick, this, {row : row, rowIndex : rowIndex});
15812             
15813         }, this);
15814         
15815         var firstChecked = this.touchViewListGroup.select('.list-group-item > .roo-combobox-list-group-item-box > input:checked', true).first();
15816         
15817         var bodyHeight = Roo.lib.Dom.getViewHeight() - this.touchViewFooterEl.getHeight() + this.touchViewBodyEl.getPadding('tb');
15818
15819         if(this.modalTitle.length){
15820             bodyHeight = bodyHeight - this.touchViewHeaderEl.getHeight();
15821         }
15822
15823         var listHeight = this.touchViewListGroup.getHeight() + this.touchViewBodyEl.getPadding('tb') * 2;
15824         
15825         if(this.mobile_restrict_height && listHeight < bodyHeight){
15826             this.touchViewBodyEl.setHeight(listHeight);
15827         }
15828         
15829         var _this = this;
15830         
15831         if(firstChecked && listHeight > bodyHeight){
15832             (function() { firstChecked.findParent('li').scrollIntoView(_this.touchViewListGroup.dom); }).defer(500);
15833         }
15834         
15835     },
15836     
15837     onTouchViewLoadException : function()
15838     {
15839         this.hideTouchView();
15840     },
15841     
15842     onTouchViewEmptyResults : function()
15843     {
15844         this.clearTouchView();
15845         
15846         this.touchViewListGroup.createChild(Roo.bootstrap.ComboBox.emptyResult);
15847         
15848         this.touchViewListGroup.select('.roo-combobox-touch-view-empty-result', true).first().dom.innerHTML = this.emptyResultText;
15849         
15850     },
15851     
15852     clearTouchView : function()
15853     {
15854         this.touchViewListGroup.dom.innerHTML = '';
15855     },
15856     
15857     onTouchViewClick : function(e, el, o)
15858     {
15859         e.preventDefault();
15860         
15861         var row = o.row;
15862         var rowIndex = o.rowIndex;
15863         
15864         var r = this.store.getAt(rowIndex);
15865         
15866         if(this.fireEvent('beforeselect', this, r, rowIndex) !== false){
15867             
15868             if(!this.multiple){
15869                 Roo.each(this.touchViewListGroup.select('.list-group-item > .roo-combobox-list-group-item-box > input:checked', true).elements, function(c){
15870                     c.dom.removeAttribute('checked');
15871                 }, this);
15872
15873                 row.select('.roo-combobox-list-group-item-box > input', true).first().attr('checked', true);
15874
15875                 this.setFromData(r.data);
15876
15877                 var close = this.closeTriggerEl();
15878
15879                 if(close){
15880                     close.show();
15881                 }
15882
15883                 this.hideTouchView();
15884
15885                 this.fireEvent('select', this, r, rowIndex);
15886
15887                 return;
15888             }
15889
15890             if(this.valueField && typeof(r.data[this.valueField]) != 'undefined' && this.getValue().indexOf(r.data[this.valueField]) != -1){
15891                 row.select('.roo-combobox-list-group-item-box > input', true).first().dom.removeAttribute('checked');
15892                 this.tickItems.splice(this.tickItems.indexOf(r.data), 1);
15893                 return;
15894             }
15895
15896             row.select('.roo-combobox-list-group-item-box > input', true).first().attr('checked', true);
15897             this.addItem(r.data);
15898             this.tickItems.push(r.data);
15899         }
15900     },
15901     
15902     getAutoCreateNativeIOS : function()
15903     {
15904         var cfg = {
15905             cls: 'form-group' //input-group,
15906         };
15907         
15908         var combobox =  {
15909             tag: 'select',
15910             cls : 'roo-ios-select'
15911         };
15912         
15913         if (this.name) {
15914             combobox.name = this.name;
15915         }
15916         
15917         if (this.disabled) {
15918             combobox.disabled = true;
15919         }
15920         
15921         var settings = this;
15922         
15923         ['xs','sm','md','lg'].map(function(size){
15924             if (settings[size]) {
15925                 cfg.cls += ' col-' + size + '-' + settings[size];
15926             }
15927         });
15928         
15929         cfg.cn = combobox;
15930         
15931         return cfg;
15932         
15933     },
15934     
15935     initIOSView : function()
15936     {
15937         this.store.on('load', this.onIOSViewLoad, this);
15938         
15939         return;
15940     },
15941     
15942     onIOSViewLoad : function()
15943     {
15944         if(this.store.getCount() < 1){
15945             return;
15946         }
15947         
15948         this.clearIOSView();
15949         
15950         if(this.allowBlank) {
15951             
15952             var default_text = '-- SELECT --';
15953             
15954             if(this.placeholder.length){
15955                 default_text = this.placeholder;
15956             }
15957             
15958             if(this.emptyTitle.length){
15959                 default_text += ' - ' + this.emptyTitle + ' -';
15960             }
15961             
15962             var opt = this.inputEl().createChild({
15963                 tag: 'option',
15964                 value : 0,
15965                 html : default_text
15966             });
15967             
15968             var o = {};
15969             o[this.valueField] = 0;
15970             o[this.displayField] = default_text;
15971             
15972             this.ios_options.push({
15973                 data : o,
15974                 el : opt
15975             });
15976             
15977         }
15978         
15979         this.store.data.each(function(d, rowIndex){
15980             
15981             var html = '';
15982             
15983             if(this.displayField && typeof(d.data[this.displayField]) != 'undefined'){
15984                 html = d.data[this.displayField];
15985             }
15986             
15987             var value = '';
15988             
15989             if(this.valueField && typeof(d.data[this.valueField]) != 'undefined'){
15990                 value = d.data[this.valueField];
15991             }
15992             
15993             var option = {
15994                 tag: 'option',
15995                 value : value,
15996                 html : html
15997             };
15998             
15999             if(this.value == d.data[this.valueField]){
16000                 option['selected'] = true;
16001             }
16002             
16003             var opt = this.inputEl().createChild(option);
16004             
16005             this.ios_options.push({
16006                 data : d.data,
16007                 el : opt
16008             });
16009             
16010         }, this);
16011         
16012         this.inputEl().on('change', function(){
16013            this.fireEvent('select', this);
16014         }, this);
16015         
16016     },
16017     
16018     clearIOSView: function()
16019     {
16020         this.inputEl().dom.innerHTML = '';
16021         
16022         this.ios_options = [];
16023     },
16024     
16025     setIOSValue: function(v)
16026     {
16027         this.value = v;
16028         
16029         if(!this.ios_options){
16030             return;
16031         }
16032         
16033         Roo.each(this.ios_options, function(opts){
16034            
16035            opts.el.dom.removeAttribute('selected');
16036            
16037            if(opts.data[this.valueField] != v){
16038                return;
16039            }
16040            
16041            opts.el.dom.setAttribute('selected', true);
16042            
16043         }, this);
16044     }
16045
16046     /** 
16047     * @cfg {Boolean} grow 
16048     * @hide 
16049     */
16050     /** 
16051     * @cfg {Number} growMin 
16052     * @hide 
16053     */
16054     /** 
16055     * @cfg {Number} growMax 
16056     * @hide 
16057     */
16058     /**
16059      * @hide
16060      * @method autoSize
16061      */
16062 });
16063
16064 Roo.apply(Roo.bootstrap.ComboBox,  {
16065     
16066     header : {
16067         tag: 'div',
16068         cls: 'modal-header',
16069         cn: [
16070             {
16071                 tag: 'h4',
16072                 cls: 'modal-title'
16073             }
16074         ]
16075     },
16076     
16077     body : {
16078         tag: 'div',
16079         cls: 'modal-body',
16080         cn: [
16081             {
16082                 tag: 'ul',
16083                 cls: 'list-group'
16084             }
16085         ]
16086     },
16087     
16088     listItemRadio : {
16089         tag: 'li',
16090         cls: 'list-group-item',
16091         cn: [
16092             {
16093                 tag: 'span',
16094                 cls: 'roo-combobox-list-group-item-value'
16095             },
16096             {
16097                 tag: 'div',
16098                 cls: 'roo-combobox-list-group-item-box pull-xs-right radio-inline radio radio-info',
16099                 cn: [
16100                     {
16101                         tag: 'input',
16102                         type: 'radio'
16103                     },
16104                     {
16105                         tag: 'label'
16106                     }
16107                 ]
16108             }
16109         ]
16110     },
16111     
16112     listItemCheckbox : {
16113         tag: 'li',
16114         cls: 'list-group-item',
16115         cn: [
16116             {
16117                 tag: 'span',
16118                 cls: 'roo-combobox-list-group-item-value'
16119             },
16120             {
16121                 tag: 'div',
16122                 cls: 'roo-combobox-list-group-item-box pull-xs-right checkbox-inline checkbox checkbox-info',
16123                 cn: [
16124                     {
16125                         tag: 'input',
16126                         type: 'checkbox'
16127                     },
16128                     {
16129                         tag: 'label'
16130                     }
16131                 ]
16132             }
16133         ]
16134     },
16135     
16136     emptyResult : {
16137         tag: 'div',
16138         cls: 'alert alert-danger roo-combobox-touch-view-empty-result'
16139     },
16140     
16141     footer : {
16142         tag: 'div',
16143         cls: 'modal-footer',
16144         cn: [
16145             {
16146                 tag: 'div',
16147                 cls: 'row',
16148                 cn: [
16149                     {
16150                         tag: 'div',
16151                         cls: 'col-xs-6 text-left',
16152                         cn: {
16153                             tag: 'button',
16154                             cls: 'btn btn-danger roo-touch-view-cancel',
16155                             html: 'Cancel'
16156                         }
16157                     },
16158                     {
16159                         tag: 'div',
16160                         cls: 'col-xs-6 text-right',
16161                         cn: {
16162                             tag: 'button',
16163                             cls: 'btn btn-success roo-touch-view-ok',
16164                             html: 'OK'
16165                         }
16166                     }
16167                 ]
16168             }
16169         ]
16170         
16171     }
16172 });
16173
16174 Roo.apply(Roo.bootstrap.ComboBox,  {
16175     
16176     touchViewTemplate : {
16177         tag: 'div',
16178         cls: 'modal fade roo-combobox-touch-view',
16179         cn: [
16180             {
16181                 tag: 'div',
16182                 cls: 'modal-dialog',
16183                 style : 'position:fixed', // we have to fix position....
16184                 cn: [
16185                     {
16186                         tag: 'div',
16187                         cls: 'modal-content',
16188                         cn: [
16189                             Roo.bootstrap.ComboBox.header,
16190                             Roo.bootstrap.ComboBox.body,
16191                             Roo.bootstrap.ComboBox.footer
16192                         ]
16193                     }
16194                 ]
16195             }
16196         ]
16197     }
16198 });/*
16199  * Based on:
16200  * Ext JS Library 1.1.1
16201  * Copyright(c) 2006-2007, Ext JS, LLC.
16202  *
16203  * Originally Released Under LGPL - original licence link has changed is not relivant.
16204  *
16205  * Fork - LGPL
16206  * <script type="text/javascript">
16207  */
16208
16209 /**
16210  * @class Roo.View
16211  * @extends Roo.util.Observable
16212  * Create a "View" for an element based on a data model or UpdateManager and the supplied DomHelper template. 
16213  * This class also supports single and multi selection modes. <br>
16214  * Create a data model bound view:
16215  <pre><code>
16216  var store = new Roo.data.Store(...);
16217
16218  var view = new Roo.View({
16219     el : "my-element",
16220     tpl : '&lt;div id="{0}"&gt;{2} - {1}&lt;/div&gt;', // auto create template
16221  
16222     singleSelect: true,
16223     selectedClass: "ydataview-selected",
16224     store: store
16225  });
16226
16227  // listen for node click?
16228  view.on("click", function(vw, index, node, e){
16229  alert('Node "' + node.id + '" at index: ' + index + " was clicked.");
16230  });
16231
16232  // load XML data
16233  dataModel.load("foobar.xml");
16234  </code></pre>
16235  For an example of creating a JSON/UpdateManager view, see {@link Roo.JsonView}.
16236  * <br><br>
16237  * <b>Note: The root of your template must be a single node. Table/row implementations may work but are not supported due to
16238  * IE"s limited insertion support with tables and Opera"s faulty event bubbling.</b>
16239  * 
16240  * Note: old style constructor is still suported (container, template, config)
16241  * 
16242  * @constructor
16243  * Create a new View
16244  * @param {Object} config The config object
16245  * 
16246  */
16247 Roo.View = function(config, depreciated_tpl, depreciated_config){
16248     
16249     this.parent = false;
16250     
16251     if (typeof(depreciated_tpl) == 'undefined') {
16252         // new way.. - universal constructor.
16253         Roo.apply(this, config);
16254         this.el  = Roo.get(this.el);
16255     } else {
16256         // old format..
16257         this.el  = Roo.get(config);
16258         this.tpl = depreciated_tpl;
16259         Roo.apply(this, depreciated_config);
16260     }
16261     this.wrapEl  = this.el.wrap().wrap();
16262     ///this.el = this.wrapEla.appendChild(document.createElement("div"));
16263     
16264     
16265     if(typeof(this.tpl) == "string"){
16266         this.tpl = new Roo.Template(this.tpl);
16267     } else {
16268         // support xtype ctors..
16269         this.tpl = new Roo.factory(this.tpl, Roo);
16270     }
16271     
16272     
16273     this.tpl.compile();
16274     
16275     /** @private */
16276     this.addEvents({
16277         /**
16278          * @event beforeclick
16279          * Fires before a click is processed. Returns false to cancel the default action.
16280          * @param {Roo.View} this
16281          * @param {Number} index The index of the target node
16282          * @param {HTMLElement} node The target node
16283          * @param {Roo.EventObject} e The raw event object
16284          */
16285             "beforeclick" : true,
16286         /**
16287          * @event click
16288          * Fires when a template node is clicked.
16289          * @param {Roo.View} this
16290          * @param {Number} index The index of the target node
16291          * @param {HTMLElement} node The target node
16292          * @param {Roo.EventObject} e The raw event object
16293          */
16294             "click" : true,
16295         /**
16296          * @event dblclick
16297          * Fires when a template node is double clicked.
16298          * @param {Roo.View} this
16299          * @param {Number} index The index of the target node
16300          * @param {HTMLElement} node The target node
16301          * @param {Roo.EventObject} e The raw event object
16302          */
16303             "dblclick" : true,
16304         /**
16305          * @event contextmenu
16306          * Fires when a template node is right clicked.
16307          * @param {Roo.View} this
16308          * @param {Number} index The index of the target node
16309          * @param {HTMLElement} node The target node
16310          * @param {Roo.EventObject} e The raw event object
16311          */
16312             "contextmenu" : true,
16313         /**
16314          * @event selectionchange
16315          * Fires when the selected nodes change.
16316          * @param {Roo.View} this
16317          * @param {Array} selections Array of the selected nodes
16318          */
16319             "selectionchange" : true,
16320     
16321         /**
16322          * @event beforeselect
16323          * Fires before a selection is made. If any handlers return false, the selection is cancelled.
16324          * @param {Roo.View} this
16325          * @param {HTMLElement} node The node to be selected
16326          * @param {Array} selections Array of currently selected nodes
16327          */
16328             "beforeselect" : true,
16329         /**
16330          * @event preparedata
16331          * Fires on every row to render, to allow you to change the data.
16332          * @param {Roo.View} this
16333          * @param {Object} data to be rendered (change this)
16334          */
16335           "preparedata" : true
16336           
16337           
16338         });
16339
16340
16341
16342     this.el.on({
16343         "click": this.onClick,
16344         "dblclick": this.onDblClick,
16345         "contextmenu": this.onContextMenu,
16346         scope:this
16347     });
16348
16349     this.selections = [];
16350     this.nodes = [];
16351     this.cmp = new Roo.CompositeElementLite([]);
16352     if(this.store){
16353         this.store = Roo.factory(this.store, Roo.data);
16354         this.setStore(this.store, true);
16355     }
16356     
16357     if ( this.footer && this.footer.xtype) {
16358            
16359          var fctr = this.wrapEl.appendChild(document.createElement("div"));
16360         
16361         this.footer.dataSource = this.store;
16362         this.footer.container = fctr;
16363         this.footer = Roo.factory(this.footer, Roo);
16364         fctr.insertFirst(this.el);
16365         
16366         // this is a bit insane - as the paging toolbar seems to detach the el..
16367 //        dom.parentNode.parentNode.parentNode
16368          // they get detached?
16369     }
16370     
16371     
16372     Roo.View.superclass.constructor.call(this);
16373     
16374     
16375 };
16376
16377 Roo.extend(Roo.View, Roo.util.Observable, {
16378     
16379      /**
16380      * @cfg {Roo.data.Store} store Data store to load data from.
16381      */
16382     store : false,
16383     
16384     /**
16385      * @cfg {String|Roo.Element} el The container element.
16386      */
16387     el : '',
16388     
16389     /**
16390      * @cfg {String|Roo.Template} tpl The template used by this View 
16391      */
16392     tpl : false,
16393     /**
16394      * @cfg {String} dataName the named area of the template to use as the data area
16395      *                          Works with domtemplates roo-name="name"
16396      */
16397     dataName: false,
16398     /**
16399      * @cfg {String} selectedClass The css class to add to selected nodes
16400      */
16401     selectedClass : "x-view-selected",
16402      /**
16403      * @cfg {String} emptyText The empty text to show when nothing is loaded.
16404      */
16405     emptyText : "",
16406     
16407     /**
16408      * @cfg {String} text to display on mask (default Loading)
16409      */
16410     mask : false,
16411     /**
16412      * @cfg {Boolean} multiSelect Allow multiple selection
16413      */
16414     multiSelect : false,
16415     /**
16416      * @cfg {Boolean} singleSelect Allow single selection
16417      */
16418     singleSelect:  false,
16419     
16420     /**
16421      * @cfg {Boolean} toggleSelect - selecting 
16422      */
16423     toggleSelect : false,
16424     
16425     /**
16426      * @cfg {Boolean} tickable - selecting 
16427      */
16428     tickable : false,
16429     
16430     /**
16431      * Returns the element this view is bound to.
16432      * @return {Roo.Element}
16433      */
16434     getEl : function(){
16435         return this.wrapEl;
16436     },
16437     
16438     
16439
16440     /**
16441      * Refreshes the view. - called by datachanged on the store. - do not call directly.
16442      */
16443     refresh : function(){
16444         //Roo.log('refresh');
16445         var t = this.tpl;
16446         
16447         // if we are using something like 'domtemplate', then
16448         // the what gets used is:
16449         // t.applySubtemplate(NAME, data, wrapping data..)
16450         // the outer template then get' applied with
16451         //     the store 'extra data'
16452         // and the body get's added to the
16453         //      roo-name="data" node?
16454         //      <span class='roo-tpl-{name}'></span> ?????
16455         
16456         
16457         
16458         this.clearSelections();
16459         this.el.update("");
16460         var html = [];
16461         var records = this.store.getRange();
16462         if(records.length < 1) {
16463             
16464             // is this valid??  = should it render a template??
16465             
16466             this.el.update(this.emptyText);
16467             return;
16468         }
16469         var el = this.el;
16470         if (this.dataName) {
16471             this.el.update(t.apply(this.store.meta)); //????
16472             el = this.el.child('.roo-tpl-' + this.dataName);
16473         }
16474         
16475         for(var i = 0, len = records.length; i < len; i++){
16476             var data = this.prepareData(records[i].data, i, records[i]);
16477             this.fireEvent("preparedata", this, data, i, records[i]);
16478             
16479             var d = Roo.apply({}, data);
16480             
16481             if(this.tickable){
16482                 Roo.apply(d, {'roo-id' : Roo.id()});
16483                 
16484                 var _this = this;
16485             
16486                 Roo.each(this.parent.item, function(item){
16487                     if(item[_this.parent.valueField] != data[_this.parent.valueField]){
16488                         return;
16489                     }
16490                     Roo.apply(d, {'roo-data-checked' : 'checked'});
16491                 });
16492             }
16493             
16494             html[html.length] = Roo.util.Format.trim(
16495                 this.dataName ?
16496                     t.applySubtemplate(this.dataName, d, this.store.meta) :
16497                     t.apply(d)
16498             );
16499         }
16500         
16501         
16502         
16503         el.update(html.join(""));
16504         this.nodes = el.dom.childNodes;
16505         this.updateIndexes(0);
16506     },
16507     
16508
16509     /**
16510      * Function to override to reformat the data that is sent to
16511      * the template for each node.
16512      * DEPRICATED - use the preparedata event handler.
16513      * @param {Array/Object} data The raw data (array of colData for a data model bound view or
16514      * a JSON object for an UpdateManager bound view).
16515      */
16516     prepareData : function(data, index, record)
16517     {
16518         this.fireEvent("preparedata", this, data, index, record);
16519         return data;
16520     },
16521
16522     onUpdate : function(ds, record){
16523         // Roo.log('on update');   
16524         this.clearSelections();
16525         var index = this.store.indexOf(record);
16526         var n = this.nodes[index];
16527         this.tpl.insertBefore(n, this.prepareData(record.data, index, record));
16528         n.parentNode.removeChild(n);
16529         this.updateIndexes(index, index);
16530     },
16531
16532     
16533     
16534 // --------- FIXME     
16535     onAdd : function(ds, records, index)
16536     {
16537         //Roo.log(['on Add', ds, records, index] );        
16538         this.clearSelections();
16539         if(this.nodes.length == 0){
16540             this.refresh();
16541             return;
16542         }
16543         var n = this.nodes[index];
16544         for(var i = 0, len = records.length; i < len; i++){
16545             var d = this.prepareData(records[i].data, i, records[i]);
16546             if(n){
16547                 this.tpl.insertBefore(n, d);
16548             }else{
16549                 
16550                 this.tpl.append(this.el, d);
16551             }
16552         }
16553         this.updateIndexes(index);
16554     },
16555
16556     onRemove : function(ds, record, index){
16557        // Roo.log('onRemove');
16558         this.clearSelections();
16559         var el = this.dataName  ?
16560             this.el.child('.roo-tpl-' + this.dataName) :
16561             this.el; 
16562         
16563         el.dom.removeChild(this.nodes[index]);
16564         this.updateIndexes(index);
16565     },
16566
16567     /**
16568      * Refresh an individual node.
16569      * @param {Number} index
16570      */
16571     refreshNode : function(index){
16572         this.onUpdate(this.store, this.store.getAt(index));
16573     },
16574
16575     updateIndexes : function(startIndex, endIndex){
16576         var ns = this.nodes;
16577         startIndex = startIndex || 0;
16578         endIndex = endIndex || ns.length - 1;
16579         for(var i = startIndex; i <= endIndex; i++){
16580             ns[i].nodeIndex = i;
16581         }
16582     },
16583
16584     /**
16585      * Changes the data store this view uses and refresh the view.
16586      * @param {Store} store
16587      */
16588     setStore : function(store, initial){
16589         if(!initial && this.store){
16590             this.store.un("datachanged", this.refresh);
16591             this.store.un("add", this.onAdd);
16592             this.store.un("remove", this.onRemove);
16593             this.store.un("update", this.onUpdate);
16594             this.store.un("clear", this.refresh);
16595             this.store.un("beforeload", this.onBeforeLoad);
16596             this.store.un("load", this.onLoad);
16597             this.store.un("loadexception", this.onLoad);
16598         }
16599         if(store){
16600           
16601             store.on("datachanged", this.refresh, this);
16602             store.on("add", this.onAdd, this);
16603             store.on("remove", this.onRemove, this);
16604             store.on("update", this.onUpdate, this);
16605             store.on("clear", this.refresh, this);
16606             store.on("beforeload", this.onBeforeLoad, this);
16607             store.on("load", this.onLoad, this);
16608             store.on("loadexception", this.onLoad, this);
16609         }
16610         
16611         if(store){
16612             this.refresh();
16613         }
16614     },
16615     /**
16616      * onbeforeLoad - masks the loading area.
16617      *
16618      */
16619     onBeforeLoad : function(store,opts)
16620     {
16621          //Roo.log('onBeforeLoad');   
16622         if (!opts.add) {
16623             this.el.update("");
16624         }
16625         this.el.mask(this.mask ? this.mask : "Loading" ); 
16626     },
16627     onLoad : function ()
16628     {
16629         this.el.unmask();
16630     },
16631     
16632
16633     /**
16634      * Returns the template node the passed child belongs to or null if it doesn't belong to one.
16635      * @param {HTMLElement} node
16636      * @return {HTMLElement} The template node
16637      */
16638     findItemFromChild : function(node){
16639         var el = this.dataName  ?
16640             this.el.child('.roo-tpl-' + this.dataName,true) :
16641             this.el.dom; 
16642         
16643         if(!node || node.parentNode == el){
16644                     return node;
16645             }
16646             var p = node.parentNode;
16647             while(p && p != el){
16648             if(p.parentNode == el){
16649                 return p;
16650             }
16651             p = p.parentNode;
16652         }
16653             return null;
16654     },
16655
16656     /** @ignore */
16657     onClick : function(e){
16658         var item = this.findItemFromChild(e.getTarget());
16659         if(item){
16660             var index = this.indexOf(item);
16661             if(this.onItemClick(item, index, e) !== false){
16662                 this.fireEvent("click", this, index, item, e);
16663             }
16664         }else{
16665             this.clearSelections();
16666         }
16667     },
16668
16669     /** @ignore */
16670     onContextMenu : function(e){
16671         var item = this.findItemFromChild(e.getTarget());
16672         if(item){
16673             this.fireEvent("contextmenu", this, this.indexOf(item), item, e);
16674         }
16675     },
16676
16677     /** @ignore */
16678     onDblClick : function(e){
16679         var item = this.findItemFromChild(e.getTarget());
16680         if(item){
16681             this.fireEvent("dblclick", this, this.indexOf(item), item, e);
16682         }
16683     },
16684
16685     onItemClick : function(item, index, e)
16686     {
16687         if(this.fireEvent("beforeclick", this, index, item, e) === false){
16688             return false;
16689         }
16690         if (this.toggleSelect) {
16691             var m = this.isSelected(item) ? 'unselect' : 'select';
16692             //Roo.log(m);
16693             var _t = this;
16694             _t[m](item, true, false);
16695             return true;
16696         }
16697         if(this.multiSelect || this.singleSelect){
16698             if(this.multiSelect && e.shiftKey && this.lastSelection){
16699                 this.select(this.getNodes(this.indexOf(this.lastSelection), index), false);
16700             }else{
16701                 this.select(item, this.multiSelect && e.ctrlKey);
16702                 this.lastSelection = item;
16703             }
16704             
16705             if(!this.tickable){
16706                 e.preventDefault();
16707             }
16708             
16709         }
16710         return true;
16711     },
16712
16713     /**
16714      * Get the number of selected nodes.
16715      * @return {Number}
16716      */
16717     getSelectionCount : function(){
16718         return this.selections.length;
16719     },
16720
16721     /**
16722      * Get the currently selected nodes.
16723      * @return {Array} An array of HTMLElements
16724      */
16725     getSelectedNodes : function(){
16726         return this.selections;
16727     },
16728
16729     /**
16730      * Get the indexes of the selected nodes.
16731      * @return {Array}
16732      */
16733     getSelectedIndexes : function(){
16734         var indexes = [], s = this.selections;
16735         for(var i = 0, len = s.length; i < len; i++){
16736             indexes.push(s[i].nodeIndex);
16737         }
16738         return indexes;
16739     },
16740
16741     /**
16742      * Clear all selections
16743      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange event
16744      */
16745     clearSelections : function(suppressEvent){
16746         if(this.nodes && (this.multiSelect || this.singleSelect) && this.selections.length > 0){
16747             this.cmp.elements = this.selections;
16748             this.cmp.removeClass(this.selectedClass);
16749             this.selections = [];
16750             if(!suppressEvent){
16751                 this.fireEvent("selectionchange", this, this.selections);
16752             }
16753         }
16754     },
16755
16756     /**
16757      * Returns true if the passed node is selected
16758      * @param {HTMLElement/Number} node The node or node index
16759      * @return {Boolean}
16760      */
16761     isSelected : function(node){
16762         var s = this.selections;
16763         if(s.length < 1){
16764             return false;
16765         }
16766         node = this.getNode(node);
16767         return s.indexOf(node) !== -1;
16768     },
16769
16770     /**
16771      * Selects nodes.
16772      * @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
16773      * @param {Boolean} keepExisting (optional) true to keep existing selections
16774      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
16775      */
16776     select : function(nodeInfo, keepExisting, suppressEvent){
16777         if(nodeInfo instanceof Array){
16778             if(!keepExisting){
16779                 this.clearSelections(true);
16780             }
16781             for(var i = 0, len = nodeInfo.length; i < len; i++){
16782                 this.select(nodeInfo[i], true, true);
16783             }
16784             return;
16785         } 
16786         var node = this.getNode(nodeInfo);
16787         if(!node || this.isSelected(node)){
16788             return; // already selected.
16789         }
16790         if(!keepExisting){
16791             this.clearSelections(true);
16792         }
16793         
16794         if(this.fireEvent("beforeselect", this, node, this.selections) !== false){
16795             Roo.fly(node).addClass(this.selectedClass);
16796             this.selections.push(node);
16797             if(!suppressEvent){
16798                 this.fireEvent("selectionchange", this, this.selections);
16799             }
16800         }
16801         
16802         
16803     },
16804       /**
16805      * Unselects nodes.
16806      * @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
16807      * @param {Boolean} keepExisting (optional) true IGNORED (for campatibility with select)
16808      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
16809      */
16810     unselect : function(nodeInfo, keepExisting, suppressEvent)
16811     {
16812         if(nodeInfo instanceof Array){
16813             Roo.each(this.selections, function(s) {
16814                 this.unselect(s, nodeInfo);
16815             }, this);
16816             return;
16817         }
16818         var node = this.getNode(nodeInfo);
16819         if(!node || !this.isSelected(node)){
16820             //Roo.log("not selected");
16821             return; // not selected.
16822         }
16823         // fireevent???
16824         var ns = [];
16825         Roo.each(this.selections, function(s) {
16826             if (s == node ) {
16827                 Roo.fly(node).removeClass(this.selectedClass);
16828
16829                 return;
16830             }
16831             ns.push(s);
16832         },this);
16833         
16834         this.selections= ns;
16835         this.fireEvent("selectionchange", this, this.selections);
16836     },
16837
16838     /**
16839      * Gets a template node.
16840      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
16841      * @return {HTMLElement} The node or null if it wasn't found
16842      */
16843     getNode : function(nodeInfo){
16844         if(typeof nodeInfo == "string"){
16845             return document.getElementById(nodeInfo);
16846         }else if(typeof nodeInfo == "number"){
16847             return this.nodes[nodeInfo];
16848         }
16849         return nodeInfo;
16850     },
16851
16852     /**
16853      * Gets a range template nodes.
16854      * @param {Number} startIndex
16855      * @param {Number} endIndex
16856      * @return {Array} An array of nodes
16857      */
16858     getNodes : function(start, end){
16859         var ns = this.nodes;
16860         start = start || 0;
16861         end = typeof end == "undefined" ? ns.length - 1 : end;
16862         var nodes = [];
16863         if(start <= end){
16864             for(var i = start; i <= end; i++){
16865                 nodes.push(ns[i]);
16866             }
16867         } else{
16868             for(var i = start; i >= end; i--){
16869                 nodes.push(ns[i]);
16870             }
16871         }
16872         return nodes;
16873     },
16874
16875     /**
16876      * Finds the index of the passed node
16877      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
16878      * @return {Number} The index of the node or -1
16879      */
16880     indexOf : function(node){
16881         node = this.getNode(node);
16882         if(typeof node.nodeIndex == "number"){
16883             return node.nodeIndex;
16884         }
16885         var ns = this.nodes;
16886         for(var i = 0, len = ns.length; i < len; i++){
16887             if(ns[i] == node){
16888                 return i;
16889             }
16890         }
16891         return -1;
16892     }
16893 });
16894 /*
16895  * - LGPL
16896  *
16897  * based on jquery fullcalendar
16898  * 
16899  */
16900
16901 Roo.bootstrap = Roo.bootstrap || {};
16902 /**
16903  * @class Roo.bootstrap.Calendar
16904  * @extends Roo.bootstrap.Component
16905  * Bootstrap Calendar class
16906  * @cfg {Boolean} loadMask (true|false) default false
16907  * @cfg {Object} header generate the user specific header of the calendar, default false
16908
16909  * @constructor
16910  * Create a new Container
16911  * @param {Object} config The config object
16912  */
16913
16914
16915
16916 Roo.bootstrap.Calendar = function(config){
16917     Roo.bootstrap.Calendar.superclass.constructor.call(this, config);
16918      this.addEvents({
16919         /**
16920              * @event select
16921              * Fires when a date is selected
16922              * @param {DatePicker} this
16923              * @param {Date} date The selected date
16924              */
16925         'select': true,
16926         /**
16927              * @event monthchange
16928              * Fires when the displayed month changes 
16929              * @param {DatePicker} this
16930              * @param {Date} date The selected month
16931              */
16932         'monthchange': true,
16933         /**
16934              * @event evententer
16935              * Fires when mouse over an event
16936              * @param {Calendar} this
16937              * @param {event} Event
16938              */
16939         'evententer': true,
16940         /**
16941              * @event eventleave
16942              * Fires when the mouse leaves an
16943              * @param {Calendar} this
16944              * @param {event}
16945              */
16946         'eventleave': true,
16947         /**
16948              * @event eventclick
16949              * Fires when the mouse click an
16950              * @param {Calendar} this
16951              * @param {event}
16952              */
16953         'eventclick': true
16954         
16955     });
16956
16957 };
16958
16959 Roo.extend(Roo.bootstrap.Calendar, Roo.bootstrap.Component,  {
16960     
16961      /**
16962      * @cfg {Number} startDay
16963      * Day index at which the week should begin, 0-based (defaults to 0, which is Sunday)
16964      */
16965     startDay : 0,
16966     
16967     loadMask : false,
16968     
16969     header : false,
16970       
16971     getAutoCreate : function(){
16972         
16973         
16974         var fc_button = function(name, corner, style, content ) {
16975             return Roo.apply({},{
16976                 tag : 'span',
16977                 cls : 'fc-button fc-button-'+name+' fc-state-default ' + 
16978                          (corner.length ?
16979                             'fc-corner-' + corner.split(' ').join(' fc-corner-') :
16980                             ''
16981                         ),
16982                 html : '<SPAN class="fc-text-'+style+ '">'+content +'</SPAN>',
16983                 unselectable: 'on'
16984             });
16985         };
16986         
16987         var header = {};
16988         
16989         if(!this.header){
16990             header = {
16991                 tag : 'table',
16992                 cls : 'fc-header',
16993                 style : 'width:100%',
16994                 cn : [
16995                     {
16996                         tag: 'tr',
16997                         cn : [
16998                             {
16999                                 tag : 'td',
17000                                 cls : 'fc-header-left',
17001                                 cn : [
17002                                     fc_button('prev', 'left', 'arrow', '&#8249;' ),
17003                                     fc_button('next', 'right', 'arrow', '&#8250;' ),
17004                                     { tag: 'span', cls: 'fc-header-space' },
17005                                     fc_button('today', 'left right', '', 'today' )  // neds state disabled..
17006
17007
17008                                 ]
17009                             },
17010
17011                             {
17012                                 tag : 'td',
17013                                 cls : 'fc-header-center',
17014                                 cn : [
17015                                     {
17016                                         tag: 'span',
17017                                         cls: 'fc-header-title',
17018                                         cn : {
17019                                             tag: 'H2',
17020                                             html : 'month / year'
17021                                         }
17022                                     }
17023
17024                                 ]
17025                             },
17026                             {
17027                                 tag : 'td',
17028                                 cls : 'fc-header-right',
17029                                 cn : [
17030                               /*      fc_button('month', 'left', '', 'month' ),
17031                                     fc_button('week', '', '', 'week' ),
17032                                     fc_button('day', 'right', '', 'day' )
17033                                 */    
17034
17035                                 ]
17036                             }
17037
17038                         ]
17039                     }
17040                 ]
17041             };
17042         }
17043         
17044         header = this.header;
17045         
17046        
17047         var cal_heads = function() {
17048             var ret = [];
17049             // fixme - handle this.
17050             
17051             for (var i =0; i < Date.dayNames.length; i++) {
17052                 var d = Date.dayNames[i];
17053                 ret.push({
17054                     tag: 'th',
17055                     cls : 'fc-day-header fc-' + d.substring(0,3).toLowerCase() + ' fc-widget-header',
17056                     html : d.substring(0,3)
17057                 });
17058                 
17059             }
17060             ret[0].cls += ' fc-first';
17061             ret[6].cls += ' fc-last';
17062             return ret;
17063         };
17064         var cal_cell = function(n) {
17065             return  {
17066                 tag: 'td',
17067                 cls : 'fc-day fc-'+n + ' fc-widget-content', ///fc-other-month fc-past
17068                 cn : [
17069                     {
17070                         cn : [
17071                             {
17072                                 cls: 'fc-day-number',
17073                                 html: 'D'
17074                             },
17075                             {
17076                                 cls: 'fc-day-content',
17077                              
17078                                 cn : [
17079                                      {
17080                                         style: 'position: relative;' // height: 17px;
17081                                     }
17082                                 ]
17083                             }
17084                             
17085                             
17086                         ]
17087                     }
17088                 ]
17089                 
17090             }
17091         };
17092         var cal_rows = function() {
17093             
17094             var ret = [];
17095             for (var r = 0; r < 6; r++) {
17096                 var row= {
17097                     tag : 'tr',
17098                     cls : 'fc-week',
17099                     cn : []
17100                 };
17101                 
17102                 for (var i =0; i < Date.dayNames.length; i++) {
17103                     var d = Date.dayNames[i];
17104                     row.cn.push(cal_cell(d.substring(0,3).toLowerCase()));
17105
17106                 }
17107                 row.cn[0].cls+=' fc-first';
17108                 row.cn[0].cn[0].style = 'min-height:90px';
17109                 row.cn[6].cls+=' fc-last';
17110                 ret.push(row);
17111                 
17112             }
17113             ret[0].cls += ' fc-first';
17114             ret[4].cls += ' fc-prev-last';
17115             ret[5].cls += ' fc-last';
17116             return ret;
17117             
17118         };
17119         
17120         var cal_table = {
17121             tag: 'table',
17122             cls: 'fc-border-separate',
17123             style : 'width:100%',
17124             cellspacing  : 0,
17125             cn : [
17126                 { 
17127                     tag: 'thead',
17128                     cn : [
17129                         { 
17130                             tag: 'tr',
17131                             cls : 'fc-first fc-last',
17132                             cn : cal_heads()
17133                         }
17134                     ]
17135                 },
17136                 { 
17137                     tag: 'tbody',
17138                     cn : cal_rows()
17139                 }
17140                   
17141             ]
17142         };
17143          
17144          var cfg = {
17145             cls : 'fc fc-ltr',
17146             cn : [
17147                 header,
17148                 {
17149                     cls : 'fc-content',
17150                     style : "position: relative;",
17151                     cn : [
17152                         {
17153                             cls : 'fc-view fc-view-month fc-grid',
17154                             style : 'position: relative',
17155                             unselectable : 'on',
17156                             cn : [
17157                                 {
17158                                     cls : 'fc-event-container',
17159                                     style : 'position:absolute;z-index:8;top:0;left:0;'
17160                                 },
17161                                 cal_table
17162                             ]
17163                         }
17164                     ]
17165     
17166                 }
17167            ] 
17168             
17169         };
17170         
17171          
17172         
17173         return cfg;
17174     },
17175     
17176     
17177     initEvents : function()
17178     {
17179         if(!this.store){
17180             throw "can not find store for calendar";
17181         }
17182         
17183         var mark = {
17184             tag: "div",
17185             cls:"x-dlg-mask",
17186             style: "text-align:center",
17187             cn: [
17188                 {
17189                     tag: "div",
17190                     style: "background-color:white;width:50%;margin:250 auto",
17191                     cn: [
17192                         {
17193                             tag: "img",
17194                             src: Roo.rootURL + '/images/ux/lightbox/loading.gif' 
17195                         },
17196                         {
17197                             tag: "span",
17198                             html: "Loading"
17199                         }
17200                         
17201                     ]
17202                 }
17203             ]
17204         };
17205         this.maskEl = Roo.DomHelper.append(this.el.select('.fc-content', true).first(), mark, true);
17206         
17207         var size = this.el.select('.fc-content', true).first().getSize();
17208         this.maskEl.setSize(size.width, size.height);
17209         this.maskEl.enableDisplayMode("block");
17210         if(!this.loadMask){
17211             this.maskEl.hide();
17212         }
17213         
17214         this.store = Roo.factory(this.store, Roo.data);
17215         this.store.on('load', this.onLoad, this);
17216         this.store.on('beforeload', this.onBeforeLoad, this);
17217         
17218         this.resize();
17219         
17220         this.cells = this.el.select('.fc-day',true);
17221         //Roo.log(this.cells);
17222         this.textNodes = this.el.query('.fc-day-number');
17223         this.cells.addClassOnOver('fc-state-hover');
17224         
17225         this.el.select('.fc-button-prev',true).on('click', this.showPrevMonth, this);
17226         this.el.select('.fc-button-next',true).on('click', this.showNextMonth, this);
17227         this.el.select('.fc-button-today',true).on('click', this.showToday, this);
17228         this.el.select('.fc-button',true).addClassOnOver('fc-state-hover');
17229         
17230         this.on('monthchange', this.onMonthChange, this);
17231         
17232         this.update(new Date().clearTime());
17233     },
17234     
17235     resize : function() {
17236         var sz  = this.el.getSize();
17237         
17238         this.el.select('.fc-day-header',true).setWidth(sz.width / 7);
17239         this.el.select('.fc-day-content div',true).setHeight(34);
17240     },
17241     
17242     
17243     // private
17244     showPrevMonth : function(e){
17245         this.update(this.activeDate.add("mo", -1));
17246     },
17247     showToday : function(e){
17248         this.update(new Date().clearTime());
17249     },
17250     // private
17251     showNextMonth : function(e){
17252         this.update(this.activeDate.add("mo", 1));
17253     },
17254
17255     // private
17256     showPrevYear : function(){
17257         this.update(this.activeDate.add("y", -1));
17258     },
17259
17260     // private
17261     showNextYear : function(){
17262         this.update(this.activeDate.add("y", 1));
17263     },
17264
17265     
17266    // private
17267     update : function(date)
17268     {
17269         var vd = this.activeDate;
17270         this.activeDate = date;
17271 //        if(vd && this.el){
17272 //            var t = date.getTime();
17273 //            if(vd.getMonth() == date.getMonth() && vd.getFullYear() == date.getFullYear()){
17274 //                Roo.log('using add remove');
17275 //                
17276 //                this.fireEvent('monthchange', this, date);
17277 //                
17278 //                this.cells.removeClass("fc-state-highlight");
17279 //                this.cells.each(function(c){
17280 //                   if(c.dateValue == t){
17281 //                       c.addClass("fc-state-highlight");
17282 //                       setTimeout(function(){
17283 //                            try{c.dom.firstChild.focus();}catch(e){}
17284 //                       }, 50);
17285 //                       return false;
17286 //                   }
17287 //                   return true;
17288 //                });
17289 //                return;
17290 //            }
17291 //        }
17292         
17293         var days = date.getDaysInMonth();
17294         
17295         var firstOfMonth = date.getFirstDateOfMonth();
17296         var startingPos = firstOfMonth.getDay()-this.startDay;
17297         
17298         if(startingPos < this.startDay){
17299             startingPos += 7;
17300         }
17301         
17302         var pm = date.add(Date.MONTH, -1);
17303         var prevStart = pm.getDaysInMonth()-startingPos;
17304 //        
17305         this.cells = this.el.select('.fc-day',true);
17306         this.textNodes = this.el.query('.fc-day-number');
17307         this.cells.addClassOnOver('fc-state-hover');
17308         
17309         var cells = this.cells.elements;
17310         var textEls = this.textNodes;
17311         
17312         Roo.each(cells, function(cell){
17313             cell.removeClass([ 'fc-past', 'fc-other-month', 'fc-future', 'fc-state-highlight', 'fc-state-disabled']);
17314         });
17315         
17316         days += startingPos;
17317
17318         // convert everything to numbers so it's fast
17319         var day = 86400000;
17320         var d = (new Date(pm.getFullYear(), pm.getMonth(), prevStart)).clearTime();
17321         //Roo.log(d);
17322         //Roo.log(pm);
17323         //Roo.log(prevStart);
17324         
17325         var today = new Date().clearTime().getTime();
17326         var sel = date.clearTime().getTime();
17327         var min = this.minDate ? this.minDate.clearTime() : Number.NEGATIVE_INFINITY;
17328         var max = this.maxDate ? this.maxDate.clearTime() : Number.POSITIVE_INFINITY;
17329         var ddMatch = this.disabledDatesRE;
17330         var ddText = this.disabledDatesText;
17331         var ddays = this.disabledDays ? this.disabledDays.join("") : false;
17332         var ddaysText = this.disabledDaysText;
17333         var format = this.format;
17334         
17335         var setCellClass = function(cal, cell){
17336             cell.row = 0;
17337             cell.events = [];
17338             cell.more = [];
17339             //Roo.log('set Cell Class');
17340             cell.title = "";
17341             var t = d.getTime();
17342             
17343             //Roo.log(d);
17344             
17345             cell.dateValue = t;
17346             if(t == today){
17347                 cell.className += " fc-today";
17348                 cell.className += " fc-state-highlight";
17349                 cell.title = cal.todayText;
17350             }
17351             if(t == sel){
17352                 // disable highlight in other month..
17353                 //cell.className += " fc-state-highlight";
17354                 
17355             }
17356             // disabling
17357             if(t < min) {
17358                 cell.className = " fc-state-disabled";
17359                 cell.title = cal.minText;
17360                 return;
17361             }
17362             if(t > max) {
17363                 cell.className = " fc-state-disabled";
17364                 cell.title = cal.maxText;
17365                 return;
17366             }
17367             if(ddays){
17368                 if(ddays.indexOf(d.getDay()) != -1){
17369                     cell.title = ddaysText;
17370                     cell.className = " fc-state-disabled";
17371                 }
17372             }
17373             if(ddMatch && format){
17374                 var fvalue = d.dateFormat(format);
17375                 if(ddMatch.test(fvalue)){
17376                     cell.title = ddText.replace("%0", fvalue);
17377                     cell.className = " fc-state-disabled";
17378                 }
17379             }
17380             
17381             if (!cell.initialClassName) {
17382                 cell.initialClassName = cell.dom.className;
17383             }
17384             
17385             cell.dom.className = cell.initialClassName  + ' ' +  cell.className;
17386         };
17387
17388         var i = 0;
17389         
17390         for(; i < startingPos; i++) {
17391             textEls[i].innerHTML = (++prevStart);
17392             d.setDate(d.getDate()+1);
17393             
17394             cells[i].className = "fc-past fc-other-month";
17395             setCellClass(this, cells[i]);
17396         }
17397         
17398         var intDay = 0;
17399         
17400         for(; i < days; i++){
17401             intDay = i - startingPos + 1;
17402             textEls[i].innerHTML = (intDay);
17403             d.setDate(d.getDate()+1);
17404             
17405             cells[i].className = ''; // "x-date-active";
17406             setCellClass(this, cells[i]);
17407         }
17408         var extraDays = 0;
17409         
17410         for(; i < 42; i++) {
17411             textEls[i].innerHTML = (++extraDays);
17412             d.setDate(d.getDate()+1);
17413             
17414             cells[i].className = "fc-future fc-other-month";
17415             setCellClass(this, cells[i]);
17416         }
17417         
17418         this.el.select('.fc-header-title h2',true).update(Date.monthNames[date.getMonth()] + " " + date.getFullYear());
17419         
17420         var totalRows = Math.ceil((date.getDaysInMonth() + date.getFirstDateOfMonth().getDay()) / 7);
17421         
17422         this.el.select('tr.fc-week.fc-prev-last',true).removeClass('fc-last');
17423         this.el.select('tr.fc-week.fc-next-last',true).addClass('fc-last').show();
17424         
17425         if(totalRows != 6){
17426             this.el.select('tr.fc-week.fc-last',true).removeClass('fc-last').addClass('fc-next-last').hide();
17427             this.el.select('tr.fc-week.fc-prev-last',true).addClass('fc-last');
17428         }
17429         
17430         this.fireEvent('monthchange', this, date);
17431         
17432         
17433         /*
17434         if(!this.internalRender){
17435             var main = this.el.dom.firstChild;
17436             var w = main.offsetWidth;
17437             this.el.setWidth(w + this.el.getBorderWidth("lr"));
17438             Roo.fly(main).setWidth(w);
17439             this.internalRender = true;
17440             // opera does not respect the auto grow header center column
17441             // then, after it gets a width opera refuses to recalculate
17442             // without a second pass
17443             if(Roo.isOpera && !this.secondPass){
17444                 main.rows[0].cells[1].style.width = (w - (main.rows[0].cells[0].offsetWidth+main.rows[0].cells[2].offsetWidth)) + "px";
17445                 this.secondPass = true;
17446                 this.update.defer(10, this, [date]);
17447             }
17448         }
17449         */
17450         
17451     },
17452     
17453     findCell : function(dt) {
17454         dt = dt.clearTime().getTime();
17455         var ret = false;
17456         this.cells.each(function(c){
17457             //Roo.log("check " +c.dateValue + '?=' + dt);
17458             if(c.dateValue == dt){
17459                 ret = c;
17460                 return false;
17461             }
17462             return true;
17463         });
17464         
17465         return ret;
17466     },
17467     
17468     findCells : function(ev) {
17469         var s = ev.start.clone().clearTime().getTime();
17470        // Roo.log(s);
17471         var e= ev.end.clone().clearTime().getTime();
17472        // Roo.log(e);
17473         var ret = [];
17474         this.cells.each(function(c){
17475              ////Roo.log("check " +c.dateValue + '<' + e + ' > ' + s);
17476             
17477             if(c.dateValue > e){
17478                 return ;
17479             }
17480             if(c.dateValue < s){
17481                 return ;
17482             }
17483             ret.push(c);
17484         });
17485         
17486         return ret;    
17487     },
17488     
17489 //    findBestRow: function(cells)
17490 //    {
17491 //        var ret = 0;
17492 //        
17493 //        for (var i =0 ; i < cells.length;i++) {
17494 //            ret  = Math.max(cells[i].rows || 0,ret);
17495 //        }
17496 //        return ret;
17497 //        
17498 //    },
17499     
17500     
17501     addItem : function(ev)
17502     {
17503         // look for vertical location slot in
17504         var cells = this.findCells(ev);
17505         
17506 //        ev.row = this.findBestRow(cells);
17507         
17508         // work out the location.
17509         
17510         var crow = false;
17511         var rows = [];
17512         for(var i =0; i < cells.length; i++) {
17513             
17514             cells[i].row = cells[0].row;
17515             
17516             if(i == 0){
17517                 cells[i].row = cells[i].row + 1;
17518             }
17519             
17520             if (!crow) {
17521                 crow = {
17522                     start : cells[i],
17523                     end :  cells[i]
17524                 };
17525                 continue;
17526             }
17527             if (crow.start.getY() == cells[i].getY()) {
17528                 // on same row.
17529                 crow.end = cells[i];
17530                 continue;
17531             }
17532             // different row.
17533             rows.push(crow);
17534             crow = {
17535                 start: cells[i],
17536                 end : cells[i]
17537             };
17538             
17539         }
17540         
17541         rows.push(crow);
17542         ev.els = [];
17543         ev.rows = rows;
17544         ev.cells = cells;
17545         
17546         cells[0].events.push(ev);
17547         
17548         this.calevents.push(ev);
17549     },
17550     
17551     clearEvents: function() {
17552         
17553         if(!this.calevents){
17554             return;
17555         }
17556         
17557         Roo.each(this.cells.elements, function(c){
17558             c.row = 0;
17559             c.events = [];
17560             c.more = [];
17561         });
17562         
17563         Roo.each(this.calevents, function(e) {
17564             Roo.each(e.els, function(el) {
17565                 el.un('mouseenter' ,this.onEventEnter, this);
17566                 el.un('mouseleave' ,this.onEventLeave, this);
17567                 el.remove();
17568             },this);
17569         },this);
17570         
17571         Roo.each(Roo.select('.fc-more-event', true).elements, function(e){
17572             e.remove();
17573         });
17574         
17575     },
17576     
17577     renderEvents: function()
17578     {   
17579         var _this = this;
17580         
17581         this.cells.each(function(c) {
17582             
17583             if(c.row < 5){
17584                 return;
17585             }
17586             
17587             var ev = c.events;
17588             
17589             var r = 4;
17590             if(c.row != c.events.length){
17591                 r = 4 - (4 - (c.row - c.events.length));
17592             }
17593             
17594             c.events = ev.slice(0, r);
17595             c.more = ev.slice(r);
17596             
17597             if(c.more.length && c.more.length == 1){
17598                 c.events.push(c.more.pop());
17599             }
17600             
17601             c.row = (c.row - ev.length) + c.events.length + ((c.more.length) ? 1 : 0);
17602             
17603         });
17604             
17605         this.cells.each(function(c) {
17606             
17607             c.select('.fc-day-content div',true).first().setHeight(Math.max(34, c.row * 20));
17608             
17609             
17610             for (var e = 0; e < c.events.length; e++){
17611                 var ev = c.events[e];
17612                 var rows = ev.rows;
17613                 
17614                 for(var i = 0; i < rows.length; i++) {
17615                 
17616                     // how many rows should it span..
17617
17618                     var  cfg = {
17619                         cls : 'roo-dynamic fc-event fc-event-hori fc-event-draggable ui-draggable',
17620                         style : 'position: absolute', // left: 387px; width: 121px; top: 359px;
17621
17622                         unselectable : "on",
17623                         cn : [
17624                             {
17625                                 cls: 'fc-event-inner',
17626                                 cn : [
17627     //                                {
17628     //                                  tag:'span',
17629     //                                  cls: 'fc-event-time',
17630     //                                  html : cells.length > 1 ? '' : ev.time
17631     //                                },
17632                                     {
17633                                       tag:'span',
17634                                       cls: 'fc-event-title',
17635                                       html : String.format('{0}', ev.title)
17636                                     }
17637
17638
17639                                 ]
17640                             },
17641                             {
17642                                 cls: 'ui-resizable-handle ui-resizable-e',
17643                                 html : '&nbsp;&nbsp;&nbsp'
17644                             }
17645
17646                         ]
17647                     };
17648
17649                     if (i == 0) {
17650                         cfg.cls += ' fc-event-start';
17651                     }
17652                     if ((i+1) == rows.length) {
17653                         cfg.cls += ' fc-event-end';
17654                     }
17655
17656                     var ctr = _this.el.select('.fc-event-container',true).first();
17657                     var cg = ctr.createChild(cfg);
17658
17659                     var sbox = rows[i].start.select('.fc-day-content',true).first().getBox();
17660                     var ebox = rows[i].end.select('.fc-day-content',true).first().getBox();
17661
17662                     var r = (c.more.length) ? 1 : 0;
17663                     cg.setXY([sbox.x +2, sbox.y + ((c.row - c.events.length - r + e) * 20)]);    
17664                     cg.setWidth(ebox.right - sbox.x -2);
17665
17666                     cg.on('mouseenter' ,_this.onEventEnter, _this, ev);
17667                     cg.on('mouseleave' ,_this.onEventLeave, _this, ev);
17668                     cg.on('click', _this.onEventClick, _this, ev);
17669
17670                     ev.els.push(cg);
17671                     
17672                 }
17673                 
17674             }
17675             
17676             
17677             if(c.more.length){
17678                 var  cfg = {
17679                     cls : 'fc-more-event roo-dynamic fc-event fc-event-hori fc-event-draggable ui-draggable fc-event-start fc-event-end',
17680                     style : 'position: absolute',
17681                     unselectable : "on",
17682                     cn : [
17683                         {
17684                             cls: 'fc-event-inner',
17685                             cn : [
17686                                 {
17687                                   tag:'span',
17688                                   cls: 'fc-event-title',
17689                                   html : 'More'
17690                                 }
17691
17692
17693                             ]
17694                         },
17695                         {
17696                             cls: 'ui-resizable-handle ui-resizable-e',
17697                             html : '&nbsp;&nbsp;&nbsp'
17698                         }
17699
17700                     ]
17701                 };
17702
17703                 var ctr = _this.el.select('.fc-event-container',true).first();
17704                 var cg = ctr.createChild(cfg);
17705
17706                 var sbox = c.select('.fc-day-content',true).first().getBox();
17707                 var ebox = c.select('.fc-day-content',true).first().getBox();
17708                 //Roo.log(cg);
17709                 cg.setXY([sbox.x +2, sbox.y +((c.row - 1) * 20)]);    
17710                 cg.setWidth(ebox.right - sbox.x -2);
17711
17712                 cg.on('click', _this.onMoreEventClick, _this, c.more);
17713                 
17714             }
17715             
17716         });
17717         
17718         
17719         
17720     },
17721     
17722     onEventEnter: function (e, el,event,d) {
17723         this.fireEvent('evententer', this, el, event);
17724     },
17725     
17726     onEventLeave: function (e, el,event,d) {
17727         this.fireEvent('eventleave', this, el, event);
17728     },
17729     
17730     onEventClick: function (e, el,event,d) {
17731         this.fireEvent('eventclick', this, el, event);
17732     },
17733     
17734     onMonthChange: function () {
17735         this.store.load();
17736     },
17737     
17738     onMoreEventClick: function(e, el, more)
17739     {
17740         var _this = this;
17741         
17742         this.calpopover.placement = 'right';
17743         this.calpopover.setTitle('More');
17744         
17745         this.calpopover.setContent('');
17746         
17747         var ctr = this.calpopover.el.select('.popover-content', true).first();
17748         
17749         Roo.each(more, function(m){
17750             var cfg = {
17751                 cls : 'fc-event-hori fc-event-draggable',
17752                 html : m.title
17753             };
17754             var cg = ctr.createChild(cfg);
17755             
17756             cg.on('click', _this.onEventClick, _this, m);
17757         });
17758         
17759         this.calpopover.show(el);
17760         
17761         
17762     },
17763     
17764     onLoad: function () 
17765     {   
17766         this.calevents = [];
17767         var cal = this;
17768         
17769         if(this.store.getCount() > 0){
17770             this.store.data.each(function(d){
17771                cal.addItem({
17772                     id : d.data.id,
17773                     start: (typeof(d.data.start_dt) === 'string') ? new Date.parseDate(d.data.start_dt, 'Y-m-d H:i:s') : d.data.start_dt,
17774                     end : (typeof(d.data.end_dt) === 'string') ? new Date.parseDate(d.data.end_dt, 'Y-m-d H:i:s') : d.data.end_dt,
17775                     time : d.data.start_time,
17776                     title : d.data.title,
17777                     description : d.data.description,
17778                     venue : d.data.venue
17779                 });
17780             });
17781         }
17782         
17783         this.renderEvents();
17784         
17785         if(this.calevents.length && this.loadMask){
17786             this.maskEl.hide();
17787         }
17788     },
17789     
17790     onBeforeLoad: function()
17791     {
17792         this.clearEvents();
17793         if(this.loadMask){
17794             this.maskEl.show();
17795         }
17796     }
17797 });
17798
17799  
17800  /*
17801  * - LGPL
17802  *
17803  * element
17804  * 
17805  */
17806
17807 /**
17808  * @class Roo.bootstrap.Popover
17809  * @extends Roo.bootstrap.Component
17810  * Bootstrap Popover class
17811  * @cfg {String} html contents of the popover   (or false to use children..)
17812  * @cfg {String} title of popover (or false to hide)
17813  * @cfg {String} placement how it is placed
17814  * @cfg {String} trigger click || hover (or false to trigger manually)
17815  * @cfg {String} over what (parent or false to trigger manually.)
17816  * @cfg {Number} delay - delay before showing
17817  
17818  * @constructor
17819  * Create a new Popover
17820  * @param {Object} config The config object
17821  */
17822
17823 Roo.bootstrap.Popover = function(config){
17824     Roo.bootstrap.Popover.superclass.constructor.call(this, config);
17825     
17826     this.addEvents({
17827         // raw events
17828          /**
17829          * @event show
17830          * After the popover show
17831          * 
17832          * @param {Roo.bootstrap.Popover} this
17833          */
17834         "show" : true,
17835         /**
17836          * @event hide
17837          * After the popover hide
17838          * 
17839          * @param {Roo.bootstrap.Popover} this
17840          */
17841         "hide" : true
17842     });
17843 };
17844
17845 Roo.extend(Roo.bootstrap.Popover, Roo.bootstrap.Component,  {
17846     
17847     title: 'Fill in a title',
17848     html: false,
17849     
17850     placement : 'right',
17851     trigger : 'hover', // hover
17852     
17853     delay : 0,
17854     
17855     over: 'parent',
17856     
17857     can_build_overlaid : false,
17858     
17859     getChildContainer : function()
17860     {
17861         return this.el.select('.popover-content',true).first();
17862     },
17863     
17864     getAutoCreate : function(){
17865          
17866         var cfg = {
17867            cls : 'popover roo-dynamic',
17868            style: 'display:block',
17869            cn : [
17870                 {
17871                     cls : 'arrow'
17872                 },
17873                 {
17874                     cls : 'popover-inner',
17875                     cn : [
17876                         {
17877                             tag: 'h3',
17878                             cls: 'popover-title popover-header',
17879                             html : this.title
17880                         },
17881                         {
17882                             cls : 'popover-content popover-body',
17883                             html : this.html
17884                         }
17885                     ]
17886                     
17887                 }
17888            ]
17889         };
17890         
17891         return cfg;
17892     },
17893     setTitle: function(str)
17894     {
17895         this.title = str;
17896         this.el.select('.popover-title',true).first().dom.innerHTML = str;
17897     },
17898     setContent: function(str)
17899     {
17900         this.html = str;
17901         this.el.select('.popover-content',true).first().dom.innerHTML = str;
17902     },
17903     // as it get's added to the bottom of the page.
17904     onRender : function(ct, position)
17905     {
17906         Roo.bootstrap.Component.superclass.onRender.call(this, ct, position);
17907         if(!this.el){
17908             var cfg = Roo.apply({},  this.getAutoCreate());
17909             cfg.id = Roo.id();
17910             
17911             if (this.cls) {
17912                 cfg.cls += ' ' + this.cls;
17913             }
17914             if (this.style) {
17915                 cfg.style = this.style;
17916             }
17917             //Roo.log("adding to ");
17918             this.el = Roo.get(document.body).createChild(cfg, position);
17919 //            Roo.log(this.el);
17920         }
17921         this.initEvents();
17922     },
17923     
17924     initEvents : function()
17925     {
17926         this.el.select('.popover-title',true).setVisibilityMode(Roo.Element.DISPLAY);
17927         this.el.enableDisplayMode('block');
17928         this.el.hide();
17929         if (this.over === false) {
17930             return; 
17931         }
17932         if (this.triggers === false) {
17933             return;
17934         }
17935         var on_el = (this.over == 'parent') ? this.parent().el : Roo.get(this.over);
17936         var triggers = this.trigger ? this.trigger.split(' ') : [];
17937         Roo.each(triggers, function(trigger) {
17938         
17939             if (trigger == 'click') {
17940                 on_el.on('click', this.toggle, this);
17941             } else if (trigger != 'manual') {
17942                 var eventIn  = trigger == 'hover' ? 'mouseenter' : 'focusin';
17943                 var eventOut = trigger == 'hover' ? 'mouseleave' : 'focusout';
17944       
17945                 on_el.on(eventIn  ,this.enter, this);
17946                 on_el.on(eventOut, this.leave, this);
17947             }
17948         }, this);
17949         
17950     },
17951     
17952     
17953     // private
17954     timeout : null,
17955     hoverState : null,
17956     
17957     toggle : function () {
17958         this.hoverState == 'in' ? this.leave() : this.enter();
17959     },
17960     
17961     enter : function () {
17962         
17963         clearTimeout(this.timeout);
17964     
17965         this.hoverState = 'in';
17966     
17967         if (!this.delay || !this.delay.show) {
17968             this.show();
17969             return;
17970         }
17971         var _t = this;
17972         this.timeout = setTimeout(function () {
17973             if (_t.hoverState == 'in') {
17974                 _t.show();
17975             }
17976         }, this.delay.show)
17977     },
17978     
17979     leave : function() {
17980         clearTimeout(this.timeout);
17981     
17982         this.hoverState = 'out';
17983     
17984         if (!this.delay || !this.delay.hide) {
17985             this.hide();
17986             return;
17987         }
17988         var _t = this;
17989         this.timeout = setTimeout(function () {
17990             if (_t.hoverState == 'out') {
17991                 _t.hide();
17992             }
17993         }, this.delay.hide)
17994     },
17995     
17996     show : function (on_el)
17997     {
17998         if (!on_el) {
17999             on_el= (this.over == 'parent') ? this.parent().el : Roo.get(this.over);
18000         }
18001         
18002         // set content.
18003         this.el.select('.popover-title',true).first().dom.innerHtml = this.title;
18004         if (this.html !== false) {
18005             this.el.select('.popover-content',true).first().dom.innerHtml = this.html;
18006         }
18007         this.el.removeClass([
18008             'fade','top','bottom', 'left', 'right','in',
18009             'bs-popover-top','bs-popover-bottom', 'bs-popover-left', 'bs-popover-right'
18010         ]);
18011         if (!this.title.length) {
18012             this.el.select('.popover-title',true).hide();
18013         }
18014         
18015         var placement = typeof this.placement == 'function' ?
18016             this.placement.call(this, this.el, on_el) :
18017             this.placement;
18018             
18019         var autoToken = /\s?auto?\s?/i;
18020         var autoPlace = autoToken.test(placement);
18021         if (autoPlace) {
18022             placement = placement.replace(autoToken, '') || 'top';
18023         }
18024         
18025         //this.el.detach()
18026         //this.el.setXY([0,0]);
18027         this.el.show();
18028         this.el.dom.style.display='block';
18029         this.el.addClass(placement);
18030         
18031         //this.el.appendTo(on_el);
18032         
18033         var p = this.getPosition();
18034         var box = this.el.getBox();
18035         
18036         if (autoPlace) {
18037             // fixme..
18038         }
18039         var align = Roo.bootstrap.Popover.alignment[placement];
18040         
18041 //        Roo.log(align);
18042         this.el.alignTo(on_el, align[0],align[1]);
18043         //var arrow = this.el.select('.arrow',true).first();
18044         //arrow.set(align[2], 
18045         
18046         this.el.addClass('in');
18047         
18048         
18049         if (this.el.hasClass('fade')) {
18050             // fade it?
18051         }
18052         
18053         this.hoverState = 'in';
18054         
18055         this.fireEvent('show', this);
18056         
18057     },
18058     hide : function()
18059     {
18060         this.el.setXY([0,0]);
18061         this.el.removeClass('in');
18062         this.el.hide();
18063         this.hoverState = null;
18064         
18065         this.fireEvent('hide', this);
18066     }
18067     
18068 });
18069
18070 Roo.bootstrap.Popover.alignment = {
18071     'left' : ['r-l', [-10,0], 'right bs-popover-right'],
18072     'right' : ['l-r', [10,0], 'left bs-popover-left'],
18073     'bottom' : ['t-b', [0,10], 'top bs-popover-top'],
18074     'top' : [ 'b-t', [0,-10], 'bottom bs-popover-bottom']
18075 };
18076
18077  /*
18078  * - LGPL
18079  *
18080  * Progress
18081  * 
18082  */
18083
18084 /**
18085  * @class Roo.bootstrap.Progress
18086  * @extends Roo.bootstrap.Component
18087  * Bootstrap Progress class
18088  * @cfg {Boolean} striped striped of the progress bar
18089  * @cfg {Boolean} active animated of the progress bar
18090  * 
18091  * 
18092  * @constructor
18093  * Create a new Progress
18094  * @param {Object} config The config object
18095  */
18096
18097 Roo.bootstrap.Progress = function(config){
18098     Roo.bootstrap.Progress.superclass.constructor.call(this, config);
18099 };
18100
18101 Roo.extend(Roo.bootstrap.Progress, Roo.bootstrap.Component,  {
18102     
18103     striped : false,
18104     active: false,
18105     
18106     getAutoCreate : function(){
18107         var cfg = {
18108             tag: 'div',
18109             cls: 'progress'
18110         };
18111         
18112         
18113         if(this.striped){
18114             cfg.cls += ' progress-striped';
18115         }
18116       
18117         if(this.active){
18118             cfg.cls += ' active';
18119         }
18120         
18121         
18122         return cfg;
18123     }
18124    
18125 });
18126
18127  
18128
18129  /*
18130  * - LGPL
18131  *
18132  * ProgressBar
18133  * 
18134  */
18135
18136 /**
18137  * @class Roo.bootstrap.ProgressBar
18138  * @extends Roo.bootstrap.Component
18139  * Bootstrap ProgressBar class
18140  * @cfg {Number} aria_valuenow aria-value now
18141  * @cfg {Number} aria_valuemin aria-value min
18142  * @cfg {Number} aria_valuemax aria-value max
18143  * @cfg {String} label label for the progress bar
18144  * @cfg {String} panel (success | info | warning | danger )
18145  * @cfg {String} role role of the progress bar
18146  * @cfg {String} sr_only text
18147  * 
18148  * 
18149  * @constructor
18150  * Create a new ProgressBar
18151  * @param {Object} config The config object
18152  */
18153
18154 Roo.bootstrap.ProgressBar = function(config){
18155     Roo.bootstrap.ProgressBar.superclass.constructor.call(this, config);
18156 };
18157
18158 Roo.extend(Roo.bootstrap.ProgressBar, Roo.bootstrap.Component,  {
18159     
18160     aria_valuenow : 0,
18161     aria_valuemin : 0,
18162     aria_valuemax : 100,
18163     label : false,
18164     panel : false,
18165     role : false,
18166     sr_only: false,
18167     
18168     getAutoCreate : function()
18169     {
18170         
18171         var cfg = {
18172             tag: 'div',
18173             cls: 'progress-bar',
18174             style: 'width:' + Math.ceil((this.aria_valuenow / this.aria_valuemax) * 100) + '%'
18175         };
18176         
18177         if(this.sr_only){
18178             cfg.cn = {
18179                 tag: 'span',
18180                 cls: 'sr-only',
18181                 html: this.sr_only
18182             }
18183         }
18184         
18185         if(this.role){
18186             cfg.role = this.role;
18187         }
18188         
18189         if(this.aria_valuenow){
18190             cfg['aria-valuenow'] = this.aria_valuenow;
18191         }
18192         
18193         if(this.aria_valuemin){
18194             cfg['aria-valuemin'] = this.aria_valuemin;
18195         }
18196         
18197         if(this.aria_valuemax){
18198             cfg['aria-valuemax'] = this.aria_valuemax;
18199         }
18200         
18201         if(this.label && !this.sr_only){
18202             cfg.html = this.label;
18203         }
18204         
18205         if(this.panel){
18206             cfg.cls += ' progress-bar-' + this.panel;
18207         }
18208         
18209         return cfg;
18210     },
18211     
18212     update : function(aria_valuenow)
18213     {
18214         this.aria_valuenow = aria_valuenow;
18215         
18216         this.el.setStyle('width', Math.ceil((this.aria_valuenow / this.aria_valuemax) * 100) + '%');
18217     }
18218    
18219 });
18220
18221  
18222
18223  /*
18224  * - LGPL
18225  *
18226  * column
18227  * 
18228  */
18229
18230 /**
18231  * @class Roo.bootstrap.TabGroup
18232  * @extends Roo.bootstrap.Column
18233  * Bootstrap Column class
18234  * @cfg {String} navId the navigation id (for use with navbars) - will be auto generated if it does not exist..
18235  * @cfg {Boolean} carousel true to make the group behave like a carousel
18236  * @cfg {Boolean} bullets show bullets for the panels
18237  * @cfg {Boolean} autoslide (true|false) auto slide .. default false
18238  * @cfg {Number} timer auto slide timer .. default 0 millisecond
18239  * @cfg {Boolean} showarrow (true|false) show arrow default true
18240  * 
18241  * @constructor
18242  * Create a new TabGroup
18243  * @param {Object} config The config object
18244  */
18245
18246 Roo.bootstrap.TabGroup = function(config){
18247     Roo.bootstrap.TabGroup.superclass.constructor.call(this, config);
18248     if (!this.navId) {
18249         this.navId = Roo.id();
18250     }
18251     this.tabs = [];
18252     Roo.bootstrap.TabGroup.register(this);
18253     
18254 };
18255
18256 Roo.extend(Roo.bootstrap.TabGroup, Roo.bootstrap.Column,  {
18257     
18258     carousel : false,
18259     transition : false,
18260     bullets : 0,
18261     timer : 0,
18262     autoslide : false,
18263     slideFn : false,
18264     slideOnTouch : false,
18265     showarrow : true,
18266     
18267     getAutoCreate : function()
18268     {
18269         var cfg = Roo.apply({}, Roo.bootstrap.TabGroup.superclass.getAutoCreate.call(this));
18270         
18271         cfg.cls += ' tab-content';
18272         
18273         if (this.carousel) {
18274             cfg.cls += ' carousel slide';
18275             
18276             cfg.cn = [{
18277                cls : 'carousel-inner',
18278                cn : []
18279             }];
18280         
18281             if(this.bullets  && !Roo.isTouch){
18282                 
18283                 var bullets = {
18284                     cls : 'carousel-bullets',
18285                     cn : []
18286                 };
18287                
18288                 if(this.bullets_cls){
18289                     bullets.cls = bullets.cls + ' ' + this.bullets_cls;
18290                 }
18291                 
18292                 bullets.cn.push({
18293                     cls : 'clear'
18294                 });
18295                 
18296                 cfg.cn[0].cn.push(bullets);
18297             }
18298             
18299             if(this.showarrow){
18300                 cfg.cn[0].cn.push({
18301                     tag : 'div',
18302                     class : 'carousel-arrow',
18303                     cn : [
18304                         {
18305                             tag : 'div',
18306                             class : 'carousel-prev',
18307                             cn : [
18308                                 {
18309                                     tag : 'i',
18310                                     class : 'fa fa-chevron-left'
18311                                 }
18312                             ]
18313                         },
18314                         {
18315                             tag : 'div',
18316                             class : 'carousel-next',
18317                             cn : [
18318                                 {
18319                                     tag : 'i',
18320                                     class : 'fa fa-chevron-right'
18321                                 }
18322                             ]
18323                         }
18324                     ]
18325                 });
18326             }
18327             
18328         }
18329         
18330         return cfg;
18331     },
18332     
18333     initEvents:  function()
18334     {
18335 //        if(Roo.isTouch && this.slideOnTouch && !this.showarrow){
18336 //            this.el.on("touchstart", this.onTouchStart, this);
18337 //        }
18338         
18339         if(this.autoslide){
18340             var _this = this;
18341             
18342             this.slideFn = window.setInterval(function() {
18343                 _this.showPanelNext();
18344             }, this.timer);
18345         }
18346         
18347         if(this.showarrow){
18348             this.el.select('.carousel-prev', true).first().on('click', this.showPanelPrev, this);
18349             this.el.select('.carousel-next', true).first().on('click', this.showPanelNext, this);
18350         }
18351         
18352         
18353     },
18354     
18355 //    onTouchStart : function(e, el, o)
18356 //    {
18357 //        if(!this.slideOnTouch || !Roo.isTouch || Roo.get(e.getTarget()).hasClass('roo-button-text')){
18358 //            return;
18359 //        }
18360 //        
18361 //        this.showPanelNext();
18362 //    },
18363     
18364     
18365     getChildContainer : function()
18366     {
18367         return this.carousel ? this.el.select('.carousel-inner', true).first() : this.el;
18368     },
18369     
18370     /**
18371     * register a Navigation item
18372     * @param {Roo.bootstrap.NavItem} the navitem to add
18373     */
18374     register : function(item)
18375     {
18376         this.tabs.push( item);
18377         item.navId = this.navId; // not really needed..
18378         this.addBullet();
18379     
18380     },
18381     
18382     getActivePanel : function()
18383     {
18384         var r = false;
18385         Roo.each(this.tabs, function(t) {
18386             if (t.active) {
18387                 r = t;
18388                 return false;
18389             }
18390             return null;
18391         });
18392         return r;
18393         
18394     },
18395     getPanelByName : function(n)
18396     {
18397         var r = false;
18398         Roo.each(this.tabs, function(t) {
18399             if (t.tabId == n) {
18400                 r = t;
18401                 return false;
18402             }
18403             return null;
18404         });
18405         return r;
18406     },
18407     indexOfPanel : function(p)
18408     {
18409         var r = false;
18410         Roo.each(this.tabs, function(t,i) {
18411             if (t.tabId == p.tabId) {
18412                 r = i;
18413                 return false;
18414             }
18415             return null;
18416         });
18417         return r;
18418     },
18419     /**
18420      * show a specific panel
18421      * @param {Roo.bootstrap.TabPanel|number|string} panel to change to (use the tabId to specify a specific one)
18422      * @return {boolean} false if panel was not shown (invalid entry or beforedeactivate fails.)
18423      */
18424     showPanel : function (pan)
18425     {
18426         if(this.transition || typeof(pan) == 'undefined'){
18427             Roo.log("waiting for the transitionend");
18428             return false;
18429         }
18430         
18431         if (typeof(pan) == 'number') {
18432             pan = this.tabs[pan];
18433         }
18434         
18435         if (typeof(pan) == 'string') {
18436             pan = this.getPanelByName(pan);
18437         }
18438         
18439         var cur = this.getActivePanel();
18440         
18441         if(!pan || !cur){
18442             Roo.log('pan or acitve pan is undefined');
18443             return false;
18444         }
18445         
18446         if (pan.tabId == this.getActivePanel().tabId) {
18447             return true;
18448         }
18449         
18450         if (false === cur.fireEvent('beforedeactivate')) {
18451             return false;
18452         }
18453         
18454         if(this.bullets > 0 && !Roo.isTouch){
18455             this.setActiveBullet(this.indexOfPanel(pan));
18456         }
18457         
18458         if (this.carousel && typeof(Roo.get(document.body).dom.style.transition) != 'undefined') {
18459             
18460             //class="carousel-item carousel-item-next carousel-item-left"
18461             
18462             this.transition = true;
18463             var dir = this.indexOfPanel(pan) > this.indexOfPanel(cur)  ? 'next' : 'prev';
18464             var lr = dir == 'next' ? 'left' : 'right';
18465             pan.el.addClass(dir); // or prev
18466             pan.el.addClass('carousel-item-' + dir); // or prev
18467             pan.el.dom.offsetWidth; // find the offset with - causing a reflow?
18468             cur.el.addClass(lr); // or right
18469             pan.el.addClass(lr);
18470             cur.el.addClass('carousel-item-' +lr); // or right
18471             pan.el.addClass('carousel-item-' +lr);
18472             
18473             
18474             var _this = this;
18475             cur.el.on('transitionend', function() {
18476                 Roo.log("trans end?");
18477                 
18478                 pan.el.removeClass([lr,dir, 'carousel-item-' + lr, 'carousel-item-' + dir]);
18479                 pan.setActive(true);
18480                 
18481                 cur.el.removeClass([lr, 'carousel-item-' + lr]);
18482                 cur.setActive(false);
18483                 
18484                 _this.transition = false;
18485                 
18486             }, this, { single:  true } );
18487             
18488             return true;
18489         }
18490         
18491         cur.setActive(false);
18492         pan.setActive(true);
18493         
18494         return true;
18495         
18496     },
18497     showPanelNext : function()
18498     {
18499         var i = this.indexOfPanel(this.getActivePanel());
18500         
18501         if (i >= this.tabs.length - 1 && !this.autoslide) {
18502             return;
18503         }
18504         
18505         if (i >= this.tabs.length - 1 && this.autoslide) {
18506             i = -1;
18507         }
18508         
18509         this.showPanel(this.tabs[i+1]);
18510     },
18511     
18512     showPanelPrev : function()
18513     {
18514         var i = this.indexOfPanel(this.getActivePanel());
18515         
18516         if (i  < 1 && !this.autoslide) {
18517             return;
18518         }
18519         
18520         if (i < 1 && this.autoslide) {
18521             i = this.tabs.length;
18522         }
18523         
18524         this.showPanel(this.tabs[i-1]);
18525     },
18526     
18527     
18528     addBullet: function()
18529     {
18530         if(!this.bullets || Roo.isTouch){
18531             return;
18532         }
18533         var ctr = this.el.select('.carousel-bullets',true).first();
18534         var i = this.el.select('.carousel-bullets .bullet',true).getCount() ;
18535         var bullet = ctr.createChild({
18536             cls : 'bullet bullet-' + i
18537         },ctr.dom.lastChild);
18538         
18539         
18540         var _this = this;
18541         
18542         bullet.on('click', (function(e, el, o, ii, t){
18543
18544             e.preventDefault();
18545
18546             this.showPanel(ii);
18547
18548             if(this.autoslide && this.slideFn){
18549                 clearInterval(this.slideFn);
18550                 this.slideFn = window.setInterval(function() {
18551                     _this.showPanelNext();
18552                 }, this.timer);
18553             }
18554
18555         }).createDelegate(this, [i, bullet], true));
18556                 
18557         
18558     },
18559      
18560     setActiveBullet : function(i)
18561     {
18562         if(Roo.isTouch){
18563             return;
18564         }
18565         
18566         Roo.each(this.el.select('.bullet', true).elements, function(el){
18567             el.removeClass('selected');
18568         });
18569
18570         var bullet = this.el.select('.bullet-' + i, true).first();
18571         
18572         if(!bullet){
18573             return;
18574         }
18575         
18576         bullet.addClass('selected');
18577     }
18578     
18579     
18580   
18581 });
18582
18583  
18584
18585  
18586  
18587 Roo.apply(Roo.bootstrap.TabGroup, {
18588     
18589     groups: {},
18590      /**
18591     * register a Navigation Group
18592     * @param {Roo.bootstrap.NavGroup} the navgroup to add
18593     */
18594     register : function(navgrp)
18595     {
18596         this.groups[navgrp.navId] = navgrp;
18597         
18598     },
18599     /**
18600     * fetch a Navigation Group based on the navigation ID
18601     * if one does not exist , it will get created.
18602     * @param {string} the navgroup to add
18603     * @returns {Roo.bootstrap.NavGroup} the navgroup 
18604     */
18605     get: function(navId) {
18606         if (typeof(this.groups[navId]) == 'undefined') {
18607             this.register(new Roo.bootstrap.TabGroup({ navId : navId }));
18608         }
18609         return this.groups[navId] ;
18610     }
18611     
18612     
18613     
18614 });
18615
18616  /*
18617  * - LGPL
18618  *
18619  * TabPanel
18620  * 
18621  */
18622
18623 /**
18624  * @class Roo.bootstrap.TabPanel
18625  * @extends Roo.bootstrap.Component
18626  * Bootstrap TabPanel class
18627  * @cfg {Boolean} active panel active
18628  * @cfg {String} html panel content
18629  * @cfg {String} tabId  unique tab ID (will be autogenerated if not set. - used to match TabItem to Panel)
18630  * @cfg {String} navId The Roo.bootstrap.NavGroup which triggers show hide ()
18631  * @cfg {String} href click to link..
18632  * 
18633  * 
18634  * @constructor
18635  * Create a new TabPanel
18636  * @param {Object} config The config object
18637  */
18638
18639 Roo.bootstrap.TabPanel = function(config){
18640     Roo.bootstrap.TabPanel.superclass.constructor.call(this, config);
18641     this.addEvents({
18642         /**
18643              * @event changed
18644              * Fires when the active status changes
18645              * @param {Roo.bootstrap.TabPanel} this
18646              * @param {Boolean} state the new state
18647             
18648          */
18649         'changed': true,
18650         /**
18651              * @event beforedeactivate
18652              * Fires before a tab is de-activated - can be used to do validation on a form.
18653              * @param {Roo.bootstrap.TabPanel} this
18654              * @return {Boolean} false if there is an error
18655             
18656          */
18657         'beforedeactivate': true
18658      });
18659     
18660     this.tabId = this.tabId || Roo.id();
18661   
18662 };
18663
18664 Roo.extend(Roo.bootstrap.TabPanel, Roo.bootstrap.Component,  {
18665     
18666     active: false,
18667     html: false,
18668     tabId: false,
18669     navId : false,
18670     href : '',
18671     
18672     getAutoCreate : function(){
18673         
18674         
18675         var cfg = {
18676             tag: 'div',
18677             // item is needed for carousel - not sure if it has any effect otherwise
18678             cls: 'carousel-item tab-pane item' + ((this.href.length) ? ' clickable ' : ''),
18679             html: this.html || ''
18680         };
18681         
18682         if(this.active){
18683             cfg.cls += ' active';
18684         }
18685         
18686         if(this.tabId){
18687             cfg.tabId = this.tabId;
18688         }
18689         
18690         
18691         
18692         return cfg;
18693     },
18694     
18695     initEvents:  function()
18696     {
18697         var p = this.parent();
18698         
18699         this.navId = this.navId || p.navId;
18700         
18701         if (typeof(this.navId) != 'undefined') {
18702             // not really needed.. but just in case.. parent should be a NavGroup.
18703             var tg = Roo.bootstrap.TabGroup.get(this.navId);
18704             
18705             tg.register(this);
18706             
18707             var i = tg.tabs.length - 1;
18708             
18709             if(this.active && tg.bullets > 0 && i < tg.bullets){
18710                 tg.setActiveBullet(i);
18711             }
18712         }
18713         
18714         this.el.on('click', this.onClick, this);
18715         
18716         if(Roo.isTouch){
18717             this.el.on("touchstart", this.onTouchStart, this);
18718             this.el.on("touchmove", this.onTouchMove, this);
18719             this.el.on("touchend", this.onTouchEnd, this);
18720         }
18721         
18722     },
18723     
18724     onRender : function(ct, position)
18725     {
18726         Roo.bootstrap.TabPanel.superclass.onRender.call(this, ct, position);
18727     },
18728     
18729     setActive : function(state)
18730     {
18731         Roo.log("panel - set active " + this.tabId + "=" + state);
18732         
18733         this.active = state;
18734         if (!state) {
18735             this.el.removeClass('active');
18736             
18737         } else  if (!this.el.hasClass('active')) {
18738             this.el.addClass('active');
18739         }
18740         
18741         this.fireEvent('changed', this, state);
18742     },
18743     
18744     onClick : function(e)
18745     {
18746         e.preventDefault();
18747         
18748         if(!this.href.length){
18749             return;
18750         }
18751         
18752         window.location.href = this.href;
18753     },
18754     
18755     startX : 0,
18756     startY : 0,
18757     endX : 0,
18758     endY : 0,
18759     swiping : false,
18760     
18761     onTouchStart : function(e)
18762     {
18763         this.swiping = false;
18764         
18765         this.startX = e.browserEvent.touches[0].clientX;
18766         this.startY = e.browserEvent.touches[0].clientY;
18767     },
18768     
18769     onTouchMove : function(e)
18770     {
18771         this.swiping = true;
18772         
18773         this.endX = e.browserEvent.touches[0].clientX;
18774         this.endY = e.browserEvent.touches[0].clientY;
18775     },
18776     
18777     onTouchEnd : function(e)
18778     {
18779         if(!this.swiping){
18780             this.onClick(e);
18781             return;
18782         }
18783         
18784         var tabGroup = this.parent();
18785         
18786         if(this.endX > this.startX){ // swiping right
18787             tabGroup.showPanelPrev();
18788             return;
18789         }
18790         
18791         if(this.startX > this.endX){ // swiping left
18792             tabGroup.showPanelNext();
18793             return;
18794         }
18795     }
18796     
18797     
18798 });
18799  
18800
18801  
18802
18803  /*
18804  * - LGPL
18805  *
18806  * DateField
18807  * 
18808  */
18809
18810 /**
18811  * @class Roo.bootstrap.DateField
18812  * @extends Roo.bootstrap.Input
18813  * Bootstrap DateField class
18814  * @cfg {Number} weekStart default 0
18815  * @cfg {String} viewMode default empty, (months|years)
18816  * @cfg {String} minViewMode default empty, (months|years)
18817  * @cfg {Number} startDate default -Infinity
18818  * @cfg {Number} endDate default Infinity
18819  * @cfg {Boolean} todayHighlight default false
18820  * @cfg {Boolean} todayBtn default false
18821  * @cfg {Boolean} calendarWeeks default false
18822  * @cfg {Object} daysOfWeekDisabled default empty
18823  * @cfg {Boolean} singleMode default false (true | false)
18824  * 
18825  * @cfg {Boolean} keyboardNavigation default true
18826  * @cfg {String} language default en
18827  * 
18828  * @constructor
18829  * Create a new DateField
18830  * @param {Object} config The config object
18831  */
18832
18833 Roo.bootstrap.DateField = function(config){
18834     Roo.bootstrap.DateField.superclass.constructor.call(this, config);
18835      this.addEvents({
18836             /**
18837              * @event show
18838              * Fires when this field show.
18839              * @param {Roo.bootstrap.DateField} this
18840              * @param {Mixed} date The date value
18841              */
18842             show : true,
18843             /**
18844              * @event show
18845              * Fires when this field hide.
18846              * @param {Roo.bootstrap.DateField} this
18847              * @param {Mixed} date The date value
18848              */
18849             hide : true,
18850             /**
18851              * @event select
18852              * Fires when select a date.
18853              * @param {Roo.bootstrap.DateField} this
18854              * @param {Mixed} date The date value
18855              */
18856             select : true,
18857             /**
18858              * @event beforeselect
18859              * Fires when before select a date.
18860              * @param {Roo.bootstrap.DateField} this
18861              * @param {Mixed} date The date value
18862              */
18863             beforeselect : true
18864         });
18865 };
18866
18867 Roo.extend(Roo.bootstrap.DateField, Roo.bootstrap.Input,  {
18868     
18869     /**
18870      * @cfg {String} format
18871      * The default date format string which can be overriden for localization support.  The format must be
18872      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
18873      */
18874     format : "m/d/y",
18875     /**
18876      * @cfg {String} altFormats
18877      * Multiple date formats separated by "|" to try when parsing a user input value and it doesn't match the defined
18878      * format (defaults to 'm/d/Y|m-d-y|m-d-Y|m/d|m-d|d').
18879      */
18880     altFormats : "m/d/Y|m-d-y|m-d-Y|m/d|m-d|md|mdy|mdY|d",
18881     
18882     weekStart : 0,
18883     
18884     viewMode : '',
18885     
18886     minViewMode : '',
18887     
18888     todayHighlight : false,
18889     
18890     todayBtn: false,
18891     
18892     language: 'en',
18893     
18894     keyboardNavigation: true,
18895     
18896     calendarWeeks: false,
18897     
18898     startDate: -Infinity,
18899     
18900     endDate: Infinity,
18901     
18902     daysOfWeekDisabled: [],
18903     
18904     _events: [],
18905     
18906     singleMode : false,
18907     
18908     UTCDate: function()
18909     {
18910         return new Date(Date.UTC.apply(Date, arguments));
18911     },
18912     
18913     UTCToday: function()
18914     {
18915         var today = new Date();
18916         return this.UTCDate(today.getUTCFullYear(), today.getUTCMonth(), today.getUTCDate());
18917     },
18918     
18919     getDate: function() {
18920             var d = this.getUTCDate();
18921             return new Date(d.getTime() + (d.getTimezoneOffset()*60000));
18922     },
18923     
18924     getUTCDate: function() {
18925             return this.date;
18926     },
18927     
18928     setDate: function(d) {
18929             this.setUTCDate(new Date(d.getTime() - (d.getTimezoneOffset()*60000)));
18930     },
18931     
18932     setUTCDate: function(d) {
18933             this.date = d;
18934             this.setValue(this.formatDate(this.date));
18935     },
18936         
18937     onRender: function(ct, position)
18938     {
18939         
18940         Roo.bootstrap.DateField.superclass.onRender.call(this, ct, position);
18941         
18942         this.language = this.language || 'en';
18943         this.language = this.language in Roo.bootstrap.DateField.dates ? this.language : this.language.split('-')[0];
18944         this.language = this.language in Roo.bootstrap.DateField.dates ? this.language : "en";
18945         
18946         this.isRTL = Roo.bootstrap.DateField.dates[this.language].rtl || false;
18947         this.format = this.format || 'm/d/y';
18948         this.isInline = false;
18949         this.isInput = true;
18950         this.component = this.el.select('.add-on', true).first() || false;
18951         this.component = (this.component && this.component.length === 0) ? false : this.component;
18952         this.hasInput = this.component && this.inputEl().length;
18953         
18954         if (typeof(this.minViewMode === 'string')) {
18955             switch (this.minViewMode) {
18956                 case 'months':
18957                     this.minViewMode = 1;
18958                     break;
18959                 case 'years':
18960                     this.minViewMode = 2;
18961                     break;
18962                 default:
18963                     this.minViewMode = 0;
18964                     break;
18965             }
18966         }
18967         
18968         if (typeof(this.viewMode === 'string')) {
18969             switch (this.viewMode) {
18970                 case 'months':
18971                     this.viewMode = 1;
18972                     break;
18973                 case 'years':
18974                     this.viewMode = 2;
18975                     break;
18976                 default:
18977                     this.viewMode = 0;
18978                     break;
18979             }
18980         }
18981                 
18982         this.pickerEl = Roo.get(document.body).createChild(Roo.bootstrap.DateField.template);
18983         
18984 //        this.el.select('>.input-group', true).first().createChild(Roo.bootstrap.DateField.template);
18985         
18986         this.picker().setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
18987         
18988         this.picker().on('mousedown', this.onMousedown, this);
18989         this.picker().on('click', this.onClick, this);
18990         
18991         this.picker().addClass('datepicker-dropdown');
18992         
18993         this.startViewMode = this.viewMode;
18994         
18995         if(this.singleMode){
18996             Roo.each(this.picker().select('thead > tr > th', true).elements, function(v){
18997                 v.setVisibilityMode(Roo.Element.DISPLAY);
18998                 v.hide();
18999             });
19000             
19001             Roo.each(this.picker().select('tbody > tr > td', true).elements, function(v){
19002                 v.setStyle('width', '189px');
19003             });
19004         }
19005         
19006         Roo.each(this.picker().select('tfoot th.today', true).elements, function(v){
19007             if(!this.calendarWeeks){
19008                 v.remove();
19009                 return;
19010             }
19011             
19012             v.dom.innerHTML = Roo.bootstrap.DateField.dates[this.language].today;
19013             v.attr('colspan', function(i, val){
19014                 return parseInt(val) + 1;
19015             });
19016         });
19017                         
19018         
19019         this.weekEnd = this.weekStart === 0 ? 6 : this.weekStart - 1;
19020         
19021         this.setStartDate(this.startDate);
19022         this.setEndDate(this.endDate);
19023         
19024         this.setDaysOfWeekDisabled(this.daysOfWeekDisabled);
19025         
19026         this.fillDow();
19027         this.fillMonths();
19028         this.update();
19029         this.showMode();
19030         
19031         if(this.isInline) {
19032             this.showPopup();
19033         }
19034     },
19035     
19036     picker : function()
19037     {
19038         return this.pickerEl;
19039 //        return this.el.select('.datepicker', true).first();
19040     },
19041     
19042     fillDow: function()
19043     {
19044         var dowCnt = this.weekStart;
19045         
19046         var dow = {
19047             tag: 'tr',
19048             cn: [
19049                 
19050             ]
19051         };
19052         
19053         if(this.calendarWeeks){
19054             dow.cn.push({
19055                 tag: 'th',
19056                 cls: 'cw',
19057                 html: '&nbsp;'
19058             })
19059         }
19060         
19061         while (dowCnt < this.weekStart + 7) {
19062             dow.cn.push({
19063                 tag: 'th',
19064                 cls: 'dow',
19065                 html: Roo.bootstrap.DateField.dates[this.language].daysMin[(dowCnt++)%7]
19066             });
19067         }
19068         
19069         this.picker().select('>.datepicker-days thead', true).first().createChild(dow);
19070     },
19071     
19072     fillMonths: function()
19073     {    
19074         var i = 0;
19075         var months = this.picker().select('>.datepicker-months td', true).first();
19076         
19077         months.dom.innerHTML = '';
19078         
19079         while (i < 12) {
19080             var month = {
19081                 tag: 'span',
19082                 cls: 'month',
19083                 html: Roo.bootstrap.DateField.dates[this.language].monthsShort[i++]
19084             };
19085             
19086             months.createChild(month);
19087         }
19088         
19089     },
19090     
19091     update: function()
19092     {
19093         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;
19094         
19095         if (this.date < this.startDate) {
19096             this.viewDate = new Date(this.startDate);
19097         } else if (this.date > this.endDate) {
19098             this.viewDate = new Date(this.endDate);
19099         } else {
19100             this.viewDate = new Date(this.date);
19101         }
19102         
19103         this.fill();
19104     },
19105     
19106     fill: function() 
19107     {
19108         var d = new Date(this.viewDate),
19109                 year = d.getUTCFullYear(),
19110                 month = d.getUTCMonth(),
19111                 startYear = this.startDate !== -Infinity ? this.startDate.getUTCFullYear() : -Infinity,
19112                 startMonth = this.startDate !== -Infinity ? this.startDate.getUTCMonth() : -Infinity,
19113                 endYear = this.endDate !== Infinity ? this.endDate.getUTCFullYear() : Infinity,
19114                 endMonth = this.endDate !== Infinity ? this.endDate.getUTCMonth() : Infinity,
19115                 currentDate = this.date && this.date.valueOf(),
19116                 today = this.UTCToday();
19117         
19118         this.picker().select('>.datepicker-days thead th.switch', true).first().dom.innerHTML = Roo.bootstrap.DateField.dates[this.language].months[month]+' '+year;
19119         
19120 //        this.picker().select('>tfoot th.today', true).first().dom.innerHTML = Roo.bootstrap.DateField.dates[this.language].today;
19121         
19122 //        this.picker.select('>tfoot th.today').
19123 //                                              .text(dates[this.language].today)
19124 //                                              .toggle(this.todayBtn !== false);
19125     
19126         this.updateNavArrows();
19127         this.fillMonths();
19128                                                 
19129         var prevMonth = this.UTCDate(year, month-1, 28,0,0,0,0),
19130         
19131         day = prevMonth.getDaysInMonth(prevMonth.getUTCFullYear(), prevMonth.getUTCMonth());
19132          
19133         prevMonth.setUTCDate(day);
19134         
19135         prevMonth.setUTCDate(day - (prevMonth.getUTCDay() - this.weekStart + 7)%7);
19136         
19137         var nextMonth = new Date(prevMonth);
19138         
19139         nextMonth.setUTCDate(nextMonth.getUTCDate() + 42);
19140         
19141         nextMonth = nextMonth.valueOf();
19142         
19143         var fillMonths = false;
19144         
19145         this.picker().select('>.datepicker-days tbody',true).first().dom.innerHTML = '';
19146         
19147         while(prevMonth.valueOf() <= nextMonth) {
19148             var clsName = '';
19149             
19150             if (prevMonth.getUTCDay() === this.weekStart) {
19151                 if(fillMonths){
19152                     this.picker().select('>.datepicker-days tbody',true).first().createChild(fillMonths);
19153                 }
19154                     
19155                 fillMonths = {
19156                     tag: 'tr',
19157                     cn: []
19158                 };
19159                 
19160                 if(this.calendarWeeks){
19161                     // ISO 8601: First week contains first thursday.
19162                     // ISO also states week starts on Monday, but we can be more abstract here.
19163                     var
19164                     // Start of current week: based on weekstart/current date
19165                     ws = new Date(+prevMonth + (this.weekStart - prevMonth.getUTCDay() - 7) % 7 * 864e5),
19166                     // Thursday of this week
19167                     th = new Date(+ws + (7 + 4 - ws.getUTCDay()) % 7 * 864e5),
19168                     // First Thursday of year, year from thursday
19169                     yth = new Date(+(yth = this.UTCDate(th.getUTCFullYear(), 0, 1)) + (7 + 4 - yth.getUTCDay())%7*864e5),
19170                     // Calendar week: ms between thursdays, div ms per day, div 7 days
19171                     calWeek =  (th - yth) / 864e5 / 7 + 1;
19172                     
19173                     fillMonths.cn.push({
19174                         tag: 'td',
19175                         cls: 'cw',
19176                         html: calWeek
19177                     });
19178                 }
19179             }
19180             
19181             if (prevMonth.getUTCFullYear() < year || (prevMonth.getUTCFullYear() == year && prevMonth.getUTCMonth() < month)) {
19182                 clsName += ' old';
19183             } else if (prevMonth.getUTCFullYear() > year || (prevMonth.getUTCFullYear() == year && prevMonth.getUTCMonth() > month)) {
19184                 clsName += ' new';
19185             }
19186             if (this.todayHighlight &&
19187                 prevMonth.getUTCFullYear() == today.getFullYear() &&
19188                 prevMonth.getUTCMonth() == today.getMonth() &&
19189                 prevMonth.getUTCDate() == today.getDate()) {
19190                 clsName += ' today';
19191             }
19192             
19193             if (currentDate && prevMonth.valueOf() === currentDate) {
19194                 clsName += ' active';
19195             }
19196             
19197             if (prevMonth.valueOf() < this.startDate || prevMonth.valueOf() > this.endDate ||
19198                     this.daysOfWeekDisabled.indexOf(prevMonth.getUTCDay()) !== -1) {
19199                     clsName += ' disabled';
19200             }
19201             
19202             fillMonths.cn.push({
19203                 tag: 'td',
19204                 cls: 'day ' + clsName,
19205                 html: prevMonth.getDate()
19206             });
19207             
19208             prevMonth.setDate(prevMonth.getDate()+1);
19209         }
19210           
19211         var currentYear = this.date && this.date.getUTCFullYear();
19212         var currentMonth = this.date && this.date.getUTCMonth();
19213         
19214         this.picker().select('>.datepicker-months th.switch',true).first().dom.innerHTML = year;
19215         
19216         Roo.each(this.picker().select('>.datepicker-months tbody span',true).elements, function(v,k){
19217             v.removeClass('active');
19218             
19219             if(currentYear === year && k === currentMonth){
19220                 v.addClass('active');
19221             }
19222             
19223             if (year < startYear || year > endYear || (year == startYear && k < startMonth) || (year == endYear && k > endMonth)) {
19224                 v.addClass('disabled');
19225             }
19226             
19227         });
19228         
19229         
19230         year = parseInt(year/10, 10) * 10;
19231         
19232         this.picker().select('>.datepicker-years th.switch', true).first().dom.innerHTML = year + '-' + (year + 9);
19233         
19234         this.picker().select('>.datepicker-years tbody td',true).first().dom.innerHTML = '';
19235         
19236         year -= 1;
19237         for (var i = -1; i < 11; i++) {
19238             this.picker().select('>.datepicker-years tbody td',true).first().createChild({
19239                 tag: 'span',
19240                 cls: 'year' + (i === -1 || i === 10 ? ' old' : '') + (currentYear === year ? ' active' : '') + (year < startYear || year > endYear ? ' disabled' : ''),
19241                 html: year
19242             });
19243             
19244             year += 1;
19245         }
19246     },
19247     
19248     showMode: function(dir) 
19249     {
19250         if (dir) {
19251             this.viewMode = Math.max(this.minViewMode, Math.min(2, this.viewMode + dir));
19252         }
19253         
19254         Roo.each(this.picker().select('>div',true).elements, function(v){
19255             v.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
19256             v.hide();
19257         });
19258         this.picker().select('>.datepicker-'+Roo.bootstrap.DateField.modes[this.viewMode].clsName, true).first().show();
19259     },
19260     
19261     place: function()
19262     {
19263         if(this.isInline) {
19264             return;
19265         }
19266         
19267         this.picker().removeClass(['bottom', 'top']);
19268         
19269         if((Roo.lib.Dom.getViewHeight() + Roo.get(document.body).getScroll().top) - (this.inputEl().getBottom() + this.picker().getHeight()) < 0){
19270             /*
19271              * place to the top of element!
19272              *
19273              */
19274             
19275             this.picker().addClass('top');
19276             this.picker().setTop(this.inputEl().getTop() - this.picker().getHeight()).setLeft(this.inputEl().getLeft());
19277             
19278             return;
19279         }
19280         
19281         this.picker().addClass('bottom');
19282         
19283         this.picker().setTop(this.inputEl().getBottom()).setLeft(this.inputEl().getLeft());
19284     },
19285     
19286     parseDate : function(value)
19287     {
19288         if(!value || value instanceof Date){
19289             return value;
19290         }
19291         var v = Date.parseDate(value, this.format);
19292         if (!v && (this.useIso || value.match(/^(\d{4})-0?(\d+)-0?(\d+)/))) {
19293             v = Date.parseDate(value, 'Y-m-d');
19294         }
19295         if(!v && this.altFormats){
19296             if(!this.altFormatsArray){
19297                 this.altFormatsArray = this.altFormats.split("|");
19298             }
19299             for(var i = 0, len = this.altFormatsArray.length; i < len && !v; i++){
19300                 v = Date.parseDate(value, this.altFormatsArray[i]);
19301             }
19302         }
19303         return v;
19304     },
19305     
19306     formatDate : function(date, fmt)
19307     {   
19308         return (!date || !(date instanceof Date)) ?
19309         date : date.dateFormat(fmt || this.format);
19310     },
19311     
19312     onFocus : function()
19313     {
19314         Roo.bootstrap.DateField.superclass.onFocus.call(this);
19315         this.showPopup();
19316     },
19317     
19318     onBlur : function()
19319     {
19320         Roo.bootstrap.DateField.superclass.onBlur.call(this);
19321         
19322         var d = this.inputEl().getValue();
19323         
19324         this.setValue(d);
19325                 
19326         this.hidePopup();
19327     },
19328     
19329     showPopup : function()
19330     {
19331         this.picker().show();
19332         this.update();
19333         this.place();
19334         
19335         this.fireEvent('showpopup', this, this.date);
19336     },
19337     
19338     hidePopup : function()
19339     {
19340         if(this.isInline) {
19341             return;
19342         }
19343         this.picker().hide();
19344         this.viewMode = this.startViewMode;
19345         this.showMode();
19346         
19347         this.fireEvent('hidepopup', this, this.date);
19348         
19349     },
19350     
19351     onMousedown: function(e)
19352     {
19353         e.stopPropagation();
19354         e.preventDefault();
19355     },
19356     
19357     keyup: function(e)
19358     {
19359         Roo.bootstrap.DateField.superclass.keyup.call(this);
19360         this.update();
19361     },
19362
19363     setValue: function(v)
19364     {
19365         if(this.fireEvent('beforeselect', this, v) !== false){
19366             var d = new Date(this.parseDate(v) ).clearTime();
19367         
19368             if(isNaN(d.getTime())){
19369                 this.date = this.viewDate = '';
19370                 Roo.bootstrap.DateField.superclass.setValue.call(this, '');
19371                 return;
19372             }
19373
19374             v = this.formatDate(d);
19375
19376             Roo.bootstrap.DateField.superclass.setValue.call(this, v);
19377
19378             this.date = new Date(d.getTime() - d.getTimezoneOffset()*60000);
19379
19380             this.update();
19381
19382             this.fireEvent('select', this, this.date);
19383         }
19384     },
19385     
19386     getValue: function()
19387     {
19388         return this.formatDate(this.date);
19389     },
19390     
19391     fireKey: function(e)
19392     {
19393         if (!this.picker().isVisible()){
19394             if (e.keyCode == 27) { // allow escape to hide and re-show picker
19395                 this.showPopup();
19396             }
19397             return;
19398         }
19399         
19400         var dateChanged = false,
19401         dir, day, month,
19402         newDate, newViewDate;
19403         
19404         switch(e.keyCode){
19405             case 27: // escape
19406                 this.hidePopup();
19407                 e.preventDefault();
19408                 break;
19409             case 37: // left
19410             case 39: // right
19411                 if (!this.keyboardNavigation) {
19412                     break;
19413                 }
19414                 dir = e.keyCode == 37 ? -1 : 1;
19415                 
19416                 if (e.ctrlKey){
19417                     newDate = this.moveYear(this.date, dir);
19418                     newViewDate = this.moveYear(this.viewDate, dir);
19419                 } else if (e.shiftKey){
19420                     newDate = this.moveMonth(this.date, dir);
19421                     newViewDate = this.moveMonth(this.viewDate, dir);
19422                 } else {
19423                     newDate = new Date(this.date);
19424                     newDate.setUTCDate(this.date.getUTCDate() + dir);
19425                     newViewDate = new Date(this.viewDate);
19426                     newViewDate.setUTCDate(this.viewDate.getUTCDate() + dir);
19427                 }
19428                 if (this.dateWithinRange(newDate)){
19429                     this.date = newDate;
19430                     this.viewDate = newViewDate;
19431                     this.setValue(this.formatDate(this.date));
19432 //                    this.update();
19433                     e.preventDefault();
19434                     dateChanged = true;
19435                 }
19436                 break;
19437             case 38: // up
19438             case 40: // down
19439                 if (!this.keyboardNavigation) {
19440                     break;
19441                 }
19442                 dir = e.keyCode == 38 ? -1 : 1;
19443                 if (e.ctrlKey){
19444                     newDate = this.moveYear(this.date, dir);
19445                     newViewDate = this.moveYear(this.viewDate, dir);
19446                 } else if (e.shiftKey){
19447                     newDate = this.moveMonth(this.date, dir);
19448                     newViewDate = this.moveMonth(this.viewDate, dir);
19449                 } else {
19450                     newDate = new Date(this.date);
19451                     newDate.setUTCDate(this.date.getUTCDate() + dir * 7);
19452                     newViewDate = new Date(this.viewDate);
19453                     newViewDate.setUTCDate(this.viewDate.getUTCDate() + dir * 7);
19454                 }
19455                 if (this.dateWithinRange(newDate)){
19456                     this.date = newDate;
19457                     this.viewDate = newViewDate;
19458                     this.setValue(this.formatDate(this.date));
19459 //                    this.update();
19460                     e.preventDefault();
19461                     dateChanged = true;
19462                 }
19463                 break;
19464             case 13: // enter
19465                 this.setValue(this.formatDate(this.date));
19466                 this.hidePopup();
19467                 e.preventDefault();
19468                 break;
19469             case 9: // tab
19470                 this.setValue(this.formatDate(this.date));
19471                 this.hidePopup();
19472                 break;
19473             case 16: // shift
19474             case 17: // ctrl
19475             case 18: // alt
19476                 break;
19477             default :
19478                 this.hidePopup();
19479                 
19480         }
19481     },
19482     
19483     
19484     onClick: function(e) 
19485     {
19486         e.stopPropagation();
19487         e.preventDefault();
19488         
19489         var target = e.getTarget();
19490         
19491         if(target.nodeName.toLowerCase() === 'i'){
19492             target = Roo.get(target).dom.parentNode;
19493         }
19494         
19495         var nodeName = target.nodeName;
19496         var className = target.className;
19497         var html = target.innerHTML;
19498         //Roo.log(nodeName);
19499         
19500         switch(nodeName.toLowerCase()) {
19501             case 'th':
19502                 switch(className) {
19503                     case 'switch':
19504                         this.showMode(1);
19505                         break;
19506                     case 'prev':
19507                     case 'next':
19508                         var dir = Roo.bootstrap.DateField.modes[this.viewMode].navStep * (className == 'prev' ? -1 : 1);
19509                         switch(this.viewMode){
19510                                 case 0:
19511                                         this.viewDate = this.moveMonth(this.viewDate, dir);
19512                                         break;
19513                                 case 1:
19514                                 case 2:
19515                                         this.viewDate = this.moveYear(this.viewDate, dir);
19516                                         break;
19517                         }
19518                         this.fill();
19519                         break;
19520                     case 'today':
19521                         var date = new Date();
19522                         this.date = this.UTCDate(date.getFullYear(), date.getMonth(), date.getDate(), 0, 0, 0);
19523 //                        this.fill()
19524                         this.setValue(this.formatDate(this.date));
19525                         
19526                         this.hidePopup();
19527                         break;
19528                 }
19529                 break;
19530             case 'span':
19531                 if (className.indexOf('disabled') < 0) {
19532                     this.viewDate.setUTCDate(1);
19533                     if (className.indexOf('month') > -1) {
19534                         this.viewDate.setUTCMonth(Roo.bootstrap.DateField.dates[this.language].monthsShort.indexOf(html));
19535                     } else {
19536                         var year = parseInt(html, 10) || 0;
19537                         this.viewDate.setUTCFullYear(year);
19538                         
19539                     }
19540                     
19541                     if(this.singleMode){
19542                         this.setValue(this.formatDate(this.viewDate));
19543                         this.hidePopup();
19544                         return;
19545                     }
19546                     
19547                     this.showMode(-1);
19548                     this.fill();
19549                 }
19550                 break;
19551                 
19552             case 'td':
19553                 //Roo.log(className);
19554                 if (className.indexOf('day') > -1 && className.indexOf('disabled') < 0 ){
19555                     var day = parseInt(html, 10) || 1;
19556                     var year = this.viewDate.getUTCFullYear(),
19557                         month = this.viewDate.getUTCMonth();
19558
19559                     if (className.indexOf('old') > -1) {
19560                         if(month === 0 ){
19561                             month = 11;
19562                             year -= 1;
19563                         }else{
19564                             month -= 1;
19565                         }
19566                     } else if (className.indexOf('new') > -1) {
19567                         if (month == 11) {
19568                             month = 0;
19569                             year += 1;
19570                         } else {
19571                             month += 1;
19572                         }
19573                     }
19574                     //Roo.log([year,month,day]);
19575                     this.date = this.UTCDate(year, month, day,0,0,0,0);
19576                     this.viewDate = this.UTCDate(year, month, Math.min(28, day),0,0,0,0);
19577 //                    this.fill();
19578                     //Roo.log(this.formatDate(this.date));
19579                     this.setValue(this.formatDate(this.date));
19580                     this.hidePopup();
19581                 }
19582                 break;
19583         }
19584     },
19585     
19586     setStartDate: function(startDate)
19587     {
19588         this.startDate = startDate || -Infinity;
19589         if (this.startDate !== -Infinity) {
19590             this.startDate = this.parseDate(this.startDate);
19591         }
19592         this.update();
19593         this.updateNavArrows();
19594     },
19595
19596     setEndDate: function(endDate)
19597     {
19598         this.endDate = endDate || Infinity;
19599         if (this.endDate !== Infinity) {
19600             this.endDate = this.parseDate(this.endDate);
19601         }
19602         this.update();
19603         this.updateNavArrows();
19604     },
19605     
19606     setDaysOfWeekDisabled: function(daysOfWeekDisabled)
19607     {
19608         this.daysOfWeekDisabled = daysOfWeekDisabled || [];
19609         if (typeof(this.daysOfWeekDisabled) !== 'object') {
19610             this.daysOfWeekDisabled = this.daysOfWeekDisabled.split(/,\s*/);
19611         }
19612         this.daysOfWeekDisabled = this.daysOfWeekDisabled.map(function (d) {
19613             return parseInt(d, 10);
19614         });
19615         this.update();
19616         this.updateNavArrows();
19617     },
19618     
19619     updateNavArrows: function() 
19620     {
19621         if(this.singleMode){
19622             return;
19623         }
19624         
19625         var d = new Date(this.viewDate),
19626         year = d.getUTCFullYear(),
19627         month = d.getUTCMonth();
19628         
19629         Roo.each(this.picker().select('.prev', true).elements, function(v){
19630             v.show();
19631             switch (this.viewMode) {
19632                 case 0:
19633
19634                     if (this.startDate !== -Infinity && year <= this.startDate.getUTCFullYear() && month <= this.startDate.getUTCMonth()) {
19635                         v.hide();
19636                     }
19637                     break;
19638                 case 1:
19639                 case 2:
19640                     if (this.startDate !== -Infinity && year <= this.startDate.getUTCFullYear()) {
19641                         v.hide();
19642                     }
19643                     break;
19644             }
19645         });
19646         
19647         Roo.each(this.picker().select('.next', true).elements, function(v){
19648             v.show();
19649             switch (this.viewMode) {
19650                 case 0:
19651
19652                     if (this.endDate !== Infinity && year >= this.endDate.getUTCFullYear() && month >= this.endDate.getUTCMonth()) {
19653                         v.hide();
19654                     }
19655                     break;
19656                 case 1:
19657                 case 2:
19658                     if (this.endDate !== Infinity && year >= this.endDate.getUTCFullYear()) {
19659                         v.hide();
19660                     }
19661                     break;
19662             }
19663         })
19664     },
19665     
19666     moveMonth: function(date, dir)
19667     {
19668         if (!dir) {
19669             return date;
19670         }
19671         var new_date = new Date(date.valueOf()),
19672         day = new_date.getUTCDate(),
19673         month = new_date.getUTCMonth(),
19674         mag = Math.abs(dir),
19675         new_month, test;
19676         dir = dir > 0 ? 1 : -1;
19677         if (mag == 1){
19678             test = dir == -1
19679             // If going back one month, make sure month is not current month
19680             // (eg, Mar 31 -> Feb 31 == Feb 28, not Mar 02)
19681             ? function(){
19682                 return new_date.getUTCMonth() == month;
19683             }
19684             // If going forward one month, make sure month is as expected
19685             // (eg, Jan 31 -> Feb 31 == Feb 28, not Mar 02)
19686             : function(){
19687                 return new_date.getUTCMonth() != new_month;
19688             };
19689             new_month = month + dir;
19690             new_date.setUTCMonth(new_month);
19691             // Dec -> Jan (12) or Jan -> Dec (-1) -- limit expected date to 0-11
19692             if (new_month < 0 || new_month > 11) {
19693                 new_month = (new_month + 12) % 12;
19694             }
19695         } else {
19696             // For magnitudes >1, move one month at a time...
19697             for (var i=0; i<mag; i++) {
19698                 // ...which might decrease the day (eg, Jan 31 to Feb 28, etc)...
19699                 new_date = this.moveMonth(new_date, dir);
19700             }
19701             // ...then reset the day, keeping it in the new month
19702             new_month = new_date.getUTCMonth();
19703             new_date.setUTCDate(day);
19704             test = function(){
19705                 return new_month != new_date.getUTCMonth();
19706             };
19707         }
19708         // Common date-resetting loop -- if date is beyond end of month, make it
19709         // end of month
19710         while (test()){
19711             new_date.setUTCDate(--day);
19712             new_date.setUTCMonth(new_month);
19713         }
19714         return new_date;
19715     },
19716
19717     moveYear: function(date, dir)
19718     {
19719         return this.moveMonth(date, dir*12);
19720     },
19721
19722     dateWithinRange: function(date)
19723     {
19724         return date >= this.startDate && date <= this.endDate;
19725     },
19726
19727     
19728     remove: function() 
19729     {
19730         this.picker().remove();
19731     },
19732     
19733     validateValue : function(value)
19734     {
19735         if(this.getVisibilityEl().hasClass('hidden')){
19736             return true;
19737         }
19738         
19739         if(value.length < 1)  {
19740             if(this.allowBlank){
19741                 return true;
19742             }
19743             return false;
19744         }
19745         
19746         if(value.length < this.minLength){
19747             return false;
19748         }
19749         if(value.length > this.maxLength){
19750             return false;
19751         }
19752         if(this.vtype){
19753             var vt = Roo.form.VTypes;
19754             if(!vt[this.vtype](value, this)){
19755                 return false;
19756             }
19757         }
19758         if(typeof this.validator == "function"){
19759             var msg = this.validator(value);
19760             if(msg !== true){
19761                 return false;
19762             }
19763         }
19764         
19765         if(this.regex && !this.regex.test(value)){
19766             return false;
19767         }
19768         
19769         if(typeof(this.parseDate(value)) == 'undefined'){
19770             return false;
19771         }
19772         
19773         if (this.endDate !== Infinity && this.parseDate(value).getTime() > this.endDate.getTime()) {
19774             return false;
19775         }      
19776         
19777         if (this.startDate !== -Infinity && this.parseDate(value).getTime() < this.startDate.getTime()) {
19778             return false;
19779         } 
19780         
19781         
19782         return true;
19783     },
19784     
19785     reset : function()
19786     {
19787         this.date = this.viewDate = '';
19788         
19789         Roo.bootstrap.DateField.superclass.setValue.call(this, '');
19790     }
19791    
19792 });
19793
19794 Roo.apply(Roo.bootstrap.DateField,  {
19795     
19796     head : {
19797         tag: 'thead',
19798         cn: [
19799         {
19800             tag: 'tr',
19801             cn: [
19802             {
19803                 tag: 'th',
19804                 cls: 'prev',
19805                 html: '<i class="fa fa-arrow-left"/>'
19806             },
19807             {
19808                 tag: 'th',
19809                 cls: 'switch',
19810                 colspan: '5'
19811             },
19812             {
19813                 tag: 'th',
19814                 cls: 'next',
19815                 html: '<i class="fa fa-arrow-right"/>'
19816             }
19817
19818             ]
19819         }
19820         ]
19821     },
19822     
19823     content : {
19824         tag: 'tbody',
19825         cn: [
19826         {
19827             tag: 'tr',
19828             cn: [
19829             {
19830                 tag: 'td',
19831                 colspan: '7'
19832             }
19833             ]
19834         }
19835         ]
19836     },
19837     
19838     footer : {
19839         tag: 'tfoot',
19840         cn: [
19841         {
19842             tag: 'tr',
19843             cn: [
19844             {
19845                 tag: 'th',
19846                 colspan: '7',
19847                 cls: 'today'
19848             }
19849                     
19850             ]
19851         }
19852         ]
19853     },
19854     
19855     dates:{
19856         en: {
19857             days: ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"],
19858             daysShort: ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"],
19859             daysMin: ["Su", "Mo", "Tu", "We", "Th", "Fr", "Sa", "Su"],
19860             months: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"],
19861             monthsShort: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"],
19862             today: "Today"
19863         }
19864     },
19865     
19866     modes: [
19867     {
19868         clsName: 'days',
19869         navFnc: 'Month',
19870         navStep: 1
19871     },
19872     {
19873         clsName: 'months',
19874         navFnc: 'FullYear',
19875         navStep: 1
19876     },
19877     {
19878         clsName: 'years',
19879         navFnc: 'FullYear',
19880         navStep: 10
19881     }]
19882 });
19883
19884 Roo.apply(Roo.bootstrap.DateField,  {
19885   
19886     template : {
19887         tag: 'div',
19888         cls: 'datepicker dropdown-menu roo-dynamic',
19889         cn: [
19890         {
19891             tag: 'div',
19892             cls: 'datepicker-days',
19893             cn: [
19894             {
19895                 tag: 'table',
19896                 cls: 'table-condensed',
19897                 cn:[
19898                 Roo.bootstrap.DateField.head,
19899                 {
19900                     tag: 'tbody'
19901                 },
19902                 Roo.bootstrap.DateField.footer
19903                 ]
19904             }
19905             ]
19906         },
19907         {
19908             tag: 'div',
19909             cls: 'datepicker-months',
19910             cn: [
19911             {
19912                 tag: 'table',
19913                 cls: 'table-condensed',
19914                 cn:[
19915                 Roo.bootstrap.DateField.head,
19916                 Roo.bootstrap.DateField.content,
19917                 Roo.bootstrap.DateField.footer
19918                 ]
19919             }
19920             ]
19921         },
19922         {
19923             tag: 'div',
19924             cls: 'datepicker-years',
19925             cn: [
19926             {
19927                 tag: 'table',
19928                 cls: 'table-condensed',
19929                 cn:[
19930                 Roo.bootstrap.DateField.head,
19931                 Roo.bootstrap.DateField.content,
19932                 Roo.bootstrap.DateField.footer
19933                 ]
19934             }
19935             ]
19936         }
19937         ]
19938     }
19939 });
19940
19941  
19942
19943  /*
19944  * - LGPL
19945  *
19946  * TimeField
19947  * 
19948  */
19949
19950 /**
19951  * @class Roo.bootstrap.TimeField
19952  * @extends Roo.bootstrap.Input
19953  * Bootstrap DateField class
19954  * 
19955  * 
19956  * @constructor
19957  * Create a new TimeField
19958  * @param {Object} config The config object
19959  */
19960
19961 Roo.bootstrap.TimeField = function(config){
19962     Roo.bootstrap.TimeField.superclass.constructor.call(this, config);
19963     this.addEvents({
19964             /**
19965              * @event show
19966              * Fires when this field show.
19967              * @param {Roo.bootstrap.DateField} thisthis
19968              * @param {Mixed} date The date value
19969              */
19970             show : true,
19971             /**
19972              * @event show
19973              * Fires when this field hide.
19974              * @param {Roo.bootstrap.DateField} this
19975              * @param {Mixed} date The date value
19976              */
19977             hide : true,
19978             /**
19979              * @event select
19980              * Fires when select a date.
19981              * @param {Roo.bootstrap.DateField} this
19982              * @param {Mixed} date The date value
19983              */
19984             select : true
19985         });
19986 };
19987
19988 Roo.extend(Roo.bootstrap.TimeField, Roo.bootstrap.Input,  {
19989     
19990     /**
19991      * @cfg {String} format
19992      * The default time format string which can be overriden for localization support.  The format must be
19993      * valid according to {@link Date#parseDate} (defaults to 'H:i').
19994      */
19995     format : "H:i",
19996        
19997     onRender: function(ct, position)
19998     {
19999         
20000         Roo.bootstrap.TimeField.superclass.onRender.call(this, ct, position);
20001                 
20002         this.el.select('>.input-group', true).first().createChild(Roo.bootstrap.TimeField.template);
20003         
20004         this.picker().setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
20005         
20006         this.pop = this.picker().select('>.datepicker-time',true).first();
20007         this.pop.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
20008         
20009         this.picker().on('mousedown', this.onMousedown, this);
20010         this.picker().on('click', this.onClick, this);
20011         
20012         this.picker().addClass('datepicker-dropdown');
20013     
20014         this.fillTime();
20015         this.update();
20016             
20017         this.pop.select('span.hours-up', true).first().on('click', this.onIncrementHours, this);
20018         this.pop.select('span.hours-down', true).first().on('click', this.onDecrementHours, this);
20019         this.pop.select('span.minutes-up', true).first().on('click', this.onIncrementMinutes, this);
20020         this.pop.select('span.minutes-down', true).first().on('click', this.onDecrementMinutes, this);
20021         this.pop.select('button.period', true).first().on('click', this.onTogglePeriod, this);
20022         this.pop.select('button.ok', true).first().on('click', this.setTime, this);
20023
20024     },
20025     
20026     fireKey: function(e){
20027         if (!this.picker().isVisible()){
20028             if (e.keyCode == 27) { // allow escape to hide and re-show picker
20029                 this.show();
20030             }
20031             return;
20032         }
20033
20034         e.preventDefault();
20035         
20036         switch(e.keyCode){
20037             case 27: // escape
20038                 this.hide();
20039                 break;
20040             case 37: // left
20041             case 39: // right
20042                 this.onTogglePeriod();
20043                 break;
20044             case 38: // up
20045                 this.onIncrementMinutes();
20046                 break;
20047             case 40: // down
20048                 this.onDecrementMinutes();
20049                 break;
20050             case 13: // enter
20051             case 9: // tab
20052                 this.setTime();
20053                 break;
20054         }
20055     },
20056     
20057     onClick: function(e) {
20058         e.stopPropagation();
20059         e.preventDefault();
20060     },
20061     
20062     picker : function()
20063     {
20064         return this.el.select('.datepicker', true).first();
20065     },
20066     
20067     fillTime: function()
20068     {    
20069         var time = this.pop.select('tbody', true).first();
20070         
20071         time.dom.innerHTML = '';
20072         
20073         time.createChild({
20074             tag: 'tr',
20075             cn: [
20076                 {
20077                     tag: 'td',
20078                     cn: [
20079                         {
20080                             tag: 'a',
20081                             href: '#',
20082                             cls: 'btn',
20083                             cn: [
20084                                 {
20085                                     tag: 'span',
20086                                     cls: 'hours-up glyphicon glyphicon-chevron-up'
20087                                 }
20088                             ]
20089                         } 
20090                     ]
20091                 },
20092                 {
20093                     tag: 'td',
20094                     cls: 'separator'
20095                 },
20096                 {
20097                     tag: 'td',
20098                     cn: [
20099                         {
20100                             tag: 'a',
20101                             href: '#',
20102                             cls: 'btn',
20103                             cn: [
20104                                 {
20105                                     tag: 'span',
20106                                     cls: 'minutes-up glyphicon glyphicon-chevron-up'
20107                                 }
20108                             ]
20109                         }
20110                     ]
20111                 },
20112                 {
20113                     tag: 'td',
20114                     cls: 'separator'
20115                 }
20116             ]
20117         });
20118         
20119         time.createChild({
20120             tag: 'tr',
20121             cn: [
20122                 {
20123                     tag: 'td',
20124                     cn: [
20125                         {
20126                             tag: 'span',
20127                             cls: 'timepicker-hour',
20128                             html: '00'
20129                         }  
20130                     ]
20131                 },
20132                 {
20133                     tag: 'td',
20134                     cls: 'separator',
20135                     html: ':'
20136                 },
20137                 {
20138                     tag: 'td',
20139                     cn: [
20140                         {
20141                             tag: 'span',
20142                             cls: 'timepicker-minute',
20143                             html: '00'
20144                         }  
20145                     ]
20146                 },
20147                 {
20148                     tag: 'td',
20149                     cls: 'separator'
20150                 },
20151                 {
20152                     tag: 'td',
20153                     cn: [
20154                         {
20155                             tag: 'button',
20156                             type: 'button',
20157                             cls: 'btn btn-primary period',
20158                             html: 'AM'
20159                             
20160                         }
20161                     ]
20162                 }
20163             ]
20164         });
20165         
20166         time.createChild({
20167             tag: 'tr',
20168             cn: [
20169                 {
20170                     tag: 'td',
20171                     cn: [
20172                         {
20173                             tag: 'a',
20174                             href: '#',
20175                             cls: 'btn',
20176                             cn: [
20177                                 {
20178                                     tag: 'span',
20179                                     cls: 'hours-down glyphicon glyphicon-chevron-down'
20180                                 }
20181                             ]
20182                         }
20183                     ]
20184                 },
20185                 {
20186                     tag: 'td',
20187                     cls: 'separator'
20188                 },
20189                 {
20190                     tag: 'td',
20191                     cn: [
20192                         {
20193                             tag: 'a',
20194                             href: '#',
20195                             cls: 'btn',
20196                             cn: [
20197                                 {
20198                                     tag: 'span',
20199                                     cls: 'minutes-down glyphicon glyphicon-chevron-down'
20200                                 }
20201                             ]
20202                         }
20203                     ]
20204                 },
20205                 {
20206                     tag: 'td',
20207                     cls: 'separator'
20208                 }
20209             ]
20210         });
20211         
20212     },
20213     
20214     update: function()
20215     {
20216         
20217         this.time = (typeof(this.time) === 'undefined') ? new Date() : this.time;
20218         
20219         this.fill();
20220     },
20221     
20222     fill: function() 
20223     {
20224         var hours = this.time.getHours();
20225         var minutes = this.time.getMinutes();
20226         var period = 'AM';
20227         
20228         if(hours > 11){
20229             period = 'PM';
20230         }
20231         
20232         if(hours == 0){
20233             hours = 12;
20234         }
20235         
20236         
20237         if(hours > 12){
20238             hours = hours - 12;
20239         }
20240         
20241         if(hours < 10){
20242             hours = '0' + hours;
20243         }
20244         
20245         if(minutes < 10){
20246             minutes = '0' + minutes;
20247         }
20248         
20249         this.pop.select('.timepicker-hour', true).first().dom.innerHTML = hours;
20250         this.pop.select('.timepicker-minute', true).first().dom.innerHTML = minutes;
20251         this.pop.select('button', true).first().dom.innerHTML = period;
20252         
20253     },
20254     
20255     place: function()
20256     {   
20257         this.picker().removeClass(['bottom-left', 'bottom-right', 'top-left', 'top-right']);
20258         
20259         var cls = ['bottom'];
20260         
20261         if((Roo.lib.Dom.getViewHeight() + Roo.get(document.body).getScroll().top) - (this.inputEl().getBottom() + this.picker().getHeight()) < 0){ // top
20262             cls.pop();
20263             cls.push('top');
20264         }
20265         
20266         cls.push('right');
20267         
20268         if((Roo.lib.Dom.getViewWidth() + Roo.get(document.body).getScroll().left) - (this.inputEl().getLeft() + this.picker().getWidth()) < 0){ // left
20269             cls.pop();
20270             cls.push('left');
20271         }
20272         
20273         this.picker().addClass(cls.join('-'));
20274         
20275         var _this = this;
20276         
20277         Roo.each(cls, function(c){
20278             if(c == 'bottom'){
20279                 _this.picker().setTop(_this.inputEl().getHeight());
20280                 return;
20281             }
20282             if(c == 'top'){
20283                 _this.picker().setTop(0 - _this.picker().getHeight());
20284                 return;
20285             }
20286             
20287             if(c == 'left'){
20288                 _this.picker().setLeft(_this.inputEl().getLeft() + _this.inputEl().getWidth() - _this.el.getLeft() - _this.picker().getWidth());
20289                 return;
20290             }
20291             if(c == 'right'){
20292                 _this.picker().setLeft(_this.inputEl().getLeft() - _this.el.getLeft());
20293                 return;
20294             }
20295         });
20296         
20297     },
20298   
20299     onFocus : function()
20300     {
20301         Roo.bootstrap.TimeField.superclass.onFocus.call(this);
20302         this.show();
20303     },
20304     
20305     onBlur : function()
20306     {
20307         Roo.bootstrap.TimeField.superclass.onBlur.call(this);
20308         this.hide();
20309     },
20310     
20311     show : function()
20312     {
20313         this.picker().show();
20314         this.pop.show();
20315         this.update();
20316         this.place();
20317         
20318         this.fireEvent('show', this, this.date);
20319     },
20320     
20321     hide : function()
20322     {
20323         this.picker().hide();
20324         this.pop.hide();
20325         
20326         this.fireEvent('hide', this, this.date);
20327     },
20328     
20329     setTime : function()
20330     {
20331         this.hide();
20332         this.setValue(this.time.format(this.format));
20333         
20334         this.fireEvent('select', this, this.date);
20335         
20336         
20337     },
20338     
20339     onMousedown: function(e){
20340         e.stopPropagation();
20341         e.preventDefault();
20342     },
20343     
20344     onIncrementHours: function()
20345     {
20346         Roo.log('onIncrementHours');
20347         this.time = this.time.add(Date.HOUR, 1);
20348         this.update();
20349         
20350     },
20351     
20352     onDecrementHours: function()
20353     {
20354         Roo.log('onDecrementHours');
20355         this.time = this.time.add(Date.HOUR, -1);
20356         this.update();
20357     },
20358     
20359     onIncrementMinutes: function()
20360     {
20361         Roo.log('onIncrementMinutes');
20362         this.time = this.time.add(Date.MINUTE, 1);
20363         this.update();
20364     },
20365     
20366     onDecrementMinutes: function()
20367     {
20368         Roo.log('onDecrementMinutes');
20369         this.time = this.time.add(Date.MINUTE, -1);
20370         this.update();
20371     },
20372     
20373     onTogglePeriod: function()
20374     {
20375         Roo.log('onTogglePeriod');
20376         this.time = this.time.add(Date.HOUR, 12);
20377         this.update();
20378     }
20379     
20380    
20381 });
20382
20383 Roo.apply(Roo.bootstrap.TimeField,  {
20384     
20385     content : {
20386         tag: 'tbody',
20387         cn: [
20388             {
20389                 tag: 'tr',
20390                 cn: [
20391                 {
20392                     tag: 'td',
20393                     colspan: '7'
20394                 }
20395                 ]
20396             }
20397         ]
20398     },
20399     
20400     footer : {
20401         tag: 'tfoot',
20402         cn: [
20403             {
20404                 tag: 'tr',
20405                 cn: [
20406                 {
20407                     tag: 'th',
20408                     colspan: '7',
20409                     cls: '',
20410                     cn: [
20411                         {
20412                             tag: 'button',
20413                             cls: 'btn btn-info ok',
20414                             html: 'OK'
20415                         }
20416                     ]
20417                 }
20418
20419                 ]
20420             }
20421         ]
20422     }
20423 });
20424
20425 Roo.apply(Roo.bootstrap.TimeField,  {
20426   
20427     template : {
20428         tag: 'div',
20429         cls: 'datepicker dropdown-menu',
20430         cn: [
20431             {
20432                 tag: 'div',
20433                 cls: 'datepicker-time',
20434                 cn: [
20435                 {
20436                     tag: 'table',
20437                     cls: 'table-condensed',
20438                     cn:[
20439                     Roo.bootstrap.TimeField.content,
20440                     Roo.bootstrap.TimeField.footer
20441                     ]
20442                 }
20443                 ]
20444             }
20445         ]
20446     }
20447 });
20448
20449  
20450
20451  /*
20452  * - LGPL
20453  *
20454  * MonthField
20455  * 
20456  */
20457
20458 /**
20459  * @class Roo.bootstrap.MonthField
20460  * @extends Roo.bootstrap.Input
20461  * Bootstrap MonthField class
20462  * 
20463  * @cfg {String} language default en
20464  * 
20465  * @constructor
20466  * Create a new MonthField
20467  * @param {Object} config The config object
20468  */
20469
20470 Roo.bootstrap.MonthField = function(config){
20471     Roo.bootstrap.MonthField.superclass.constructor.call(this, config);
20472     
20473     this.addEvents({
20474         /**
20475          * @event show
20476          * Fires when this field show.
20477          * @param {Roo.bootstrap.MonthField} this
20478          * @param {Mixed} date The date value
20479          */
20480         show : true,
20481         /**
20482          * @event show
20483          * Fires when this field hide.
20484          * @param {Roo.bootstrap.MonthField} this
20485          * @param {Mixed} date The date value
20486          */
20487         hide : true,
20488         /**
20489          * @event select
20490          * Fires when select a date.
20491          * @param {Roo.bootstrap.MonthField} this
20492          * @param {String} oldvalue The old value
20493          * @param {String} newvalue The new value
20494          */
20495         select : true
20496     });
20497 };
20498
20499 Roo.extend(Roo.bootstrap.MonthField, Roo.bootstrap.Input,  {
20500     
20501     onRender: function(ct, position)
20502     {
20503         
20504         Roo.bootstrap.MonthField.superclass.onRender.call(this, ct, position);
20505         
20506         this.language = this.language || 'en';
20507         this.language = this.language in Roo.bootstrap.MonthField.dates ? this.language : this.language.split('-')[0];
20508         this.language = this.language in Roo.bootstrap.MonthField.dates ? this.language : "en";
20509         
20510         this.isRTL = Roo.bootstrap.MonthField.dates[this.language].rtl || false;
20511         this.isInline = false;
20512         this.isInput = true;
20513         this.component = this.el.select('.add-on', true).first() || false;
20514         this.component = (this.component && this.component.length === 0) ? false : this.component;
20515         this.hasInput = this.component && this.inputEL().length;
20516         
20517         this.pickerEl = Roo.get(document.body).createChild(Roo.bootstrap.MonthField.template);
20518         
20519         this.picker().setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
20520         
20521         this.picker().on('mousedown', this.onMousedown, this);
20522         this.picker().on('click', this.onClick, this);
20523         
20524         this.picker().addClass('datepicker-dropdown');
20525         
20526         Roo.each(this.picker().select('tbody > tr > td', true).elements, function(v){
20527             v.setStyle('width', '189px');
20528         });
20529         
20530         this.fillMonths();
20531         
20532         this.update();
20533         
20534         if(this.isInline) {
20535             this.show();
20536         }
20537         
20538     },
20539     
20540     setValue: function(v, suppressEvent)
20541     {   
20542         var o = this.getValue();
20543         
20544         Roo.bootstrap.MonthField.superclass.setValue.call(this, v);
20545         
20546         this.update();
20547
20548         if(suppressEvent !== true){
20549             this.fireEvent('select', this, o, v);
20550         }
20551         
20552     },
20553     
20554     getValue: function()
20555     {
20556         return this.value;
20557     },
20558     
20559     onClick: function(e) 
20560     {
20561         e.stopPropagation();
20562         e.preventDefault();
20563         
20564         var target = e.getTarget();
20565         
20566         if(target.nodeName.toLowerCase() === 'i'){
20567             target = Roo.get(target).dom.parentNode;
20568         }
20569         
20570         var nodeName = target.nodeName;
20571         var className = target.className;
20572         var html = target.innerHTML;
20573         
20574         if(nodeName.toLowerCase() != 'span' || className.indexOf('disabled') > -1 || className.indexOf('month') == -1){
20575             return;
20576         }
20577         
20578         this.vIndex = Roo.bootstrap.MonthField.dates[this.language].monthsShort.indexOf(html);
20579         
20580         this.setValue(Roo.bootstrap.MonthField.dates[this.language].months[this.vIndex]);
20581         
20582         this.hide();
20583                         
20584     },
20585     
20586     picker : function()
20587     {
20588         return this.pickerEl;
20589     },
20590     
20591     fillMonths: function()
20592     {    
20593         var i = 0;
20594         var months = this.picker().select('>.datepicker-months td', true).first();
20595         
20596         months.dom.innerHTML = '';
20597         
20598         while (i < 12) {
20599             var month = {
20600                 tag: 'span',
20601                 cls: 'month',
20602                 html: Roo.bootstrap.MonthField.dates[this.language].monthsShort[i++]
20603             };
20604             
20605             months.createChild(month);
20606         }
20607         
20608     },
20609     
20610     update: function()
20611     {
20612         var _this = this;
20613         
20614         if(typeof(this.vIndex) == 'undefined' && this.value.length){
20615             this.vIndex = Roo.bootstrap.MonthField.dates[this.language].months.indexOf(this.value);
20616         }
20617         
20618         Roo.each(this.pickerEl.select('> .datepicker-months tbody > tr > td > span', true).elements, function(e, k){
20619             e.removeClass('active');
20620             
20621             if(typeof(_this.vIndex) != 'undefined' && k == _this.vIndex){
20622                 e.addClass('active');
20623             }
20624         })
20625     },
20626     
20627     place: function()
20628     {
20629         if(this.isInline) {
20630             return;
20631         }
20632         
20633         this.picker().removeClass(['bottom', 'top']);
20634         
20635         if((Roo.lib.Dom.getViewHeight() + Roo.get(document.body).getScroll().top) - (this.inputEl().getBottom() + this.picker().getHeight()) < 0){
20636             /*
20637              * place to the top of element!
20638              *
20639              */
20640             
20641             this.picker().addClass('top');
20642             this.picker().setTop(this.inputEl().getTop() - this.picker().getHeight()).setLeft(this.inputEl().getLeft());
20643             
20644             return;
20645         }
20646         
20647         this.picker().addClass('bottom');
20648         
20649         this.picker().setTop(this.inputEl().getBottom()).setLeft(this.inputEl().getLeft());
20650     },
20651     
20652     onFocus : function()
20653     {
20654         Roo.bootstrap.MonthField.superclass.onFocus.call(this);
20655         this.show();
20656     },
20657     
20658     onBlur : function()
20659     {
20660         Roo.bootstrap.MonthField.superclass.onBlur.call(this);
20661         
20662         var d = this.inputEl().getValue();
20663         
20664         this.setValue(d);
20665                 
20666         this.hide();
20667     },
20668     
20669     show : function()
20670     {
20671         this.picker().show();
20672         this.picker().select('>.datepicker-months', true).first().show();
20673         this.update();
20674         this.place();
20675         
20676         this.fireEvent('show', this, this.date);
20677     },
20678     
20679     hide : function()
20680     {
20681         if(this.isInline) {
20682             return;
20683         }
20684         this.picker().hide();
20685         this.fireEvent('hide', this, this.date);
20686         
20687     },
20688     
20689     onMousedown: function(e)
20690     {
20691         e.stopPropagation();
20692         e.preventDefault();
20693     },
20694     
20695     keyup: function(e)
20696     {
20697         Roo.bootstrap.MonthField.superclass.keyup.call(this);
20698         this.update();
20699     },
20700
20701     fireKey: function(e)
20702     {
20703         if (!this.picker().isVisible()){
20704             if (e.keyCode == 27)   {// allow escape to hide and re-show picker
20705                 this.show();
20706             }
20707             return;
20708         }
20709         
20710         var dir;
20711         
20712         switch(e.keyCode){
20713             case 27: // escape
20714                 this.hide();
20715                 e.preventDefault();
20716                 break;
20717             case 37: // left
20718             case 39: // right
20719                 dir = e.keyCode == 37 ? -1 : 1;
20720                 
20721                 this.vIndex = this.vIndex + dir;
20722                 
20723                 if(this.vIndex < 0){
20724                     this.vIndex = 0;
20725                 }
20726                 
20727                 if(this.vIndex > 11){
20728                     this.vIndex = 11;
20729                 }
20730                 
20731                 if(isNaN(this.vIndex)){
20732                     this.vIndex = 0;
20733                 }
20734                 
20735                 this.setValue(Roo.bootstrap.MonthField.dates[this.language].months[this.vIndex]);
20736                 
20737                 break;
20738             case 38: // up
20739             case 40: // down
20740                 
20741                 dir = e.keyCode == 38 ? -1 : 1;
20742                 
20743                 this.vIndex = this.vIndex + dir * 4;
20744                 
20745                 if(this.vIndex < 0){
20746                     this.vIndex = 0;
20747                 }
20748                 
20749                 if(this.vIndex > 11){
20750                     this.vIndex = 11;
20751                 }
20752                 
20753                 if(isNaN(this.vIndex)){
20754                     this.vIndex = 0;
20755                 }
20756                 
20757                 this.setValue(Roo.bootstrap.MonthField.dates[this.language].months[this.vIndex]);
20758                 break;
20759                 
20760             case 13: // enter
20761                 
20762                 if(typeof(this.vIndex) != 'undefined' && !isNaN(this.vIndex)){
20763                     this.setValue(Roo.bootstrap.MonthField.dates[this.language].months[this.vIndex]);
20764                 }
20765                 
20766                 this.hide();
20767                 e.preventDefault();
20768                 break;
20769             case 9: // tab
20770                 if(typeof(this.vIndex) != 'undefined' && !isNaN(this.vIndex)){
20771                     this.setValue(Roo.bootstrap.MonthField.dates[this.language].months[this.vIndex]);
20772                 }
20773                 this.hide();
20774                 break;
20775             case 16: // shift
20776             case 17: // ctrl
20777             case 18: // alt
20778                 break;
20779             default :
20780                 this.hide();
20781                 
20782         }
20783     },
20784     
20785     remove: function() 
20786     {
20787         this.picker().remove();
20788     }
20789    
20790 });
20791
20792 Roo.apply(Roo.bootstrap.MonthField,  {
20793     
20794     content : {
20795         tag: 'tbody',
20796         cn: [
20797         {
20798             tag: 'tr',
20799             cn: [
20800             {
20801                 tag: 'td',
20802                 colspan: '7'
20803             }
20804             ]
20805         }
20806         ]
20807     },
20808     
20809     dates:{
20810         en: {
20811             months: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"],
20812             monthsShort: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"]
20813         }
20814     }
20815 });
20816
20817 Roo.apply(Roo.bootstrap.MonthField,  {
20818   
20819     template : {
20820         tag: 'div',
20821         cls: 'datepicker dropdown-menu roo-dynamic',
20822         cn: [
20823             {
20824                 tag: 'div',
20825                 cls: 'datepicker-months',
20826                 cn: [
20827                 {
20828                     tag: 'table',
20829                     cls: 'table-condensed',
20830                     cn:[
20831                         Roo.bootstrap.DateField.content
20832                     ]
20833                 }
20834                 ]
20835             }
20836         ]
20837     }
20838 });
20839
20840  
20841
20842  
20843  /*
20844  * - LGPL
20845  *
20846  * CheckBox
20847  * 
20848  */
20849
20850 /**
20851  * @class Roo.bootstrap.CheckBox
20852  * @extends Roo.bootstrap.Input
20853  * Bootstrap CheckBox class
20854  * 
20855  * @cfg {String} valueOff The value that should go into the generated input element's value when unchecked.
20856  * @cfg {String} inputValue The value that should go into the generated input element's value when checked.
20857  * @cfg {String} boxLabel The text that appears beside the checkbox
20858  * @cfg {String} weight (primary|warning|info|danger|success) The text that appears beside the checkbox
20859  * @cfg {Boolean} checked initnal the element
20860  * @cfg {Boolean} inline inline the element (default false)
20861  * @cfg {String} groupId the checkbox group id // normal just use for checkbox
20862  * @cfg {String} tooltip label tooltip
20863  * 
20864  * @constructor
20865  * Create a new CheckBox
20866  * @param {Object} config The config object
20867  */
20868
20869 Roo.bootstrap.CheckBox = function(config){
20870     Roo.bootstrap.CheckBox.superclass.constructor.call(this, config);
20871    
20872     this.addEvents({
20873         /**
20874         * @event check
20875         * Fires when the element is checked or unchecked.
20876         * @param {Roo.bootstrap.CheckBox} this This input
20877         * @param {Boolean} checked The new checked value
20878         */
20879        check : true,
20880        /**
20881         * @event click
20882         * Fires when the element is click.
20883         * @param {Roo.bootstrap.CheckBox} this This input
20884         */
20885        click : true
20886     });
20887     
20888 };
20889
20890 Roo.extend(Roo.bootstrap.CheckBox, Roo.bootstrap.Input,  {
20891   
20892     inputType: 'checkbox',
20893     inputValue: 1,
20894     valueOff: 0,
20895     boxLabel: false,
20896     checked: false,
20897     weight : false,
20898     inline: false,
20899     tooltip : '',
20900     
20901     getAutoCreate : function()
20902     {
20903         var align = (!this.labelAlign) ? this.parentLabelAlign() : this.labelAlign;
20904         
20905         var id = Roo.id();
20906         
20907         var cfg = {};
20908         
20909         cfg.cls = 'form-group ' + this.inputType; //input-group
20910         
20911         if(this.inline){
20912             cfg.cls += ' ' + this.inputType + '-inline';
20913         }
20914         
20915         var input =  {
20916             tag: 'input',
20917             id : id,
20918             type : this.inputType,
20919             value : this.inputValue,
20920             cls : 'roo-' + this.inputType, //'form-box',
20921             placeholder : this.placeholder || ''
20922             
20923         };
20924         
20925         if(this.inputType != 'radio'){
20926             var hidden =  {
20927                 tag: 'input',
20928                 type : 'hidden',
20929                 cls : 'roo-hidden-value',
20930                 value : this.checked ? this.inputValue : this.valueOff
20931             };
20932         }
20933         
20934             
20935         if (this.weight) { // Validity check?
20936             cfg.cls += " " + this.inputType + "-" + this.weight;
20937         }
20938         
20939         if (this.disabled) {
20940             input.disabled=true;
20941         }
20942         
20943         if(this.checked){
20944             input.checked = this.checked;
20945         }
20946         
20947         if (this.name) {
20948             
20949             input.name = this.name;
20950             
20951             if(this.inputType != 'radio'){
20952                 hidden.name = this.name;
20953                 input.name = '_hidden_' + this.name;
20954             }
20955         }
20956         
20957         if (this.size) {
20958             input.cls += ' input-' + this.size;
20959         }
20960         
20961         var settings=this;
20962         
20963         ['xs','sm','md','lg'].map(function(size){
20964             if (settings[size]) {
20965                 cfg.cls += ' col-' + size + '-' + settings[size];
20966             }
20967         });
20968         
20969         var inputblock = input;
20970          
20971         if (this.before || this.after) {
20972             
20973             inputblock = {
20974                 cls : 'input-group',
20975                 cn :  [] 
20976             };
20977             
20978             if (this.before) {
20979                 inputblock.cn.push({
20980                     tag :'span',
20981                     cls : 'input-group-addon',
20982                     html : this.before
20983                 });
20984             }
20985             
20986             inputblock.cn.push(input);
20987             
20988             if(this.inputType != 'radio'){
20989                 inputblock.cn.push(hidden);
20990             }
20991             
20992             if (this.after) {
20993                 inputblock.cn.push({
20994                     tag :'span',
20995                     cls : 'input-group-addon',
20996                     html : this.after
20997                 });
20998             }
20999             
21000         }
21001         
21002         if (align ==='left' && this.fieldLabel.length) {
21003 //                Roo.log("left and has label");
21004             cfg.cn = [
21005                 {
21006                     tag: 'label',
21007                     'for' :  id,
21008                     cls : 'control-label',
21009                     html : this.fieldLabel
21010                 },
21011                 {
21012                     cls : "", 
21013                     cn: [
21014                         inputblock
21015                     ]
21016                 }
21017             ];
21018             
21019             if(this.labelWidth > 12){
21020                 cfg.cn[0].style = "width: " + this.labelWidth + 'px';
21021             }
21022             
21023             if(this.labelWidth < 13 && this.labelmd == 0){
21024                 this.labelmd = this.labelWidth;
21025             }
21026             
21027             if(this.labellg > 0){
21028                 cfg.cn[0].cls += ' col-lg-' + this.labellg;
21029                 cfg.cn[1].cls += ' col-lg-' + (12 - this.labellg);
21030             }
21031             
21032             if(this.labelmd > 0){
21033                 cfg.cn[0].cls += ' col-md-' + this.labelmd;
21034                 cfg.cn[1].cls += ' col-md-' + (12 - this.labelmd);
21035             }
21036             
21037             if(this.labelsm > 0){
21038                 cfg.cn[0].cls += ' col-sm-' + this.labelsm;
21039                 cfg.cn[1].cls += ' col-sm-' + (12 - this.labelsm);
21040             }
21041             
21042             if(this.labelxs > 0){
21043                 cfg.cn[0].cls += ' col-xs-' + this.labelxs;
21044                 cfg.cn[1].cls += ' col-xs-' + (12 - this.labelxs);
21045             }
21046             
21047         } else if ( this.fieldLabel.length) {
21048 //                Roo.log(" label");
21049                 cfg.cn = [
21050                    
21051                     {
21052                         tag: this.boxLabel ? 'span' : 'label',
21053                         'for': id,
21054                         cls: 'control-label box-input-label',
21055                         //cls : 'input-group-addon',
21056                         html : this.fieldLabel
21057                     },
21058                     
21059                     inputblock
21060                     
21061                 ];
21062
21063         } else {
21064             
21065 //                Roo.log(" no label && no align");
21066                 cfg.cn = [  inputblock ] ;
21067                 
21068                 
21069         }
21070         
21071         if(this.boxLabel){
21072              var boxLabelCfg = {
21073                 tag: 'label',
21074                 //'for': id, // box label is handled by onclick - so no for...
21075                 cls: 'box-label',
21076                 html: this.boxLabel
21077             };
21078             
21079             if(this.tooltip){
21080                 boxLabelCfg.tooltip = this.tooltip;
21081             }
21082              
21083             cfg.cn.push(boxLabelCfg);
21084         }
21085         
21086         if(this.inputType != 'radio'){
21087             cfg.cn.push(hidden);
21088         }
21089         
21090         return cfg;
21091         
21092     },
21093     
21094     /**
21095      * return the real input element.
21096      */
21097     inputEl: function ()
21098     {
21099         return this.el.select('input.roo-' + this.inputType,true).first();
21100     },
21101     hiddenEl: function ()
21102     {
21103         return this.el.select('input.roo-hidden-value',true).first();
21104     },
21105     
21106     labelEl: function()
21107     {
21108         return this.el.select('label.control-label',true).first();
21109     },
21110     /* depricated... */
21111     
21112     label: function()
21113     {
21114         return this.labelEl();
21115     },
21116     
21117     boxLabelEl: function()
21118     {
21119         return this.el.select('label.box-label',true).first();
21120     },
21121     
21122     initEvents : function()
21123     {
21124 //        Roo.bootstrap.CheckBox.superclass.initEvents.call(this);
21125         
21126         this.inputEl().on('click', this.onClick,  this);
21127         
21128         if (this.boxLabel) { 
21129             this.el.select('label.box-label',true).first().on('click', this.onClick,  this);
21130         }
21131         
21132         this.startValue = this.getValue();
21133         
21134         if(this.groupId){
21135             Roo.bootstrap.CheckBox.register(this);
21136         }
21137     },
21138     
21139     onClick : function(e)
21140     {   
21141         if(this.fireEvent('click', this, e) !== false){
21142             this.setChecked(!this.checked);
21143         }
21144         
21145     },
21146     
21147     setChecked : function(state,suppressEvent)
21148     {
21149         this.startValue = this.getValue();
21150
21151         if(this.inputType == 'radio'){
21152             
21153             Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
21154                 e.dom.checked = false;
21155             });
21156             
21157             this.inputEl().dom.checked = true;
21158             
21159             this.inputEl().dom.value = this.inputValue;
21160             
21161             if(suppressEvent !== true){
21162                 this.fireEvent('check', this, true);
21163             }
21164             
21165             this.validate();
21166             
21167             return;
21168         }
21169         
21170         this.checked = state;
21171         
21172         this.inputEl().dom.checked = state;
21173         
21174         
21175         this.hiddenEl().dom.value = state ? this.inputValue : this.valueOff;
21176         
21177         if(suppressEvent !== true){
21178             this.fireEvent('check', this, state);
21179         }
21180         
21181         this.validate();
21182     },
21183     
21184     getValue : function()
21185     {
21186         if(this.inputType == 'radio'){
21187             return this.getGroupValue();
21188         }
21189         
21190         return this.hiddenEl().dom.value;
21191         
21192     },
21193     
21194     getGroupValue : function()
21195     {
21196         if(typeof(this.el.up('form').child('input[name='+this.name+']:checked', true)) == 'undefined'){
21197             return '';
21198         }
21199         
21200         return this.el.up('form').child('input[name='+this.name+']:checked', true).value;
21201     },
21202     
21203     setValue : function(v,suppressEvent)
21204     {
21205         if(this.inputType == 'radio'){
21206             this.setGroupValue(v, suppressEvent);
21207             return;
21208         }
21209         
21210         this.setChecked(((typeof(v) == 'undefined') ? this.checked : (String(v) === String(this.inputValue))), suppressEvent);
21211         
21212         this.validate();
21213     },
21214     
21215     setGroupValue : function(v, suppressEvent)
21216     {
21217         this.startValue = this.getValue();
21218         
21219         Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
21220             e.dom.checked = false;
21221             
21222             if(e.dom.value == v){
21223                 e.dom.checked = true;
21224             }
21225         });
21226         
21227         if(suppressEvent !== true){
21228             this.fireEvent('check', this, true);
21229         }
21230
21231         this.validate();
21232         
21233         return;
21234     },
21235     
21236     validate : function()
21237     {
21238         if(this.getVisibilityEl().hasClass('hidden')){
21239             return true;
21240         }
21241         
21242         if(
21243                 this.disabled || 
21244                 (this.inputType == 'radio' && this.validateRadio()) ||
21245                 (this.inputType == 'checkbox' && this.validateCheckbox())
21246         ){
21247             this.markValid();
21248             return true;
21249         }
21250         
21251         this.markInvalid();
21252         return false;
21253     },
21254     
21255     validateRadio : function()
21256     {
21257         if(this.getVisibilityEl().hasClass('hidden')){
21258             return true;
21259         }
21260         
21261         if(this.allowBlank){
21262             return true;
21263         }
21264         
21265         var valid = false;
21266         
21267         Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
21268             if(!e.dom.checked){
21269                 return;
21270             }
21271             
21272             valid = true;
21273             
21274             return false;
21275         });
21276         
21277         return valid;
21278     },
21279     
21280     validateCheckbox : function()
21281     {
21282         if(!this.groupId){
21283             return (this.getValue() == this.inputValue || this.allowBlank) ? true : false;
21284             //return (this.getValue() == this.inputValue) ? true : false;
21285         }
21286         
21287         var group = Roo.bootstrap.CheckBox.get(this.groupId);
21288         
21289         if(!group){
21290             return false;
21291         }
21292         
21293         var r = false;
21294         
21295         for(var i in group){
21296             if(group[i].el.isVisible(true)){
21297                 r = false;
21298                 break;
21299             }
21300             
21301             r = true;
21302         }
21303         
21304         for(var i in group){
21305             if(r){
21306                 break;
21307             }
21308             
21309             r = (group[i].getValue() == group[i].inputValue) ? true : false;
21310         }
21311         
21312         return r;
21313     },
21314     
21315     /**
21316      * Mark this field as valid
21317      */
21318     markValid : function()
21319     {
21320         var _this = this;
21321         
21322         this.fireEvent('valid', this);
21323         
21324         var label = Roo.bootstrap.FieldLabel.get(this.name + '-group');
21325         
21326         if(this.groupId){
21327             label = Roo.bootstrap.FieldLabel.get(this.groupId + '-group');
21328         }
21329         
21330         if(label){
21331             label.markValid();
21332         }
21333
21334         if(this.inputType == 'radio'){
21335             Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
21336                 var fg = e.findParent('.form-group', false, true);
21337                 if (Roo.bootstrap.version == 3) {
21338                     fg.removeClass([_this.invalidClass, _this.validClass]);
21339                     fg.addClass(_this.validClass);
21340                 } else {
21341                     fg.removeClass(['is-valid', 'is-invalid']);
21342                     fg.addClass('is-valid');
21343                 }
21344             });
21345             
21346             return;
21347         }
21348
21349         if(!this.groupId){
21350             var fg = this.el.findParent('.form-group', false, true);
21351             if (Roo.bootstrap.version == 3) {
21352                 fg.removeClass([this.invalidClass, this.validClass]);
21353                 fg.addClass(this.validClass);
21354             } else {
21355                 fg.removeClass(['is-valid', 'is-invalid']);
21356                 fg.addClass('is-valid');
21357             }
21358             return;
21359         }
21360         
21361         var group = Roo.bootstrap.CheckBox.get(this.groupId);
21362         
21363         if(!group){
21364             return;
21365         }
21366         
21367         for(var i in group){
21368             var fg = group[i].el.findParent('.form-group', false, true);
21369             if (Roo.bootstrap.version == 3) {
21370                 fg.removeClass([this.invalidClass, this.validClass]);
21371                 fg.addClass(this.validClass);
21372             } else {
21373                 fg.removeClass(['is-valid', 'is-invalid']);
21374                 fg.addClass('is-valid');
21375             }
21376         }
21377     },
21378     
21379      /**
21380      * Mark this field as invalid
21381      * @param {String} msg The validation message
21382      */
21383     markInvalid : function(msg)
21384     {
21385         if(this.allowBlank){
21386             return;
21387         }
21388         
21389         var _this = this;
21390         
21391         this.fireEvent('invalid', this, msg);
21392         
21393         var label = Roo.bootstrap.FieldLabel.get(this.name + '-group');
21394         
21395         if(this.groupId){
21396             label = Roo.bootstrap.FieldLabel.get(this.groupId + '-group');
21397         }
21398         
21399         if(label){
21400             label.markInvalid();
21401         }
21402             
21403         if(this.inputType == 'radio'){
21404             
21405             Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
21406                 var fg = e.findParent('.form-group', false, true);
21407                 if (Roo.bootstrap.version == 3) {
21408                     fg.removeClass([_this.invalidClass, _this.validClass]);
21409                     fg.addClass(_this.invalidClass);
21410                 } else {
21411                     fg.removeClass(['is-invalid', 'is-valid']);
21412                     fg.addClass('is-invalid');
21413                 }
21414             });
21415             
21416             return;
21417         }
21418         
21419         if(!this.groupId){
21420             var fg = this.el.findParent('.form-group', false, true);
21421             if (Roo.bootstrap.version == 3) {
21422                 fg.removeClass([_this.invalidClass, _this.validClass]);
21423                 fg.addClass(_this.invalidClass);
21424             } else {
21425                 fg.removeClass(['is-invalid', 'is-valid']);
21426                 fg.addClass('is-invalid');
21427             }
21428             return;
21429         }
21430         
21431         var group = Roo.bootstrap.CheckBox.get(this.groupId);
21432         
21433         if(!group){
21434             return;
21435         }
21436         
21437         for(var i in group){
21438             var fg = group[i].el.findParent('.form-group', false, true);
21439             if (Roo.bootstrap.version == 3) {
21440                 fg.removeClass([_this.invalidClass, _this.validClass]);
21441                 fg.addClass(_this.invalidClass);
21442             } else {
21443                 fg.removeClass(['is-invalid', 'is-valid']);
21444                 fg.addClass('is-invalid');
21445             }
21446         }
21447         
21448     },
21449     
21450     clearInvalid : function()
21451     {
21452         Roo.bootstrap.Input.prototype.clearInvalid.call(this);
21453         
21454         // this.el.findParent('.form-group', false, true).removeClass([this.invalidClass, this.validClass]);
21455         
21456         var label = Roo.bootstrap.FieldLabel.get(this.name + '-group');
21457         
21458         if (label && label.iconEl) {
21459             label.iconEl.removeClass([ label.validClass, label.invalidClass ]);
21460             label.iconEl.removeClass(['is-invalid', 'is-valid']);
21461         }
21462     },
21463     
21464     disable : function()
21465     {
21466         if(this.inputType != 'radio'){
21467             Roo.bootstrap.CheckBox.superclass.disable.call(this);
21468             return;
21469         }
21470         
21471         var _this = this;
21472         
21473         if(this.rendered){
21474             Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
21475                 _this.getActionEl().addClass(this.disabledClass);
21476                 e.dom.disabled = true;
21477             });
21478         }
21479         
21480         this.disabled = true;
21481         this.fireEvent("disable", this);
21482         return this;
21483     },
21484
21485     enable : function()
21486     {
21487         if(this.inputType != 'radio'){
21488             Roo.bootstrap.CheckBox.superclass.enable.call(this);
21489             return;
21490         }
21491         
21492         var _this = this;
21493         
21494         if(this.rendered){
21495             Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
21496                 _this.getActionEl().removeClass(this.disabledClass);
21497                 e.dom.disabled = false;
21498             });
21499         }
21500         
21501         this.disabled = false;
21502         this.fireEvent("enable", this);
21503         return this;
21504     },
21505     
21506     setBoxLabel : function(v)
21507     {
21508         this.boxLabel = v;
21509         
21510         if(this.rendered){
21511             this.el.select('label.box-label',true).first().dom.innerHTML = (v === null || v === undefined ? '' : v);
21512         }
21513     }
21514
21515 });
21516
21517 Roo.apply(Roo.bootstrap.CheckBox, {
21518     
21519     groups: {},
21520     
21521      /**
21522     * register a CheckBox Group
21523     * @param {Roo.bootstrap.CheckBox} the CheckBox to add
21524     */
21525     register : function(checkbox)
21526     {
21527         if(typeof(this.groups[checkbox.groupId]) == 'undefined'){
21528             this.groups[checkbox.groupId] = {};
21529         }
21530         
21531         if(this.groups[checkbox.groupId].hasOwnProperty(checkbox.name)){
21532             return;
21533         }
21534         
21535         this.groups[checkbox.groupId][checkbox.name] = checkbox;
21536         
21537     },
21538     /**
21539     * fetch a CheckBox Group based on the group ID
21540     * @param {string} the group ID
21541     * @returns {Roo.bootstrap.CheckBox} the CheckBox group
21542     */
21543     get: function(groupId) {
21544         if (typeof(this.groups[groupId]) == 'undefined') {
21545             return false;
21546         }
21547         
21548         return this.groups[groupId] ;
21549     }
21550     
21551     
21552 });
21553 /*
21554  * - LGPL
21555  *
21556  * RadioItem
21557  * 
21558  */
21559
21560 /**
21561  * @class Roo.bootstrap.Radio
21562  * @extends Roo.bootstrap.Component
21563  * Bootstrap Radio class
21564  * @cfg {String} boxLabel - the label associated
21565  * @cfg {String} value - the value of radio
21566  * 
21567  * @constructor
21568  * Create a new Radio
21569  * @param {Object} config The config object
21570  */
21571 Roo.bootstrap.Radio = function(config){
21572     Roo.bootstrap.Radio.superclass.constructor.call(this, config);
21573     
21574 };
21575
21576 Roo.extend(Roo.bootstrap.Radio, Roo.bootstrap.Component, {
21577     
21578     boxLabel : '',
21579     
21580     value : '',
21581     
21582     getAutoCreate : function()
21583     {
21584         var cfg = {
21585             tag : 'div',
21586             cls : 'form-group radio',
21587             cn : [
21588                 {
21589                     tag : 'label',
21590                     cls : 'box-label',
21591                     html : this.boxLabel
21592                 }
21593             ]
21594         };
21595         
21596         return cfg;
21597     },
21598     
21599     initEvents : function() 
21600     {
21601         this.parent().register(this);
21602         
21603         this.el.on('click', this.onClick, this);
21604         
21605     },
21606     
21607     onClick : function(e)
21608     {
21609         if(this.parent().fireEvent('click', this.parent(), this, e) !== false){
21610             this.setChecked(true);
21611         }
21612     },
21613     
21614     setChecked : function(state, suppressEvent)
21615     {
21616         this.parent().setValue(this.value, suppressEvent);
21617         
21618     },
21619     
21620     setBoxLabel : function(v)
21621     {
21622         this.boxLabel = v;
21623         
21624         if(this.rendered){
21625             this.el.select('label.box-label',true).first().dom.innerHTML = (v === null || v === undefined ? '' : v);
21626         }
21627     }
21628     
21629 });
21630  
21631
21632  /*
21633  * - LGPL
21634  *
21635  * Input
21636  * 
21637  */
21638
21639 /**
21640  * @class Roo.bootstrap.SecurePass
21641  * @extends Roo.bootstrap.Input
21642  * Bootstrap SecurePass class
21643  *
21644  * 
21645  * @constructor
21646  * Create a new SecurePass
21647  * @param {Object} config The config object
21648  */
21649  
21650 Roo.bootstrap.SecurePass = function (config) {
21651     // these go here, so the translation tool can replace them..
21652     this.errors = {
21653         PwdEmpty: "Please type a password, and then retype it to confirm.",
21654         PwdShort: "Your password must be at least 6 characters long. Please type a different password.",
21655         PwdLong: "Your password can't contain more than 16 characters. Please type a different password.",
21656         PwdBadChar: "The password contains characters that aren't allowed. Please type a different password.",
21657         IDInPwd: "Your password can't include the part of your ID. Please type a different password.",
21658         FNInPwd: "Your password can't contain your first name. Please type a different password.",
21659         LNInPwd: "Your password can't contain your last name. Please type a different password.",
21660         TooWeak: "Your password is Too Weak."
21661     },
21662     this.meterLabel = "Password strength:";
21663     this.pwdStrengths = ["Too Weak", "Weak", "Medium", "Strong"];
21664     this.meterClass = [
21665         "roo-password-meter-tooweak", 
21666         "roo-password-meter-weak", 
21667         "roo-password-meter-medium", 
21668         "roo-password-meter-strong", 
21669         "roo-password-meter-grey"
21670     ];
21671     
21672     this.errors = {};
21673     
21674     Roo.bootstrap.SecurePass.superclass.constructor.call(this, config);
21675 }
21676
21677 Roo.extend(Roo.bootstrap.SecurePass, Roo.bootstrap.Input, {
21678     /**
21679      * @cfg {String/Object} errors A Error spec, or true for a default spec (defaults to
21680      * {
21681      *  PwdEmpty: "Please type a password, and then retype it to confirm.",
21682      *  PwdShort: "Your password must be at least 6 characters long. Please type a different password.",
21683      *  PwdLong: "Your password can't contain more than 16 characters. Please type a different password.",
21684      *  PwdBadChar: "The password contains characters that aren't allowed. Please type a different password.",
21685      *  IDInPwd: "Your password can't include the part of your ID. Please type a different password.",
21686      *  FNInPwd: "Your password can't contain your first name. Please type a different password.",
21687      *  LNInPwd: "Your password can't contain your last name. Please type a different password."
21688      * })
21689      */
21690     // private
21691     
21692     meterWidth: 300,
21693     errorMsg :'',    
21694     errors: false,
21695     imageRoot: '/',
21696     /**
21697      * @cfg {String/Object} Label for the strength meter (defaults to
21698      * 'Password strength:')
21699      */
21700     // private
21701     meterLabel: '',
21702     /**
21703      * @cfg {String/Object} pwdStrengths A pwdStrengths spec, or true for a default spec (defaults to
21704      * ['Weak', 'Medium', 'Strong'])
21705      */
21706     // private    
21707     pwdStrengths: false,    
21708     // private
21709     strength: 0,
21710     // private
21711     _lastPwd: null,
21712     // private
21713     kCapitalLetter: 0,
21714     kSmallLetter: 1,
21715     kDigit: 2,
21716     kPunctuation: 3,
21717     
21718     insecure: false,
21719     // private
21720     initEvents: function ()
21721     {
21722         Roo.bootstrap.SecurePass.superclass.initEvents.call(this);
21723
21724         if (this.el.is('input[type=password]') && Roo.isSafari) {
21725             this.el.on('keydown', this.SafariOnKeyDown, this);
21726         }
21727
21728         this.el.on('keyup', this.checkStrength, this, {buffer: 50});
21729     },
21730     // private
21731     onRender: function (ct, position)
21732     {
21733         Roo.bootstrap.SecurePass.superclass.onRender.call(this, ct, position);
21734         this.wrap = this.el.wrap({cls: 'x-form-field-wrap'});
21735         this.trigger = this.wrap.createChild({tag: 'div', cls: 'StrengthMeter ' + this.triggerClass});
21736
21737         this.trigger.createChild({
21738                    cn: [
21739                     {
21740                     //id: 'PwdMeter',
21741                     tag: 'div',
21742                     cls: 'roo-password-meter-grey col-xs-12',
21743                     style: {
21744                         //width: 0,
21745                         //width: this.meterWidth + 'px'                                                
21746                         }
21747                     },
21748                     {                            
21749                          cls: 'roo-password-meter-text'                          
21750                     }
21751                 ]            
21752         });
21753
21754          
21755         if (this.hideTrigger) {
21756             this.trigger.setDisplayed(false);
21757         }
21758         this.setSize(this.width || '', this.height || '');
21759     },
21760     // private
21761     onDestroy: function ()
21762     {
21763         if (this.trigger) {
21764             this.trigger.removeAllListeners();
21765             this.trigger.remove();
21766         }
21767         if (this.wrap) {
21768             this.wrap.remove();
21769         }
21770         Roo.bootstrap.TriggerField.superclass.onDestroy.call(this);
21771     },
21772     // private
21773     checkStrength: function ()
21774     {
21775         var pwd = this.inputEl().getValue();
21776         if (pwd == this._lastPwd) {
21777             return;
21778         }
21779
21780         var strength;
21781         if (this.ClientSideStrongPassword(pwd)) {
21782             strength = 3;
21783         } else if (this.ClientSideMediumPassword(pwd)) {
21784             strength = 2;
21785         } else if (this.ClientSideWeakPassword(pwd)) {
21786             strength = 1;
21787         } else {
21788             strength = 0;
21789         }
21790         
21791         Roo.log('strength1: ' + strength);
21792         
21793         //var pm = this.trigger.child('div/div/div').dom;
21794         var pm = this.trigger.child('div/div');
21795         pm.removeClass(this.meterClass);
21796         pm.addClass(this.meterClass[strength]);
21797                 
21798         
21799         var pt = this.trigger.child('/div').child('>*[class=roo-password-meter-text]').dom;        
21800                 
21801         pt.innerHTML = this.meterLabel + '&nbsp;' + this.pwdStrengths[strength];
21802         
21803         this._lastPwd = pwd;
21804     },
21805     reset: function ()
21806     {
21807         Roo.bootstrap.SecurePass.superclass.reset.call(this);
21808         
21809         this._lastPwd = '';
21810         
21811         var pm = this.trigger.child('div/div');
21812         pm.removeClass(this.meterClass);
21813         pm.addClass('roo-password-meter-grey');        
21814         
21815         
21816         var pt = this.trigger.child('/div').child('>*[class=roo-password-meter-text]').dom;        
21817         
21818         pt.innerHTML = '';
21819         this.inputEl().dom.type='password';
21820     },
21821     // private
21822     validateValue: function (value)
21823     {
21824         
21825         if (!Roo.bootstrap.SecurePass.superclass.validateValue.call(this, value)) {
21826             return false;
21827         }
21828         if (value.length == 0) {
21829             if (this.allowBlank) {
21830                 this.clearInvalid();
21831                 return true;
21832             }
21833
21834             this.markInvalid(this.errors.PwdEmpty);
21835             this.errorMsg = this.errors.PwdEmpty;
21836             return false;
21837         }
21838         
21839         if(this.insecure){
21840             return true;
21841         }
21842         
21843         if ('[\x21-\x7e]*'.match(value)) {
21844             this.markInvalid(this.errors.PwdBadChar);
21845             this.errorMsg = this.errors.PwdBadChar;
21846             return false;
21847         }
21848         if (value.length < 6) {
21849             this.markInvalid(this.errors.PwdShort);
21850             this.errorMsg = this.errors.PwdShort;
21851             return false;
21852         }
21853         if (value.length > 16) {
21854             this.markInvalid(this.errors.PwdLong);
21855             this.errorMsg = this.errors.PwdLong;
21856             return false;
21857         }
21858         var strength;
21859         if (this.ClientSideStrongPassword(value)) {
21860             strength = 3;
21861         } else if (this.ClientSideMediumPassword(value)) {
21862             strength = 2;
21863         } else if (this.ClientSideWeakPassword(value)) {
21864             strength = 1;
21865         } else {
21866             strength = 0;
21867         }
21868
21869         
21870         if (strength < 2) {
21871             //this.markInvalid(this.errors.TooWeak);
21872             this.errorMsg = this.errors.TooWeak;
21873             //return false;
21874         }
21875         
21876         
21877         console.log('strength2: ' + strength);
21878         
21879         //var pm = this.trigger.child('div/div/div').dom;
21880         
21881         var pm = this.trigger.child('div/div');
21882         pm.removeClass(this.meterClass);
21883         pm.addClass(this.meterClass[strength]);
21884                 
21885         var pt = this.trigger.child('/div').child('>*[class=roo-password-meter-text]').dom;        
21886                 
21887         pt.innerHTML = this.meterLabel + '&nbsp;' + this.pwdStrengths[strength];
21888         
21889         this.errorMsg = ''; 
21890         return true;
21891     },
21892     // private
21893     CharacterSetChecks: function (type)
21894     {
21895         this.type = type;
21896         this.fResult = false;
21897     },
21898     // private
21899     isctype: function (character, type)
21900     {
21901         switch (type) {  
21902             case this.kCapitalLetter:
21903                 if (character >= 'A' && character <= 'Z') {
21904                     return true;
21905                 }
21906                 break;
21907             
21908             case this.kSmallLetter:
21909                 if (character >= 'a' && character <= 'z') {
21910                     return true;
21911                 }
21912                 break;
21913             
21914             case this.kDigit:
21915                 if (character >= '0' && character <= '9') {
21916                     return true;
21917                 }
21918                 break;
21919             
21920             case this.kPunctuation:
21921                 if ('!@#$%^&*()_+-=\'";:[{]}|.>,</?`~'.indexOf(character) >= 0) {
21922                     return true;
21923                 }
21924                 break;
21925             
21926             default:
21927                 return false;
21928         }
21929
21930     },
21931     // private
21932     IsLongEnough: function (pwd, size)
21933     {
21934         return !(pwd == null || isNaN(size) || pwd.length < size);
21935     },
21936     // private
21937     SpansEnoughCharacterSets: function (word, nb)
21938     {
21939         if (!this.IsLongEnough(word, nb))
21940         {
21941             return false;
21942         }
21943
21944         var characterSetChecks = new Array(
21945             new this.CharacterSetChecks(this.kCapitalLetter), new this.CharacterSetChecks(this.kSmallLetter),
21946             new this.CharacterSetChecks(this.kDigit), new this.CharacterSetChecks(this.kPunctuation)
21947         );
21948         
21949         for (var index = 0; index < word.length; ++index) {
21950             for (var nCharSet = 0; nCharSet < characterSetChecks.length; ++nCharSet) {
21951                 if (!characterSetChecks[nCharSet].fResult && this.isctype(word.charAt(index), characterSetChecks[nCharSet].type)) {
21952                     characterSetChecks[nCharSet].fResult = true;
21953                     break;
21954                 }
21955             }
21956         }
21957
21958         var nCharSets = 0;
21959         for (var nCharSet = 0; nCharSet < characterSetChecks.length; ++nCharSet) {
21960             if (characterSetChecks[nCharSet].fResult) {
21961                 ++nCharSets;
21962             }
21963         }
21964
21965         if (nCharSets < nb) {
21966             return false;
21967         }
21968         return true;
21969     },
21970     // private
21971     ClientSideStrongPassword: function (pwd)
21972     {
21973         return this.IsLongEnough(pwd, 8) && this.SpansEnoughCharacterSets(pwd, 3);
21974     },
21975     // private
21976     ClientSideMediumPassword: function (pwd)
21977     {
21978         return this.IsLongEnough(pwd, 7) && this.SpansEnoughCharacterSets(pwd, 2);
21979     },
21980     // private
21981     ClientSideWeakPassword: function (pwd)
21982     {
21983         return this.IsLongEnough(pwd, 6) || !this.IsLongEnough(pwd, 0);
21984     }
21985           
21986 })//<script type="text/javascript">
21987
21988 /*
21989  * Based  Ext JS Library 1.1.1
21990  * Copyright(c) 2006-2007, Ext JS, LLC.
21991  * LGPL
21992  *
21993  */
21994  
21995 /**
21996  * @class Roo.HtmlEditorCore
21997  * @extends Roo.Component
21998  * Provides a the editing component for the HTML editors in Roo. (bootstrap and Roo.form)
21999  *
22000  * any element that has display set to 'none' can cause problems in Safari and Firefox.<br/><br/>
22001  */
22002
22003 Roo.HtmlEditorCore = function(config){
22004     
22005     
22006     Roo.HtmlEditorCore.superclass.constructor.call(this, config);
22007     
22008     
22009     this.addEvents({
22010         /**
22011          * @event initialize
22012          * Fires when the editor is fully initialized (including the iframe)
22013          * @param {Roo.HtmlEditorCore} this
22014          */
22015         initialize: true,
22016         /**
22017          * @event activate
22018          * Fires when the editor is first receives the focus. Any insertion must wait
22019          * until after this event.
22020          * @param {Roo.HtmlEditorCore} this
22021          */
22022         activate: true,
22023          /**
22024          * @event beforesync
22025          * Fires before the textarea is updated with content from the editor iframe. Return false
22026          * to cancel the sync.
22027          * @param {Roo.HtmlEditorCore} this
22028          * @param {String} html
22029          */
22030         beforesync: true,
22031          /**
22032          * @event beforepush
22033          * Fires before the iframe editor is updated with content from the textarea. Return false
22034          * to cancel the push.
22035          * @param {Roo.HtmlEditorCore} this
22036          * @param {String} html
22037          */
22038         beforepush: true,
22039          /**
22040          * @event sync
22041          * Fires when the textarea is updated with content from the editor iframe.
22042          * @param {Roo.HtmlEditorCore} this
22043          * @param {String} html
22044          */
22045         sync: true,
22046          /**
22047          * @event push
22048          * Fires when the iframe editor is updated with content from the textarea.
22049          * @param {Roo.HtmlEditorCore} this
22050          * @param {String} html
22051          */
22052         push: true,
22053         
22054         /**
22055          * @event editorevent
22056          * Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks.
22057          * @param {Roo.HtmlEditorCore} this
22058          */
22059         editorevent: true
22060         
22061     });
22062     
22063     // at this point this.owner is set, so we can start working out the whitelisted / blacklisted elements
22064     
22065     // defaults : white / black...
22066     this.applyBlacklists();
22067     
22068     
22069     
22070 };
22071
22072
22073 Roo.extend(Roo.HtmlEditorCore, Roo.Component,  {
22074
22075
22076      /**
22077      * @cfg {Roo.form.HtmlEditor|Roo.bootstrap.HtmlEditor} the owner field 
22078      */
22079     
22080     owner : false,
22081     
22082      /**
22083      * @cfg {String} resizable  's' or 'se' or 'e' - wrapps the element in a
22084      *                        Roo.resizable.
22085      */
22086     resizable : false,
22087      /**
22088      * @cfg {Number} height (in pixels)
22089      */   
22090     height: 300,
22091    /**
22092      * @cfg {Number} width (in pixels)
22093      */   
22094     width: 500,
22095     
22096     /**
22097      * @cfg {Array} stylesheets url of stylesheets. set to [] to disable stylesheets.
22098      * 
22099      */
22100     stylesheets: false,
22101     
22102     // id of frame..
22103     frameId: false,
22104     
22105     // private properties
22106     validationEvent : false,
22107     deferHeight: true,
22108     initialized : false,
22109     activated : false,
22110     sourceEditMode : false,
22111     onFocus : Roo.emptyFn,
22112     iframePad:3,
22113     hideMode:'offsets',
22114     
22115     clearUp: true,
22116     
22117     // blacklist + whitelisted elements..
22118     black: false,
22119     white: false,
22120      
22121     bodyCls : '',
22122
22123     /**
22124      * Protected method that will not generally be called directly. It
22125      * is called when the editor initializes the iframe with HTML contents. Override this method if you
22126      * want to change the initialization markup of the iframe (e.g. to add stylesheets).
22127      */
22128     getDocMarkup : function(){
22129         // body styles..
22130         var st = '';
22131         
22132         // inherit styels from page...?? 
22133         if (this.stylesheets === false) {
22134             
22135             Roo.get(document.head).select('style').each(function(node) {
22136                 st += node.dom.outerHTML || new XMLSerializer().serializeToString(node.dom);
22137             });
22138             
22139             Roo.get(document.head).select('link').each(function(node) { 
22140                 st += node.dom.outerHTML || new XMLSerializer().serializeToString(node.dom);
22141             });
22142             
22143         } else if (!this.stylesheets.length) {
22144                 // simple..
22145                 st = '<style type="text/css">' +
22146                     'body{border:0;margin:0;padding:3px;height:98%;cursor:text;}' +
22147                    '</style>';
22148         } else { 
22149             st = '<style type="text/css">' +
22150                     this.stylesheets +
22151                 '</style>';
22152         }
22153         
22154         st +=  '<style type="text/css">' +
22155             'IMG { cursor: pointer } ' +
22156         '</style>';
22157
22158         var cls = 'roo-htmleditor-body';
22159         
22160         if(this.bodyCls.length){
22161             cls += ' ' + this.bodyCls;
22162         }
22163         
22164         return '<html><head>' + st  +
22165             //<style type="text/css">' +
22166             //'body{border:0;margin:0;padding:3px;height:98%;cursor:text;}' +
22167             //'</style>' +
22168             ' </head><body class="' +  cls + '"></body></html>';
22169     },
22170
22171     // private
22172     onRender : function(ct, position)
22173     {
22174         var _t = this;
22175         //Roo.HtmlEditorCore.superclass.onRender.call(this, ct, position);
22176         this.el = this.owner.inputEl ? this.owner.inputEl() : this.owner.el;
22177         
22178         
22179         this.el.dom.style.border = '0 none';
22180         this.el.dom.setAttribute('tabIndex', -1);
22181         this.el.addClass('x-hidden hide');
22182         
22183         
22184         
22185         if(Roo.isIE){ // fix IE 1px bogus margin
22186             this.el.applyStyles('margin-top:-1px;margin-bottom:-1px;')
22187         }
22188        
22189         
22190         this.frameId = Roo.id();
22191         
22192          
22193         
22194         var iframe = this.owner.wrap.createChild({
22195             tag: 'iframe',
22196             cls: 'form-control', // bootstrap..
22197             id: this.frameId,
22198             name: this.frameId,
22199             frameBorder : 'no',
22200             'src' : Roo.SSL_SECURE_URL ? Roo.SSL_SECURE_URL  :  "javascript:false"
22201         }, this.el
22202         );
22203         
22204         
22205         this.iframe = iframe.dom;
22206
22207          this.assignDocWin();
22208         
22209         this.doc.designMode = 'on';
22210        
22211         this.doc.open();
22212         this.doc.write(this.getDocMarkup());
22213         this.doc.close();
22214
22215         
22216         var task = { // must defer to wait for browser to be ready
22217             run : function(){
22218                 //console.log("run task?" + this.doc.readyState);
22219                 this.assignDocWin();
22220                 if(this.doc.body || this.doc.readyState == 'complete'){
22221                     try {
22222                         this.doc.designMode="on";
22223                     } catch (e) {
22224                         return;
22225                     }
22226                     Roo.TaskMgr.stop(task);
22227                     this.initEditor.defer(10, this);
22228                 }
22229             },
22230             interval : 10,
22231             duration: 10000,
22232             scope: this
22233         };
22234         Roo.TaskMgr.start(task);
22235
22236     },
22237
22238     // private
22239     onResize : function(w, h)
22240     {
22241          Roo.log('resize: ' +w + ',' + h );
22242         //Roo.HtmlEditorCore.superclass.onResize.apply(this, arguments);
22243         if(!this.iframe){
22244             return;
22245         }
22246         if(typeof w == 'number'){
22247             
22248             this.iframe.style.width = w + 'px';
22249         }
22250         if(typeof h == 'number'){
22251             
22252             this.iframe.style.height = h + 'px';
22253             if(this.doc){
22254                 (this.doc.body || this.doc.documentElement).style.height = (h - (this.iframePad*2)) + 'px';
22255             }
22256         }
22257         
22258     },
22259
22260     /**
22261      * Toggles the editor between standard and source edit mode.
22262      * @param {Boolean} sourceEdit (optional) True for source edit, false for standard
22263      */
22264     toggleSourceEdit : function(sourceEditMode){
22265         
22266         this.sourceEditMode = sourceEditMode === true;
22267         
22268         if(this.sourceEditMode){
22269  
22270             Roo.get(this.iframe).addClass(['x-hidden','hide']);     //FIXME - what's the BS styles for these
22271             
22272         }else{
22273             Roo.get(this.iframe).removeClass(['x-hidden','hide']);
22274             //this.iframe.className = '';
22275             this.deferFocus();
22276         }
22277         //this.setSize(this.owner.wrap.getSize());
22278         //this.fireEvent('editmodechange', this, this.sourceEditMode);
22279     },
22280
22281     
22282   
22283
22284     /**
22285      * Protected method that will not generally be called directly. If you need/want
22286      * custom HTML cleanup, this is the method you should override.
22287      * @param {String} html The HTML to be cleaned
22288      * return {String} The cleaned HTML
22289      */
22290     cleanHtml : function(html){
22291         html = String(html);
22292         if(html.length > 5){
22293             if(Roo.isSafari){ // strip safari nonsense
22294                 html = html.replace(/\sclass="(?:Apple-style-span|khtml-block-placeholder)"/gi, '');
22295             }
22296         }
22297         if(html == '&nbsp;'){
22298             html = '';
22299         }
22300         return html;
22301     },
22302
22303     /**
22304      * HTML Editor -> Textarea
22305      * Protected method that will not generally be called directly. Syncs the contents
22306      * of the editor iframe with the textarea.
22307      */
22308     syncValue : function(){
22309         if(this.initialized){
22310             var bd = (this.doc.body || this.doc.documentElement);
22311             //this.cleanUpPaste(); -- this is done else where and causes havoc..
22312             var html = bd.innerHTML;
22313             if(Roo.isSafari){
22314                 var bs = bd.getAttribute('style'); // Safari puts text-align styles on the body element!
22315                 var m = bs ? bs.match(/text-align:(.*?);/i) : false;
22316                 if(m && m[1]){
22317                     html = '<div style="'+m[0]+'">' + html + '</div>';
22318                 }
22319             }
22320             html = this.cleanHtml(html);
22321             // fix up the special chars.. normaly like back quotes in word...
22322             // however we do not want to do this with chinese..
22323             html = html.replace(/[\uD800-\uDBFF][\uDC00-\uDFFF]|[\u0080-\uFFFF]/g, function(match) {
22324                 
22325                 var cc = match.charCodeAt();
22326
22327                 // Get the character value, handling surrogate pairs
22328                 if (match.length == 2) {
22329                     // It's a surrogate pair, calculate the Unicode code point
22330                     var high = match.charCodeAt(0) - 0xD800;
22331                     var low  = match.charCodeAt(1) - 0xDC00;
22332                     cc = (high * 0x400) + low + 0x10000;
22333                 }  else if (
22334                     (cc >= 0x4E00 && cc < 0xA000 ) ||
22335                     (cc >= 0x3400 && cc < 0x4E00 ) ||
22336                     (cc >= 0xf900 && cc < 0xfb00 )
22337                 ) {
22338                         return match;
22339                 }  
22340          
22341                 // No, use a numeric entity. Here we brazenly (and possibly mistakenly)
22342                 return "&#" + cc + ";";
22343                 
22344                 
22345             });
22346             
22347             
22348              
22349             if(this.owner.fireEvent('beforesync', this, html) !== false){
22350                 this.el.dom.value = html;
22351                 this.owner.fireEvent('sync', this, html);
22352             }
22353         }
22354     },
22355
22356     /**
22357      * Protected method that will not generally be called directly. Pushes the value of the textarea
22358      * into the iframe editor.
22359      */
22360     pushValue : function(){
22361         if(this.initialized){
22362             var v = this.el.dom.value.trim();
22363             
22364 //            if(v.length < 1){
22365 //                v = '&#160;';
22366 //            }
22367             
22368             if(this.owner.fireEvent('beforepush', this, v) !== false){
22369                 var d = (this.doc.body || this.doc.documentElement);
22370                 d.innerHTML = v;
22371                 this.cleanUpPaste();
22372                 this.el.dom.value = d.innerHTML;
22373                 this.owner.fireEvent('push', this, v);
22374             }
22375         }
22376     },
22377
22378     // private
22379     deferFocus : function(){
22380         this.focus.defer(10, this);
22381     },
22382
22383     // doc'ed in Field
22384     focus : function(){
22385         if(this.win && !this.sourceEditMode){
22386             this.win.focus();
22387         }else{
22388             this.el.focus();
22389         }
22390     },
22391     
22392     assignDocWin: function()
22393     {
22394         var iframe = this.iframe;
22395         
22396          if(Roo.isIE){
22397             this.doc = iframe.contentWindow.document;
22398             this.win = iframe.contentWindow;
22399         } else {
22400 //            if (!Roo.get(this.frameId)) {
22401 //                return;
22402 //            }
22403 //            this.doc = (iframe.contentDocument || Roo.get(this.frameId).dom.document);
22404 //            this.win = Roo.get(this.frameId).dom.contentWindow;
22405             
22406             if (!Roo.get(this.frameId) && !iframe.contentDocument) {
22407                 return;
22408             }
22409             
22410             this.doc = (iframe.contentDocument || Roo.get(this.frameId).dom.document);
22411             this.win = (iframe.contentWindow || Roo.get(this.frameId).dom.contentWindow);
22412         }
22413     },
22414     
22415     // private
22416     initEditor : function(){
22417         //console.log("INIT EDITOR");
22418         this.assignDocWin();
22419         
22420         
22421         
22422         this.doc.designMode="on";
22423         this.doc.open();
22424         this.doc.write(this.getDocMarkup());
22425         this.doc.close();
22426         
22427         var dbody = (this.doc.body || this.doc.documentElement);
22428         //var ss = this.el.getStyles('font-size', 'font-family', 'background-image', 'background-repeat');
22429         // this copies styles from the containing element into thsi one..
22430         // not sure why we need all of this..
22431         //var ss = this.el.getStyles('font-size', 'background-image', 'background-repeat');
22432         
22433         //var ss = this.el.getStyles( 'background-image', 'background-repeat');
22434         //ss['background-attachment'] = 'fixed'; // w3c
22435         dbody.bgProperties = 'fixed'; // ie
22436         //Roo.DomHelper.applyStyles(dbody, ss);
22437         Roo.EventManager.on(this.doc, {
22438             //'mousedown': this.onEditorEvent,
22439             'mouseup': this.onEditorEvent,
22440             'dblclick': this.onEditorEvent,
22441             'click': this.onEditorEvent,
22442             'keyup': this.onEditorEvent,
22443             buffer:100,
22444             scope: this
22445         });
22446         if(Roo.isGecko){
22447             Roo.EventManager.on(this.doc, 'keypress', this.mozKeyPress, this);
22448         }
22449         if(Roo.isIE || Roo.isSafari || Roo.isOpera){
22450             Roo.EventManager.on(this.doc, 'keydown', this.fixKeys, this);
22451         }
22452         this.initialized = true;
22453
22454         this.owner.fireEvent('initialize', this);
22455         this.pushValue();
22456     },
22457
22458     // private
22459     onDestroy : function(){
22460         
22461         
22462         
22463         if(this.rendered){
22464             
22465             //for (var i =0; i < this.toolbars.length;i++) {
22466             //    // fixme - ask toolbars for heights?
22467             //    this.toolbars[i].onDestroy();
22468            // }
22469             
22470             //this.wrap.dom.innerHTML = '';
22471             //this.wrap.remove();
22472         }
22473     },
22474
22475     // private
22476     onFirstFocus : function(){
22477         
22478         this.assignDocWin();
22479         
22480         
22481         this.activated = true;
22482          
22483     
22484         if(Roo.isGecko){ // prevent silly gecko errors
22485             this.win.focus();
22486             var s = this.win.getSelection();
22487             if(!s.focusNode || s.focusNode.nodeType != 3){
22488                 var r = s.getRangeAt(0);
22489                 r.selectNodeContents((this.doc.body || this.doc.documentElement));
22490                 r.collapse(true);
22491                 this.deferFocus();
22492             }
22493             try{
22494                 this.execCmd('useCSS', true);
22495                 this.execCmd('styleWithCSS', false);
22496             }catch(e){}
22497         }
22498         this.owner.fireEvent('activate', this);
22499     },
22500
22501     // private
22502     adjustFont: function(btn){
22503         var adjust = btn.cmd == 'increasefontsize' ? 1 : -1;
22504         //if(Roo.isSafari){ // safari
22505         //    adjust *= 2;
22506        // }
22507         var v = parseInt(this.doc.queryCommandValue('FontSize')|| 3, 10);
22508         if(Roo.isSafari){ // safari
22509             var sm = { 10 : 1, 13: 2, 16:3, 18:4, 24: 5, 32:6, 48: 7 };
22510             v =  (v < 10) ? 10 : v;
22511             v =  (v > 48) ? 48 : v;
22512             v = typeof(sm[v]) == 'undefined' ? 1 : sm[v];
22513             
22514         }
22515         
22516         
22517         v = Math.max(1, v+adjust);
22518         
22519         this.execCmd('FontSize', v  );
22520     },
22521
22522     onEditorEvent : function(e)
22523     {
22524         this.owner.fireEvent('editorevent', this, e);
22525       //  this.updateToolbar();
22526         this.syncValue(); //we can not sync so often.. sync cleans, so this breaks stuff
22527     },
22528
22529     insertTag : function(tg)
22530     {
22531         // could be a bit smarter... -> wrap the current selected tRoo..
22532         if (tg.toLowerCase() == 'span' || tg.toLowerCase() == 'code') {
22533             
22534             range = this.createRange(this.getSelection());
22535             var wrappingNode = this.doc.createElement(tg.toLowerCase());
22536             wrappingNode.appendChild(range.extractContents());
22537             range.insertNode(wrappingNode);
22538
22539             return;
22540             
22541             
22542             
22543         }
22544         this.execCmd("formatblock",   tg);
22545         
22546     },
22547     
22548     insertText : function(txt)
22549     {
22550         
22551         
22552         var range = this.createRange();
22553         range.deleteContents();
22554                //alert(Sender.getAttribute('label'));
22555                
22556         range.insertNode(this.doc.createTextNode(txt));
22557     } ,
22558     
22559      
22560
22561     /**
22562      * Executes a Midas editor command on the editor document and performs necessary focus and
22563      * toolbar updates. <b>This should only be called after the editor is initialized.</b>
22564      * @param {String} cmd The Midas command
22565      * @param {String/Boolean} value (optional) The value to pass to the command (defaults to null)
22566      */
22567     relayCmd : function(cmd, value){
22568         this.win.focus();
22569         this.execCmd(cmd, value);
22570         this.owner.fireEvent('editorevent', this);
22571         //this.updateToolbar();
22572         this.owner.deferFocus();
22573     },
22574
22575     /**
22576      * Executes a Midas editor command directly on the editor document.
22577      * For visual commands, you should use {@link #relayCmd} instead.
22578      * <b>This should only be called after the editor is initialized.</b>
22579      * @param {String} cmd The Midas command
22580      * @param {String/Boolean} value (optional) The value to pass to the command (defaults to null)
22581      */
22582     execCmd : function(cmd, value){
22583         this.doc.execCommand(cmd, false, value === undefined ? null : value);
22584         this.syncValue();
22585     },
22586  
22587  
22588    
22589     /**
22590      * Inserts the passed text at the current cursor position. Note: the editor must be initialized and activated
22591      * to insert tRoo.
22592      * @param {String} text | dom node.. 
22593      */
22594     insertAtCursor : function(text)
22595     {
22596         
22597         if(!this.activated){
22598             return;
22599         }
22600         /*
22601         if(Roo.isIE){
22602             this.win.focus();
22603             var r = this.doc.selection.createRange();
22604             if(r){
22605                 r.collapse(true);
22606                 r.pasteHTML(text);
22607                 this.syncValue();
22608                 this.deferFocus();
22609             
22610             }
22611             return;
22612         }
22613         */
22614         if(Roo.isGecko || Roo.isOpera || Roo.isSafari){
22615             this.win.focus();
22616             
22617             
22618             // from jquery ui (MIT licenced)
22619             var range, node;
22620             var win = this.win;
22621             
22622             if (win.getSelection && win.getSelection().getRangeAt) {
22623                 range = win.getSelection().getRangeAt(0);
22624                 node = typeof(text) == 'string' ? range.createContextualFragment(text) : text;
22625                 range.insertNode(node);
22626             } else if (win.document.selection && win.document.selection.createRange) {
22627                 // no firefox support
22628                 var txt = typeof(text) == 'string' ? text : text.outerHTML;
22629                 win.document.selection.createRange().pasteHTML(txt);
22630             } else {
22631                 // no firefox support
22632                 var txt = typeof(text) == 'string' ? text : text.outerHTML;
22633                 this.execCmd('InsertHTML', txt);
22634             } 
22635             
22636             this.syncValue();
22637             
22638             this.deferFocus();
22639         }
22640     },
22641  // private
22642     mozKeyPress : function(e){
22643         if(e.ctrlKey){
22644             var c = e.getCharCode(), cmd;
22645           
22646             if(c > 0){
22647                 c = String.fromCharCode(c).toLowerCase();
22648                 switch(c){
22649                     case 'b':
22650                         cmd = 'bold';
22651                         break;
22652                     case 'i':
22653                         cmd = 'italic';
22654                         break;
22655                     
22656                     case 'u':
22657                         cmd = 'underline';
22658                         break;
22659                     
22660                     case 'v':
22661                         this.cleanUpPaste.defer(100, this);
22662                         return;
22663                         
22664                 }
22665                 if(cmd){
22666                     this.win.focus();
22667                     this.execCmd(cmd);
22668                     this.deferFocus();
22669                     e.preventDefault();
22670                 }
22671                 
22672             }
22673         }
22674     },
22675
22676     // private
22677     fixKeys : function(){ // load time branching for fastest keydown performance
22678         if(Roo.isIE){
22679             return function(e){
22680                 var k = e.getKey(), r;
22681                 if(k == e.TAB){
22682                     e.stopEvent();
22683                     r = this.doc.selection.createRange();
22684                     if(r){
22685                         r.collapse(true);
22686                         r.pasteHTML('&#160;&#160;&#160;&#160;');
22687                         this.deferFocus();
22688                     }
22689                     return;
22690                 }
22691                 
22692                 if(k == e.ENTER){
22693                     r = this.doc.selection.createRange();
22694                     if(r){
22695                         var target = r.parentElement();
22696                         if(!target || target.tagName.toLowerCase() != 'li'){
22697                             e.stopEvent();
22698                             r.pasteHTML('<br />');
22699                             r.collapse(false);
22700                             r.select();
22701                         }
22702                     }
22703                 }
22704                 if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
22705                     this.cleanUpPaste.defer(100, this);
22706                     return;
22707                 }
22708                 
22709                 
22710             };
22711         }else if(Roo.isOpera){
22712             return function(e){
22713                 var k = e.getKey();
22714                 if(k == e.TAB){
22715                     e.stopEvent();
22716                     this.win.focus();
22717                     this.execCmd('InsertHTML','&#160;&#160;&#160;&#160;');
22718                     this.deferFocus();
22719                 }
22720                 if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
22721                     this.cleanUpPaste.defer(100, this);
22722                     return;
22723                 }
22724                 
22725             };
22726         }else if(Roo.isSafari){
22727             return function(e){
22728                 var k = e.getKey();
22729                 
22730                 if(k == e.TAB){
22731                     e.stopEvent();
22732                     this.execCmd('InsertText','\t');
22733                     this.deferFocus();
22734                     return;
22735                 }
22736                if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
22737                     this.cleanUpPaste.defer(100, this);
22738                     return;
22739                 }
22740                 
22741              };
22742         }
22743     }(),
22744     
22745     getAllAncestors: function()
22746     {
22747         var p = this.getSelectedNode();
22748         var a = [];
22749         if (!p) {
22750             a.push(p); // push blank onto stack..
22751             p = this.getParentElement();
22752         }
22753         
22754         
22755         while (p && (p.nodeType == 1) && (p.tagName.toLowerCase() != 'body')) {
22756             a.push(p);
22757             p = p.parentNode;
22758         }
22759         a.push(this.doc.body);
22760         return a;
22761     },
22762     lastSel : false,
22763     lastSelNode : false,
22764     
22765     
22766     getSelection : function() 
22767     {
22768         this.assignDocWin();
22769         return Roo.isIE ? this.doc.selection : this.win.getSelection();
22770     },
22771     
22772     getSelectedNode: function() 
22773     {
22774         // this may only work on Gecko!!!
22775         
22776         // should we cache this!!!!
22777         
22778         
22779         
22780          
22781         var range = this.createRange(this.getSelection()).cloneRange();
22782         
22783         if (Roo.isIE) {
22784             var parent = range.parentElement();
22785             while (true) {
22786                 var testRange = range.duplicate();
22787                 testRange.moveToElementText(parent);
22788                 if (testRange.inRange(range)) {
22789                     break;
22790                 }
22791                 if ((parent.nodeType != 1) || (parent.tagName.toLowerCase() == 'body')) {
22792                     break;
22793                 }
22794                 parent = parent.parentElement;
22795             }
22796             return parent;
22797         }
22798         
22799         // is ancestor a text element.
22800         var ac =  range.commonAncestorContainer;
22801         if (ac.nodeType == 3) {
22802             ac = ac.parentNode;
22803         }
22804         
22805         var ar = ac.childNodes;
22806          
22807         var nodes = [];
22808         var other_nodes = [];
22809         var has_other_nodes = false;
22810         for (var i=0;i<ar.length;i++) {
22811             if ((ar[i].nodeType == 3) && (!ar[i].data.length)) { // empty text ? 
22812                 continue;
22813             }
22814             // fullly contained node.
22815             
22816             if (this.rangeIntersectsNode(range,ar[i]) && this.rangeCompareNode(range,ar[i]) == 3) {
22817                 nodes.push(ar[i]);
22818                 continue;
22819             }
22820             
22821             // probably selected..
22822             if ((ar[i].nodeType == 1) && this.rangeIntersectsNode(range,ar[i]) && (this.rangeCompareNode(range,ar[i]) > 0)) {
22823                 other_nodes.push(ar[i]);
22824                 continue;
22825             }
22826             // outer..
22827             if (!this.rangeIntersectsNode(range,ar[i])|| (this.rangeCompareNode(range,ar[i]) == 0))  {
22828                 continue;
22829             }
22830             
22831             
22832             has_other_nodes = true;
22833         }
22834         if (!nodes.length && other_nodes.length) {
22835             nodes= other_nodes;
22836         }
22837         if (has_other_nodes || !nodes.length || (nodes.length > 1)) {
22838             return false;
22839         }
22840         
22841         return nodes[0];
22842     },
22843     createRange: function(sel)
22844     {
22845         // this has strange effects when using with 
22846         // top toolbar - not sure if it's a great idea.
22847         //this.editor.contentWindow.focus();
22848         if (typeof sel != "undefined") {
22849             try {
22850                 return sel.getRangeAt ? sel.getRangeAt(0) : sel.createRange();
22851             } catch(e) {
22852                 return this.doc.createRange();
22853             }
22854         } else {
22855             return this.doc.createRange();
22856         }
22857     },
22858     getParentElement: function()
22859     {
22860         
22861         this.assignDocWin();
22862         var sel = Roo.isIE ? this.doc.selection : this.win.getSelection();
22863         
22864         var range = this.createRange(sel);
22865          
22866         try {
22867             var p = range.commonAncestorContainer;
22868             while (p.nodeType == 3) { // text node
22869                 p = p.parentNode;
22870             }
22871             return p;
22872         } catch (e) {
22873             return null;
22874         }
22875     
22876     },
22877     /***
22878      *
22879      * Range intersection.. the hard stuff...
22880      *  '-1' = before
22881      *  '0' = hits..
22882      *  '1' = after.
22883      *         [ -- selected range --- ]
22884      *   [fail]                        [fail]
22885      *
22886      *    basically..
22887      *      if end is before start or  hits it. fail.
22888      *      if start is after end or hits it fail.
22889      *
22890      *   if either hits (but other is outside. - then it's not 
22891      *   
22892      *    
22893      **/
22894     
22895     
22896     // @see http://www.thismuchiknow.co.uk/?p=64.
22897     rangeIntersectsNode : function(range, node)
22898     {
22899         var nodeRange = node.ownerDocument.createRange();
22900         try {
22901             nodeRange.selectNode(node);
22902         } catch (e) {
22903             nodeRange.selectNodeContents(node);
22904         }
22905     
22906         var rangeStartRange = range.cloneRange();
22907         rangeStartRange.collapse(true);
22908     
22909         var rangeEndRange = range.cloneRange();
22910         rangeEndRange.collapse(false);
22911     
22912         var nodeStartRange = nodeRange.cloneRange();
22913         nodeStartRange.collapse(true);
22914     
22915         var nodeEndRange = nodeRange.cloneRange();
22916         nodeEndRange.collapse(false);
22917     
22918         return rangeStartRange.compareBoundaryPoints(
22919                  Range.START_TO_START, nodeEndRange) == -1 &&
22920                rangeEndRange.compareBoundaryPoints(
22921                  Range.START_TO_START, nodeStartRange) == 1;
22922         
22923          
22924     },
22925     rangeCompareNode : function(range, node)
22926     {
22927         var nodeRange = node.ownerDocument.createRange();
22928         try {
22929             nodeRange.selectNode(node);
22930         } catch (e) {
22931             nodeRange.selectNodeContents(node);
22932         }
22933         
22934         
22935         range.collapse(true);
22936     
22937         nodeRange.collapse(true);
22938      
22939         var ss = range.compareBoundaryPoints( Range.START_TO_START, nodeRange);
22940         var ee = range.compareBoundaryPoints(  Range.END_TO_END, nodeRange);
22941          
22942         //Roo.log(node.tagName + ': ss='+ss +', ee='+ee)
22943         
22944         var nodeIsBefore   =  ss == 1;
22945         var nodeIsAfter    = ee == -1;
22946         
22947         if (nodeIsBefore && nodeIsAfter) {
22948             return 0; // outer
22949         }
22950         if (!nodeIsBefore && nodeIsAfter) {
22951             return 1; //right trailed.
22952         }
22953         
22954         if (nodeIsBefore && !nodeIsAfter) {
22955             return 2;  // left trailed.
22956         }
22957         // fully contined.
22958         return 3;
22959     },
22960
22961     // private? - in a new class?
22962     cleanUpPaste :  function()
22963     {
22964         // cleans up the whole document..
22965         Roo.log('cleanuppaste');
22966         
22967         this.cleanUpChildren(this.doc.body);
22968         var clean = this.cleanWordChars(this.doc.body.innerHTML);
22969         if (clean != this.doc.body.innerHTML) {
22970             this.doc.body.innerHTML = clean;
22971         }
22972         
22973     },
22974     
22975     cleanWordChars : function(input) {// change the chars to hex code
22976         var he = Roo.HtmlEditorCore;
22977         
22978         var output = input;
22979         Roo.each(he.swapCodes, function(sw) { 
22980             var swapper = new RegExp("\\u" + sw[0].toString(16), "g"); // hex codes
22981             
22982             output = output.replace(swapper, sw[1]);
22983         });
22984         
22985         return output;
22986     },
22987     
22988     
22989     cleanUpChildren : function (n)
22990     {
22991         if (!n.childNodes.length) {
22992             return;
22993         }
22994         for (var i = n.childNodes.length-1; i > -1 ; i--) {
22995            this.cleanUpChild(n.childNodes[i]);
22996         }
22997     },
22998     
22999     
23000         
23001     
23002     cleanUpChild : function (node)
23003     {
23004         var ed = this;
23005         //console.log(node);
23006         if (node.nodeName == "#text") {
23007             // clean up silly Windows -- stuff?
23008             return; 
23009         }
23010         if (node.nodeName == "#comment") {
23011             node.parentNode.removeChild(node);
23012             // clean up silly Windows -- stuff?
23013             return; 
23014         }
23015         var lcname = node.tagName.toLowerCase();
23016         // we ignore whitelists... ?? = not really the way to go, but we probably have not got a full
23017         // whitelist of tags..
23018         
23019         if (this.black.indexOf(lcname) > -1 && this.clearUp ) {
23020             // remove node.
23021             node.parentNode.removeChild(node);
23022             return;
23023             
23024         }
23025         
23026         var remove_keep_children= Roo.HtmlEditorCore.remove.indexOf(node.tagName.toLowerCase()) > -1;
23027         
23028         // spans with no attributes - just remove them..
23029         if ((!node.attributes || !node.attributes.length) && lcname == 'span') { 
23030             remove_keep_children = true;
23031         }
23032         
23033         // remove <a name=....> as rendering on yahoo mailer is borked with this.
23034         // this will have to be flaged elsewhere - perhaps ablack=name... on the mailer..
23035         
23036         //if (node.tagName.toLowerCase() == 'a' && !node.hasAttribute('href')) {
23037         //    remove_keep_children = true;
23038         //}
23039         
23040         if (remove_keep_children) {
23041             this.cleanUpChildren(node);
23042             // inserts everything just before this node...
23043             while (node.childNodes.length) {
23044                 var cn = node.childNodes[0];
23045                 node.removeChild(cn);
23046                 node.parentNode.insertBefore(cn, node);
23047             }
23048             node.parentNode.removeChild(node);
23049             return;
23050         }
23051         
23052         if (!node.attributes || !node.attributes.length) {
23053             
23054           
23055             
23056             
23057             this.cleanUpChildren(node);
23058             return;
23059         }
23060         
23061         function cleanAttr(n,v)
23062         {
23063             
23064             if (v.match(/^\./) || v.match(/^\//)) {
23065                 return;
23066             }
23067             if (v.match(/^(http|https):\/\//) || v.match(/^mailto:/) || v.match(/^ftp:/)) {
23068                 return;
23069             }
23070             if (v.match(/^#/)) {
23071                 return;
23072             }
23073 //            Roo.log("(REMOVE TAG)"+ node.tagName +'.' + n + '=' + v);
23074             node.removeAttribute(n);
23075             
23076         }
23077         
23078         var cwhite = this.cwhite;
23079         var cblack = this.cblack;
23080             
23081         function cleanStyle(n,v)
23082         {
23083             if (v.match(/expression/)) { //XSS?? should we even bother..
23084                 node.removeAttribute(n);
23085                 return;
23086             }
23087             
23088             var parts = v.split(/;/);
23089             var clean = [];
23090             
23091             Roo.each(parts, function(p) {
23092                 p = p.replace(/^\s+/g,'').replace(/\s+$/g,'');
23093                 if (!p.length) {
23094                     return true;
23095                 }
23096                 var l = p.split(':').shift().replace(/\s+/g,'');
23097                 l = l.replace(/^\s+/g,'').replace(/\s+$/g,'');
23098                 
23099                 if ( cwhite.length && cblack.indexOf(l) > -1) {
23100 //                    Roo.log('(REMOVE CSS)' + node.tagName +'.' + n + ':'+l + '=' + v);
23101                     //node.removeAttribute(n);
23102                     return true;
23103                 }
23104                 //Roo.log()
23105                 // only allow 'c whitelisted system attributes'
23106                 if ( cwhite.length &&  cwhite.indexOf(l) < 0) {
23107 //                    Roo.log('(REMOVE CSS)' + node.tagName +'.' + n + ':'+l + '=' + v);
23108                     //node.removeAttribute(n);
23109                     return true;
23110                 }
23111                 
23112                 
23113                  
23114                 
23115                 clean.push(p);
23116                 return true;
23117             });
23118             if (clean.length) { 
23119                 node.setAttribute(n, clean.join(';'));
23120             } else {
23121                 node.removeAttribute(n);
23122             }
23123             
23124         }
23125         
23126         
23127         for (var i = node.attributes.length-1; i > -1 ; i--) {
23128             var a = node.attributes[i];
23129             //console.log(a);
23130             
23131             if (a.name.toLowerCase().substr(0,2)=='on')  {
23132                 node.removeAttribute(a.name);
23133                 continue;
23134             }
23135             if (Roo.HtmlEditorCore.ablack.indexOf(a.name.toLowerCase()) > -1) {
23136                 node.removeAttribute(a.name);
23137                 continue;
23138             }
23139             if (Roo.HtmlEditorCore.aclean.indexOf(a.name.toLowerCase()) > -1) {
23140                 cleanAttr(a.name,a.value); // fixme..
23141                 continue;
23142             }
23143             if (a.name == 'style') {
23144                 cleanStyle(a.name,a.value);
23145                 continue;
23146             }
23147             /// clean up MS crap..
23148             // tecnically this should be a list of valid class'es..
23149             
23150             
23151             if (a.name == 'class') {
23152                 if (a.value.match(/^Mso/)) {
23153                     node.removeAttribute('class');
23154                 }
23155                 
23156                 if (a.value.match(/^body$/)) {
23157                     node.removeAttribute('class');
23158                 }
23159                 continue;
23160             }
23161             
23162             // style cleanup!?
23163             // class cleanup?
23164             
23165         }
23166         
23167         
23168         this.cleanUpChildren(node);
23169         
23170         
23171     },
23172     
23173     /**
23174      * Clean up MS wordisms...
23175      */
23176     cleanWord : function(node)
23177     {
23178         if (!node) {
23179             this.cleanWord(this.doc.body);
23180             return;
23181         }
23182         
23183         if(
23184                 node.nodeName == 'SPAN' &&
23185                 !node.hasAttributes() &&
23186                 node.childNodes.length == 1 &&
23187                 node.firstChild.nodeName == "#text"  
23188         ) {
23189             var textNode = node.firstChild;
23190             node.removeChild(textNode);
23191             if (node.getAttribute('lang') != 'zh-CN') {   // do not space pad on chinese characters..
23192                 node.parentNode.insertBefore(node.ownerDocument.createTextNode(" "), node);
23193             }
23194             node.parentNode.insertBefore(textNode, node);
23195             if (node.getAttribute('lang') != 'zh-CN') {   // do not space pad on chinese characters..
23196                 node.parentNode.insertBefore(node.ownerDocument.createTextNode(" ") , node);
23197             }
23198             node.parentNode.removeChild(node);
23199         }
23200         
23201         if (node.nodeName == "#text") {
23202             // clean up silly Windows -- stuff?
23203             return; 
23204         }
23205         if (node.nodeName == "#comment") {
23206             node.parentNode.removeChild(node);
23207             // clean up silly Windows -- stuff?
23208             return; 
23209         }
23210         
23211         if (node.tagName.toLowerCase().match(/^(style|script|applet|embed|noframes|noscript)$/)) {
23212             node.parentNode.removeChild(node);
23213             return;
23214         }
23215         //Roo.log(node.tagName);
23216         // remove - but keep children..
23217         if (node.tagName.toLowerCase().match(/^(meta|link|\\?xml:|st1:|o:|v:|font)/)) {
23218             //Roo.log('-- removed');
23219             while (node.childNodes.length) {
23220                 var cn = node.childNodes[0];
23221                 node.removeChild(cn);
23222                 node.parentNode.insertBefore(cn, node);
23223                 // move node to parent - and clean it..
23224                 this.cleanWord(cn);
23225             }
23226             node.parentNode.removeChild(node);
23227             /// no need to iterate chidlren = it's got none..
23228             //this.iterateChildren(node, this.cleanWord);
23229             return;
23230         }
23231         // clean styles
23232         if (node.className.length) {
23233             
23234             var cn = node.className.split(/\W+/);
23235             var cna = [];
23236             Roo.each(cn, function(cls) {
23237                 if (cls.match(/Mso[a-zA-Z]+/)) {
23238                     return;
23239                 }
23240                 cna.push(cls);
23241             });
23242             node.className = cna.length ? cna.join(' ') : '';
23243             if (!cna.length) {
23244                 node.removeAttribute("class");
23245             }
23246         }
23247         
23248         if (node.hasAttribute("lang")) {
23249             node.removeAttribute("lang");
23250         }
23251         
23252         if (node.hasAttribute("style")) {
23253             
23254             var styles = node.getAttribute("style").split(";");
23255             var nstyle = [];
23256             Roo.each(styles, function(s) {
23257                 if (!s.match(/:/)) {
23258                     return;
23259                 }
23260                 var kv = s.split(":");
23261                 if (kv[0].match(/^(mso-|line|font|background|margin|padding|color)/)) {
23262                     return;
23263                 }
23264                 // what ever is left... we allow.
23265                 nstyle.push(s);
23266             });
23267             node.setAttribute("style", nstyle.length ? nstyle.join(';') : '');
23268             if (!nstyle.length) {
23269                 node.removeAttribute('style');
23270             }
23271         }
23272         this.iterateChildren(node, this.cleanWord);
23273         
23274         
23275         
23276     },
23277     /**
23278      * iterateChildren of a Node, calling fn each time, using this as the scole..
23279      * @param {DomNode} node node to iterate children of.
23280      * @param {Function} fn method of this class to call on each item.
23281      */
23282     iterateChildren : function(node, fn)
23283     {
23284         if (!node.childNodes.length) {
23285                 return;
23286         }
23287         for (var i = node.childNodes.length-1; i > -1 ; i--) {
23288            fn.call(this, node.childNodes[i])
23289         }
23290     },
23291     
23292     
23293     /**
23294      * cleanTableWidths.
23295      *
23296      * Quite often pasting from word etc.. results in tables with column and widths.
23297      * This does not work well on fluid HTML layouts - like emails. - so this code should hunt an destroy them..
23298      *
23299      */
23300     cleanTableWidths : function(node)
23301     {
23302          
23303          
23304         if (!node) {
23305             this.cleanTableWidths(this.doc.body);
23306             return;
23307         }
23308         
23309         // ignore list...
23310         if (node.nodeName == "#text" || node.nodeName == "#comment") {
23311             return; 
23312         }
23313         Roo.log(node.tagName);
23314         if (!node.tagName.toLowerCase().match(/^(table|td|tr)$/)) {
23315             this.iterateChildren(node, this.cleanTableWidths);
23316             return;
23317         }
23318         if (node.hasAttribute('width')) {
23319             node.removeAttribute('width');
23320         }
23321         
23322          
23323         if (node.hasAttribute("style")) {
23324             // pretty basic...
23325             
23326             var styles = node.getAttribute("style").split(";");
23327             var nstyle = [];
23328             Roo.each(styles, function(s) {
23329                 if (!s.match(/:/)) {
23330                     return;
23331                 }
23332                 var kv = s.split(":");
23333                 if (kv[0].match(/^\s*(width|min-width)\s*$/)) {
23334                     return;
23335                 }
23336                 // what ever is left... we allow.
23337                 nstyle.push(s);
23338             });
23339             node.setAttribute("style", nstyle.length ? nstyle.join(';') : '');
23340             if (!nstyle.length) {
23341                 node.removeAttribute('style');
23342             }
23343         }
23344         
23345         this.iterateChildren(node, this.cleanTableWidths);
23346         
23347         
23348     },
23349     
23350     
23351     
23352     
23353     domToHTML : function(currentElement, depth, nopadtext) {
23354         
23355         depth = depth || 0;
23356         nopadtext = nopadtext || false;
23357     
23358         if (!currentElement) {
23359             return this.domToHTML(this.doc.body);
23360         }
23361         
23362         //Roo.log(currentElement);
23363         var j;
23364         var allText = false;
23365         var nodeName = currentElement.nodeName;
23366         var tagName = Roo.util.Format.htmlEncode(currentElement.tagName);
23367         
23368         if  (nodeName == '#text') {
23369             
23370             return nopadtext ? currentElement.nodeValue : currentElement.nodeValue.trim();
23371         }
23372         
23373         
23374         var ret = '';
23375         if (nodeName != 'BODY') {
23376              
23377             var i = 0;
23378             // Prints the node tagName, such as <A>, <IMG>, etc
23379             if (tagName) {
23380                 var attr = [];
23381                 for(i = 0; i < currentElement.attributes.length;i++) {
23382                     // quoting?
23383                     var aname = currentElement.attributes.item(i).name;
23384                     if (!currentElement.attributes.item(i).value.length) {
23385                         continue;
23386                     }
23387                     attr.push(aname + '="' + Roo.util.Format.htmlEncode(currentElement.attributes.item(i).value) + '"' );
23388                 }
23389                 
23390                 ret = "<"+currentElement.tagName+ ( attr.length ? (' ' + attr.join(' ') ) : '') + ">";
23391             } 
23392             else {
23393                 
23394                 // eack
23395             }
23396         } else {
23397             tagName = false;
23398         }
23399         if (['IMG', 'BR', 'HR', 'INPUT'].indexOf(tagName) > -1) {
23400             return ret;
23401         }
23402         if (['PRE', 'TEXTAREA', 'TD', 'A', 'SPAN'].indexOf(tagName) > -1) { // or code?
23403             nopadtext = true;
23404         }
23405         
23406         
23407         // Traverse the tree
23408         i = 0;
23409         var currentElementChild = currentElement.childNodes.item(i);
23410         var allText = true;
23411         var innerHTML  = '';
23412         lastnode = '';
23413         while (currentElementChild) {
23414             // Formatting code (indent the tree so it looks nice on the screen)
23415             var nopad = nopadtext;
23416             if (lastnode == 'SPAN') {
23417                 nopad  = true;
23418             }
23419             // text
23420             if  (currentElementChild.nodeName == '#text') {
23421                 var toadd = Roo.util.Format.htmlEncode(currentElementChild.nodeValue);
23422                 toadd = nopadtext ? toadd : toadd.trim();
23423                 if (!nopad && toadd.length > 80) {
23424                     innerHTML  += "\n" + (new Array( depth + 1 )).join( "  "  );
23425                 }
23426                 innerHTML  += toadd;
23427                 
23428                 i++;
23429                 currentElementChild = currentElement.childNodes.item(i);
23430                 lastNode = '';
23431                 continue;
23432             }
23433             allText = false;
23434             
23435             innerHTML  += nopad ? '' : "\n" + (new Array( depth + 1 )).join( "  "  );
23436                 
23437             // Recursively traverse the tree structure of the child node
23438             innerHTML   += this.domToHTML(currentElementChild, depth+1, nopadtext);
23439             lastnode = currentElementChild.nodeName;
23440             i++;
23441             currentElementChild=currentElement.childNodes.item(i);
23442         }
23443         
23444         ret += innerHTML;
23445         
23446         if (!allText) {
23447                 // The remaining code is mostly for formatting the tree
23448             ret+= nopadtext ? '' : "\n" + (new Array( depth  )).join( "  "  );
23449         }
23450         
23451         
23452         if (tagName) {
23453             ret+= "</"+tagName+">";
23454         }
23455         return ret;
23456         
23457     },
23458         
23459     applyBlacklists : function()
23460     {
23461         var w = typeof(this.owner.white) != 'undefined' && this.owner.white ? this.owner.white  : [];
23462         var b = typeof(this.owner.black) != 'undefined' && this.owner.black ? this.owner.black :  [];
23463         
23464         this.white = [];
23465         this.black = [];
23466         Roo.each(Roo.HtmlEditorCore.white, function(tag) {
23467             if (b.indexOf(tag) > -1) {
23468                 return;
23469             }
23470             this.white.push(tag);
23471             
23472         }, this);
23473         
23474         Roo.each(w, function(tag) {
23475             if (b.indexOf(tag) > -1) {
23476                 return;
23477             }
23478             if (this.white.indexOf(tag) > -1) {
23479                 return;
23480             }
23481             this.white.push(tag);
23482             
23483         }, this);
23484         
23485         
23486         Roo.each(Roo.HtmlEditorCore.black, function(tag) {
23487             if (w.indexOf(tag) > -1) {
23488                 return;
23489             }
23490             this.black.push(tag);
23491             
23492         }, this);
23493         
23494         Roo.each(b, function(tag) {
23495             if (w.indexOf(tag) > -1) {
23496                 return;
23497             }
23498             if (this.black.indexOf(tag) > -1) {
23499                 return;
23500             }
23501             this.black.push(tag);
23502             
23503         }, this);
23504         
23505         
23506         w = typeof(this.owner.cwhite) != 'undefined' && this.owner.cwhite ? this.owner.cwhite  : [];
23507         b = typeof(this.owner.cblack) != 'undefined' && this.owner.cblack ? this.owner.cblack :  [];
23508         
23509         this.cwhite = [];
23510         this.cblack = [];
23511         Roo.each(Roo.HtmlEditorCore.cwhite, function(tag) {
23512             if (b.indexOf(tag) > -1) {
23513                 return;
23514             }
23515             this.cwhite.push(tag);
23516             
23517         }, this);
23518         
23519         Roo.each(w, function(tag) {
23520             if (b.indexOf(tag) > -1) {
23521                 return;
23522             }
23523             if (this.cwhite.indexOf(tag) > -1) {
23524                 return;
23525             }
23526             this.cwhite.push(tag);
23527             
23528         }, this);
23529         
23530         
23531         Roo.each(Roo.HtmlEditorCore.cblack, function(tag) {
23532             if (w.indexOf(tag) > -1) {
23533                 return;
23534             }
23535             this.cblack.push(tag);
23536             
23537         }, this);
23538         
23539         Roo.each(b, function(tag) {
23540             if (w.indexOf(tag) > -1) {
23541                 return;
23542             }
23543             if (this.cblack.indexOf(tag) > -1) {
23544                 return;
23545             }
23546             this.cblack.push(tag);
23547             
23548         }, this);
23549     },
23550     
23551     setStylesheets : function(stylesheets)
23552     {
23553         if(typeof(stylesheets) == 'string'){
23554             Roo.get(this.iframe.contentDocument.head).createChild({
23555                 tag : 'link',
23556                 rel : 'stylesheet',
23557                 type : 'text/css',
23558                 href : stylesheets
23559             });
23560             
23561             return;
23562         }
23563         var _this = this;
23564      
23565         Roo.each(stylesheets, function(s) {
23566             if(!s.length){
23567                 return;
23568             }
23569             
23570             Roo.get(_this.iframe.contentDocument.head).createChild({
23571                 tag : 'link',
23572                 rel : 'stylesheet',
23573                 type : 'text/css',
23574                 href : s
23575             });
23576         });
23577
23578         
23579     },
23580     
23581     removeStylesheets : function()
23582     {
23583         var _this = this;
23584         
23585         Roo.each(Roo.get(_this.iframe.contentDocument.head).select('link[rel=stylesheet]', true).elements, function(s){
23586             s.remove();
23587         });
23588     },
23589     
23590     setStyle : function(style)
23591     {
23592         Roo.get(this.iframe.contentDocument.head).createChild({
23593             tag : 'style',
23594             type : 'text/css',
23595             html : style
23596         });
23597
23598         return;
23599     }
23600     
23601     // hide stuff that is not compatible
23602     /**
23603      * @event blur
23604      * @hide
23605      */
23606     /**
23607      * @event change
23608      * @hide
23609      */
23610     /**
23611      * @event focus
23612      * @hide
23613      */
23614     /**
23615      * @event specialkey
23616      * @hide
23617      */
23618     /**
23619      * @cfg {String} fieldClass @hide
23620      */
23621     /**
23622      * @cfg {String} focusClass @hide
23623      */
23624     /**
23625      * @cfg {String} autoCreate @hide
23626      */
23627     /**
23628      * @cfg {String} inputType @hide
23629      */
23630     /**
23631      * @cfg {String} invalidClass @hide
23632      */
23633     /**
23634      * @cfg {String} invalidText @hide
23635      */
23636     /**
23637      * @cfg {String} msgFx @hide
23638      */
23639     /**
23640      * @cfg {String} validateOnBlur @hide
23641      */
23642 });
23643
23644 Roo.HtmlEditorCore.white = [
23645         'area', 'br', 'img', 'input', 'hr', 'wbr',
23646         
23647        'address', 'blockquote', 'center', 'dd',      'dir',       'div', 
23648        'dl',      'dt',         'h1',     'h2',      'h3',        'h4', 
23649        'h5',      'h6',         'hr',     'isindex', 'listing',   'marquee', 
23650        'menu',    'multicol',   'ol',     'p',       'plaintext', 'pre', 
23651        'table',   'ul',         'xmp', 
23652        
23653        'caption', 'col', 'colgroup', 'tbody', 'td', 'tfoot', 'th', 
23654       'thead',   'tr', 
23655      
23656       'dir', 'menu', 'ol', 'ul', 'dl',
23657        
23658       'embed',  'object'
23659 ];
23660
23661
23662 Roo.HtmlEditorCore.black = [
23663     //    'embed',  'object', // enable - backend responsiblity to clean thiese
23664         'applet', // 
23665         'base',   'basefont', 'bgsound', 'blink',  'body', 
23666         'frame',  'frameset', 'head',    'html',   'ilayer', 
23667         'iframe', 'layer',  'link',     'meta',    'object',   
23668         'script', 'style' ,'title',  'xml' // clean later..
23669 ];
23670 Roo.HtmlEditorCore.clean = [
23671     'script', 'style', 'title', 'xml'
23672 ];
23673 Roo.HtmlEditorCore.remove = [
23674     'font'
23675 ];
23676 // attributes..
23677
23678 Roo.HtmlEditorCore.ablack = [
23679     'on'
23680 ];
23681     
23682 Roo.HtmlEditorCore.aclean = [ 
23683     'action', 'background', 'codebase', 'dynsrc', 'href', 'lowsrc' 
23684 ];
23685
23686 // protocols..
23687 Roo.HtmlEditorCore.pwhite= [
23688         'http',  'https',  'mailto'
23689 ];
23690
23691 // white listed style attributes.
23692 Roo.HtmlEditorCore.cwhite= [
23693       //  'text-align', /// default is to allow most things..
23694       
23695          
23696 //        'font-size'//??
23697 ];
23698
23699 // black listed style attributes.
23700 Roo.HtmlEditorCore.cblack= [
23701       //  'font-size' -- this can be set by the project 
23702 ];
23703
23704
23705 Roo.HtmlEditorCore.swapCodes   =[ 
23706     [    8211, "--" ], 
23707     [    8212, "--" ], 
23708     [    8216,  "'" ],  
23709     [    8217, "'" ],  
23710     [    8220, '"' ],  
23711     [    8221, '"' ],  
23712     [    8226, "*" ],  
23713     [    8230, "..." ]
23714 ]; 
23715
23716     /*
23717  * - LGPL
23718  *
23719  * HtmlEditor
23720  * 
23721  */
23722
23723 /**
23724  * @class Roo.bootstrap.HtmlEditor
23725  * @extends Roo.bootstrap.TextArea
23726  * Bootstrap HtmlEditor class
23727
23728  * @constructor
23729  * Create a new HtmlEditor
23730  * @param {Object} config The config object
23731  */
23732
23733 Roo.bootstrap.HtmlEditor = function(config){
23734     Roo.bootstrap.HtmlEditor.superclass.constructor.call(this, config);
23735     if (!this.toolbars) {
23736         this.toolbars = [];
23737     }
23738     
23739     this.editorcore = new Roo.HtmlEditorCore(Roo.apply({ owner : this} , config));
23740     this.addEvents({
23741             /**
23742              * @event initialize
23743              * Fires when the editor is fully initialized (including the iframe)
23744              * @param {HtmlEditor} this
23745              */
23746             initialize: true,
23747             /**
23748              * @event activate
23749              * Fires when the editor is first receives the focus. Any insertion must wait
23750              * until after this event.
23751              * @param {HtmlEditor} this
23752              */
23753             activate: true,
23754              /**
23755              * @event beforesync
23756              * Fires before the textarea is updated with content from the editor iframe. Return false
23757              * to cancel the sync.
23758              * @param {HtmlEditor} this
23759              * @param {String} html
23760              */
23761             beforesync: true,
23762              /**
23763              * @event beforepush
23764              * Fires before the iframe editor is updated with content from the textarea. Return false
23765              * to cancel the push.
23766              * @param {HtmlEditor} this
23767              * @param {String} html
23768              */
23769             beforepush: true,
23770              /**
23771              * @event sync
23772              * Fires when the textarea is updated with content from the editor iframe.
23773              * @param {HtmlEditor} this
23774              * @param {String} html
23775              */
23776             sync: true,
23777              /**
23778              * @event push
23779              * Fires when the iframe editor is updated with content from the textarea.
23780              * @param {HtmlEditor} this
23781              * @param {String} html
23782              */
23783             push: true,
23784              /**
23785              * @event editmodechange
23786              * Fires when the editor switches edit modes
23787              * @param {HtmlEditor} this
23788              * @param {Boolean} sourceEdit True if source edit, false if standard editing.
23789              */
23790             editmodechange: true,
23791             /**
23792              * @event editorevent
23793              * Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks.
23794              * @param {HtmlEditor} this
23795              */
23796             editorevent: true,
23797             /**
23798              * @event firstfocus
23799              * Fires when on first focus - needed by toolbars..
23800              * @param {HtmlEditor} this
23801              */
23802             firstfocus: true,
23803             /**
23804              * @event autosave
23805              * Auto save the htmlEditor value as a file into Events
23806              * @param {HtmlEditor} this
23807              */
23808             autosave: true,
23809             /**
23810              * @event savedpreview
23811              * preview the saved version of htmlEditor
23812              * @param {HtmlEditor} this
23813              */
23814             savedpreview: true
23815         });
23816 };
23817
23818
23819 Roo.extend(Roo.bootstrap.HtmlEditor, Roo.bootstrap.TextArea,  {
23820     
23821     
23822       /**
23823      * @cfg {Array} toolbars Array of toolbars. - defaults to just the Standard one
23824      */
23825     toolbars : false,
23826     
23827      /**
23828     * @cfg {Array} buttons Array of toolbar's buttons. - defaults to empty
23829     */
23830     btns : [],
23831    
23832      /**
23833      * @cfg {String} resizable  's' or 'se' or 'e' - wrapps the element in a
23834      *                        Roo.resizable.
23835      */
23836     resizable : false,
23837      /**
23838      * @cfg {Number} height (in pixels)
23839      */   
23840     height: 300,
23841    /**
23842      * @cfg {Number} width (in pixels)
23843      */   
23844     width: false,
23845     
23846     /**
23847      * @cfg {Array} stylesheets url of stylesheets. set to [] to disable stylesheets.
23848      * 
23849      */
23850     stylesheets: false,
23851     
23852     // id of frame..
23853     frameId: false,
23854     
23855     // private properties
23856     validationEvent : false,
23857     deferHeight: true,
23858     initialized : false,
23859     activated : false,
23860     
23861     onFocus : Roo.emptyFn,
23862     iframePad:3,
23863     hideMode:'offsets',
23864     
23865     tbContainer : false,
23866     
23867     bodyCls : '',
23868     
23869     toolbarContainer :function() {
23870         return this.wrap.select('.x-html-editor-tb',true).first();
23871     },
23872
23873     /**
23874      * Protected method that will not generally be called directly. It
23875      * is called when the editor creates its toolbar. Override this method if you need to
23876      * add custom toolbar buttons.
23877      * @param {HtmlEditor} editor
23878      */
23879     createToolbar : function(){
23880         Roo.log('renewing');
23881         Roo.log("create toolbars");
23882         
23883         this.toolbars = [ new Roo.bootstrap.htmleditor.ToolbarStandard({editor: this} ) ];
23884         this.toolbars[0].render(this.toolbarContainer());
23885         
23886         return;
23887         
23888 //        if (!editor.toolbars || !editor.toolbars.length) {
23889 //            editor.toolbars = [ new Roo.bootstrap.HtmlEditor.ToolbarStandard() ]; // can be empty?
23890 //        }
23891 //        
23892 //        for (var i =0 ; i < editor.toolbars.length;i++) {
23893 //            editor.toolbars[i] = Roo.factory(
23894 //                    typeof(editor.toolbars[i]) == 'string' ?
23895 //                        { xtype: editor.toolbars[i]} : editor.toolbars[i],
23896 //                Roo.bootstrap.HtmlEditor);
23897 //            editor.toolbars[i].init(editor);
23898 //        }
23899     },
23900
23901      
23902     // private
23903     onRender : function(ct, position)
23904     {
23905        // Roo.log("Call onRender: " + this.xtype);
23906         var _t = this;
23907         Roo.bootstrap.HtmlEditor.superclass.onRender.call(this, ct, position);
23908       
23909         this.wrap = this.inputEl().wrap({
23910             cls:'x-html-editor-wrap', cn:{cls:'x-html-editor-tb'}
23911         });
23912         
23913         this.editorcore.onRender(ct, position);
23914          
23915         if (this.resizable) {
23916             this.resizeEl = new Roo.Resizable(this.wrap, {
23917                 pinned : true,
23918                 wrap: true,
23919                 dynamic : true,
23920                 minHeight : this.height,
23921                 height: this.height,
23922                 handles : this.resizable,
23923                 width: this.width,
23924                 listeners : {
23925                     resize : function(r, w, h) {
23926                         _t.onResize(w,h); // -something
23927                     }
23928                 }
23929             });
23930             
23931         }
23932         this.createToolbar(this);
23933        
23934         
23935         if(!this.width && this.resizable){
23936             this.setSize(this.wrap.getSize());
23937         }
23938         if (this.resizeEl) {
23939             this.resizeEl.resizeTo.defer(100, this.resizeEl,[ this.width,this.height ] );
23940             // should trigger onReize..
23941         }
23942         
23943     },
23944
23945     // private
23946     onResize : function(w, h)
23947     {
23948         Roo.log('resize: ' +w + ',' + h );
23949         Roo.bootstrap.HtmlEditor.superclass.onResize.apply(this, arguments);
23950         var ew = false;
23951         var eh = false;
23952         
23953         if(this.inputEl() ){
23954             if(typeof w == 'number'){
23955                 var aw = w - this.wrap.getFrameWidth('lr');
23956                 this.inputEl().setWidth(this.adjustWidth('textarea', aw));
23957                 ew = aw;
23958             }
23959             if(typeof h == 'number'){
23960                  var tbh = -11;  // fixme it needs to tool bar size!
23961                 for (var i =0; i < this.toolbars.length;i++) {
23962                     // fixme - ask toolbars for heights?
23963                     tbh += this.toolbars[i].el.getHeight();
23964                     //if (this.toolbars[i].footer) {
23965                     //    tbh += this.toolbars[i].footer.el.getHeight();
23966                     //}
23967                 }
23968               
23969                 
23970                 
23971                 
23972                 
23973                 var ah = h - this.wrap.getFrameWidth('tb') - tbh;// this.tb.el.getHeight();
23974                 ah -= 5; // knock a few pixes off for look..
23975                 this.inputEl().setHeight(this.adjustWidth('textarea', ah));
23976                 var eh = ah;
23977             }
23978         }
23979         Roo.log('onResize:' + [w,h,ew,eh].join(',') );
23980         this.editorcore.onResize(ew,eh);
23981         
23982     },
23983
23984     /**
23985      * Toggles the editor between standard and source edit mode.
23986      * @param {Boolean} sourceEdit (optional) True for source edit, false for standard
23987      */
23988     toggleSourceEdit : function(sourceEditMode)
23989     {
23990         this.editorcore.toggleSourceEdit(sourceEditMode);
23991         
23992         if(this.editorcore.sourceEditMode){
23993             Roo.log('editor - showing textarea');
23994             
23995 //            Roo.log('in');
23996 //            Roo.log(this.syncValue());
23997             this.syncValue();
23998             this.inputEl().removeClass(['hide', 'x-hidden']);
23999             this.inputEl().dom.removeAttribute('tabIndex');
24000             this.inputEl().focus();
24001         }else{
24002             Roo.log('editor - hiding textarea');
24003 //            Roo.log('out')
24004 //            Roo.log(this.pushValue()); 
24005             this.pushValue();
24006             
24007             this.inputEl().addClass(['hide', 'x-hidden']);
24008             this.inputEl().dom.setAttribute('tabIndex', -1);
24009             //this.deferFocus();
24010         }
24011          
24012         if(this.resizable){
24013             this.setSize(this.wrap.getSize());
24014         }
24015         
24016         this.fireEvent('editmodechange', this, this.editorcore.sourceEditMode);
24017     },
24018  
24019     // private (for BoxComponent)
24020     adjustSize : Roo.BoxComponent.prototype.adjustSize,
24021
24022     // private (for BoxComponent)
24023     getResizeEl : function(){
24024         return this.wrap;
24025     },
24026
24027     // private (for BoxComponent)
24028     getPositionEl : function(){
24029         return this.wrap;
24030     },
24031
24032     // private
24033     initEvents : function(){
24034         this.originalValue = this.getValue();
24035     },
24036
24037 //    /**
24038 //     * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
24039 //     * @method
24040 //     */
24041 //    markInvalid : Roo.emptyFn,
24042 //    /**
24043 //     * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
24044 //     * @method
24045 //     */
24046 //    clearInvalid : Roo.emptyFn,
24047
24048     setValue : function(v){
24049         Roo.bootstrap.HtmlEditor.superclass.setValue.call(this, v);
24050         this.editorcore.pushValue();
24051     },
24052
24053      
24054     // private
24055     deferFocus : function(){
24056         this.focus.defer(10, this);
24057     },
24058
24059     // doc'ed in Field
24060     focus : function(){
24061         this.editorcore.focus();
24062         
24063     },
24064       
24065
24066     // private
24067     onDestroy : function(){
24068         
24069         
24070         
24071         if(this.rendered){
24072             
24073             for (var i =0; i < this.toolbars.length;i++) {
24074                 // fixme - ask toolbars for heights?
24075                 this.toolbars[i].onDestroy();
24076             }
24077             
24078             this.wrap.dom.innerHTML = '';
24079             this.wrap.remove();
24080         }
24081     },
24082
24083     // private
24084     onFirstFocus : function(){
24085         //Roo.log("onFirstFocus");
24086         this.editorcore.onFirstFocus();
24087          for (var i =0; i < this.toolbars.length;i++) {
24088             this.toolbars[i].onFirstFocus();
24089         }
24090         
24091     },
24092     
24093     // private
24094     syncValue : function()
24095     {   
24096         this.editorcore.syncValue();
24097     },
24098     
24099     pushValue : function()
24100     {   
24101         this.editorcore.pushValue();
24102     }
24103      
24104     
24105     // hide stuff that is not compatible
24106     /**
24107      * @event blur
24108      * @hide
24109      */
24110     /**
24111      * @event change
24112      * @hide
24113      */
24114     /**
24115      * @event focus
24116      * @hide
24117      */
24118     /**
24119      * @event specialkey
24120      * @hide
24121      */
24122     /**
24123      * @cfg {String} fieldClass @hide
24124      */
24125     /**
24126      * @cfg {String} focusClass @hide
24127      */
24128     /**
24129      * @cfg {String} autoCreate @hide
24130      */
24131     /**
24132      * @cfg {String} inputType @hide
24133      */
24134      
24135     /**
24136      * @cfg {String} invalidText @hide
24137      */
24138     /**
24139      * @cfg {String} msgFx @hide
24140      */
24141     /**
24142      * @cfg {String} validateOnBlur @hide
24143      */
24144 });
24145  
24146     
24147    
24148    
24149    
24150       
24151 Roo.namespace('Roo.bootstrap.htmleditor');
24152 /**
24153  * @class Roo.bootstrap.HtmlEditorToolbar1
24154  * Basic Toolbar
24155  * 
24156  * @example
24157  * Usage:
24158  *
24159  new Roo.bootstrap.HtmlEditor({
24160     ....
24161     toolbars : [
24162         new Roo.bootstrap.HtmlEditorToolbar1({
24163             disable : { fonts: 1 , format: 1, ..., ... , ...],
24164             btns : [ .... ]
24165         })
24166     }
24167      
24168  * 
24169  * @cfg {Object} disable List of elements to disable..
24170  * @cfg {Array} btns List of additional buttons.
24171  * 
24172  * 
24173  * NEEDS Extra CSS? 
24174  * .x-html-editor-tb .x-edit-none .x-btn-text { background: none; }
24175  */
24176  
24177 Roo.bootstrap.htmleditor.ToolbarStandard = function(config)
24178 {
24179     
24180     Roo.apply(this, config);
24181     
24182     // default disabled, based on 'good practice'..
24183     this.disable = this.disable || {};
24184     Roo.applyIf(this.disable, {
24185         fontSize : true,
24186         colors : true,
24187         specialElements : true
24188     });
24189     Roo.bootstrap.htmleditor.ToolbarStandard.superclass.constructor.call(this, config);
24190     
24191     this.editor = config.editor;
24192     this.editorcore = config.editor.editorcore;
24193     
24194     this.buttons   = new Roo.util.MixedCollection(false, function(o) { return o.cmd; });
24195     
24196     //Roo.form.HtmlEditorToolbar1.superclass.constructor.call(this, editor.wrap.dom.firstChild, [], config);
24197     // dont call parent... till later.
24198 }
24199 Roo.extend(Roo.bootstrap.htmleditor.ToolbarStandard, Roo.bootstrap.NavSimplebar,  {
24200      
24201     bar : true,
24202     
24203     editor : false,
24204     editorcore : false,
24205     
24206     
24207     formats : [
24208         "p" ,  
24209         "h1","h2","h3","h4","h5","h6", 
24210         "pre", "code", 
24211         "abbr", "acronym", "address", "cite", "samp", "var",
24212         'div','span'
24213     ],
24214     
24215     onRender : function(ct, position)
24216     {
24217        // Roo.log("Call onRender: " + this.xtype);
24218         
24219        Roo.bootstrap.htmleditor.ToolbarStandard.superclass.onRender.call(this, ct, position);
24220        Roo.log(this.el);
24221        this.el.dom.style.marginBottom = '0';
24222        var _this = this;
24223        var editorcore = this.editorcore;
24224        var editor= this.editor;
24225        
24226        var children = [];
24227        var btn = function(id,cmd , toggle, handler, html){
24228        
24229             var  event = toggle ? 'toggle' : 'click';
24230        
24231             var a = {
24232                 size : 'sm',
24233                 xtype: 'Button',
24234                 xns: Roo.bootstrap,
24235                 //glyphicon : id,
24236                 fa: id,
24237                 cmd : id || cmd,
24238                 enableToggle:toggle !== false,
24239                 html : html || '',
24240                 pressed : toggle ? false : null,
24241                 listeners : {}
24242             };
24243             a.listeners[toggle ? 'toggle' : 'click'] = function() {
24244                 handler ? handler.call(_this,this) :_this.onBtnClick.call(_this, cmd ||  id);
24245             };
24246             children.push(a);
24247             return a;
24248        }
24249        
24250     //    var cb_box = function...
24251         
24252         var style = {
24253                 xtype: 'Button',
24254                 size : 'sm',
24255                 xns: Roo.bootstrap,
24256                 fa : 'font',
24257                 //html : 'submit'
24258                 menu : {
24259                     xtype: 'Menu',
24260                     xns: Roo.bootstrap,
24261                     items:  []
24262                 }
24263         };
24264         Roo.each(this.formats, function(f) {
24265             style.menu.items.push({
24266                 xtype :'MenuItem',
24267                 xns: Roo.bootstrap,
24268                 html : '<'+ f+' style="margin:2px">'+f +'</'+ f+'>',
24269                 tagname : f,
24270                 listeners : {
24271                     click : function()
24272                     {
24273                         editorcore.insertTag(this.tagname);
24274                         editor.focus();
24275                     }
24276                 }
24277                 
24278             });
24279         });
24280         children.push(style);   
24281         
24282         btn('bold',false,true);
24283         btn('italic',false,true);
24284         btn('align-left', 'justifyleft',true);
24285         btn('align-center', 'justifycenter',true);
24286         btn('align-right' , 'justifyright',true);
24287         btn('link', false, false, function(btn) {
24288             //Roo.log("create link?");
24289             var url = prompt(this.createLinkText, this.defaultLinkValue);
24290             if(url && url != 'http:/'+'/'){
24291                 this.editorcore.relayCmd('createlink', url);
24292             }
24293         }),
24294         btn('list','insertunorderedlist',true);
24295         btn('pencil', false,true, function(btn){
24296                 Roo.log(this);
24297                 this.toggleSourceEdit(btn.pressed);
24298         });
24299         
24300         if (this.editor.btns.length > 0) {
24301             for (var i = 0; i<this.editor.btns.length; i++) {
24302                 children.push(this.editor.btns[i]);
24303             }
24304         }
24305         
24306         /*
24307         var cog = {
24308                 xtype: 'Button',
24309                 size : 'sm',
24310                 xns: Roo.bootstrap,
24311                 glyphicon : 'cog',
24312                 //html : 'submit'
24313                 menu : {
24314                     xtype: 'Menu',
24315                     xns: Roo.bootstrap,
24316                     items:  []
24317                 }
24318         };
24319         
24320         cog.menu.items.push({
24321             xtype :'MenuItem',
24322             xns: Roo.bootstrap,
24323             html : Clean styles,
24324             tagname : f,
24325             listeners : {
24326                 click : function()
24327                 {
24328                     editorcore.insertTag(this.tagname);
24329                     editor.focus();
24330                 }
24331             }
24332             
24333         });
24334        */
24335         
24336          
24337        this.xtype = 'NavSimplebar';
24338         
24339         for(var i=0;i< children.length;i++) {
24340             
24341             this.buttons.add(this.addxtypeChild(children[i]));
24342             
24343         }
24344         
24345         editor.on('editorevent', this.updateToolbar, this);
24346     },
24347     onBtnClick : function(id)
24348     {
24349        this.editorcore.relayCmd(id);
24350        this.editorcore.focus();
24351     },
24352     
24353     /**
24354      * Protected method that will not generally be called directly. It triggers
24355      * a toolbar update by reading the markup state of the current selection in the editor.
24356      */
24357     updateToolbar: function(){
24358
24359         if(!this.editorcore.activated){
24360             this.editor.onFirstFocus(); // is this neeed?
24361             return;
24362         }
24363
24364         var btns = this.buttons; 
24365         var doc = this.editorcore.doc;
24366         btns.get('bold').setActive(doc.queryCommandState('bold'));
24367         btns.get('italic').setActive(doc.queryCommandState('italic'));
24368         //btns.get('underline').setActive(doc.queryCommandState('underline'));
24369         
24370         btns.get('align-left').setActive(doc.queryCommandState('justifyleft'));
24371         btns.get('align-center').setActive(doc.queryCommandState('justifycenter'));
24372         btns.get('align-right').setActive(doc.queryCommandState('justifyright'));
24373         
24374         //btns[frameId + '-insertorderedlist').setActive(doc.queryCommandState('insertorderedlist'));
24375         btns.get('list').setActive(doc.queryCommandState('insertunorderedlist'));
24376          /*
24377         
24378         var ans = this.editorcore.getAllAncestors();
24379         if (this.formatCombo) {
24380             
24381             
24382             var store = this.formatCombo.store;
24383             this.formatCombo.setValue("");
24384             for (var i =0; i < ans.length;i++) {
24385                 if (ans[i] && store.query('tag',ans[i].tagName.toLowerCase(), false).length) {
24386                     // select it..
24387                     this.formatCombo.setValue(ans[i].tagName.toLowerCase());
24388                     break;
24389                 }
24390             }
24391         }
24392         
24393         
24394         
24395         // hides menus... - so this cant be on a menu...
24396         Roo.bootstrap.MenuMgr.hideAll();
24397         */
24398         Roo.bootstrap.MenuMgr.hideAll();
24399         //this.editorsyncValue();
24400     },
24401     onFirstFocus: function() {
24402         this.buttons.each(function(item){
24403            item.enable();
24404         });
24405     },
24406     toggleSourceEdit : function(sourceEditMode){
24407         
24408           
24409         if(sourceEditMode){
24410             Roo.log("disabling buttons");
24411            this.buttons.each( function(item){
24412                 if(item.cmd != 'pencil'){
24413                     item.disable();
24414                 }
24415             });
24416           
24417         }else{
24418             Roo.log("enabling buttons");
24419             if(this.editorcore.initialized){
24420                 this.buttons.each( function(item){
24421                     item.enable();
24422                 });
24423             }
24424             
24425         }
24426         Roo.log("calling toggole on editor");
24427         // tell the editor that it's been pressed..
24428         this.editor.toggleSourceEdit(sourceEditMode);
24429        
24430     }
24431 });
24432
24433
24434
24435
24436
24437 /**
24438  * @class Roo.bootstrap.Table.AbstractSelectionModel
24439  * @extends Roo.util.Observable
24440  * Abstract base class for grid SelectionModels.  It provides the interface that should be
24441  * implemented by descendant classes.  This class should not be directly instantiated.
24442  * @constructor
24443  */
24444 Roo.bootstrap.Table.AbstractSelectionModel = function(){
24445     this.locked = false;
24446     Roo.bootstrap.Table.AbstractSelectionModel.superclass.constructor.call(this);
24447 };
24448
24449
24450 Roo.extend(Roo.bootstrap.Table.AbstractSelectionModel, Roo.util.Observable,  {
24451     /** @ignore Called by the grid automatically. Do not call directly. */
24452     init : function(grid){
24453         this.grid = grid;
24454         this.initEvents();
24455     },
24456
24457     /**
24458      * Locks the selections.
24459      */
24460     lock : function(){
24461         this.locked = true;
24462     },
24463
24464     /**
24465      * Unlocks the selections.
24466      */
24467     unlock : function(){
24468         this.locked = false;
24469     },
24470
24471     /**
24472      * Returns true if the selections are locked.
24473      * @return {Boolean}
24474      */
24475     isLocked : function(){
24476         return this.locked;
24477     }
24478 });
24479 /**
24480  * @extends Roo.bootstrap.Table.AbstractSelectionModel
24481  * @class Roo.bootstrap.Table.RowSelectionModel
24482  * The default SelectionModel used by {@link Roo.bootstrap.Table}.
24483  * It supports multiple selections and keyboard selection/navigation. 
24484  * @constructor
24485  * @param {Object} config
24486  */
24487
24488 Roo.bootstrap.Table.RowSelectionModel = function(config){
24489     Roo.apply(this, config);
24490     this.selections = new Roo.util.MixedCollection(false, function(o){
24491         return o.id;
24492     });
24493
24494     this.last = false;
24495     this.lastActive = false;
24496
24497     this.addEvents({
24498         /**
24499              * @event selectionchange
24500              * Fires when the selection changes
24501              * @param {SelectionModel} this
24502              */
24503             "selectionchange" : true,
24504         /**
24505              * @event afterselectionchange
24506              * Fires after the selection changes (eg. by key press or clicking)
24507              * @param {SelectionModel} this
24508              */
24509             "afterselectionchange" : true,
24510         /**
24511              * @event beforerowselect
24512              * Fires when a row is selected being selected, return false to cancel.
24513              * @param {SelectionModel} this
24514              * @param {Number} rowIndex The selected index
24515              * @param {Boolean} keepExisting False if other selections will be cleared
24516              */
24517             "beforerowselect" : true,
24518         /**
24519              * @event rowselect
24520              * Fires when a row is selected.
24521              * @param {SelectionModel} this
24522              * @param {Number} rowIndex The selected index
24523              * @param {Roo.data.Record} r The record
24524              */
24525             "rowselect" : true,
24526         /**
24527              * @event rowdeselect
24528              * Fires when a row is deselected.
24529              * @param {SelectionModel} this
24530              * @param {Number} rowIndex The selected index
24531              */
24532         "rowdeselect" : true
24533     });
24534     Roo.bootstrap.Table.RowSelectionModel.superclass.constructor.call(this);
24535     this.locked = false;
24536  };
24537
24538 Roo.extend(Roo.bootstrap.Table.RowSelectionModel, Roo.bootstrap.Table.AbstractSelectionModel,  {
24539     /**
24540      * @cfg {Boolean} singleSelect
24541      * True to allow selection of only one row at a time (defaults to false)
24542      */
24543     singleSelect : false,
24544
24545     // private
24546     initEvents : function()
24547     {
24548
24549         //if(!this.grid.enableDragDrop && !this.grid.enableDrag){
24550         //    this.growclickrid.on("mousedown", this.handleMouseDown, this);
24551         //}else{ // allow click to work like normal
24552          //   this.grid.on("rowclick", this.handleDragableRowClick, this);
24553         //}
24554         //this.grid.on("rowdblclick", this.handleMouseDBClick, this);
24555         this.grid.on("rowclick", this.handleMouseDown, this);
24556         
24557         this.rowNav = new Roo.KeyNav(this.grid.getGridEl(), {
24558             "up" : function(e){
24559                 if(!e.shiftKey){
24560                     this.selectPrevious(e.shiftKey);
24561                 }else if(this.last !== false && this.lastActive !== false){
24562                     var last = this.last;
24563                     this.selectRange(this.last,  this.lastActive-1);
24564                     this.grid.getView().focusRow(this.lastActive);
24565                     if(last !== false){
24566                         this.last = last;
24567                     }
24568                 }else{
24569                     this.selectFirstRow();
24570                 }
24571                 this.fireEvent("afterselectionchange", this);
24572             },
24573             "down" : function(e){
24574                 if(!e.shiftKey){
24575                     this.selectNext(e.shiftKey);
24576                 }else if(this.last !== false && this.lastActive !== false){
24577                     var last = this.last;
24578                     this.selectRange(this.last,  this.lastActive+1);
24579                     this.grid.getView().focusRow(this.lastActive);
24580                     if(last !== false){
24581                         this.last = last;
24582                     }
24583                 }else{
24584                     this.selectFirstRow();
24585                 }
24586                 this.fireEvent("afterselectionchange", this);
24587             },
24588             scope: this
24589         });
24590         this.grid.store.on('load', function(){
24591             this.selections.clear();
24592         },this);
24593         /*
24594         var view = this.grid.view;
24595         view.on("refresh", this.onRefresh, this);
24596         view.on("rowupdated", this.onRowUpdated, this);
24597         view.on("rowremoved", this.onRemove, this);
24598         */
24599     },
24600
24601     // private
24602     onRefresh : function()
24603     {
24604         var ds = this.grid.store, i, v = this.grid.view;
24605         var s = this.selections;
24606         s.each(function(r){
24607             if((i = ds.indexOfId(r.id)) != -1){
24608                 v.onRowSelect(i);
24609             }else{
24610                 s.remove(r);
24611             }
24612         });
24613     },
24614
24615     // private
24616     onRemove : function(v, index, r){
24617         this.selections.remove(r);
24618     },
24619
24620     // private
24621     onRowUpdated : function(v, index, r){
24622         if(this.isSelected(r)){
24623             v.onRowSelect(index);
24624         }
24625     },
24626
24627     /**
24628      * Select records.
24629      * @param {Array} records The records to select
24630      * @param {Boolean} keepExisting (optional) True to keep existing selections
24631      */
24632     selectRecords : function(records, keepExisting)
24633     {
24634         if(!keepExisting){
24635             this.clearSelections();
24636         }
24637             var ds = this.grid.store;
24638         for(var i = 0, len = records.length; i < len; i++){
24639             this.selectRow(ds.indexOf(records[i]), true);
24640         }
24641     },
24642
24643     /**
24644      * Gets the number of selected rows.
24645      * @return {Number}
24646      */
24647     getCount : function(){
24648         return this.selections.length;
24649     },
24650
24651     /**
24652      * Selects the first row in the grid.
24653      */
24654     selectFirstRow : function(){
24655         this.selectRow(0);
24656     },
24657
24658     /**
24659      * Select the last row.
24660      * @param {Boolean} keepExisting (optional) True to keep existing selections
24661      */
24662     selectLastRow : function(keepExisting){
24663         //this.selectRow(this.grid.dataSource.getCount() - 1, keepExisting);
24664         this.selectRow(this.grid.store.getCount() - 1, keepExisting);
24665     },
24666
24667     /**
24668      * Selects the row immediately following the last selected row.
24669      * @param {Boolean} keepExisting (optional) True to keep existing selections
24670      */
24671     selectNext : function(keepExisting)
24672     {
24673             if(this.last !== false && (this.last+1) < this.grid.store.getCount()){
24674             this.selectRow(this.last+1, keepExisting);
24675             this.grid.getView().focusRow(this.last);
24676         }
24677     },
24678
24679     /**
24680      * Selects the row that precedes the last selected row.
24681      * @param {Boolean} keepExisting (optional) True to keep existing selections
24682      */
24683     selectPrevious : function(keepExisting){
24684         if(this.last){
24685             this.selectRow(this.last-1, keepExisting);
24686             this.grid.getView().focusRow(this.last);
24687         }
24688     },
24689
24690     /**
24691      * Returns the selected records
24692      * @return {Array} Array of selected records
24693      */
24694     getSelections : function(){
24695         return [].concat(this.selections.items);
24696     },
24697
24698     /**
24699      * Returns the first selected record.
24700      * @return {Record}
24701      */
24702     getSelected : function(){
24703         return this.selections.itemAt(0);
24704     },
24705
24706
24707     /**
24708      * Clears all selections.
24709      */
24710     clearSelections : function(fast)
24711     {
24712         if(this.locked) {
24713             return;
24714         }
24715         if(fast !== true){
24716                 var ds = this.grid.store;
24717             var s = this.selections;
24718             s.each(function(r){
24719                 this.deselectRow(ds.indexOfId(r.id));
24720             }, this);
24721             s.clear();
24722         }else{
24723             this.selections.clear();
24724         }
24725         this.last = false;
24726     },
24727
24728
24729     /**
24730      * Selects all rows.
24731      */
24732     selectAll : function(){
24733         if(this.locked) {
24734             return;
24735         }
24736         this.selections.clear();
24737         for(var i = 0, len = this.grid.store.getCount(); i < len; i++){
24738             this.selectRow(i, true);
24739         }
24740     },
24741
24742     /**
24743      * Returns True if there is a selection.
24744      * @return {Boolean}
24745      */
24746     hasSelection : function(){
24747         return this.selections.length > 0;
24748     },
24749
24750     /**
24751      * Returns True if the specified row is selected.
24752      * @param {Number/Record} record The record or index of the record to check
24753      * @return {Boolean}
24754      */
24755     isSelected : function(index){
24756             var r = typeof index == "number" ? this.grid.store.getAt(index) : index;
24757         return (r && this.selections.key(r.id) ? true : false);
24758     },
24759
24760     /**
24761      * Returns True if the specified record id is selected.
24762      * @param {String} id The id of record to check
24763      * @return {Boolean}
24764      */
24765     isIdSelected : function(id){
24766         return (this.selections.key(id) ? true : false);
24767     },
24768
24769
24770     // private
24771     handleMouseDBClick : function(e, t){
24772         
24773     },
24774     // private
24775     handleMouseDown : function(e, t)
24776     {
24777             var rowIndex = this.grid.headerShow  ? t.dom.rowIndex - 1 : t.dom.rowIndex ; // first row is header???
24778         if(this.isLocked() || rowIndex < 0 ){
24779             return;
24780         };
24781         if(e.shiftKey && this.last !== false){
24782             var last = this.last;
24783             this.selectRange(last, rowIndex, e.ctrlKey);
24784             this.last = last; // reset the last
24785             t.focus();
24786     
24787         }else{
24788             var isSelected = this.isSelected(rowIndex);
24789             //Roo.log("select row:" + rowIndex);
24790             if(isSelected){
24791                 this.deselectRow(rowIndex);
24792             } else {
24793                         this.selectRow(rowIndex, true);
24794             }
24795     
24796             /*
24797                 if(e.button !== 0 && isSelected){
24798                 alert('rowIndex 2: ' + rowIndex);
24799                     view.focusRow(rowIndex);
24800                 }else if(e.ctrlKey && isSelected){
24801                     this.deselectRow(rowIndex);
24802                 }else if(!isSelected){
24803                     this.selectRow(rowIndex, e.button === 0 && (e.ctrlKey || e.shiftKey));
24804                     view.focusRow(rowIndex);
24805                 }
24806             */
24807         }
24808         this.fireEvent("afterselectionchange", this);
24809     },
24810     // private
24811     handleDragableRowClick :  function(grid, rowIndex, e) 
24812     {
24813         if(e.button === 0 && !e.shiftKey && !e.ctrlKey) {
24814             this.selectRow(rowIndex, false);
24815             grid.view.focusRow(rowIndex);
24816              this.fireEvent("afterselectionchange", this);
24817         }
24818     },
24819     
24820     /**
24821      * Selects multiple rows.
24822      * @param {Array} rows Array of the indexes of the row to select
24823      * @param {Boolean} keepExisting (optional) True to keep existing selections
24824      */
24825     selectRows : function(rows, keepExisting){
24826         if(!keepExisting){
24827             this.clearSelections();
24828         }
24829         for(var i = 0, len = rows.length; i < len; i++){
24830             this.selectRow(rows[i], true);
24831         }
24832     },
24833
24834     /**
24835      * Selects a range of rows. All rows in between startRow and endRow are also selected.
24836      * @param {Number} startRow The index of the first row in the range
24837      * @param {Number} endRow The index of the last row in the range
24838      * @param {Boolean} keepExisting (optional) True to retain existing selections
24839      */
24840     selectRange : function(startRow, endRow, keepExisting){
24841         if(this.locked) {
24842             return;
24843         }
24844         if(!keepExisting){
24845             this.clearSelections();
24846         }
24847         if(startRow <= endRow){
24848             for(var i = startRow; i <= endRow; i++){
24849                 this.selectRow(i, true);
24850             }
24851         }else{
24852             for(var i = startRow; i >= endRow; i--){
24853                 this.selectRow(i, true);
24854             }
24855         }
24856     },
24857
24858     /**
24859      * Deselects a range of rows. All rows in between startRow and endRow are also deselected.
24860      * @param {Number} startRow The index of the first row in the range
24861      * @param {Number} endRow The index of the last row in the range
24862      */
24863     deselectRange : function(startRow, endRow, preventViewNotify){
24864         if(this.locked) {
24865             return;
24866         }
24867         for(var i = startRow; i <= endRow; i++){
24868             this.deselectRow(i, preventViewNotify);
24869         }
24870     },
24871
24872     /**
24873      * Selects a row.
24874      * @param {Number} row The index of the row to select
24875      * @param {Boolean} keepExisting (optional) True to keep existing selections
24876      */
24877     selectRow : function(index, keepExisting, preventViewNotify)
24878     {
24879             if(this.locked || (index < 0 || index > this.grid.store.getCount())) {
24880             return;
24881         }
24882         if(this.fireEvent("beforerowselect", this, index, keepExisting) !== false){
24883             if(!keepExisting || this.singleSelect){
24884                 this.clearSelections();
24885             }
24886             
24887             var r = this.grid.store.getAt(index);
24888             //console.log('selectRow - record id :' + r.id);
24889             
24890             this.selections.add(r);
24891             this.last = this.lastActive = index;
24892             if(!preventViewNotify){
24893                 var proxy = new Roo.Element(
24894                                 this.grid.getRowDom(index)
24895                 );
24896                 proxy.addClass('bg-info info');
24897             }
24898             this.fireEvent("rowselect", this, index, r);
24899             this.fireEvent("selectionchange", this);
24900         }
24901     },
24902
24903     /**
24904      * Deselects a row.
24905      * @param {Number} row The index of the row to deselect
24906      */
24907     deselectRow : function(index, preventViewNotify)
24908     {
24909         if(this.locked) {
24910             return;
24911         }
24912         if(this.last == index){
24913             this.last = false;
24914         }
24915         if(this.lastActive == index){
24916             this.lastActive = false;
24917         }
24918         
24919         var r = this.grid.store.getAt(index);
24920         if (!r) {
24921             return;
24922         }
24923         
24924         this.selections.remove(r);
24925         //.console.log('deselectRow - record id :' + r.id);
24926         if(!preventViewNotify){
24927         
24928             var proxy = new Roo.Element(
24929                 this.grid.getRowDom(index)
24930             );
24931             proxy.removeClass('bg-info info');
24932         }
24933         this.fireEvent("rowdeselect", this, index);
24934         this.fireEvent("selectionchange", this);
24935     },
24936
24937     // private
24938     restoreLast : function(){
24939         if(this._last){
24940             this.last = this._last;
24941         }
24942     },
24943
24944     // private
24945     acceptsNav : function(row, col, cm){
24946         return !cm.isHidden(col) && cm.isCellEditable(col, row);
24947     },
24948
24949     // private
24950     onEditorKey : function(field, e){
24951         var k = e.getKey(), newCell, g = this.grid, ed = g.activeEditor;
24952         if(k == e.TAB){
24953             e.stopEvent();
24954             ed.completeEdit();
24955             if(e.shiftKey){
24956                 newCell = g.walkCells(ed.row, ed.col-1, -1, this.acceptsNav, this);
24957             }else{
24958                 newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
24959             }
24960         }else if(k == e.ENTER && !e.ctrlKey){
24961             e.stopEvent();
24962             ed.completeEdit();
24963             if(e.shiftKey){
24964                 newCell = g.walkCells(ed.row-1, ed.col, -1, this.acceptsNav, this);
24965             }else{
24966                 newCell = g.walkCells(ed.row+1, ed.col, 1, this.acceptsNav, this);
24967             }
24968         }else if(k == e.ESC){
24969             ed.cancelEdit();
24970         }
24971         if(newCell){
24972             g.startEditing(newCell[0], newCell[1]);
24973         }
24974     }
24975 });
24976 /*
24977  * Based on:
24978  * Ext JS Library 1.1.1
24979  * Copyright(c) 2006-2007, Ext JS, LLC.
24980  *
24981  * Originally Released Under LGPL - original licence link has changed is not relivant.
24982  *
24983  * Fork - LGPL
24984  * <script type="text/javascript">
24985  */
24986  
24987 /**
24988  * @class Roo.bootstrap.PagingToolbar
24989  * @extends Roo.bootstrap.NavSimplebar
24990  * A specialized toolbar that is bound to a {@link Roo.data.Store} and provides automatic paging controls.
24991  * @constructor
24992  * Create a new PagingToolbar
24993  * @param {Object} config The config object
24994  * @param {Roo.data.Store} store
24995  */
24996 Roo.bootstrap.PagingToolbar = function(config)
24997 {
24998     // old args format still supported... - xtype is prefered..
24999         // created from xtype...
25000     
25001     this.ds = config.dataSource;
25002     
25003     if (config.store && !this.ds) {
25004         this.store= Roo.factory(config.store, Roo.data);
25005         this.ds = this.store;
25006         this.ds.xmodule = this.xmodule || false;
25007     }
25008     
25009     this.toolbarItems = [];
25010     if (config.items) {
25011         this.toolbarItems = config.items;
25012     }
25013     
25014     Roo.bootstrap.PagingToolbar.superclass.constructor.call(this, config);
25015     
25016     this.cursor = 0;
25017     
25018     if (this.ds) { 
25019         this.bind(this.ds);
25020     }
25021     
25022     if (Roo.bootstrap.version == 4) {
25023         this.navgroup = new Roo.bootstrap.ButtonGroup({ cls: 'pagination' });
25024     } else {
25025         this.navgroup = new Roo.bootstrap.NavGroup({ cls: 'pagination' });
25026     }
25027     
25028 };
25029
25030 Roo.extend(Roo.bootstrap.PagingToolbar, Roo.bootstrap.NavSimplebar, {
25031     /**
25032      * @cfg {Roo.data.Store} dataSource
25033      * The underlying data store providing the paged data
25034      */
25035     /**
25036      * @cfg {String/HTMLElement/Element} container
25037      * container The id or element that will contain the toolbar
25038      */
25039     /**
25040      * @cfg {Boolean} displayInfo
25041      * True to display the displayMsg (defaults to false)
25042      */
25043     /**
25044      * @cfg {Number} pageSize
25045      * The number of records to display per page (defaults to 20)
25046      */
25047     pageSize: 20,
25048     /**
25049      * @cfg {String} displayMsg
25050      * The paging status message to display (defaults to "Displaying {start} - {end} of {total}")
25051      */
25052     displayMsg : 'Displaying {0} - {1} of {2}',
25053     /**
25054      * @cfg {String} emptyMsg
25055      * The message to display when no records are found (defaults to "No data to display")
25056      */
25057     emptyMsg : 'No data to display',
25058     /**
25059      * Customizable piece of the default paging text (defaults to "Page")
25060      * @type String
25061      */
25062     beforePageText : "Page",
25063     /**
25064      * Customizable piece of the default paging text (defaults to "of %0")
25065      * @type String
25066      */
25067     afterPageText : "of {0}",
25068     /**
25069      * Customizable piece of the default paging text (defaults to "First Page")
25070      * @type String
25071      */
25072     firstText : "First Page",
25073     /**
25074      * Customizable piece of the default paging text (defaults to "Previous Page")
25075      * @type String
25076      */
25077     prevText : "Previous Page",
25078     /**
25079      * Customizable piece of the default paging text (defaults to "Next Page")
25080      * @type String
25081      */
25082     nextText : "Next Page",
25083     /**
25084      * Customizable piece of the default paging text (defaults to "Last Page")
25085      * @type String
25086      */
25087     lastText : "Last Page",
25088     /**
25089      * Customizable piece of the default paging text (defaults to "Refresh")
25090      * @type String
25091      */
25092     refreshText : "Refresh",
25093
25094     buttons : false,
25095     // private
25096     onRender : function(ct, position) 
25097     {
25098         Roo.bootstrap.PagingToolbar.superclass.onRender.call(this, ct, position);
25099         this.navgroup.parentId = this.id;
25100         this.navgroup.onRender(this.el, null);
25101         // add the buttons to the navgroup
25102         
25103         if(this.displayInfo){
25104             this.el.select('ul.navbar-nav',true).first().createChild({cls:'x-paging-info'});
25105             this.displayEl = this.el.select('.x-paging-info', true).first();
25106 //            var navel = this.navgroup.addItem( { tagtype : 'span', html : '', cls : 'x-paging-info', preventDefault : true } );
25107 //            this.displayEl = navel.el.select('span',true).first();
25108         }
25109         
25110         var _this = this;
25111         
25112         if(this.buttons){
25113             Roo.each(_this.buttons, function(e){ // this might need to use render????
25114                Roo.factory(e).render(_this.el);
25115             });
25116         }
25117             
25118         Roo.each(_this.toolbarItems, function(e) {
25119             _this.navgroup.addItem(e);
25120         });
25121         
25122         
25123         this.first = this.navgroup.addItem({
25124             tooltip: this.firstText,
25125             cls: "prev btn-outline-secondary",
25126             html : ' <i class="fa fa-step-backward"></i>',
25127             disabled: true,
25128             preventDefault: true,
25129             listeners : { click : this.onClick.createDelegate(this, ["first"]) }
25130         });
25131         
25132         this.prev =  this.navgroup.addItem({
25133             tooltip: this.prevText,
25134             cls: "prev btn-outline-secondary",
25135             html : ' <i class="fa fa-backward"></i>',
25136             disabled: true,
25137             preventDefault: true,
25138             listeners : { click :  this.onClick.createDelegate(this, ["prev"]) }
25139         });
25140     //this.addSeparator();
25141         
25142         
25143         var field = this.navgroup.addItem( {
25144             tagtype : 'span',
25145             cls : 'x-paging-position  btn-outline-secondary',
25146              disabled: true,
25147             html : this.beforePageText  +
25148                 '<input type="text" size="3" value="1" class="x-grid-page-number">' +
25149                 '<span class="x-paging-after">' +  String.format(this.afterPageText, 1) + '</span>'
25150          } ); //?? escaped?
25151         
25152         this.field = field.el.select('input', true).first();
25153         this.field.on("keydown", this.onPagingKeydown, this);
25154         this.field.on("focus", function(){this.dom.select();});
25155     
25156     
25157         this.afterTextEl =  field.el.select('.x-paging-after',true).first();
25158         //this.field.setHeight(18);
25159         //this.addSeparator();
25160         this.next = this.navgroup.addItem({
25161             tooltip: this.nextText,
25162             cls: "next btn-outline-secondary",
25163             html : ' <i class="fa fa-forward"></i>',
25164             disabled: true,
25165             preventDefault: true,
25166             listeners : { click :  this.onClick.createDelegate(this, ["next"]) }
25167         });
25168         this.last = this.navgroup.addItem({
25169             tooltip: this.lastText,
25170             html : ' <i class="fa fa-step-forward"></i>',
25171             cls: "next btn-outline-secondary",
25172             disabled: true,
25173             preventDefault: true,
25174             listeners : { click :  this.onClick.createDelegate(this, ["last"]) }
25175         });
25176     //this.addSeparator();
25177         this.loading = this.navgroup.addItem({
25178             tooltip: this.refreshText,
25179             cls: "btn-outline-secondary",
25180             html : ' <i class="fa fa-refresh"></i>',
25181             preventDefault: true,
25182             listeners : { click : this.onClick.createDelegate(this, ["refresh"]) }
25183         });
25184         
25185     },
25186
25187     // private
25188     updateInfo : function(){
25189         if(this.displayEl){
25190             var count = (typeof(this.getCount) == 'undefined') ? this.ds.getCount() : this.getCount();
25191             var msg = count == 0 ?
25192                 this.emptyMsg :
25193                 String.format(
25194                     this.displayMsg,
25195                     this.cursor+1, this.cursor+count, this.ds.getTotalCount()    
25196                 );
25197             this.displayEl.update(msg);
25198         }
25199     },
25200
25201     // private
25202     onLoad : function(ds, r, o)
25203     {
25204         this.cursor = o.params.start ? o.params.start : 0;
25205         
25206         var d = this.getPageData(),
25207             ap = d.activePage,
25208             ps = d.pages;
25209         
25210         
25211         this.afterTextEl.dom.innerHTML = String.format(this.afterPageText, d.pages);
25212         this.field.dom.value = ap;
25213         this.first.setDisabled(ap == 1);
25214         this.prev.setDisabled(ap == 1);
25215         this.next.setDisabled(ap == ps);
25216         this.last.setDisabled(ap == ps);
25217         this.loading.enable();
25218         this.updateInfo();
25219     },
25220
25221     // private
25222     getPageData : function(){
25223         var total = this.ds.getTotalCount();
25224         return {
25225             total : total,
25226             activePage : Math.ceil((this.cursor+this.pageSize)/this.pageSize),
25227             pages :  total < this.pageSize ? 1 : Math.ceil(total/this.pageSize)
25228         };
25229     },
25230
25231     // private
25232     onLoadError : function(){
25233         this.loading.enable();
25234     },
25235
25236     // private
25237     onPagingKeydown : function(e){
25238         var k = e.getKey();
25239         var d = this.getPageData();
25240         if(k == e.RETURN){
25241             var v = this.field.dom.value, pageNum;
25242             if(!v || isNaN(pageNum = parseInt(v, 10))){
25243                 this.field.dom.value = d.activePage;
25244                 return;
25245             }
25246             pageNum = Math.min(Math.max(1, pageNum), d.pages) - 1;
25247             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
25248             e.stopEvent();
25249         }
25250         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))
25251         {
25252           var pageNum = (k == e.HOME || (k == e.DOWN && e.ctrlKey) || (k == e.LEFT && e.ctrlKey) || (k == e.PAGEDOWN && e.ctrlKey)) ? 1 : d.pages;
25253           this.field.dom.value = pageNum;
25254           this.ds.load({params:{start: (pageNum - 1) * this.pageSize, limit: this.pageSize}});
25255           e.stopEvent();
25256         }
25257         else if(k == e.UP || k == e.RIGHT || k == e.PAGEUP || k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN)
25258         {
25259           var v = this.field.dom.value, pageNum; 
25260           var increment = (e.shiftKey) ? 10 : 1;
25261           if(k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN) {
25262                 increment *= -1;
25263           }
25264           if(!v || isNaN(pageNum = parseInt(v, 10))) {
25265             this.field.dom.value = d.activePage;
25266             return;
25267           }
25268           else if(parseInt(v, 10) + increment >= 1 & parseInt(v, 10) + increment <= d.pages)
25269           {
25270             this.field.dom.value = parseInt(v, 10) + increment;
25271             pageNum = Math.min(Math.max(1, pageNum + increment), d.pages) - 1;
25272             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
25273           }
25274           e.stopEvent();
25275         }
25276     },
25277
25278     // private
25279     beforeLoad : function(){
25280         if(this.loading){
25281             this.loading.disable();
25282         }
25283     },
25284
25285     // private
25286     onClick : function(which){
25287         
25288         var ds = this.ds;
25289         if (!ds) {
25290             return;
25291         }
25292         
25293         switch(which){
25294             case "first":
25295                 ds.load({params:{start: 0, limit: this.pageSize}});
25296             break;
25297             case "prev":
25298                 ds.load({params:{start: Math.max(0, this.cursor-this.pageSize), limit: this.pageSize}});
25299             break;
25300             case "next":
25301                 ds.load({params:{start: this.cursor+this.pageSize, limit: this.pageSize}});
25302             break;
25303             case "last":
25304                 var total = ds.getTotalCount();
25305                 var extra = total % this.pageSize;
25306                 var lastStart = extra ? (total - extra) : total-this.pageSize;
25307                 ds.load({params:{start: lastStart, limit: this.pageSize}});
25308             break;
25309             case "refresh":
25310                 ds.load({params:{start: this.cursor, limit: this.pageSize}});
25311             break;
25312         }
25313     },
25314
25315     /**
25316      * Unbinds the paging toolbar from the specified {@link Roo.data.Store}
25317      * @param {Roo.data.Store} store The data store to unbind
25318      */
25319     unbind : function(ds){
25320         ds.un("beforeload", this.beforeLoad, this);
25321         ds.un("load", this.onLoad, this);
25322         ds.un("loadexception", this.onLoadError, this);
25323         ds.un("remove", this.updateInfo, this);
25324         ds.un("add", this.updateInfo, this);
25325         this.ds = undefined;
25326     },
25327
25328     /**
25329      * Binds the paging toolbar to the specified {@link Roo.data.Store}
25330      * @param {Roo.data.Store} store The data store to bind
25331      */
25332     bind : function(ds){
25333         ds.on("beforeload", this.beforeLoad, this);
25334         ds.on("load", this.onLoad, this);
25335         ds.on("loadexception", this.onLoadError, this);
25336         ds.on("remove", this.updateInfo, this);
25337         ds.on("add", this.updateInfo, this);
25338         this.ds = ds;
25339     }
25340 });/*
25341  * - LGPL
25342  *
25343  * element
25344  * 
25345  */
25346
25347 /**
25348  * @class Roo.bootstrap.MessageBar
25349  * @extends Roo.bootstrap.Component
25350  * Bootstrap MessageBar class
25351  * @cfg {String} html contents of the MessageBar
25352  * @cfg {String} weight (info | success | warning | danger) default info
25353  * @cfg {String} beforeClass insert the bar before the given class
25354  * @cfg {Boolean} closable (true | false) default false
25355  * @cfg {Boolean} fixed (true | false) default false, fix the bar at the top
25356  * 
25357  * @constructor
25358  * Create a new Element
25359  * @param {Object} config The config object
25360  */
25361
25362 Roo.bootstrap.MessageBar = function(config){
25363     Roo.bootstrap.MessageBar.superclass.constructor.call(this, config);
25364 };
25365
25366 Roo.extend(Roo.bootstrap.MessageBar, Roo.bootstrap.Component,  {
25367     
25368     html: '',
25369     weight: 'info',
25370     closable: false,
25371     fixed: false,
25372     beforeClass: 'bootstrap-sticky-wrap',
25373     
25374     getAutoCreate : function(){
25375         
25376         var cfg = {
25377             tag: 'div',
25378             cls: 'alert alert-dismissable alert-' + this.weight,
25379             cn: [
25380                 {
25381                     tag: 'span',
25382                     cls: 'message',
25383                     html: this.html || ''
25384                 }
25385             ]
25386         };
25387         
25388         if(this.fixed){
25389             cfg.cls += ' alert-messages-fixed';
25390         }
25391         
25392         if(this.closable){
25393             cfg.cn.push({
25394                 tag: 'button',
25395                 cls: 'close',
25396                 html: 'x'
25397             });
25398         }
25399         
25400         return cfg;
25401     },
25402     
25403     onRender : function(ct, position)
25404     {
25405         Roo.bootstrap.Component.superclass.onRender.call(this, ct, position);
25406         
25407         if(!this.el){
25408             var cfg = Roo.apply({},  this.getAutoCreate());
25409             cfg.id = Roo.id();
25410             
25411             if (this.cls) {
25412                 cfg.cls += ' ' + this.cls;
25413             }
25414             if (this.style) {
25415                 cfg.style = this.style;
25416             }
25417             this.el = Roo.get(document.body).createChild(cfg, Roo.select('.'+this.beforeClass, true).first());
25418             
25419             this.el.setVisibilityMode(Roo.Element.DISPLAY);
25420         }
25421         
25422         this.el.select('>button.close').on('click', this.hide, this);
25423         
25424     },
25425     
25426     show : function()
25427     {
25428         if (!this.rendered) {
25429             this.render();
25430         }
25431         
25432         this.el.show();
25433         
25434         this.fireEvent('show', this);
25435         
25436     },
25437     
25438     hide : function()
25439     {
25440         if (!this.rendered) {
25441             this.render();
25442         }
25443         
25444         this.el.hide();
25445         
25446         this.fireEvent('hide', this);
25447     },
25448     
25449     update : function()
25450     {
25451 //        var e = this.el.dom.firstChild;
25452 //        
25453 //        if(this.closable){
25454 //            e = e.nextSibling;
25455 //        }
25456 //        
25457 //        e.data = this.html || '';
25458
25459         this.el.select('>.message', true).first().dom.innerHTML = this.html || '';
25460     }
25461    
25462 });
25463
25464  
25465
25466      /*
25467  * - LGPL
25468  *
25469  * Graph
25470  * 
25471  */
25472
25473
25474 /**
25475  * @class Roo.bootstrap.Graph
25476  * @extends Roo.bootstrap.Component
25477  * Bootstrap Graph class
25478 > Prameters
25479  -sm {number} sm 4
25480  -md {number} md 5
25481  @cfg {String} graphtype  bar | vbar | pie
25482  @cfg {number} g_x coodinator | centre x (pie)
25483  @cfg {number} g_y coodinator | centre y (pie)
25484  @cfg {number} g_r radius (pie)
25485  @cfg {number} g_height height of the chart (respected by all elements in the set)
25486  @cfg {number} g_width width of the chart (respected by all elements in the set)
25487  @cfg {Object} title The title of the chart
25488     
25489  -{Array}  values
25490  -opts (object) options for the chart 
25491      o {
25492      o type (string) type of endings of the bar. Default: 'square'. Other options are: 'round', 'sharp', 'soft'.
25493      o gutter (number)(string) default '20%' (WHAT DOES IT DO?)
25494      o vgutter (number)
25495      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.
25496      o stacked (boolean) whether or not to tread values as in a stacked bar chart
25497      o to
25498      o stretch (boolean)
25499      o }
25500  -opts (object) options for the pie
25501      o{
25502      o cut
25503      o startAngle (number)
25504      o endAngle (number)
25505      } 
25506  *
25507  * @constructor
25508  * Create a new Input
25509  * @param {Object} config The config object
25510  */
25511
25512 Roo.bootstrap.Graph = function(config){
25513     Roo.bootstrap.Graph.superclass.constructor.call(this, config);
25514     
25515     this.addEvents({
25516         // img events
25517         /**
25518          * @event click
25519          * The img click event for the img.
25520          * @param {Roo.EventObject} e
25521          */
25522         "click" : true
25523     });
25524 };
25525
25526 Roo.extend(Roo.bootstrap.Graph, Roo.bootstrap.Component,  {
25527     
25528     sm: 4,
25529     md: 5,
25530     graphtype: 'bar',
25531     g_height: 250,
25532     g_width: 400,
25533     g_x: 50,
25534     g_y: 50,
25535     g_r: 30,
25536     opts:{
25537         //g_colors: this.colors,
25538         g_type: 'soft',
25539         g_gutter: '20%'
25540
25541     },
25542     title : false,
25543
25544     getAutoCreate : function(){
25545         
25546         var cfg = {
25547             tag: 'div',
25548             html : null
25549         };
25550         
25551         
25552         return  cfg;
25553     },
25554
25555     onRender : function(ct,position){
25556         
25557         
25558         Roo.bootstrap.Graph.superclass.onRender.call(this,ct,position);
25559         
25560         if (typeof(Raphael) == 'undefined') {
25561             Roo.bootstrap.MessageBox.alert("Error","Raphael is not availabe");
25562             return;
25563         }
25564         
25565         this.raphael = Raphael(this.el.dom);
25566         
25567                     // data1 = [[55, 20, 13, 32, 5, 1, 2, 10], [10, 2, 1, 5, 32, 13, 20, 55], [12, 20, 30]],
25568                     // data2 = [[55, 20, 13, 32, 5, 1, 2, 10], [10, 2, 1, 5, 32, 13, 20, 55], [12, 20, 30]],
25569                     // data3 = [[55, 20, 13, 32, 5, 1, 2, 10], [10, 2, 1, 5, 32, 13, 20, 55], [12, 20, 30]],
25570                     // txtattr = { font: "12px 'Fontin Sans', Fontin-Sans, sans-serif" };
25571                 /*
25572                 r.text(160, 10, "Single Series Chart").attr(txtattr);
25573                 r.text(480, 10, "Multiline Series Chart").attr(txtattr);
25574                 r.text(160, 250, "Multiple Series Stacked Chart").attr(txtattr);
25575                 r.text(480, 250, 'Multiline Series Stacked Vertical Chart. Type "round"').attr(txtattr);
25576                 
25577                 r.barchart(10, 10, 300, 220, [[55, 20, 13, 32, 5, 1, 2, 10]], 0, {type: "sharp"});
25578                 r.barchart(330, 10, 300, 220, data1);
25579                 r.barchart(10, 250, 300, 220, data2, {stacked: true});
25580                 r.barchart(330, 250, 300, 220, data3, {stacked: true, type: "round"});
25581                 */
25582                 
25583                 // var xdata = [55, 20, 13, 32, 5, 1, 2, 10,5 , 10];
25584                 // r.barchart(30, 30, 560, 250,  xdata, {
25585                 //    labels : [55, 20, 13, 32, 5, 1, 2, 10,5 , 10],
25586                 //     axis : "0 0 1 1",
25587                 //     axisxlabels :  xdata
25588                 //     //yvalues : cols,
25589                    
25590                 // });
25591 //        var xdata = [55, 20, 13, 32, 5, 1, 2, 10,5 , 10];
25592 //        
25593 //        this.load(null,xdata,{
25594 //                axis : "0 0 1 1",
25595 //                axisxlabels :  xdata
25596 //                });
25597
25598     },
25599
25600     load : function(graphtype,xdata,opts)
25601     {
25602         this.raphael.clear();
25603         if(!graphtype) {
25604             graphtype = this.graphtype;
25605         }
25606         if(!opts){
25607             opts = this.opts;
25608         }
25609         var r = this.raphael,
25610             fin = function () {
25611                 this.flag = r.popup(this.bar.x, this.bar.y, this.bar.value || "0").insertBefore(this);
25612             },
25613             fout = function () {
25614                 this.flag.animate({opacity: 0}, 300, function () {this.remove();});
25615             },
25616             pfin = function() {
25617                 this.sector.stop();
25618                 this.sector.scale(1.1, 1.1, this.cx, this.cy);
25619
25620                 if (this.label) {
25621                     this.label[0].stop();
25622                     this.label[0].attr({ r: 7.5 });
25623                     this.label[1].attr({ "font-weight": 800 });
25624                 }
25625             },
25626             pfout = function() {
25627                 this.sector.animate({ transform: 's1 1 ' + this.cx + ' ' + this.cy }, 500, "bounce");
25628
25629                 if (this.label) {
25630                     this.label[0].animate({ r: 5 }, 500, "bounce");
25631                     this.label[1].attr({ "font-weight": 400 });
25632                 }
25633             };
25634
25635         switch(graphtype){
25636             case 'bar':
25637                 this.raphael.barchart(this.g_x,this.g_y,this.g_width,this.g_height,xdata,opts).hover(fin,fout);
25638                 break;
25639             case 'hbar':
25640                 this.raphael.hbarchart(this.g_x,this.g_y,this.g_width,this.g_height,xdata,opts).hover(fin,fout);
25641                 break;
25642             case 'pie':
25643 //                opts = { legend: ["%% - Enterprise Users", "% - ddd","Chrome Users"], legendpos: "west", 
25644 //                href: ["http://raphaeljs.com", "http://g.raphaeljs.com"]};
25645 //            
25646                 this.raphael.piechart(this.g_x,this.g_y,this.g_r,xdata,opts).hover(pfin, pfout);
25647                 
25648                 break;
25649
25650         }
25651         
25652         if(this.title){
25653             this.raphael.text(this.title.x, this.title.y, this.title.text).attr(this.title.attr);
25654         }
25655         
25656     },
25657     
25658     setTitle: function(o)
25659     {
25660         this.title = o;
25661     },
25662     
25663     initEvents: function() {
25664         
25665         if(!this.href){
25666             this.el.on('click', this.onClick, this);
25667         }
25668     },
25669     
25670     onClick : function(e)
25671     {
25672         Roo.log('img onclick');
25673         this.fireEvent('click', this, e);
25674     }
25675    
25676 });
25677
25678  
25679 /*
25680  * - LGPL
25681  *
25682  * numberBox
25683  * 
25684  */
25685 Roo.bootstrap.dash = Roo.bootstrap.dash || {};
25686
25687 /**
25688  * @class Roo.bootstrap.dash.NumberBox
25689  * @extends Roo.bootstrap.Component
25690  * Bootstrap NumberBox class
25691  * @cfg {String} headline Box headline
25692  * @cfg {String} content Box content
25693  * @cfg {String} icon Box icon
25694  * @cfg {String} footer Footer text
25695  * @cfg {String} fhref Footer href
25696  * 
25697  * @constructor
25698  * Create a new NumberBox
25699  * @param {Object} config The config object
25700  */
25701
25702
25703 Roo.bootstrap.dash.NumberBox = function(config){
25704     Roo.bootstrap.dash.NumberBox.superclass.constructor.call(this, config);
25705     
25706 };
25707
25708 Roo.extend(Roo.bootstrap.dash.NumberBox, Roo.bootstrap.Component,  {
25709     
25710     headline : '',
25711     content : '',
25712     icon : '',
25713     footer : '',
25714     fhref : '',
25715     ficon : '',
25716     
25717     getAutoCreate : function(){
25718         
25719         var cfg = {
25720             tag : 'div',
25721             cls : 'small-box ',
25722             cn : [
25723                 {
25724                     tag : 'div',
25725                     cls : 'inner',
25726                     cn :[
25727                         {
25728                             tag : 'h3',
25729                             cls : 'roo-headline',
25730                             html : this.headline
25731                         },
25732                         {
25733                             tag : 'p',
25734                             cls : 'roo-content',
25735                             html : this.content
25736                         }
25737                     ]
25738                 }
25739             ]
25740         };
25741         
25742         if(this.icon){
25743             cfg.cn.push({
25744                 tag : 'div',
25745                 cls : 'icon',
25746                 cn :[
25747                     {
25748                         tag : 'i',
25749                         cls : 'ion ' + this.icon
25750                     }
25751                 ]
25752             });
25753         }
25754         
25755         if(this.footer){
25756             var footer = {
25757                 tag : 'a',
25758                 cls : 'small-box-footer',
25759                 href : this.fhref || '#',
25760                 html : this.footer
25761             };
25762             
25763             cfg.cn.push(footer);
25764             
25765         }
25766         
25767         return  cfg;
25768     },
25769
25770     onRender : function(ct,position){
25771         Roo.bootstrap.dash.NumberBox.superclass.onRender.call(this,ct,position);
25772
25773
25774        
25775                 
25776     },
25777
25778     setHeadline: function (value)
25779     {
25780         this.el.select('.roo-headline',true).first().dom.innerHTML = value;
25781     },
25782     
25783     setFooter: function (value, href)
25784     {
25785         this.el.select('a.small-box-footer',true).first().dom.innerHTML = value;
25786         
25787         if(href){
25788             this.el.select('a.small-box-footer',true).first().attr('href', href);
25789         }
25790         
25791     },
25792
25793     setContent: function (value)
25794     {
25795         this.el.select('.roo-content',true).first().dom.innerHTML = value;
25796     },
25797
25798     initEvents: function() 
25799     {   
25800         
25801     }
25802     
25803 });
25804
25805  
25806 /*
25807  * - LGPL
25808  *
25809  * TabBox
25810  * 
25811  */
25812 Roo.bootstrap.dash = Roo.bootstrap.dash || {};
25813
25814 /**
25815  * @class Roo.bootstrap.dash.TabBox
25816  * @extends Roo.bootstrap.Component
25817  * Bootstrap TabBox class
25818  * @cfg {String} title Title of the TabBox
25819  * @cfg {String} icon Icon of the TabBox
25820  * @cfg {Boolean} showtabs (true|false) show the tabs default true
25821  * @cfg {Boolean} tabScrollable (true|false) tab scrollable when mobile view default false
25822  * 
25823  * @constructor
25824  * Create a new TabBox
25825  * @param {Object} config The config object
25826  */
25827
25828
25829 Roo.bootstrap.dash.TabBox = function(config){
25830     Roo.bootstrap.dash.TabBox.superclass.constructor.call(this, config);
25831     this.addEvents({
25832         // raw events
25833         /**
25834          * @event addpane
25835          * When a pane is added
25836          * @param {Roo.bootstrap.dash.TabPane} pane
25837          */
25838         "addpane" : true,
25839         /**
25840          * @event activatepane
25841          * When a pane is activated
25842          * @param {Roo.bootstrap.dash.TabPane} pane
25843          */
25844         "activatepane" : true
25845         
25846          
25847     });
25848     
25849     this.panes = [];
25850 };
25851
25852 Roo.extend(Roo.bootstrap.dash.TabBox, Roo.bootstrap.Component,  {
25853
25854     title : '',
25855     icon : false,
25856     showtabs : true,
25857     tabScrollable : false,
25858     
25859     getChildContainer : function()
25860     {
25861         return this.el.select('.tab-content', true).first();
25862     },
25863     
25864     getAutoCreate : function(){
25865         
25866         var header = {
25867             tag: 'li',
25868             cls: 'pull-left header',
25869             html: this.title,
25870             cn : []
25871         };
25872         
25873         if(this.icon){
25874             header.cn.push({
25875                 tag: 'i',
25876                 cls: 'fa ' + this.icon
25877             });
25878         }
25879         
25880         var h = {
25881             tag: 'ul',
25882             cls: 'nav nav-tabs pull-right',
25883             cn: [
25884                 header
25885             ]
25886         };
25887         
25888         if(this.tabScrollable){
25889             h = {
25890                 tag: 'div',
25891                 cls: 'tab-header',
25892                 cn: [
25893                     {
25894                         tag: 'ul',
25895                         cls: 'nav nav-tabs pull-right',
25896                         cn: [
25897                             header
25898                         ]
25899                     }
25900                 ]
25901             };
25902         }
25903         
25904         var cfg = {
25905             tag: 'div',
25906             cls: 'nav-tabs-custom',
25907             cn: [
25908                 h,
25909                 {
25910                     tag: 'div',
25911                     cls: 'tab-content no-padding',
25912                     cn: []
25913                 }
25914             ]
25915         };
25916
25917         return  cfg;
25918     },
25919     initEvents : function()
25920     {
25921         //Roo.log('add add pane handler');
25922         this.on('addpane', this.onAddPane, this);
25923     },
25924      /**
25925      * Updates the box title
25926      * @param {String} html to set the title to.
25927      */
25928     setTitle : function(value)
25929     {
25930         this.el.select('.nav-tabs .header', true).first().dom.innerHTML = value;
25931     },
25932     onAddPane : function(pane)
25933     {
25934         this.panes.push(pane);
25935         //Roo.log('addpane');
25936         //Roo.log(pane);
25937         // tabs are rendere left to right..
25938         if(!this.showtabs){
25939             return;
25940         }
25941         
25942         var ctr = this.el.select('.nav-tabs', true).first();
25943          
25944          
25945         var existing = ctr.select('.nav-tab',true);
25946         var qty = existing.getCount();;
25947         
25948         
25949         var tab = ctr.createChild({
25950             tag : 'li',
25951             cls : 'nav-tab' + (qty ? '' : ' active'),
25952             cn : [
25953                 {
25954                     tag : 'a',
25955                     href:'#',
25956                     html : pane.title
25957                 }
25958             ]
25959         }, qty ? existing.first().dom : ctr.select('.header', true).first().dom );
25960         pane.tab = tab;
25961         
25962         tab.on('click', this.onTabClick.createDelegate(this, [pane], true));
25963         if (!qty) {
25964             pane.el.addClass('active');
25965         }
25966         
25967                 
25968     },
25969     onTabClick : function(ev,un,ob,pane)
25970     {
25971         //Roo.log('tab - prev default');
25972         ev.preventDefault();
25973         
25974         
25975         this.el.select('.nav-tabs li.nav-tab', true).removeClass('active');
25976         pane.tab.addClass('active');
25977         //Roo.log(pane.title);
25978         this.getChildContainer().select('.tab-pane',true).removeClass('active');
25979         // technically we should have a deactivate event.. but maybe add later.
25980         // and it should not de-activate the selected tab...
25981         this.fireEvent('activatepane', pane);
25982         pane.el.addClass('active');
25983         pane.fireEvent('activate');
25984         
25985         
25986     },
25987     
25988     getActivePane : function()
25989     {
25990         var r = false;
25991         Roo.each(this.panes, function(p) {
25992             if(p.el.hasClass('active')){
25993                 r = p;
25994                 return false;
25995             }
25996             
25997             return;
25998         });
25999         
26000         return r;
26001     }
26002     
26003     
26004 });
26005
26006  
26007 /*
26008  * - LGPL
26009  *
26010  * Tab pane
26011  * 
26012  */
26013 Roo.bootstrap.dash = Roo.bootstrap.dash || {};
26014 /**
26015  * @class Roo.bootstrap.TabPane
26016  * @extends Roo.bootstrap.Component
26017  * Bootstrap TabPane class
26018  * @cfg {Boolean} active (false | true) Default false
26019  * @cfg {String} title title of panel
26020
26021  * 
26022  * @constructor
26023  * Create a new TabPane
26024  * @param {Object} config The config object
26025  */
26026
26027 Roo.bootstrap.dash.TabPane = function(config){
26028     Roo.bootstrap.dash.TabPane.superclass.constructor.call(this, config);
26029     
26030     this.addEvents({
26031         // raw events
26032         /**
26033          * @event activate
26034          * When a pane is activated
26035          * @param {Roo.bootstrap.dash.TabPane} pane
26036          */
26037         "activate" : true
26038          
26039     });
26040 };
26041
26042 Roo.extend(Roo.bootstrap.dash.TabPane, Roo.bootstrap.Component,  {
26043     
26044     active : false,
26045     title : '',
26046     
26047     // the tabBox that this is attached to.
26048     tab : false,
26049      
26050     getAutoCreate : function() 
26051     {
26052         var cfg = {
26053             tag: 'div',
26054             cls: 'tab-pane'
26055         };
26056         
26057         if(this.active){
26058             cfg.cls += ' active';
26059         }
26060         
26061         return cfg;
26062     },
26063     initEvents  : function()
26064     {
26065         //Roo.log('trigger add pane handler');
26066         this.parent().fireEvent('addpane', this)
26067     },
26068     
26069      /**
26070      * Updates the tab title 
26071      * @param {String} html to set the title to.
26072      */
26073     setTitle: function(str)
26074     {
26075         if (!this.tab) {
26076             return;
26077         }
26078         this.title = str;
26079         this.tab.select('a', true).first().dom.innerHTML = str;
26080         
26081     }
26082     
26083     
26084     
26085 });
26086
26087  
26088
26089
26090  /*
26091  * - LGPL
26092  *
26093  * menu
26094  * 
26095  */
26096 Roo.bootstrap.menu = Roo.bootstrap.menu || {};
26097
26098 /**
26099  * @class Roo.bootstrap.menu.Menu
26100  * @extends Roo.bootstrap.Component
26101  * Bootstrap Menu class - container for Menu
26102  * @cfg {String} html Text of the menu
26103  * @cfg {String} weight (default | primary | success | info | warning | danger | inverse)
26104  * @cfg {String} icon Font awesome icon
26105  * @cfg {String} pos Menu align to (top | bottom) default bottom
26106  * 
26107  * 
26108  * @constructor
26109  * Create a new Menu
26110  * @param {Object} config The config object
26111  */
26112
26113
26114 Roo.bootstrap.menu.Menu = function(config){
26115     Roo.bootstrap.menu.Menu.superclass.constructor.call(this, config);
26116     
26117     this.addEvents({
26118         /**
26119          * @event beforeshow
26120          * Fires before this menu is displayed
26121          * @param {Roo.bootstrap.menu.Menu} this
26122          */
26123         beforeshow : true,
26124         /**
26125          * @event beforehide
26126          * Fires before this menu is hidden
26127          * @param {Roo.bootstrap.menu.Menu} this
26128          */
26129         beforehide : true,
26130         /**
26131          * @event show
26132          * Fires after this menu is displayed
26133          * @param {Roo.bootstrap.menu.Menu} this
26134          */
26135         show : true,
26136         /**
26137          * @event hide
26138          * Fires after this menu is hidden
26139          * @param {Roo.bootstrap.menu.Menu} this
26140          */
26141         hide : true,
26142         /**
26143          * @event click
26144          * Fires when this menu is clicked (or when the enter key is pressed while it is active)
26145          * @param {Roo.bootstrap.menu.Menu} this
26146          * @param {Roo.EventObject} e
26147          */
26148         click : true
26149     });
26150     
26151 };
26152
26153 Roo.extend(Roo.bootstrap.menu.Menu, Roo.bootstrap.Component,  {
26154     
26155     submenu : false,
26156     html : '',
26157     weight : 'default',
26158     icon : false,
26159     pos : 'bottom',
26160     
26161     
26162     getChildContainer : function() {
26163         if(this.isSubMenu){
26164             return this.el;
26165         }
26166         
26167         return this.el.select('ul.dropdown-menu', true).first();  
26168     },
26169     
26170     getAutoCreate : function()
26171     {
26172         var text = [
26173             {
26174                 tag : 'span',
26175                 cls : 'roo-menu-text',
26176                 html : this.html
26177             }
26178         ];
26179         
26180         if(this.icon){
26181             text.unshift({
26182                 tag : 'i',
26183                 cls : 'fa ' + this.icon
26184             })
26185         }
26186         
26187         
26188         var cfg = {
26189             tag : 'div',
26190             cls : 'btn-group',
26191             cn : [
26192                 {
26193                     tag : 'button',
26194                     cls : 'dropdown-button btn btn-' + this.weight,
26195                     cn : text
26196                 },
26197                 {
26198                     tag : 'button',
26199                     cls : 'dropdown-toggle btn btn-' + this.weight,
26200                     cn : [
26201                         {
26202                             tag : 'span',
26203                             cls : 'caret'
26204                         }
26205                     ]
26206                 },
26207                 {
26208                     tag : 'ul',
26209                     cls : 'dropdown-menu'
26210                 }
26211             ]
26212             
26213         };
26214         
26215         if(this.pos == 'top'){
26216             cfg.cls += ' dropup';
26217         }
26218         
26219         if(this.isSubMenu){
26220             cfg = {
26221                 tag : 'ul',
26222                 cls : 'dropdown-menu'
26223             }
26224         }
26225         
26226         return cfg;
26227     },
26228     
26229     onRender : function(ct, position)
26230     {
26231         this.isSubMenu = ct.hasClass('dropdown-submenu');
26232         
26233         Roo.bootstrap.menu.Menu.superclass.onRender.call(this, ct, position);
26234     },
26235     
26236     initEvents : function() 
26237     {
26238         if(this.isSubMenu){
26239             return;
26240         }
26241         
26242         this.hidden = true;
26243         
26244         this.triggerEl = this.el.select('button.dropdown-toggle', true).first();
26245         this.triggerEl.on('click', this.onTriggerPress, this);
26246         
26247         this.buttonEl = this.el.select('button.dropdown-button', true).first();
26248         this.buttonEl.on('click', this.onClick, this);
26249         
26250     },
26251     
26252     list : function()
26253     {
26254         if(this.isSubMenu){
26255             return this.el;
26256         }
26257         
26258         return this.el.select('ul.dropdown-menu', true).first();
26259     },
26260     
26261     onClick : function(e)
26262     {
26263         this.fireEvent("click", this, e);
26264     },
26265     
26266     onTriggerPress  : function(e)
26267     {   
26268         if (this.isVisible()) {
26269             this.hide();
26270         } else {
26271             this.show();
26272         }
26273     },
26274     
26275     isVisible : function(){
26276         return !this.hidden;
26277     },
26278     
26279     show : function()
26280     {
26281         this.fireEvent("beforeshow", this);
26282         
26283         this.hidden = false;
26284         this.el.addClass('open');
26285         
26286         Roo.get(document).on("mouseup", this.onMouseUp, this);
26287         
26288         this.fireEvent("show", this);
26289         
26290         
26291     },
26292     
26293     hide : function()
26294     {
26295         this.fireEvent("beforehide", this);
26296         
26297         this.hidden = true;
26298         this.el.removeClass('open');
26299         
26300         Roo.get(document).un("mouseup", this.onMouseUp);
26301         
26302         this.fireEvent("hide", this);
26303     },
26304     
26305     onMouseUp : function()
26306     {
26307         this.hide();
26308     }
26309     
26310 });
26311
26312  
26313  /*
26314  * - LGPL
26315  *
26316  * menu item
26317  * 
26318  */
26319 Roo.bootstrap.menu = Roo.bootstrap.menu || {};
26320
26321 /**
26322  * @class Roo.bootstrap.menu.Item
26323  * @extends Roo.bootstrap.Component
26324  * Bootstrap MenuItem class
26325  * @cfg {Boolean} submenu (true | false) default false
26326  * @cfg {String} html text of the item
26327  * @cfg {String} href the link
26328  * @cfg {Boolean} disable (true | false) default false
26329  * @cfg {Boolean} preventDefault (true | false) default true
26330  * @cfg {String} icon Font awesome icon
26331  * @cfg {String} pos Submenu align to (left | right) default right 
26332  * 
26333  * 
26334  * @constructor
26335  * Create a new Item
26336  * @param {Object} config The config object
26337  */
26338
26339
26340 Roo.bootstrap.menu.Item = function(config){
26341     Roo.bootstrap.menu.Item.superclass.constructor.call(this, config);
26342     this.addEvents({
26343         /**
26344          * @event mouseover
26345          * Fires when the mouse is hovering over this menu
26346          * @param {Roo.bootstrap.menu.Item} this
26347          * @param {Roo.EventObject} e
26348          */
26349         mouseover : true,
26350         /**
26351          * @event mouseout
26352          * Fires when the mouse exits this menu
26353          * @param {Roo.bootstrap.menu.Item} this
26354          * @param {Roo.EventObject} e
26355          */
26356         mouseout : true,
26357         // raw events
26358         /**
26359          * @event click
26360          * The raw click event for the entire grid.
26361          * @param {Roo.EventObject} e
26362          */
26363         click : true
26364     });
26365 };
26366
26367 Roo.extend(Roo.bootstrap.menu.Item, Roo.bootstrap.Component,  {
26368     
26369     submenu : false,
26370     href : '',
26371     html : '',
26372     preventDefault: true,
26373     disable : false,
26374     icon : false,
26375     pos : 'right',
26376     
26377     getAutoCreate : function()
26378     {
26379         var text = [
26380             {
26381                 tag : 'span',
26382                 cls : 'roo-menu-item-text',
26383                 html : this.html
26384             }
26385         ];
26386         
26387         if(this.icon){
26388             text.unshift({
26389                 tag : 'i',
26390                 cls : 'fa ' + this.icon
26391             })
26392         }
26393         
26394         var cfg = {
26395             tag : 'li',
26396             cn : [
26397                 {
26398                     tag : 'a',
26399                     href : this.href || '#',
26400                     cn : text
26401                 }
26402             ]
26403         };
26404         
26405         if(this.disable){
26406             cfg.cls = (typeof(cfg.cls) == 'undefined') ? 'disabled' : (cfg.cls + ' disabled');
26407         }
26408         
26409         if(this.submenu){
26410             cfg.cls = (typeof(cfg.cls) == 'undefined') ? 'dropdown-submenu' : (cfg.cls + ' dropdown-submenu');
26411             
26412             if(this.pos == 'left'){
26413                 cfg.cls = (typeof(cfg.cls) == 'undefined') ? 'pull-left' : (cfg.cls + ' pull-left');
26414             }
26415         }
26416         
26417         return cfg;
26418     },
26419     
26420     initEvents : function() 
26421     {
26422         this.el.on('mouseover', this.onMouseOver, this);
26423         this.el.on('mouseout', this.onMouseOut, this);
26424         
26425         this.el.select('a', true).first().on('click', this.onClick, this);
26426         
26427     },
26428     
26429     onClick : function(e)
26430     {
26431         if(this.preventDefault){
26432             e.preventDefault();
26433         }
26434         
26435         this.fireEvent("click", this, e);
26436     },
26437     
26438     onMouseOver : function(e)
26439     {
26440         if(this.submenu && this.pos == 'left'){
26441             this.el.select('ul.dropdown-menu', true).first().setLeft(this.el.select('ul.dropdown-menu', true).first().getWidth() * -1);
26442         }
26443         
26444         this.fireEvent("mouseover", this, e);
26445     },
26446     
26447     onMouseOut : function(e)
26448     {
26449         this.fireEvent("mouseout", this, e);
26450     }
26451 });
26452
26453  
26454
26455  /*
26456  * - LGPL
26457  *
26458  * menu separator
26459  * 
26460  */
26461 Roo.bootstrap.menu = Roo.bootstrap.menu || {};
26462
26463 /**
26464  * @class Roo.bootstrap.menu.Separator
26465  * @extends Roo.bootstrap.Component
26466  * Bootstrap Separator class
26467  * 
26468  * @constructor
26469  * Create a new Separator
26470  * @param {Object} config The config object
26471  */
26472
26473
26474 Roo.bootstrap.menu.Separator = function(config){
26475     Roo.bootstrap.menu.Separator.superclass.constructor.call(this, config);
26476 };
26477
26478 Roo.extend(Roo.bootstrap.menu.Separator, Roo.bootstrap.Component,  {
26479     
26480     getAutoCreate : function(){
26481         var cfg = {
26482             tag : 'li',
26483             cls: 'divider'
26484         };
26485         
26486         return cfg;
26487     }
26488    
26489 });
26490
26491  
26492
26493  /*
26494  * - LGPL
26495  *
26496  * Tooltip
26497  * 
26498  */
26499
26500 /**
26501  * @class Roo.bootstrap.Tooltip
26502  * Bootstrap Tooltip class
26503  * This is basic at present - all componets support it by default, however they should add tooltipEl() method
26504  * to determine which dom element triggers the tooltip.
26505  * 
26506  * It needs to add support for additional attributes like tooltip-position
26507  * 
26508  * @constructor
26509  * Create a new Toolti
26510  * @param {Object} config The config object
26511  */
26512
26513 Roo.bootstrap.Tooltip = function(config){
26514     Roo.bootstrap.Tooltip.superclass.constructor.call(this, config);
26515     
26516     this.alignment = Roo.bootstrap.Tooltip.alignment;
26517     
26518     if(typeof(config) != 'undefined' && typeof(config.alignment) != 'undefined'){
26519         this.alignment = config.alignment;
26520     }
26521     
26522 };
26523
26524 Roo.apply(Roo.bootstrap.Tooltip, {
26525     /**
26526      * @function init initialize tooltip monitoring.
26527      * @static
26528      */
26529     currentEl : false,
26530     currentTip : false,
26531     currentRegion : false,
26532     
26533     //  init : delay?
26534     
26535     init : function()
26536     {
26537         Roo.get(document).on('mouseover', this.enter ,this);
26538         Roo.get(document).on('mouseout', this.leave, this);
26539          
26540         
26541         this.currentTip = new Roo.bootstrap.Tooltip();
26542     },
26543     
26544     enter : function(ev)
26545     {
26546         var dom = ev.getTarget();
26547         
26548         //Roo.log(['enter',dom]);
26549         var el = Roo.fly(dom);
26550         if (this.currentEl) {
26551             //Roo.log(dom);
26552             //Roo.log(this.currentEl);
26553             //Roo.log(this.currentEl.contains(dom));
26554             if (this.currentEl == el) {
26555                 return;
26556             }
26557             if (dom != this.currentEl.dom && this.currentEl.contains(dom)) {
26558                 return;
26559             }
26560
26561         }
26562         
26563         if (this.currentTip.el) {
26564             this.currentTip.el.setVisibilityMode(Roo.Element.DISPLAY).hide(); // force hiding...
26565         }    
26566         //Roo.log(ev);
26567         
26568         if(!el || el.dom == document){
26569             return;
26570         }
26571         
26572         var bindEl = el;
26573         
26574         // you can not look for children, as if el is the body.. then everythign is the child..
26575         if (!el.attr('tooltip')) { //
26576             if (!el.select("[tooltip]").elements.length) {
26577                 return;
26578             }
26579             // is the mouse over this child...?
26580             bindEl = el.select("[tooltip]").first();
26581             var xy = ev.getXY();
26582             if (!bindEl.getRegion().contains( { top : xy[1] ,right : xy[0] , bottom : xy[1], left : xy[0]})) {
26583                 //Roo.log("not in region.");
26584                 return;
26585             }
26586             //Roo.log("child element over..");
26587             
26588         }
26589         this.currentEl = bindEl;
26590         this.currentTip.bind(bindEl);
26591         this.currentRegion = Roo.lib.Region.getRegion(dom);
26592         this.currentTip.enter();
26593         
26594     },
26595     leave : function(ev)
26596     {
26597         var dom = ev.getTarget();
26598         //Roo.log(['leave',dom]);
26599         if (!this.currentEl) {
26600             return;
26601         }
26602         
26603         
26604         if (dom != this.currentEl.dom) {
26605             return;
26606         }
26607         var xy = ev.getXY();
26608         if (this.currentRegion.contains( new Roo.lib.Region( xy[1], xy[0] ,xy[1], xy[0]  ))) {
26609             return;
26610         }
26611         // only activate leave if mouse cursor is outside... bounding box..
26612         
26613         
26614         
26615         
26616         if (this.currentTip) {
26617             this.currentTip.leave();
26618         }
26619         //Roo.log('clear currentEl');
26620         this.currentEl = false;
26621         
26622         
26623     },
26624     alignment : {
26625         'left' : ['r-l', [-2,0], 'right'],
26626         'right' : ['l-r', [2,0], 'left'],
26627         'bottom' : ['t-b', [0,2], 'top'],
26628         'top' : [ 'b-t', [0,-2], 'bottom']
26629     }
26630     
26631 });
26632
26633
26634 Roo.extend(Roo.bootstrap.Tooltip, Roo.bootstrap.Component,  {
26635     
26636     
26637     bindEl : false,
26638     
26639     delay : null, // can be { show : 300 , hide: 500}
26640     
26641     timeout : null,
26642     
26643     hoverState : null, //???
26644     
26645     placement : 'bottom', 
26646     
26647     alignment : false,
26648     
26649     getAutoCreate : function(){
26650     
26651         var cfg = {
26652            cls : 'tooltip',
26653            role : 'tooltip',
26654            cn : [
26655                 {
26656                     cls : 'tooltip-arrow'
26657                 },
26658                 {
26659                     cls : 'tooltip-inner'
26660                 }
26661            ]
26662         };
26663         
26664         return cfg;
26665     },
26666     bind : function(el)
26667     {
26668         this.bindEl = el;
26669     },
26670       
26671     
26672     enter : function () {
26673        
26674         if (this.timeout != null) {
26675             clearTimeout(this.timeout);
26676         }
26677         
26678         this.hoverState = 'in';
26679          //Roo.log("enter - show");
26680         if (!this.delay || !this.delay.show) {
26681             this.show();
26682             return;
26683         }
26684         var _t = this;
26685         this.timeout = setTimeout(function () {
26686             if (_t.hoverState == 'in') {
26687                 _t.show();
26688             }
26689         }, this.delay.show);
26690     },
26691     leave : function()
26692     {
26693         clearTimeout(this.timeout);
26694     
26695         this.hoverState = 'out';
26696          if (!this.delay || !this.delay.hide) {
26697             this.hide();
26698             return;
26699         }
26700        
26701         var _t = this;
26702         this.timeout = setTimeout(function () {
26703             //Roo.log("leave - timeout");
26704             
26705             if (_t.hoverState == 'out') {
26706                 _t.hide();
26707                 Roo.bootstrap.Tooltip.currentEl = false;
26708             }
26709         }, delay);
26710     },
26711     
26712     show : function (msg)
26713     {
26714         if (!this.el) {
26715             this.render(document.body);
26716         }
26717         // set content.
26718         //Roo.log([this.bindEl, this.bindEl.attr('tooltip')]);
26719         
26720         var tip = msg || this.bindEl.attr('tooltip') || this.bindEl.select("[tooltip]").first().attr('tooltip');
26721         
26722         this.el.select('.tooltip-inner',true).first().dom.innerHTML = tip;
26723         
26724         this.el.removeClass(['fade','top','bottom', 'left', 'right','in']);
26725         
26726         var placement = typeof this.placement == 'function' ?
26727             this.placement.call(this, this.el, on_el) :
26728             this.placement;
26729             
26730         var autoToken = /\s?auto?\s?/i;
26731         var autoPlace = autoToken.test(placement);
26732         if (autoPlace) {
26733             placement = placement.replace(autoToken, '') || 'top';
26734         }
26735         
26736         //this.el.detach()
26737         //this.el.setXY([0,0]);
26738         this.el.show();
26739         //this.el.dom.style.display='block';
26740         
26741         //this.el.appendTo(on_el);
26742         
26743         var p = this.getPosition();
26744         var box = this.el.getBox();
26745         
26746         if (autoPlace) {
26747             // fixme..
26748         }
26749         
26750         var align = this.alignment[placement];
26751         
26752         var xy = this.el.getAlignToXY(this.bindEl, align[0], align[1]);
26753         
26754         if(placement == 'top' || placement == 'bottom'){
26755             if(xy[0] < 0){
26756                 placement = 'right';
26757             }
26758             
26759             if(xy[0] + this.el.getWidth() > Roo.lib.Dom.getViewWidth()){
26760                 placement = 'left';
26761             }
26762             
26763             var scroll = Roo.select('body', true).first().getScroll();
26764             
26765             if(xy[1] > Roo.lib.Dom.getViewHeight() + scroll.top - this.el.getHeight()){
26766                 placement = 'top';
26767             }
26768             
26769             align = this.alignment[placement];
26770         }
26771         
26772         this.el.alignTo(this.bindEl, align[0],align[1]);
26773         //var arrow = this.el.select('.arrow',true).first();
26774         //arrow.set(align[2], 
26775         
26776         this.el.addClass(placement);
26777         
26778         this.el.addClass('in fade');
26779         
26780         this.hoverState = null;
26781         
26782         if (this.el.hasClass('fade')) {
26783             // fade it?
26784         }
26785         
26786     },
26787     hide : function()
26788     {
26789          
26790         if (!this.el) {
26791             return;
26792         }
26793         //this.el.setXY([0,0]);
26794         this.el.removeClass('in');
26795         //this.el.hide();
26796         
26797     }
26798     
26799 });
26800  
26801
26802  /*
26803  * - LGPL
26804  *
26805  * Location Picker
26806  * 
26807  */
26808
26809 /**
26810  * @class Roo.bootstrap.LocationPicker
26811  * @extends Roo.bootstrap.Component
26812  * Bootstrap LocationPicker class
26813  * @cfg {Number} latitude Position when init default 0
26814  * @cfg {Number} longitude Position when init default 0
26815  * @cfg {Number} zoom default 15
26816  * @cfg {String} mapTypeId default google.maps.MapTypeId.ROADMAP
26817  * @cfg {Boolean} mapTypeControl default false
26818  * @cfg {Boolean} disableDoubleClickZoom default false
26819  * @cfg {Boolean} scrollwheel default true
26820  * @cfg {Boolean} streetViewControl default false
26821  * @cfg {Number} radius default 0
26822  * @cfg {String} locationName
26823  * @cfg {Boolean} draggable default true
26824  * @cfg {Boolean} enableAutocomplete default false
26825  * @cfg {Boolean} enableReverseGeocode default true
26826  * @cfg {String} markerTitle
26827  * 
26828  * @constructor
26829  * Create a new LocationPicker
26830  * @param {Object} config The config object
26831  */
26832
26833
26834 Roo.bootstrap.LocationPicker = function(config){
26835     
26836     Roo.bootstrap.LocationPicker.superclass.constructor.call(this, config);
26837     
26838     this.addEvents({
26839         /**
26840          * @event initial
26841          * Fires when the picker initialized.
26842          * @param {Roo.bootstrap.LocationPicker} this
26843          * @param {Google Location} location
26844          */
26845         initial : true,
26846         /**
26847          * @event positionchanged
26848          * Fires when the picker position changed.
26849          * @param {Roo.bootstrap.LocationPicker} this
26850          * @param {Google Location} location
26851          */
26852         positionchanged : true,
26853         /**
26854          * @event resize
26855          * Fires when the map resize.
26856          * @param {Roo.bootstrap.LocationPicker} this
26857          */
26858         resize : true,
26859         /**
26860          * @event show
26861          * Fires when the map show.
26862          * @param {Roo.bootstrap.LocationPicker} this
26863          */
26864         show : true,
26865         /**
26866          * @event hide
26867          * Fires when the map hide.
26868          * @param {Roo.bootstrap.LocationPicker} this
26869          */
26870         hide : true,
26871         /**
26872          * @event mapClick
26873          * Fires when click the map.
26874          * @param {Roo.bootstrap.LocationPicker} this
26875          * @param {Map event} e
26876          */
26877         mapClick : true,
26878         /**
26879          * @event mapRightClick
26880          * Fires when right click the map.
26881          * @param {Roo.bootstrap.LocationPicker} this
26882          * @param {Map event} e
26883          */
26884         mapRightClick : true,
26885         /**
26886          * @event markerClick
26887          * Fires when click the marker.
26888          * @param {Roo.bootstrap.LocationPicker} this
26889          * @param {Map event} e
26890          */
26891         markerClick : true,
26892         /**
26893          * @event markerRightClick
26894          * Fires when right click the marker.
26895          * @param {Roo.bootstrap.LocationPicker} this
26896          * @param {Map event} e
26897          */
26898         markerRightClick : true,
26899         /**
26900          * @event OverlayViewDraw
26901          * Fires when OverlayView Draw
26902          * @param {Roo.bootstrap.LocationPicker} this
26903          */
26904         OverlayViewDraw : true,
26905         /**
26906          * @event OverlayViewOnAdd
26907          * Fires when OverlayView Draw
26908          * @param {Roo.bootstrap.LocationPicker} this
26909          */
26910         OverlayViewOnAdd : true,
26911         /**
26912          * @event OverlayViewOnRemove
26913          * Fires when OverlayView Draw
26914          * @param {Roo.bootstrap.LocationPicker} this
26915          */
26916         OverlayViewOnRemove : true,
26917         /**
26918          * @event OverlayViewShow
26919          * Fires when OverlayView Draw
26920          * @param {Roo.bootstrap.LocationPicker} this
26921          * @param {Pixel} cpx
26922          */
26923         OverlayViewShow : true,
26924         /**
26925          * @event OverlayViewHide
26926          * Fires when OverlayView Draw
26927          * @param {Roo.bootstrap.LocationPicker} this
26928          */
26929         OverlayViewHide : true,
26930         /**
26931          * @event loadexception
26932          * Fires when load google lib failed.
26933          * @param {Roo.bootstrap.LocationPicker} this
26934          */
26935         loadexception : true
26936     });
26937         
26938 };
26939
26940 Roo.extend(Roo.bootstrap.LocationPicker, Roo.bootstrap.Component,  {
26941     
26942     gMapContext: false,
26943     
26944     latitude: 0,
26945     longitude: 0,
26946     zoom: 15,
26947     mapTypeId: false,
26948     mapTypeControl: false,
26949     disableDoubleClickZoom: false,
26950     scrollwheel: true,
26951     streetViewControl: false,
26952     radius: 0,
26953     locationName: '',
26954     draggable: true,
26955     enableAutocomplete: false,
26956     enableReverseGeocode: true,
26957     markerTitle: '',
26958     
26959     getAutoCreate: function()
26960     {
26961
26962         var cfg = {
26963             tag: 'div',
26964             cls: 'roo-location-picker'
26965         };
26966         
26967         return cfg
26968     },
26969     
26970     initEvents: function(ct, position)
26971     {       
26972         if(!this.el.getWidth() || this.isApplied()){
26973             return;
26974         }
26975         
26976         this.el.setVisibilityMode(Roo.Element.DISPLAY);
26977         
26978         this.initial();
26979     },
26980     
26981     initial: function()
26982     {
26983         if(typeof(google) == 'undefined' || typeof(google.maps) == 'undefined'){
26984             this.fireEvent('loadexception', this);
26985             return;
26986         }
26987         
26988         if(!this.mapTypeId){
26989             this.mapTypeId = google.maps.MapTypeId.ROADMAP;
26990         }
26991         
26992         this.gMapContext = this.GMapContext();
26993         
26994         this.initOverlayView();
26995         
26996         this.OverlayView = new Roo.bootstrap.LocationPicker.OverlayView(this.gMapContext.map);
26997         
26998         var _this = this;
26999                 
27000         google.maps.event.addListener(this.gMapContext.marker, "dragend", function(event) {
27001             _this.setPosition(_this.gMapContext.marker.position);
27002         });
27003         
27004         google.maps.event.addListener(this.gMapContext.map, 'click', function(event){
27005             _this.fireEvent('mapClick', this, event);
27006             
27007         });
27008
27009         google.maps.event.addListener(this.gMapContext.map, 'rightclick', function(event){
27010             _this.fireEvent('mapRightClick', this, event);
27011             
27012         });
27013         
27014         google.maps.event.addListener(this.gMapContext.marker, 'click', function(event){
27015             _this.fireEvent('markerClick', this, event);
27016             
27017         });
27018
27019         google.maps.event.addListener(this.gMapContext.marker, 'rightclick', function(event){
27020             _this.fireEvent('markerRightClick', this, event);
27021             
27022         });
27023         
27024         this.setPosition(this.gMapContext.location);
27025         
27026         this.fireEvent('initial', this, this.gMapContext.location);
27027     },
27028     
27029     initOverlayView: function()
27030     {
27031         var _this = this;
27032         
27033         Roo.bootstrap.LocationPicker.OverlayView.prototype = Roo.apply(new google.maps.OverlayView(), {
27034             
27035             draw: function()
27036             {
27037                 _this.fireEvent('OverlayViewDraw', _this);
27038             },
27039             
27040             onAdd: function()
27041             {
27042                 _this.fireEvent('OverlayViewOnAdd', _this);
27043             },
27044             
27045             onRemove: function()
27046             {
27047                 _this.fireEvent('OverlayViewOnRemove', _this);
27048             },
27049             
27050             show: function(cpx)
27051             {
27052                 _this.fireEvent('OverlayViewShow', _this, cpx);
27053             },
27054             
27055             hide: function()
27056             {
27057                 _this.fireEvent('OverlayViewHide', _this);
27058             }
27059             
27060         });
27061     },
27062     
27063     fromLatLngToContainerPixel: function(event)
27064     {
27065         return this.OverlayView.getProjection().fromLatLngToContainerPixel(event.latLng);
27066     },
27067     
27068     isApplied: function() 
27069     {
27070         return this.getGmapContext() == false ? false : true;
27071     },
27072     
27073     getGmapContext: function() 
27074     {
27075         return (typeof(this.gMapContext) == 'undefined') ? false : this.gMapContext;
27076     },
27077     
27078     GMapContext: function() 
27079     {
27080         var position = new google.maps.LatLng(this.latitude, this.longitude);
27081         
27082         var _map = new google.maps.Map(this.el.dom, {
27083             center: position,
27084             zoom: this.zoom,
27085             mapTypeId: this.mapTypeId,
27086             mapTypeControl: this.mapTypeControl,
27087             disableDoubleClickZoom: this.disableDoubleClickZoom,
27088             scrollwheel: this.scrollwheel,
27089             streetViewControl: this.streetViewControl,
27090             locationName: this.locationName,
27091             draggable: this.draggable,
27092             enableAutocomplete: this.enableAutocomplete,
27093             enableReverseGeocode: this.enableReverseGeocode
27094         });
27095         
27096         var _marker = new google.maps.Marker({
27097             position: position,
27098             map: _map,
27099             title: this.markerTitle,
27100             draggable: this.draggable
27101         });
27102         
27103         return {
27104             map: _map,
27105             marker: _marker,
27106             circle: null,
27107             location: position,
27108             radius: this.radius,
27109             locationName: this.locationName,
27110             addressComponents: {
27111                 formatted_address: null,
27112                 addressLine1: null,
27113                 addressLine2: null,
27114                 streetName: null,
27115                 streetNumber: null,
27116                 city: null,
27117                 district: null,
27118                 state: null,
27119                 stateOrProvince: null
27120             },
27121             settings: this,
27122             domContainer: this.el.dom,
27123             geodecoder: new google.maps.Geocoder()
27124         };
27125     },
27126     
27127     drawCircle: function(center, radius, options) 
27128     {
27129         if (this.gMapContext.circle != null) {
27130             this.gMapContext.circle.setMap(null);
27131         }
27132         if (radius > 0) {
27133             radius *= 1;
27134             options = Roo.apply({}, options, {
27135                 strokeColor: "#0000FF",
27136                 strokeOpacity: .35,
27137                 strokeWeight: 2,
27138                 fillColor: "#0000FF",
27139                 fillOpacity: .2
27140             });
27141             
27142             options.map = this.gMapContext.map;
27143             options.radius = radius;
27144             options.center = center;
27145             this.gMapContext.circle = new google.maps.Circle(options);
27146             return this.gMapContext.circle;
27147         }
27148         
27149         return null;
27150     },
27151     
27152     setPosition: function(location) 
27153     {
27154         this.gMapContext.location = location;
27155         this.gMapContext.marker.setPosition(location);
27156         this.gMapContext.map.panTo(location);
27157         this.drawCircle(location, this.gMapContext.radius, {});
27158         
27159         var _this = this;
27160         
27161         if (this.gMapContext.settings.enableReverseGeocode) {
27162             this.gMapContext.geodecoder.geocode({
27163                 latLng: this.gMapContext.location
27164             }, function(results, status) {
27165                 
27166                 if (status == google.maps.GeocoderStatus.OK && results.length > 0) {
27167                     _this.gMapContext.locationName = results[0].formatted_address;
27168                     _this.gMapContext.addressComponents = _this.address_component_from_google_geocode(results[0].address_components);
27169                     
27170                     _this.fireEvent('positionchanged', this, location);
27171                 }
27172             });
27173             
27174             return;
27175         }
27176         
27177         this.fireEvent('positionchanged', this, location);
27178     },
27179     
27180     resize: function()
27181     {
27182         google.maps.event.trigger(this.gMapContext.map, "resize");
27183         
27184         this.gMapContext.map.setCenter(this.gMapContext.marker.position);
27185         
27186         this.fireEvent('resize', this);
27187     },
27188     
27189     setPositionByLatLng: function(latitude, longitude)
27190     {
27191         this.setPosition(new google.maps.LatLng(latitude, longitude));
27192     },
27193     
27194     getCurrentPosition: function() 
27195     {
27196         return {
27197             latitude: this.gMapContext.location.lat(),
27198             longitude: this.gMapContext.location.lng()
27199         };
27200     },
27201     
27202     getAddressName: function() 
27203     {
27204         return this.gMapContext.locationName;
27205     },
27206     
27207     getAddressComponents: function() 
27208     {
27209         return this.gMapContext.addressComponents;
27210     },
27211     
27212     address_component_from_google_geocode: function(address_components) 
27213     {
27214         var result = {};
27215         
27216         for (var i = 0; i < address_components.length; i++) {
27217             var component = address_components[i];
27218             if (component.types.indexOf("postal_code") >= 0) {
27219                 result.postalCode = component.short_name;
27220             } else if (component.types.indexOf("street_number") >= 0) {
27221                 result.streetNumber = component.short_name;
27222             } else if (component.types.indexOf("route") >= 0) {
27223                 result.streetName = component.short_name;
27224             } else if (component.types.indexOf("neighborhood") >= 0) {
27225                 result.city = component.short_name;
27226             } else if (component.types.indexOf("locality") >= 0) {
27227                 result.city = component.short_name;
27228             } else if (component.types.indexOf("sublocality") >= 0) {
27229                 result.district = component.short_name;
27230             } else if (component.types.indexOf("administrative_area_level_1") >= 0) {
27231                 result.stateOrProvince = component.short_name;
27232             } else if (component.types.indexOf("country") >= 0) {
27233                 result.country = component.short_name;
27234             }
27235         }
27236         
27237         result.addressLine1 = [ result.streetNumber, result.streetName ].join(" ").trim();
27238         result.addressLine2 = "";
27239         return result;
27240     },
27241     
27242     setZoomLevel: function(zoom)
27243     {
27244         this.gMapContext.map.setZoom(zoom);
27245     },
27246     
27247     show: function()
27248     {
27249         if(!this.el){
27250             return;
27251         }
27252         
27253         this.el.show();
27254         
27255         this.resize();
27256         
27257         this.fireEvent('show', this);
27258     },
27259     
27260     hide: function()
27261     {
27262         if(!this.el){
27263             return;
27264         }
27265         
27266         this.el.hide();
27267         
27268         this.fireEvent('hide', this);
27269     }
27270     
27271 });
27272
27273 Roo.apply(Roo.bootstrap.LocationPicker, {
27274     
27275     OverlayView : function(map, options)
27276     {
27277         options = options || {};
27278         
27279         this.setMap(map);
27280     }
27281     
27282     
27283 });/**
27284  * @class Roo.bootstrap.Alert
27285  * @extends Roo.bootstrap.Component
27286  * Bootstrap Alert class - shows an alert area box
27287  * eg
27288  * <div class="alert alert-danger" role="alert"><span class="fa fa-exclamation-triangle"></span><span class="sr-only">Error:</span>
27289   Enter a valid email address
27290 </div>
27291  * @licence LGPL
27292  * @cfg {String} title The title of alert
27293  * @cfg {String} html The content of alert
27294  * @cfg {String} weight (  success | info | warning | danger )
27295  * @cfg {String} faicon font-awesomeicon
27296  * 
27297  * @constructor
27298  * Create a new alert
27299  * @param {Object} config The config object
27300  */
27301
27302
27303 Roo.bootstrap.Alert = function(config){
27304     Roo.bootstrap.Alert.superclass.constructor.call(this, config);
27305     
27306 };
27307
27308 Roo.extend(Roo.bootstrap.Alert, Roo.bootstrap.Component,  {
27309     
27310     title: '',
27311     html: '',
27312     weight: false,
27313     faicon: false,
27314     
27315     getAutoCreate : function()
27316     {
27317         
27318         var cfg = {
27319             tag : 'div',
27320             cls : 'alert',
27321             cn : [
27322                 {
27323                     tag : 'i',
27324                     cls : 'roo-alert-icon'
27325                     
27326                 },
27327                 {
27328                     tag : 'b',
27329                     cls : 'roo-alert-title',
27330                     html : this.title
27331                 },
27332                 {
27333                     tag : 'span',
27334                     cls : 'roo-alert-text',
27335                     html : this.html
27336                 }
27337             ]
27338         };
27339         
27340         if(this.faicon){
27341             cfg.cn[0].cls += ' fa ' + this.faicon;
27342         }
27343         
27344         if(this.weight){
27345             cfg.cls += ' alert-' + this.weight;
27346         }
27347         
27348         return cfg;
27349     },
27350     
27351     initEvents: function() 
27352     {
27353         this.el.setVisibilityMode(Roo.Element.DISPLAY);
27354     },
27355     
27356     setTitle : function(str)
27357     {
27358         this.el.select('.roo-alert-title',true).first().dom.innerHTML = str;
27359     },
27360     
27361     setText : function(str)
27362     {
27363         this.el.select('.roo-alert-text',true).first().dom.innerHTML = str;
27364     },
27365     
27366     setWeight : function(weight)
27367     {
27368         if(this.weight){
27369             this.el.select('.alert',true).first().removeClass('alert-' + this.weight);
27370         }
27371         
27372         this.weight = weight;
27373         
27374         this.el.select('.alert',true).first().addClass('alert-' + this.weight);
27375     },
27376     
27377     setIcon : function(icon)
27378     {
27379         if(this.faicon){
27380             this.el.select('.roo-alert-icon',true).first().removeClass(['fa', 'fa-' + this.faicon]);
27381         }
27382         
27383         this.faicon = icon;
27384         
27385         this.el.select('.roo-alert-icon',true).first().addClass(['fa', 'fa-' + this.faicon]);
27386     },
27387     
27388     hide: function() 
27389     {
27390         this.el.hide();   
27391     },
27392     
27393     show: function() 
27394     {  
27395         this.el.show();   
27396     }
27397     
27398 });
27399
27400  
27401 /*
27402 * Licence: LGPL
27403 */
27404
27405 /**
27406  * @class Roo.bootstrap.UploadCropbox
27407  * @extends Roo.bootstrap.Component
27408  * Bootstrap UploadCropbox class
27409  * @cfg {String} emptyText show when image has been loaded
27410  * @cfg {String} rotateNotify show when image too small to rotate
27411  * @cfg {Number} errorTimeout default 3000
27412  * @cfg {Number} minWidth default 300
27413  * @cfg {Number} minHeight default 300
27414  * @cfg {Array} buttons default ['rotateLeft', 'pictureBtn', 'rotateRight']
27415  * @cfg {Boolean} isDocument (true|false) default false
27416  * @cfg {String} url action url
27417  * @cfg {String} paramName default 'imageUpload'
27418  * @cfg {String} method default POST
27419  * @cfg {Boolean} loadMask (true|false) default true
27420  * @cfg {Boolean} loadingText default 'Loading...'
27421  * 
27422  * @constructor
27423  * Create a new UploadCropbox
27424  * @param {Object} config The config object
27425  */
27426
27427 Roo.bootstrap.UploadCropbox = function(config){
27428     Roo.bootstrap.UploadCropbox.superclass.constructor.call(this, config);
27429     
27430     this.addEvents({
27431         /**
27432          * @event beforeselectfile
27433          * Fire before select file
27434          * @param {Roo.bootstrap.UploadCropbox} this
27435          */
27436         "beforeselectfile" : true,
27437         /**
27438          * @event initial
27439          * Fire after initEvent
27440          * @param {Roo.bootstrap.UploadCropbox} this
27441          */
27442         "initial" : true,
27443         /**
27444          * @event crop
27445          * Fire after initEvent
27446          * @param {Roo.bootstrap.UploadCropbox} this
27447          * @param {String} data
27448          */
27449         "crop" : true,
27450         /**
27451          * @event prepare
27452          * Fire when preparing the file data
27453          * @param {Roo.bootstrap.UploadCropbox} this
27454          * @param {Object} file
27455          */
27456         "prepare" : true,
27457         /**
27458          * @event exception
27459          * Fire when get exception
27460          * @param {Roo.bootstrap.UploadCropbox} this
27461          * @param {XMLHttpRequest} xhr
27462          */
27463         "exception" : true,
27464         /**
27465          * @event beforeloadcanvas
27466          * Fire before load the canvas
27467          * @param {Roo.bootstrap.UploadCropbox} this
27468          * @param {String} src
27469          */
27470         "beforeloadcanvas" : true,
27471         /**
27472          * @event trash
27473          * Fire when trash image
27474          * @param {Roo.bootstrap.UploadCropbox} this
27475          */
27476         "trash" : true,
27477         /**
27478          * @event download
27479          * Fire when download the image
27480          * @param {Roo.bootstrap.UploadCropbox} this
27481          */
27482         "download" : true,
27483         /**
27484          * @event footerbuttonclick
27485          * Fire when footerbuttonclick
27486          * @param {Roo.bootstrap.UploadCropbox} this
27487          * @param {String} type
27488          */
27489         "footerbuttonclick" : true,
27490         /**
27491          * @event resize
27492          * Fire when resize
27493          * @param {Roo.bootstrap.UploadCropbox} this
27494          */
27495         "resize" : true,
27496         /**
27497          * @event rotate
27498          * Fire when rotate the image
27499          * @param {Roo.bootstrap.UploadCropbox} this
27500          * @param {String} pos
27501          */
27502         "rotate" : true,
27503         /**
27504          * @event inspect
27505          * Fire when inspect the file
27506          * @param {Roo.bootstrap.UploadCropbox} this
27507          * @param {Object} file
27508          */
27509         "inspect" : true,
27510         /**
27511          * @event upload
27512          * Fire when xhr upload the file
27513          * @param {Roo.bootstrap.UploadCropbox} this
27514          * @param {Object} data
27515          */
27516         "upload" : true,
27517         /**
27518          * @event arrange
27519          * Fire when arrange the file data
27520          * @param {Roo.bootstrap.UploadCropbox} this
27521          * @param {Object} formData
27522          */
27523         "arrange" : true
27524     });
27525     
27526     this.buttons = this.buttons || Roo.bootstrap.UploadCropbox.footer.STANDARD;
27527 };
27528
27529 Roo.extend(Roo.bootstrap.UploadCropbox, Roo.bootstrap.Component,  {
27530     
27531     emptyText : 'Click to upload image',
27532     rotateNotify : 'Image is too small to rotate',
27533     errorTimeout : 3000,
27534     scale : 0,
27535     baseScale : 1,
27536     rotate : 0,
27537     dragable : false,
27538     pinching : false,
27539     mouseX : 0,
27540     mouseY : 0,
27541     cropData : false,
27542     minWidth : 300,
27543     minHeight : 300,
27544     file : false,
27545     exif : {},
27546     baseRotate : 1,
27547     cropType : 'image/jpeg',
27548     buttons : false,
27549     canvasLoaded : false,
27550     isDocument : false,
27551     method : 'POST',
27552     paramName : 'imageUpload',
27553     loadMask : true,
27554     loadingText : 'Loading...',
27555     maskEl : false,
27556     
27557     getAutoCreate : function()
27558     {
27559         var cfg = {
27560             tag : 'div',
27561             cls : 'roo-upload-cropbox',
27562             cn : [
27563                 {
27564                     tag : 'input',
27565                     cls : 'roo-upload-cropbox-selector',
27566                     type : 'file'
27567                 },
27568                 {
27569                     tag : 'div',
27570                     cls : 'roo-upload-cropbox-body',
27571                     style : 'cursor:pointer',
27572                     cn : [
27573                         {
27574                             tag : 'div',
27575                             cls : 'roo-upload-cropbox-preview'
27576                         },
27577                         {
27578                             tag : 'div',
27579                             cls : 'roo-upload-cropbox-thumb'
27580                         },
27581                         {
27582                             tag : 'div',
27583                             cls : 'roo-upload-cropbox-empty-notify',
27584                             html : this.emptyText
27585                         },
27586                         {
27587                             tag : 'div',
27588                             cls : 'roo-upload-cropbox-error-notify alert alert-danger',
27589                             html : this.rotateNotify
27590                         }
27591                     ]
27592                 },
27593                 {
27594                     tag : 'div',
27595                     cls : 'roo-upload-cropbox-footer',
27596                     cn : {
27597                         tag : 'div',
27598                         cls : 'btn-group btn-group-justified roo-upload-cropbox-btn-group',
27599                         cn : []
27600                     }
27601                 }
27602             ]
27603         };
27604         
27605         return cfg;
27606     },
27607     
27608     onRender : function(ct, position)
27609     {
27610         Roo.bootstrap.UploadCropbox.superclass.onRender.call(this, ct, position);
27611         
27612         if (this.buttons.length) {
27613             
27614             Roo.each(this.buttons, function(bb) {
27615                 
27616                 var btn = this.el.select('.roo-upload-cropbox-footer div.roo-upload-cropbox-btn-group').first().createChild(bb);
27617                 
27618                 btn.on('click', this.onFooterButtonClick.createDelegate(this, [bb.action], true));
27619                 
27620             }, this);
27621         }
27622         
27623         if(this.loadMask){
27624             this.maskEl = this.el;
27625         }
27626     },
27627     
27628     initEvents : function()
27629     {
27630         this.urlAPI = (window.createObjectURL && window) || 
27631                                 (window.URL && URL.revokeObjectURL && URL) || 
27632                                 (window.webkitURL && webkitURL);
27633                         
27634         this.bodyEl = this.el.select('.roo-upload-cropbox-body', true).first();
27635         this.bodyEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
27636         
27637         this.selectorEl = this.el.select('.roo-upload-cropbox-selector', true).first();
27638         this.selectorEl.hide();
27639         
27640         this.previewEl = this.el.select('.roo-upload-cropbox-preview', true).first();
27641         this.previewEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
27642         
27643         this.thumbEl = this.el.select('.roo-upload-cropbox-thumb', true).first();
27644         this.thumbEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
27645         this.thumbEl.hide();
27646         
27647         this.notifyEl = this.el.select('.roo-upload-cropbox-empty-notify', true).first();
27648         this.notifyEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
27649         
27650         this.errorEl = this.el.select('.roo-upload-cropbox-error-notify', true).first();
27651         this.errorEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
27652         this.errorEl.hide();
27653         
27654         this.footerEl = this.el.select('.roo-upload-cropbox-footer', true).first();
27655         this.footerEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
27656         this.footerEl.hide();
27657         
27658         this.setThumbBoxSize();
27659         
27660         this.bind();
27661         
27662         this.resize();
27663         
27664         this.fireEvent('initial', this);
27665     },
27666
27667     bind : function()
27668     {
27669         var _this = this;
27670         
27671         window.addEventListener("resize", function() { _this.resize(); } );
27672         
27673         this.bodyEl.on('click', this.beforeSelectFile, this);
27674         
27675         if(Roo.isTouch){
27676             this.bodyEl.on('touchstart', this.onTouchStart, this);
27677             this.bodyEl.on('touchmove', this.onTouchMove, this);
27678             this.bodyEl.on('touchend', this.onTouchEnd, this);
27679         }
27680         
27681         if(!Roo.isTouch){
27682             this.bodyEl.on('mousedown', this.onMouseDown, this);
27683             this.bodyEl.on('mousemove', this.onMouseMove, this);
27684             var mousewheel = (/Firefox/i.test(navigator.userAgent))? 'DOMMouseScroll' : 'mousewheel';
27685             this.bodyEl.on(mousewheel, this.onMouseWheel, this);
27686             Roo.get(document).on('mouseup', this.onMouseUp, this);
27687         }
27688         
27689         this.selectorEl.on('change', this.onFileSelected, this);
27690     },
27691     
27692     reset : function()
27693     {    
27694         this.scale = 0;
27695         this.baseScale = 1;
27696         this.rotate = 0;
27697         this.baseRotate = 1;
27698         this.dragable = false;
27699         this.pinching = false;
27700         this.mouseX = 0;
27701         this.mouseY = 0;
27702         this.cropData = false;
27703         this.notifyEl.dom.innerHTML = this.emptyText;
27704         
27705         this.selectorEl.dom.value = '';
27706         
27707     },
27708     
27709     resize : function()
27710     {
27711         if(this.fireEvent('resize', this) != false){
27712             this.setThumbBoxPosition();
27713             this.setCanvasPosition();
27714         }
27715     },
27716     
27717     onFooterButtonClick : function(e, el, o, type)
27718     {
27719         switch (type) {
27720             case 'rotate-left' :
27721                 this.onRotateLeft(e);
27722                 break;
27723             case 'rotate-right' :
27724                 this.onRotateRight(e);
27725                 break;
27726             case 'picture' :
27727                 this.beforeSelectFile(e);
27728                 break;
27729             case 'trash' :
27730                 this.trash(e);
27731                 break;
27732             case 'crop' :
27733                 this.crop(e);
27734                 break;
27735             case 'download' :
27736                 this.download(e);
27737                 break;
27738             default :
27739                 break;
27740         }
27741         
27742         this.fireEvent('footerbuttonclick', this, type);
27743     },
27744     
27745     beforeSelectFile : function(e)
27746     {
27747         e.preventDefault();
27748         
27749         if(this.fireEvent('beforeselectfile', this) != false){
27750             this.selectorEl.dom.click();
27751         }
27752     },
27753     
27754     onFileSelected : function(e)
27755     {
27756         e.preventDefault();
27757         
27758         if(typeof(this.selectorEl.dom.files) == 'undefined' || !this.selectorEl.dom.files.length){
27759             return;
27760         }
27761         
27762         var file = this.selectorEl.dom.files[0];
27763         
27764         if(this.fireEvent('inspect', this, file) != false){
27765             this.prepare(file);
27766         }
27767         
27768     },
27769     
27770     trash : function(e)
27771     {
27772         this.fireEvent('trash', this);
27773     },
27774     
27775     download : function(e)
27776     {
27777         this.fireEvent('download', this);
27778     },
27779     
27780     loadCanvas : function(src)
27781     {   
27782         if(this.fireEvent('beforeloadcanvas', this, src) != false){
27783             
27784             this.reset();
27785             
27786             this.imageEl = document.createElement('img');
27787             
27788             var _this = this;
27789             
27790             this.imageEl.addEventListener("load", function(){ _this.onLoadCanvas(); });
27791             
27792             this.imageEl.src = src;
27793         }
27794     },
27795     
27796     onLoadCanvas : function()
27797     {   
27798         this.imageEl.OriginWidth = this.imageEl.naturalWidth || this.imageEl.width;
27799         this.imageEl.OriginHeight = this.imageEl.naturalHeight || this.imageEl.height;
27800         
27801         this.bodyEl.un('click', this.beforeSelectFile, this);
27802         
27803         this.notifyEl.hide();
27804         this.thumbEl.show();
27805         this.footerEl.show();
27806         
27807         this.baseRotateLevel();
27808         
27809         if(this.isDocument){
27810             this.setThumbBoxSize();
27811         }
27812         
27813         this.setThumbBoxPosition();
27814         
27815         this.baseScaleLevel();
27816         
27817         this.draw();
27818         
27819         this.resize();
27820         
27821         this.canvasLoaded = true;
27822         
27823         if(this.loadMask){
27824             this.maskEl.unmask();
27825         }
27826         
27827     },
27828     
27829     setCanvasPosition : function()
27830     {   
27831         if(!this.canvasEl){
27832             return;
27833         }
27834         
27835         var pw = Math.ceil((this.bodyEl.getWidth() - this.canvasEl.width) / 2);
27836         var ph = Math.ceil((this.bodyEl.getHeight() - this.canvasEl.height) / 2);
27837         
27838         this.previewEl.setLeft(pw);
27839         this.previewEl.setTop(ph);
27840         
27841     },
27842     
27843     onMouseDown : function(e)
27844     {   
27845         e.stopEvent();
27846         
27847         this.dragable = true;
27848         this.pinching = false;
27849         
27850         if(this.isDocument && (this.canvasEl.width < this.thumbEl.getWidth() || this.canvasEl.height < this.thumbEl.getHeight())){
27851             this.dragable = false;
27852             return;
27853         }
27854         
27855         this.mouseX = Roo.isTouch ? e.browserEvent.touches[0].pageX : e.getPageX();
27856         this.mouseY = Roo.isTouch ? e.browserEvent.touches[0].pageY : e.getPageY();
27857         
27858     },
27859     
27860     onMouseMove : function(e)
27861     {   
27862         e.stopEvent();
27863         
27864         if(!this.canvasLoaded){
27865             return;
27866         }
27867         
27868         if (!this.dragable){
27869             return;
27870         }
27871         
27872         var minX = Math.ceil(this.thumbEl.getLeft(true));
27873         var minY = Math.ceil(this.thumbEl.getTop(true));
27874         
27875         var maxX = Math.ceil(minX + this.thumbEl.getWidth() - this.canvasEl.width);
27876         var maxY = Math.ceil(minY + this.thumbEl.getHeight() - this.canvasEl.height);
27877         
27878         var x = Roo.isTouch ? e.browserEvent.touches[0].pageX : e.getPageX();
27879         var y = Roo.isTouch ? e.browserEvent.touches[0].pageY : e.getPageY();
27880         
27881         x = x - this.mouseX;
27882         y = y - this.mouseY;
27883         
27884         var bgX = Math.ceil(x + this.previewEl.getLeft(true));
27885         var bgY = Math.ceil(y + this.previewEl.getTop(true));
27886         
27887         bgX = (minX < bgX) ? minX : ((maxX > bgX) ? maxX : bgX);
27888         bgY = (minY < bgY) ? minY : ((maxY > bgY) ? maxY : bgY);
27889         
27890         this.previewEl.setLeft(bgX);
27891         this.previewEl.setTop(bgY);
27892         
27893         this.mouseX = Roo.isTouch ? e.browserEvent.touches[0].pageX : e.getPageX();
27894         this.mouseY = Roo.isTouch ? e.browserEvent.touches[0].pageY : e.getPageY();
27895     },
27896     
27897     onMouseUp : function(e)
27898     {   
27899         e.stopEvent();
27900         
27901         this.dragable = false;
27902     },
27903     
27904     onMouseWheel : function(e)
27905     {   
27906         e.stopEvent();
27907         
27908         this.startScale = this.scale;
27909         
27910         this.scale = (e.getWheelDelta() == 1) ? (this.scale + 1) : (this.scale - 1);
27911         
27912         if(!this.zoomable()){
27913             this.scale = this.startScale;
27914             return;
27915         }
27916         
27917         this.draw();
27918         
27919         return;
27920     },
27921     
27922     zoomable : function()
27923     {
27924         var minScale = this.thumbEl.getWidth() / this.minWidth;
27925         
27926         if(this.minWidth < this.minHeight){
27927             minScale = this.thumbEl.getHeight() / this.minHeight;
27928         }
27929         
27930         var width = Math.ceil(this.imageEl.OriginWidth * this.getScaleLevel() / minScale);
27931         var height = Math.ceil(this.imageEl.OriginHeight * this.getScaleLevel() / minScale);
27932         
27933         if(
27934                 this.isDocument &&
27935                 (this.rotate == 0 || this.rotate == 180) && 
27936                 (
27937                     width > this.imageEl.OriginWidth || 
27938                     height > this.imageEl.OriginHeight ||
27939                     (width < this.minWidth && height < this.minHeight)
27940                 )
27941         ){
27942             return false;
27943         }
27944         
27945         if(
27946                 this.isDocument &&
27947                 (this.rotate == 90 || this.rotate == 270) && 
27948                 (
27949                     width > this.imageEl.OriginWidth || 
27950                     height > this.imageEl.OriginHeight ||
27951                     (width < this.minHeight && height < this.minWidth)
27952                 )
27953         ){
27954             return false;
27955         }
27956         
27957         if(
27958                 !this.isDocument &&
27959                 (this.rotate == 0 || this.rotate == 180) && 
27960                 (
27961                     width < this.minWidth || 
27962                     width > this.imageEl.OriginWidth || 
27963                     height < this.minHeight || 
27964                     height > this.imageEl.OriginHeight
27965                 )
27966         ){
27967             return false;
27968         }
27969         
27970         if(
27971                 !this.isDocument &&
27972                 (this.rotate == 90 || this.rotate == 270) && 
27973                 (
27974                     width < this.minHeight || 
27975                     width > this.imageEl.OriginWidth || 
27976                     height < this.minWidth || 
27977                     height > this.imageEl.OriginHeight
27978                 )
27979         ){
27980             return false;
27981         }
27982         
27983         return true;
27984         
27985     },
27986     
27987     onRotateLeft : function(e)
27988     {   
27989         if(!this.isDocument && (this.canvasEl.height < this.thumbEl.getWidth() || this.canvasEl.width < this.thumbEl.getHeight())){
27990             
27991             var minScale = this.thumbEl.getWidth() / this.minWidth;
27992             
27993             var bw = Math.ceil(this.canvasEl.width / this.getScaleLevel());
27994             var bh = Math.ceil(this.canvasEl.height / this.getScaleLevel());
27995             
27996             this.startScale = this.scale;
27997             
27998             while (this.getScaleLevel() < minScale){
27999             
28000                 this.scale = this.scale + 1;
28001                 
28002                 if(!this.zoomable()){
28003                     break;
28004                 }
28005                 
28006                 if(
28007                         Math.ceil(bw * this.getScaleLevel()) < this.thumbEl.getHeight() ||
28008                         Math.ceil(bh * this.getScaleLevel()) < this.thumbEl.getWidth()
28009                 ){
28010                     continue;
28011                 }
28012                 
28013                 this.rotate = (this.rotate < 90) ? 270 : this.rotate - 90;
28014
28015                 this.draw();
28016                 
28017                 return;
28018             }
28019             
28020             this.scale = this.startScale;
28021             
28022             this.onRotateFail();
28023             
28024             return false;
28025         }
28026         
28027         this.rotate = (this.rotate < 90) ? 270 : this.rotate - 90;
28028
28029         if(this.isDocument){
28030             this.setThumbBoxSize();
28031             this.setThumbBoxPosition();
28032             this.setCanvasPosition();
28033         }
28034         
28035         this.draw();
28036         
28037         this.fireEvent('rotate', this, 'left');
28038         
28039     },
28040     
28041     onRotateRight : function(e)
28042     {
28043         if(!this.isDocument && (this.canvasEl.height < this.thumbEl.getWidth() || this.canvasEl.width < this.thumbEl.getHeight())){
28044             
28045             var minScale = this.thumbEl.getWidth() / this.minWidth;
28046         
28047             var bw = Math.ceil(this.canvasEl.width / this.getScaleLevel());
28048             var bh = Math.ceil(this.canvasEl.height / this.getScaleLevel());
28049             
28050             this.startScale = this.scale;
28051             
28052             while (this.getScaleLevel() < minScale){
28053             
28054                 this.scale = this.scale + 1;
28055                 
28056                 if(!this.zoomable()){
28057                     break;
28058                 }
28059                 
28060                 if(
28061                         Math.ceil(bw * this.getScaleLevel()) < this.thumbEl.getHeight() ||
28062                         Math.ceil(bh * this.getScaleLevel()) < this.thumbEl.getWidth()
28063                 ){
28064                     continue;
28065                 }
28066                 
28067                 this.rotate = (this.rotate > 180) ? 0 : this.rotate + 90;
28068
28069                 this.draw();
28070                 
28071                 return;
28072             }
28073             
28074             this.scale = this.startScale;
28075             
28076             this.onRotateFail();
28077             
28078             return false;
28079         }
28080         
28081         this.rotate = (this.rotate > 180) ? 0 : this.rotate + 90;
28082
28083         if(this.isDocument){
28084             this.setThumbBoxSize();
28085             this.setThumbBoxPosition();
28086             this.setCanvasPosition();
28087         }
28088         
28089         this.draw();
28090         
28091         this.fireEvent('rotate', this, 'right');
28092     },
28093     
28094     onRotateFail : function()
28095     {
28096         this.errorEl.show(true);
28097         
28098         var _this = this;
28099         
28100         (function() { _this.errorEl.hide(true); }).defer(this.errorTimeout);
28101     },
28102     
28103     draw : function()
28104     {
28105         this.previewEl.dom.innerHTML = '';
28106         
28107         var canvasEl = document.createElement("canvas");
28108         
28109         var contextEl = canvasEl.getContext("2d");
28110         
28111         canvasEl.width = this.imageEl.OriginWidth * this.getScaleLevel();
28112         canvasEl.height = this.imageEl.OriginWidth * this.getScaleLevel();
28113         var center = this.imageEl.OriginWidth / 2;
28114         
28115         if(this.imageEl.OriginWidth < this.imageEl.OriginHeight){
28116             canvasEl.width = this.imageEl.OriginHeight * this.getScaleLevel();
28117             canvasEl.height = this.imageEl.OriginHeight * this.getScaleLevel();
28118             center = this.imageEl.OriginHeight / 2;
28119         }
28120         
28121         contextEl.scale(this.getScaleLevel(), this.getScaleLevel());
28122         
28123         contextEl.translate(center, center);
28124         contextEl.rotate(this.rotate * Math.PI / 180);
28125
28126         contextEl.drawImage(this.imageEl, 0, 0, this.imageEl.OriginWidth, this.imageEl.OriginHeight, center * -1, center * -1, this.imageEl.OriginWidth, this.imageEl.OriginHeight);
28127         
28128         this.canvasEl = document.createElement("canvas");
28129         
28130         this.contextEl = this.canvasEl.getContext("2d");
28131         
28132         switch (this.rotate) {
28133             case 0 :
28134                 
28135                 this.canvasEl.width = this.imageEl.OriginWidth * this.getScaleLevel();
28136                 this.canvasEl.height = this.imageEl.OriginHeight * this.getScaleLevel();
28137                 
28138                 this.contextEl.drawImage(canvasEl, 0, 0, this.canvasEl.width, this.canvasEl.height, 0, 0, this.canvasEl.width, this.canvasEl.height);
28139                 
28140                 break;
28141             case 90 : 
28142                 
28143                 this.canvasEl.width = this.imageEl.OriginHeight * this.getScaleLevel();
28144                 this.canvasEl.height = this.imageEl.OriginWidth * this.getScaleLevel();
28145                 
28146                 if(this.imageEl.OriginWidth > this.imageEl.OriginHeight){
28147                     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);
28148                     break;
28149                 }
28150                 
28151                 this.contextEl.drawImage(canvasEl, 0, 0, this.canvasEl.width, this.canvasEl.height, 0, 0, this.canvasEl.width, this.canvasEl.height);
28152                 
28153                 break;
28154             case 180 :
28155                 
28156                 this.canvasEl.width = this.imageEl.OriginWidth * this.getScaleLevel();
28157                 this.canvasEl.height = this.imageEl.OriginHeight * this.getScaleLevel();
28158                 
28159                 if(this.imageEl.OriginWidth > this.imageEl.OriginHeight){
28160                     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);
28161                     break;
28162                 }
28163                 
28164                 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);
28165                 
28166                 break;
28167             case 270 :
28168                 
28169                 this.canvasEl.width = this.imageEl.OriginHeight * this.getScaleLevel();
28170                 this.canvasEl.height = this.imageEl.OriginWidth * this.getScaleLevel();
28171         
28172                 if(this.imageEl.OriginWidth > this.imageEl.OriginHeight){
28173                     this.contextEl.drawImage(canvasEl, 0, 0, this.canvasEl.width, this.canvasEl.height, 0, 0, this.canvasEl.width, this.canvasEl.height);
28174                     break;
28175                 }
28176                 
28177                 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);
28178                 
28179                 break;
28180             default : 
28181                 break;
28182         }
28183         
28184         this.previewEl.appendChild(this.canvasEl);
28185         
28186         this.setCanvasPosition();
28187     },
28188     
28189     crop : function()
28190     {
28191         if(!this.canvasLoaded){
28192             return;
28193         }
28194         
28195         var imageCanvas = document.createElement("canvas");
28196         
28197         var imageContext = imageCanvas.getContext("2d");
28198         
28199         imageCanvas.width = (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? this.imageEl.OriginWidth : this.imageEl.OriginHeight;
28200         imageCanvas.height = (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? this.imageEl.OriginWidth : this.imageEl.OriginHeight;
28201         
28202         var center = imageCanvas.width / 2;
28203         
28204         imageContext.translate(center, center);
28205         
28206         imageContext.rotate(this.rotate * Math.PI / 180);
28207         
28208         imageContext.drawImage(this.imageEl, 0, 0, this.imageEl.OriginWidth, this.imageEl.OriginHeight, center * -1, center * -1, this.imageEl.OriginWidth, this.imageEl.OriginHeight);
28209         
28210         var canvas = document.createElement("canvas");
28211         
28212         var context = canvas.getContext("2d");
28213                 
28214         canvas.width = this.minWidth;
28215         canvas.height = this.minHeight;
28216
28217         switch (this.rotate) {
28218             case 0 :
28219                 
28220                 var width = (this.thumbEl.getWidth() / this.getScaleLevel() > this.imageEl.OriginWidth) ? this.imageEl.OriginWidth : (this.thumbEl.getWidth() / this.getScaleLevel());
28221                 var height = (this.thumbEl.getHeight() / this.getScaleLevel() > this.imageEl.OriginHeight) ? this.imageEl.OriginHeight : (this.thumbEl.getHeight() / this.getScaleLevel());
28222                 
28223                 var x = (this.thumbEl.getLeft(true) > this.previewEl.getLeft(true)) ? 0 : ((this.previewEl.getLeft(true) - this.thumbEl.getLeft(true)) / this.getScaleLevel());
28224                 var y = (this.thumbEl.getTop(true) > this.previewEl.getTop(true)) ? 0 : ((this.previewEl.getTop(true) - this.thumbEl.getTop(true)) / this.getScaleLevel());
28225                 
28226                 var targetWidth = this.minWidth - 2 * x;
28227                 var targetHeight = this.minHeight - 2 * y;
28228                 
28229                 var scale = 1;
28230                 
28231                 if((x == 0 && y == 0) || (x == 0 && y > 0)){
28232                     scale = targetWidth / width;
28233                 }
28234                 
28235                 if(x > 0 && y == 0){
28236                     scale = targetHeight / height;
28237                 }
28238                 
28239                 if(x > 0 && y > 0){
28240                     scale = targetWidth / width;
28241                     
28242                     if(width < height){
28243                         scale = targetHeight / height;
28244                     }
28245                 }
28246                 
28247                 context.scale(scale, scale);
28248                 
28249                 var sx = Math.min(this.canvasEl.width - this.thumbEl.getWidth(), this.thumbEl.getLeft(true) - this.previewEl.getLeft(true));
28250                 var sy = Math.min(this.canvasEl.height - this.thumbEl.getHeight(), this.thumbEl.getTop(true) - this.previewEl.getTop(true));
28251
28252                 sx = sx < 0 ? 0 : (sx / this.getScaleLevel());
28253                 sy = sy < 0 ? 0 : (sy / this.getScaleLevel());
28254
28255                 context.drawImage(imageCanvas, sx, sy, width, height, x, y, width, height);
28256                 
28257                 break;
28258             case 90 : 
28259                 
28260                 var width = (this.thumbEl.getWidth() / this.getScaleLevel() > this.imageEl.OriginHeight) ? this.imageEl.OriginHeight : (this.thumbEl.getWidth() / this.getScaleLevel());
28261                 var height = (this.thumbEl.getHeight() / this.getScaleLevel() > this.imageEl.OriginWidth) ? this.imageEl.OriginWidth : (this.thumbEl.getHeight() / this.getScaleLevel());
28262                 
28263                 var x = (this.thumbEl.getLeft(true) > this.previewEl.getLeft(true)) ? 0 : ((this.previewEl.getLeft(true) - this.thumbEl.getLeft(true)) / this.getScaleLevel());
28264                 var y = (this.thumbEl.getTop(true) > this.previewEl.getTop(true)) ? 0 : ((this.previewEl.getTop(true) - this.thumbEl.getTop(true)) / this.getScaleLevel());
28265                 
28266                 var targetWidth = this.minWidth - 2 * x;
28267                 var targetHeight = this.minHeight - 2 * y;
28268                 
28269                 var scale = 1;
28270                 
28271                 if((x == 0 && y == 0) || (x == 0 && y > 0)){
28272                     scale = targetWidth / width;
28273                 }
28274                 
28275                 if(x > 0 && y == 0){
28276                     scale = targetHeight / height;
28277                 }
28278                 
28279                 if(x > 0 && y > 0){
28280                     scale = targetWidth / width;
28281                     
28282                     if(width < height){
28283                         scale = targetHeight / height;
28284                     }
28285                 }
28286                 
28287                 context.scale(scale, scale);
28288                 
28289                 var sx = Math.min(this.canvasEl.width - this.thumbEl.getWidth(), this.thumbEl.getLeft(true) - this.previewEl.getLeft(true));
28290                 var sy = Math.min(this.canvasEl.height - this.thumbEl.getHeight(), this.thumbEl.getTop(true) - this.previewEl.getTop(true));
28291
28292                 sx = sx < 0 ? 0 : (sx / this.getScaleLevel());
28293                 sy = sy < 0 ? 0 : (sy / this.getScaleLevel());
28294                 
28295                 sx += (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? Math.abs(this.imageEl.OriginWidth - this.imageEl.OriginHeight) : 0;
28296                 
28297                 context.drawImage(imageCanvas, sx, sy, width, height, x, y, width, height);
28298                 
28299                 break;
28300             case 180 :
28301                 
28302                 var width = (this.thumbEl.getWidth() / this.getScaleLevel() > this.imageEl.OriginWidth) ? this.imageEl.OriginWidth : (this.thumbEl.getWidth() / this.getScaleLevel());
28303                 var height = (this.thumbEl.getHeight() / this.getScaleLevel() > this.imageEl.OriginHeight) ? this.imageEl.OriginHeight : (this.thumbEl.getHeight() / this.getScaleLevel());
28304                 
28305                 var x = (this.thumbEl.getLeft(true) > this.previewEl.getLeft(true)) ? 0 : ((this.previewEl.getLeft(true) - this.thumbEl.getLeft(true)) / this.getScaleLevel());
28306                 var y = (this.thumbEl.getTop(true) > this.previewEl.getTop(true)) ? 0 : ((this.previewEl.getTop(true) - this.thumbEl.getTop(true)) / this.getScaleLevel());
28307                 
28308                 var targetWidth = this.minWidth - 2 * x;
28309                 var targetHeight = this.minHeight - 2 * y;
28310                 
28311                 var scale = 1;
28312                 
28313                 if((x == 0 && y == 0) || (x == 0 && y > 0)){
28314                     scale = targetWidth / width;
28315                 }
28316                 
28317                 if(x > 0 && y == 0){
28318                     scale = targetHeight / height;
28319                 }
28320                 
28321                 if(x > 0 && y > 0){
28322                     scale = targetWidth / width;
28323                     
28324                     if(width < height){
28325                         scale = targetHeight / height;
28326                     }
28327                 }
28328                 
28329                 context.scale(scale, scale);
28330                 
28331                 var sx = Math.min(this.canvasEl.width - this.thumbEl.getWidth(), this.thumbEl.getLeft(true) - this.previewEl.getLeft(true));
28332                 var sy = Math.min(this.canvasEl.height - this.thumbEl.getHeight(), this.thumbEl.getTop(true) - this.previewEl.getTop(true));
28333
28334                 sx = sx < 0 ? 0 : (sx / this.getScaleLevel());
28335                 sy = sy < 0 ? 0 : (sy / this.getScaleLevel());
28336
28337                 sx += (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? 0 : Math.abs(this.imageEl.OriginWidth - this.imageEl.OriginHeight);
28338                 sy += (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? Math.abs(this.imageEl.OriginWidth - this.imageEl.OriginHeight) : 0;
28339                 
28340                 context.drawImage(imageCanvas, sx, sy, width, height, x, y, width, height);
28341                 
28342                 break;
28343             case 270 :
28344                 
28345                 var width = (this.thumbEl.getWidth() / this.getScaleLevel() > this.imageEl.OriginHeight) ? this.imageEl.OriginHeight : (this.thumbEl.getWidth() / this.getScaleLevel());
28346                 var height = (this.thumbEl.getHeight() / this.getScaleLevel() > this.imageEl.OriginWidth) ? this.imageEl.OriginWidth : (this.thumbEl.getHeight() / this.getScaleLevel());
28347                 
28348                 var x = (this.thumbEl.getLeft(true) > this.previewEl.getLeft(true)) ? 0 : ((this.previewEl.getLeft(true) - this.thumbEl.getLeft(true)) / this.getScaleLevel());
28349                 var y = (this.thumbEl.getTop(true) > this.previewEl.getTop(true)) ? 0 : ((this.previewEl.getTop(true) - this.thumbEl.getTop(true)) / this.getScaleLevel());
28350                 
28351                 var targetWidth = this.minWidth - 2 * x;
28352                 var targetHeight = this.minHeight - 2 * y;
28353                 
28354                 var scale = 1;
28355                 
28356                 if((x == 0 && y == 0) || (x == 0 && y > 0)){
28357                     scale = targetWidth / width;
28358                 }
28359                 
28360                 if(x > 0 && y == 0){
28361                     scale = targetHeight / height;
28362                 }
28363                 
28364                 if(x > 0 && y > 0){
28365                     scale = targetWidth / width;
28366                     
28367                     if(width < height){
28368                         scale = targetHeight / height;
28369                     }
28370                 }
28371                 
28372                 context.scale(scale, scale);
28373                 
28374                 var sx = Math.min(this.canvasEl.width - this.thumbEl.getWidth(), this.thumbEl.getLeft(true) - this.previewEl.getLeft(true));
28375                 var sy = Math.min(this.canvasEl.height - this.thumbEl.getHeight(), this.thumbEl.getTop(true) - this.previewEl.getTop(true));
28376
28377                 sx = sx < 0 ? 0 : (sx / this.getScaleLevel());
28378                 sy = sy < 0 ? 0 : (sy / this.getScaleLevel());
28379                 
28380                 sy += (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? 0 : Math.abs(this.imageEl.OriginWidth - this.imageEl.OriginHeight);
28381                 
28382                 context.drawImage(imageCanvas, sx, sy, width, height, x, y, width, height);
28383                 
28384                 break;
28385             default : 
28386                 break;
28387         }
28388         
28389         this.cropData = canvas.toDataURL(this.cropType);
28390         
28391         if(this.fireEvent('crop', this, this.cropData) !== false){
28392             this.process(this.file, this.cropData);
28393         }
28394         
28395         return;
28396         
28397     },
28398     
28399     setThumbBoxSize : function()
28400     {
28401         var width, height;
28402         
28403         if(this.isDocument && typeof(this.imageEl) != 'undefined'){
28404             width = (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? Math.max(this.minWidth, this.minHeight) : Math.min(this.minWidth, this.minHeight);
28405             height = (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? Math.min(this.minWidth, this.minHeight) : Math.max(this.minWidth, this.minHeight);
28406             
28407             this.minWidth = width;
28408             this.minHeight = height;
28409             
28410             if(this.rotate == 90 || this.rotate == 270){
28411                 this.minWidth = height;
28412                 this.minHeight = width;
28413             }
28414         }
28415         
28416         height = 300;
28417         width = Math.ceil(this.minWidth * height / this.minHeight);
28418         
28419         if(this.minWidth > this.minHeight){
28420             width = 300;
28421             height = Math.ceil(this.minHeight * width / this.minWidth);
28422         }
28423         
28424         this.thumbEl.setStyle({
28425             width : width + 'px',
28426             height : height + 'px'
28427         });
28428
28429         return;
28430             
28431     },
28432     
28433     setThumbBoxPosition : function()
28434     {
28435         var x = Math.ceil((this.bodyEl.getWidth() - this.thumbEl.getWidth()) / 2 );
28436         var y = Math.ceil((this.bodyEl.getHeight() - this.thumbEl.getHeight()) / 2);
28437         
28438         this.thumbEl.setLeft(x);
28439         this.thumbEl.setTop(y);
28440         
28441     },
28442     
28443     baseRotateLevel : function()
28444     {
28445         this.baseRotate = 1;
28446         
28447         if(
28448                 typeof(this.exif) != 'undefined' &&
28449                 typeof(this.exif[Roo.bootstrap.UploadCropbox['tags']['Orientation']]) != 'undefined' &&
28450                 [1, 3, 6, 8].indexOf(this.exif[Roo.bootstrap.UploadCropbox['tags']['Orientation']]) != -1
28451         ){
28452             this.baseRotate = this.exif[Roo.bootstrap.UploadCropbox['tags']['Orientation']];
28453         }
28454         
28455         this.rotate = Roo.bootstrap.UploadCropbox['Orientation'][this.baseRotate];
28456         
28457     },
28458     
28459     baseScaleLevel : function()
28460     {
28461         var width, height;
28462         
28463         if(this.isDocument){
28464             
28465             if(this.baseRotate == 6 || this.baseRotate == 8){
28466             
28467                 height = this.thumbEl.getHeight();
28468                 this.baseScale = height / this.imageEl.OriginWidth;
28469
28470                 if(this.imageEl.OriginHeight * this.baseScale > this.thumbEl.getWidth()){
28471                     width = this.thumbEl.getWidth();
28472                     this.baseScale = width / this.imageEl.OriginHeight;
28473                 }
28474
28475                 return;
28476             }
28477
28478             height = this.thumbEl.getHeight();
28479             this.baseScale = height / this.imageEl.OriginHeight;
28480
28481             if(this.imageEl.OriginWidth * this.baseScale > this.thumbEl.getWidth()){
28482                 width = this.thumbEl.getWidth();
28483                 this.baseScale = width / this.imageEl.OriginWidth;
28484             }
28485
28486             return;
28487         }
28488         
28489         if(this.baseRotate == 6 || this.baseRotate == 8){
28490             
28491             width = this.thumbEl.getHeight();
28492             this.baseScale = width / this.imageEl.OriginHeight;
28493             
28494             if(this.imageEl.OriginHeight * this.baseScale < this.thumbEl.getWidth()){
28495                 height = this.thumbEl.getWidth();
28496                 this.baseScale = height / this.imageEl.OriginHeight;
28497             }
28498             
28499             if(this.imageEl.OriginWidth > this.imageEl.OriginHeight){
28500                 height = this.thumbEl.getWidth();
28501                 this.baseScale = height / this.imageEl.OriginHeight;
28502                 
28503                 if(this.imageEl.OriginWidth * this.baseScale < this.thumbEl.getHeight()){
28504                     width = this.thumbEl.getHeight();
28505                     this.baseScale = width / this.imageEl.OriginWidth;
28506                 }
28507             }
28508             
28509             return;
28510         }
28511         
28512         width = this.thumbEl.getWidth();
28513         this.baseScale = width / this.imageEl.OriginWidth;
28514         
28515         if(this.imageEl.OriginHeight * this.baseScale < this.thumbEl.getHeight()){
28516             height = this.thumbEl.getHeight();
28517             this.baseScale = height / this.imageEl.OriginHeight;
28518         }
28519         
28520         if(this.imageEl.OriginWidth > this.imageEl.OriginHeight){
28521             
28522             height = this.thumbEl.getHeight();
28523             this.baseScale = height / this.imageEl.OriginHeight;
28524             
28525             if(this.imageEl.OriginWidth * this.baseScale < this.thumbEl.getWidth()){
28526                 width = this.thumbEl.getWidth();
28527                 this.baseScale = width / this.imageEl.OriginWidth;
28528             }
28529             
28530         }
28531         
28532         return;
28533     },
28534     
28535     getScaleLevel : function()
28536     {
28537         return this.baseScale * Math.pow(1.1, this.scale);
28538     },
28539     
28540     onTouchStart : function(e)
28541     {
28542         if(!this.canvasLoaded){
28543             this.beforeSelectFile(e);
28544             return;
28545         }
28546         
28547         var touches = e.browserEvent.touches;
28548         
28549         if(!touches){
28550             return;
28551         }
28552         
28553         if(touches.length == 1){
28554             this.onMouseDown(e);
28555             return;
28556         }
28557         
28558         if(touches.length != 2){
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.startDistance = Math.sqrt(x + y);
28572         
28573         this.startScale = this.scale;
28574         
28575         this.pinching = true;
28576         this.dragable = false;
28577         
28578     },
28579     
28580     onTouchMove : function(e)
28581     {
28582         if(!this.pinching && !this.dragable){
28583             return;
28584         }
28585         
28586         var touches = e.browserEvent.touches;
28587         
28588         if(!touches){
28589             return;
28590         }
28591         
28592         if(this.dragable){
28593             this.onMouseMove(e);
28594             return;
28595         }
28596         
28597         var coords = [];
28598         
28599         for(var i = 0, finger; finger = touches[i]; i++){
28600             coords.push(finger.pageX, finger.pageY);
28601         }
28602         
28603         var x = Math.pow(coords[0] - coords[2], 2);
28604         var y = Math.pow(coords[1] - coords[3], 2);
28605         
28606         this.endDistance = Math.sqrt(x + y);
28607         
28608         this.scale = this.startScale + Math.floor(Math.log(this.endDistance / this.startDistance) / Math.log(1.1));
28609         
28610         if(!this.zoomable()){
28611             this.scale = this.startScale;
28612             return;
28613         }
28614         
28615         this.draw();
28616         
28617     },
28618     
28619     onTouchEnd : function(e)
28620     {
28621         this.pinching = false;
28622         this.dragable = false;
28623         
28624     },
28625     
28626     process : function(file, crop)
28627     {
28628         if(this.loadMask){
28629             this.maskEl.mask(this.loadingText);
28630         }
28631         
28632         this.xhr = new XMLHttpRequest();
28633         
28634         file.xhr = this.xhr;
28635
28636         this.xhr.open(this.method, this.url, true);
28637         
28638         var headers = {
28639             "Accept": "application/json",
28640             "Cache-Control": "no-cache",
28641             "X-Requested-With": "XMLHttpRequest"
28642         };
28643         
28644         for (var headerName in headers) {
28645             var headerValue = headers[headerName];
28646             if (headerValue) {
28647                 this.xhr.setRequestHeader(headerName, headerValue);
28648             }
28649         }
28650         
28651         var _this = this;
28652         
28653         this.xhr.onload = function()
28654         {
28655             _this.xhrOnLoad(_this.xhr);
28656         }
28657         
28658         this.xhr.onerror = function()
28659         {
28660             _this.xhrOnError(_this.xhr);
28661         }
28662         
28663         var formData = new FormData();
28664
28665         formData.append('returnHTML', 'NO');
28666         
28667         if(crop){
28668             formData.append('crop', crop);
28669         }
28670         
28671         if(typeof(file) != 'undefined' && (typeof(file.id) == 'undefined' || file.id * 1 < 1)){
28672             formData.append(this.paramName, file, file.name);
28673         }
28674         
28675         if(typeof(file.filename) != 'undefined'){
28676             formData.append('filename', file.filename);
28677         }
28678         
28679         if(typeof(file.mimetype) != 'undefined'){
28680             formData.append('mimetype', file.mimetype);
28681         }
28682         
28683         if(this.fireEvent('arrange', this, formData) != false){
28684             this.xhr.send(formData);
28685         };
28686     },
28687     
28688     xhrOnLoad : function(xhr)
28689     {
28690         if(this.loadMask){
28691             this.maskEl.unmask();
28692         }
28693         
28694         if (xhr.readyState !== 4) {
28695             this.fireEvent('exception', this, xhr);
28696             return;
28697         }
28698
28699         var response = Roo.decode(xhr.responseText);
28700         
28701         if(!response.success){
28702             this.fireEvent('exception', this, xhr);
28703             return;
28704         }
28705         
28706         var response = Roo.decode(xhr.responseText);
28707         
28708         this.fireEvent('upload', this, response);
28709         
28710     },
28711     
28712     xhrOnError : function()
28713     {
28714         if(this.loadMask){
28715             this.maskEl.unmask();
28716         }
28717         
28718         Roo.log('xhr on error');
28719         
28720         var response = Roo.decode(xhr.responseText);
28721           
28722         Roo.log(response);
28723         
28724     },
28725     
28726     prepare : function(file)
28727     {   
28728         if(this.loadMask){
28729             this.maskEl.mask(this.loadingText);
28730         }
28731         
28732         this.file = false;
28733         this.exif = {};
28734         
28735         if(typeof(file) === 'string'){
28736             this.loadCanvas(file);
28737             return;
28738         }
28739         
28740         if(!file || !this.urlAPI){
28741             return;
28742         }
28743         
28744         this.file = file;
28745         this.cropType = file.type;
28746         
28747         var _this = this;
28748         
28749         if(this.fireEvent('prepare', this, this.file) != false){
28750             
28751             var reader = new FileReader();
28752             
28753             reader.onload = function (e) {
28754                 if (e.target.error) {
28755                     Roo.log(e.target.error);
28756                     return;
28757                 }
28758                 
28759                 var buffer = e.target.result,
28760                     dataView = new DataView(buffer),
28761                     offset = 2,
28762                     maxOffset = dataView.byteLength - 4,
28763                     markerBytes,
28764                     markerLength;
28765                 
28766                 if (dataView.getUint16(0) === 0xffd8) {
28767                     while (offset < maxOffset) {
28768                         markerBytes = dataView.getUint16(offset);
28769                         
28770                         if ((markerBytes >= 0xffe0 && markerBytes <= 0xffef) || markerBytes === 0xfffe) {
28771                             markerLength = dataView.getUint16(offset + 2) + 2;
28772                             if (offset + markerLength > dataView.byteLength) {
28773                                 Roo.log('Invalid meta data: Invalid segment size.');
28774                                 break;
28775                             }
28776                             
28777                             if(markerBytes == 0xffe1){
28778                                 _this.parseExifData(
28779                                     dataView,
28780                                     offset,
28781                                     markerLength
28782                                 );
28783                             }
28784                             
28785                             offset += markerLength;
28786                             
28787                             continue;
28788                         }
28789                         
28790                         break;
28791                     }
28792                     
28793                 }
28794                 
28795                 var url = _this.urlAPI.createObjectURL(_this.file);
28796                 
28797                 _this.loadCanvas(url);
28798                 
28799                 return;
28800             }
28801             
28802             reader.readAsArrayBuffer(this.file);
28803             
28804         }
28805         
28806     },
28807     
28808     parseExifData : function(dataView, offset, length)
28809     {
28810         var tiffOffset = offset + 10,
28811             littleEndian,
28812             dirOffset;
28813     
28814         if (dataView.getUint32(offset + 4) !== 0x45786966) {
28815             // No Exif data, might be XMP data instead
28816             return;
28817         }
28818         
28819         // Check for the ASCII code for "Exif" (0x45786966):
28820         if (dataView.getUint32(offset + 4) !== 0x45786966) {
28821             // No Exif data, might be XMP data instead
28822             return;
28823         }
28824         if (tiffOffset + 8 > dataView.byteLength) {
28825             Roo.log('Invalid Exif data: Invalid segment size.');
28826             return;
28827         }
28828         // Check for the two null bytes:
28829         if (dataView.getUint16(offset + 8) !== 0x0000) {
28830             Roo.log('Invalid Exif data: Missing byte alignment offset.');
28831             return;
28832         }
28833         // Check the byte alignment:
28834         switch (dataView.getUint16(tiffOffset)) {
28835         case 0x4949:
28836             littleEndian = true;
28837             break;
28838         case 0x4D4D:
28839             littleEndian = false;
28840             break;
28841         default:
28842             Roo.log('Invalid Exif data: Invalid byte alignment marker.');
28843             return;
28844         }
28845         // Check for the TIFF tag marker (0x002A):
28846         if (dataView.getUint16(tiffOffset + 2, littleEndian) !== 0x002A) {
28847             Roo.log('Invalid Exif data: Missing TIFF marker.');
28848             return;
28849         }
28850         // Retrieve the directory offset bytes, usually 0x00000008 or 8 decimal:
28851         dirOffset = dataView.getUint32(tiffOffset + 4, littleEndian);
28852         
28853         this.parseExifTags(
28854             dataView,
28855             tiffOffset,
28856             tiffOffset + dirOffset,
28857             littleEndian
28858         );
28859     },
28860     
28861     parseExifTags : function(dataView, tiffOffset, dirOffset, littleEndian)
28862     {
28863         var tagsNumber,
28864             dirEndOffset,
28865             i;
28866         if (dirOffset + 6 > dataView.byteLength) {
28867             Roo.log('Invalid Exif data: Invalid directory offset.');
28868             return;
28869         }
28870         tagsNumber = dataView.getUint16(dirOffset, littleEndian);
28871         dirEndOffset = dirOffset + 2 + 12 * tagsNumber;
28872         if (dirEndOffset + 4 > dataView.byteLength) {
28873             Roo.log('Invalid Exif data: Invalid directory size.');
28874             return;
28875         }
28876         for (i = 0; i < tagsNumber; i += 1) {
28877             this.parseExifTag(
28878                 dataView,
28879                 tiffOffset,
28880                 dirOffset + 2 + 12 * i, // tag offset
28881                 littleEndian
28882             );
28883         }
28884         // Return the offset to the next directory:
28885         return dataView.getUint32(dirEndOffset, littleEndian);
28886     },
28887     
28888     parseExifTag : function (dataView, tiffOffset, offset, littleEndian) 
28889     {
28890         var tag = dataView.getUint16(offset, littleEndian);
28891         
28892         this.exif[tag] = this.getExifValue(
28893             dataView,
28894             tiffOffset,
28895             offset,
28896             dataView.getUint16(offset + 2, littleEndian), // tag type
28897             dataView.getUint32(offset + 4, littleEndian), // tag length
28898             littleEndian
28899         );
28900     },
28901     
28902     getExifValue : function (dataView, tiffOffset, offset, type, length, littleEndian)
28903     {
28904         var tagType = Roo.bootstrap.UploadCropbox.exifTagTypes[type],
28905             tagSize,
28906             dataOffset,
28907             values,
28908             i,
28909             str,
28910             c;
28911     
28912         if (!tagType) {
28913             Roo.log('Invalid Exif data: Invalid tag type.');
28914             return;
28915         }
28916         
28917         tagSize = tagType.size * length;
28918         // Determine if the value is contained in the dataOffset bytes,
28919         // or if the value at the dataOffset is a pointer to the actual data:
28920         dataOffset = tagSize > 4 ?
28921                 tiffOffset + dataView.getUint32(offset + 8, littleEndian) : (offset + 8);
28922         if (dataOffset + tagSize > dataView.byteLength) {
28923             Roo.log('Invalid Exif data: Invalid data offset.');
28924             return;
28925         }
28926         if (length === 1) {
28927             return tagType.getValue(dataView, dataOffset, littleEndian);
28928         }
28929         values = [];
28930         for (i = 0; i < length; i += 1) {
28931             values[i] = tagType.getValue(dataView, dataOffset + i * tagType.size, littleEndian);
28932         }
28933         
28934         if (tagType.ascii) {
28935             str = '';
28936             // Concatenate the chars:
28937             for (i = 0; i < values.length; i += 1) {
28938                 c = values[i];
28939                 // Ignore the terminating NULL byte(s):
28940                 if (c === '\u0000') {
28941                     break;
28942                 }
28943                 str += c;
28944             }
28945             return str;
28946         }
28947         return values;
28948     }
28949     
28950 });
28951
28952 Roo.apply(Roo.bootstrap.UploadCropbox, {
28953     tags : {
28954         'Orientation': 0x0112
28955     },
28956     
28957     Orientation: {
28958             1: 0, //'top-left',
28959 //            2: 'top-right',
28960             3: 180, //'bottom-right',
28961 //            4: 'bottom-left',
28962 //            5: 'left-top',
28963             6: 90, //'right-top',
28964 //            7: 'right-bottom',
28965             8: 270 //'left-bottom'
28966     },
28967     
28968     exifTagTypes : {
28969         // byte, 8-bit unsigned int:
28970         1: {
28971             getValue: function (dataView, dataOffset) {
28972                 return dataView.getUint8(dataOffset);
28973             },
28974             size: 1
28975         },
28976         // ascii, 8-bit byte:
28977         2: {
28978             getValue: function (dataView, dataOffset) {
28979                 return String.fromCharCode(dataView.getUint8(dataOffset));
28980             },
28981             size: 1,
28982             ascii: true
28983         },
28984         // short, 16 bit int:
28985         3: {
28986             getValue: function (dataView, dataOffset, littleEndian) {
28987                 return dataView.getUint16(dataOffset, littleEndian);
28988             },
28989             size: 2
28990         },
28991         // long, 32 bit int:
28992         4: {
28993             getValue: function (dataView, dataOffset, littleEndian) {
28994                 return dataView.getUint32(dataOffset, littleEndian);
28995             },
28996             size: 4
28997         },
28998         // rational = two long values, first is numerator, second is denominator:
28999         5: {
29000             getValue: function (dataView, dataOffset, littleEndian) {
29001                 return dataView.getUint32(dataOffset, littleEndian) /
29002                     dataView.getUint32(dataOffset + 4, littleEndian);
29003             },
29004             size: 8
29005         },
29006         // slong, 32 bit signed int:
29007         9: {
29008             getValue: function (dataView, dataOffset, littleEndian) {
29009                 return dataView.getInt32(dataOffset, littleEndian);
29010             },
29011             size: 4
29012         },
29013         // srational, two slongs, first is numerator, second is denominator:
29014         10: {
29015             getValue: function (dataView, dataOffset, littleEndian) {
29016                 return dataView.getInt32(dataOffset, littleEndian) /
29017                     dataView.getInt32(dataOffset + 4, littleEndian);
29018             },
29019             size: 8
29020         }
29021     },
29022     
29023     footer : {
29024         STANDARD : [
29025             {
29026                 tag : 'div',
29027                 cls : 'btn-group roo-upload-cropbox-rotate-left',
29028                 action : 'rotate-left',
29029                 cn : [
29030                     {
29031                         tag : 'button',
29032                         cls : 'btn btn-default',
29033                         html : '<i class="fa fa-undo"></i>'
29034                     }
29035                 ]
29036             },
29037             {
29038                 tag : 'div',
29039                 cls : 'btn-group roo-upload-cropbox-picture',
29040                 action : 'picture',
29041                 cn : [
29042                     {
29043                         tag : 'button',
29044                         cls : 'btn btn-default',
29045                         html : '<i class="fa fa-picture-o"></i>'
29046                     }
29047                 ]
29048             },
29049             {
29050                 tag : 'div',
29051                 cls : 'btn-group roo-upload-cropbox-rotate-right',
29052                 action : 'rotate-right',
29053                 cn : [
29054                     {
29055                         tag : 'button',
29056                         cls : 'btn btn-default',
29057                         html : '<i class="fa fa-repeat"></i>'
29058                     }
29059                 ]
29060             }
29061         ],
29062         DOCUMENT : [
29063             {
29064                 tag : 'div',
29065                 cls : 'btn-group roo-upload-cropbox-rotate-left',
29066                 action : 'rotate-left',
29067                 cn : [
29068                     {
29069                         tag : 'button',
29070                         cls : 'btn btn-default',
29071                         html : '<i class="fa fa-undo"></i>'
29072                     }
29073                 ]
29074             },
29075             {
29076                 tag : 'div',
29077                 cls : 'btn-group roo-upload-cropbox-download',
29078                 action : 'download',
29079                 cn : [
29080                     {
29081                         tag : 'button',
29082                         cls : 'btn btn-default',
29083                         html : '<i class="fa fa-download"></i>'
29084                     }
29085                 ]
29086             },
29087             {
29088                 tag : 'div',
29089                 cls : 'btn-group roo-upload-cropbox-crop',
29090                 action : 'crop',
29091                 cn : [
29092                     {
29093                         tag : 'button',
29094                         cls : 'btn btn-default',
29095                         html : '<i class="fa fa-crop"></i>'
29096                     }
29097                 ]
29098             },
29099             {
29100                 tag : 'div',
29101                 cls : 'btn-group roo-upload-cropbox-trash',
29102                 action : 'trash',
29103                 cn : [
29104                     {
29105                         tag : 'button',
29106                         cls : 'btn btn-default',
29107                         html : '<i class="fa fa-trash"></i>'
29108                     }
29109                 ]
29110             },
29111             {
29112                 tag : 'div',
29113                 cls : 'btn-group roo-upload-cropbox-rotate-right',
29114                 action : 'rotate-right',
29115                 cn : [
29116                     {
29117                         tag : 'button',
29118                         cls : 'btn btn-default',
29119                         html : '<i class="fa fa-repeat"></i>'
29120                     }
29121                 ]
29122             }
29123         ],
29124         ROTATOR : [
29125             {
29126                 tag : 'div',
29127                 cls : 'btn-group roo-upload-cropbox-rotate-left',
29128                 action : 'rotate-left',
29129                 cn : [
29130                     {
29131                         tag : 'button',
29132                         cls : 'btn btn-default',
29133                         html : '<i class="fa fa-undo"></i>'
29134                     }
29135                 ]
29136             },
29137             {
29138                 tag : 'div',
29139                 cls : 'btn-group roo-upload-cropbox-rotate-right',
29140                 action : 'rotate-right',
29141                 cn : [
29142                     {
29143                         tag : 'button',
29144                         cls : 'btn btn-default',
29145                         html : '<i class="fa fa-repeat"></i>'
29146                     }
29147                 ]
29148             }
29149         ]
29150     }
29151 });
29152
29153 /*
29154 * Licence: LGPL
29155 */
29156
29157 /**
29158  * @class Roo.bootstrap.DocumentManager
29159  * @extends Roo.bootstrap.Component
29160  * Bootstrap DocumentManager class
29161  * @cfg {String} paramName default 'imageUpload'
29162  * @cfg {String} toolTipName default 'filename'
29163  * @cfg {String} method default POST
29164  * @cfg {String} url action url
29165  * @cfg {Number} boxes number of boxes, 0 is no limit.. default 0
29166  * @cfg {Boolean} multiple multiple upload default true
29167  * @cfg {Number} thumbSize default 300
29168  * @cfg {String} fieldLabel
29169  * @cfg {Number} labelWidth default 4
29170  * @cfg {String} labelAlign (left|top) default left
29171  * @cfg {Boolean} editable (true|false) allow edit when upload a image default true
29172 * @cfg {Number} labellg set the width of label (1-12)
29173  * @cfg {Number} labelmd set the width of label (1-12)
29174  * @cfg {Number} labelsm set the width of label (1-12)
29175  * @cfg {Number} labelxs set the width of label (1-12)
29176  * 
29177  * @constructor
29178  * Create a new DocumentManager
29179  * @param {Object} config The config object
29180  */
29181
29182 Roo.bootstrap.DocumentManager = function(config){
29183     Roo.bootstrap.DocumentManager.superclass.constructor.call(this, config);
29184     
29185     this.files = [];
29186     this.delegates = [];
29187     
29188     this.addEvents({
29189         /**
29190          * @event initial
29191          * Fire when initial the DocumentManager
29192          * @param {Roo.bootstrap.DocumentManager} this
29193          */
29194         "initial" : true,
29195         /**
29196          * @event inspect
29197          * inspect selected file
29198          * @param {Roo.bootstrap.DocumentManager} this
29199          * @param {File} file
29200          */
29201         "inspect" : true,
29202         /**
29203          * @event exception
29204          * Fire when xhr load exception
29205          * @param {Roo.bootstrap.DocumentManager} this
29206          * @param {XMLHttpRequest} xhr
29207          */
29208         "exception" : true,
29209         /**
29210          * @event afterupload
29211          * Fire when xhr load exception
29212          * @param {Roo.bootstrap.DocumentManager} this
29213          * @param {XMLHttpRequest} xhr
29214          */
29215         "afterupload" : true,
29216         /**
29217          * @event prepare
29218          * prepare the form data
29219          * @param {Roo.bootstrap.DocumentManager} this
29220          * @param {Object} formData
29221          */
29222         "prepare" : true,
29223         /**
29224          * @event remove
29225          * Fire when remove the file
29226          * @param {Roo.bootstrap.DocumentManager} this
29227          * @param {Object} file
29228          */
29229         "remove" : true,
29230         /**
29231          * @event refresh
29232          * Fire after refresh the file
29233          * @param {Roo.bootstrap.DocumentManager} this
29234          */
29235         "refresh" : true,
29236         /**
29237          * @event click
29238          * Fire after click the image
29239          * @param {Roo.bootstrap.DocumentManager} this
29240          * @param {Object} file
29241          */
29242         "click" : true,
29243         /**
29244          * @event edit
29245          * Fire when upload a image and editable set to true
29246          * @param {Roo.bootstrap.DocumentManager} this
29247          * @param {Object} file
29248          */
29249         "edit" : true,
29250         /**
29251          * @event beforeselectfile
29252          * Fire before select file
29253          * @param {Roo.bootstrap.DocumentManager} this
29254          */
29255         "beforeselectfile" : true,
29256         /**
29257          * @event process
29258          * Fire before process file
29259          * @param {Roo.bootstrap.DocumentManager} this
29260          * @param {Object} file
29261          */
29262         "process" : true,
29263         /**
29264          * @event previewrendered
29265          * Fire when preview rendered
29266          * @param {Roo.bootstrap.DocumentManager} this
29267          * @param {Object} file
29268          */
29269         "previewrendered" : true,
29270         /**
29271          */
29272         "previewResize" : true
29273         
29274     });
29275 };
29276
29277 Roo.extend(Roo.bootstrap.DocumentManager, Roo.bootstrap.Component,  {
29278     
29279     boxes : 0,
29280     inputName : '',
29281     thumbSize : 300,
29282     multiple : true,
29283     files : false,
29284     method : 'POST',
29285     url : '',
29286     paramName : 'imageUpload',
29287     toolTipName : 'filename',
29288     fieldLabel : '',
29289     labelWidth : 4,
29290     labelAlign : 'left',
29291     editable : true,
29292     delegates : false,
29293     xhr : false, 
29294     
29295     labellg : 0,
29296     labelmd : 0,
29297     labelsm : 0,
29298     labelxs : 0,
29299     
29300     getAutoCreate : function()
29301     {   
29302         var managerWidget = {
29303             tag : 'div',
29304             cls : 'roo-document-manager',
29305             cn : [
29306                 {
29307                     tag : 'input',
29308                     cls : 'roo-document-manager-selector',
29309                     type : 'file'
29310                 },
29311                 {
29312                     tag : 'div',
29313                     cls : 'roo-document-manager-uploader',
29314                     cn : [
29315                         {
29316                             tag : 'div',
29317                             cls : 'roo-document-manager-upload-btn',
29318                             html : '<i class="fa fa-plus"></i>'
29319                         }
29320                     ]
29321                     
29322                 }
29323             ]
29324         };
29325         
29326         var content = [
29327             {
29328                 tag : 'div',
29329                 cls : 'column col-md-12',
29330                 cn : managerWidget
29331             }
29332         ];
29333         
29334         if(this.fieldLabel.length){
29335             
29336             content = [
29337                 {
29338                     tag : 'div',
29339                     cls : 'column col-md-12',
29340                     html : this.fieldLabel
29341                 },
29342                 {
29343                     tag : 'div',
29344                     cls : 'column col-md-12',
29345                     cn : managerWidget
29346                 }
29347             ];
29348
29349             if(this.labelAlign == 'left'){
29350                 content = [
29351                     {
29352                         tag : 'div',
29353                         cls : 'column',
29354                         html : this.fieldLabel
29355                     },
29356                     {
29357                         tag : 'div',
29358                         cls : 'column',
29359                         cn : managerWidget
29360                     }
29361                 ];
29362                 
29363                 if(this.labelWidth > 12){
29364                     content[0].style = "width: " + this.labelWidth + 'px';
29365                 }
29366
29367                 if(this.labelWidth < 13 && this.labelmd == 0){
29368                     this.labelmd = this.labelWidth;
29369                 }
29370
29371                 if(this.labellg > 0){
29372                     content[0].cls += ' col-lg-' + this.labellg;
29373                     content[1].cls += ' col-lg-' + (12 - this.labellg);
29374                 }
29375
29376                 if(this.labelmd > 0){
29377                     content[0].cls += ' col-md-' + this.labelmd;
29378                     content[1].cls += ' col-md-' + (12 - this.labelmd);
29379                 }
29380
29381                 if(this.labelsm > 0){
29382                     content[0].cls += ' col-sm-' + this.labelsm;
29383                     content[1].cls += ' col-sm-' + (12 - this.labelsm);
29384                 }
29385
29386                 if(this.labelxs > 0){
29387                     content[0].cls += ' col-xs-' + this.labelxs;
29388                     content[1].cls += ' col-xs-' + (12 - this.labelxs);
29389                 }
29390                 
29391             }
29392         }
29393         
29394         var cfg = {
29395             tag : 'div',
29396             cls : 'row clearfix',
29397             cn : content
29398         };
29399         
29400         return cfg;
29401         
29402     },
29403     
29404     initEvents : function()
29405     {
29406         this.managerEl = this.el.select('.roo-document-manager', true).first();
29407         this.managerEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
29408         
29409         this.selectorEl = this.el.select('.roo-document-manager-selector', true).first();
29410         this.selectorEl.hide();
29411         
29412         if(this.multiple){
29413             this.selectorEl.attr('multiple', 'multiple');
29414         }
29415         
29416         this.selectorEl.on('change', this.onFileSelected, this);
29417         
29418         this.uploader = this.el.select('.roo-document-manager-uploader', true).first();
29419         this.uploader.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
29420         
29421         this.uploader.on('click', this.onUploaderClick, this);
29422         
29423         this.renderProgressDialog();
29424         
29425         var _this = this;
29426         
29427         window.addEventListener("resize", function() { _this.refresh(); } );
29428         
29429         this.fireEvent('initial', this);
29430     },
29431     
29432     renderProgressDialog : function()
29433     {
29434         var _this = this;
29435         
29436         this.progressDialog = new Roo.bootstrap.Modal({
29437             cls : 'roo-document-manager-progress-dialog',
29438             allow_close : false,
29439             animate : false,
29440             title : '',
29441             buttons : [
29442                 {
29443                     name  :'cancel',
29444                     weight : 'danger',
29445                     html : 'Cancel'
29446                 }
29447             ], 
29448             listeners : { 
29449                 btnclick : function() {
29450                     _this.uploadCancel();
29451                     this.hide();
29452                 }
29453             }
29454         });
29455          
29456         this.progressDialog.render(Roo.get(document.body));
29457          
29458         this.progress = new Roo.bootstrap.Progress({
29459             cls : 'roo-document-manager-progress',
29460             active : true,
29461             striped : true
29462         });
29463         
29464         this.progress.render(this.progressDialog.getChildContainer());
29465         
29466         this.progressBar = new Roo.bootstrap.ProgressBar({
29467             cls : 'roo-document-manager-progress-bar',
29468             aria_valuenow : 0,
29469             aria_valuemin : 0,
29470             aria_valuemax : 12,
29471             panel : 'success'
29472         });
29473         
29474         this.progressBar.render(this.progress.getChildContainer());
29475     },
29476     
29477     onUploaderClick : function(e)
29478     {
29479         e.preventDefault();
29480      
29481         if(this.fireEvent('beforeselectfile', this) != false){
29482             this.selectorEl.dom.click();
29483         }
29484         
29485     },
29486     
29487     onFileSelected : function(e)
29488     {
29489         e.preventDefault();
29490         
29491         if(typeof(this.selectorEl.dom.files) == 'undefined' || !this.selectorEl.dom.files.length){
29492             return;
29493         }
29494         
29495         Roo.each(this.selectorEl.dom.files, function(file){
29496             if(this.fireEvent('inspect', this, file) != false){
29497                 this.files.push(file);
29498             }
29499         }, this);
29500         
29501         this.queue();
29502         
29503     },
29504     
29505     queue : function()
29506     {
29507         this.selectorEl.dom.value = '';
29508         
29509         if(!this.files || !this.files.length){
29510             return;
29511         }
29512         
29513         if(this.boxes > 0 && this.files.length > this.boxes){
29514             this.files = this.files.slice(0, this.boxes);
29515         }
29516         
29517         this.uploader.show();
29518         
29519         if(this.boxes > 0 && this.files.length > this.boxes - 1){
29520             this.uploader.hide();
29521         }
29522         
29523         var _this = this;
29524         
29525         var files = [];
29526         
29527         var docs = [];
29528         
29529         Roo.each(this.files, function(file){
29530             
29531             if(typeof(file.id) != 'undefined' && file.id * 1 > 0){
29532                 var f = this.renderPreview(file);
29533                 files.push(f);
29534                 return;
29535             }
29536             
29537             if(file.type.indexOf('image') != -1){
29538                 this.delegates.push(
29539                     (function(){
29540                         _this.process(file);
29541                     }).createDelegate(this)
29542                 );
29543         
29544                 return;
29545             }
29546             
29547             docs.push(
29548                 (function(){
29549                     _this.process(file);
29550                 }).createDelegate(this)
29551             );
29552             
29553         }, this);
29554         
29555         this.files = files;
29556         
29557         this.delegates = this.delegates.concat(docs);
29558         
29559         if(!this.delegates.length){
29560             this.refresh();
29561             return;
29562         }
29563         
29564         this.progressBar.aria_valuemax = this.delegates.length;
29565         
29566         this.arrange();
29567         
29568         return;
29569     },
29570     
29571     arrange : function()
29572     {
29573         if(!this.delegates.length){
29574             this.progressDialog.hide();
29575             this.refresh();
29576             return;
29577         }
29578         
29579         var delegate = this.delegates.shift();
29580         
29581         this.progressDialog.show();
29582         
29583         this.progressDialog.setTitle((this.progressBar.aria_valuemax - this.delegates.length) + ' / ' + this.progressBar.aria_valuemax);
29584         
29585         this.progressBar.update(this.progressBar.aria_valuemax - this.delegates.length);
29586         
29587         delegate();
29588     },
29589     
29590     refresh : function()
29591     {
29592         this.uploader.show();
29593         
29594         if(this.boxes > 0 && this.files.length > this.boxes - 1){
29595             this.uploader.hide();
29596         }
29597         
29598         Roo.isTouch ? this.closable(false) : this.closable(true);
29599         
29600         this.fireEvent('refresh', this);
29601     },
29602     
29603     onRemove : function(e, el, o)
29604     {
29605         e.preventDefault();
29606         
29607         this.fireEvent('remove', this, o);
29608         
29609     },
29610     
29611     remove : function(o)
29612     {
29613         var files = [];
29614         
29615         Roo.each(this.files, function(file){
29616             if(typeof(file.id) == 'undefined' || file.id * 1 < 1 || file.id != o.id){
29617                 files.push(file);
29618                 return;
29619             }
29620
29621             o.target.remove();
29622
29623         }, this);
29624         
29625         this.files = files;
29626         
29627         this.refresh();
29628     },
29629     
29630     clear : function()
29631     {
29632         Roo.each(this.files, function(file){
29633             if(!file.target){
29634                 return;
29635             }
29636             
29637             file.target.remove();
29638
29639         }, this);
29640         
29641         this.files = [];
29642         
29643         this.refresh();
29644     },
29645     
29646     onClick : function(e, el, o)
29647     {
29648         e.preventDefault();
29649         
29650         this.fireEvent('click', this, o);
29651         
29652     },
29653     
29654     closable : function(closable)
29655     {
29656         Roo.each(this.managerEl.select('.roo-document-manager-preview > button.close', true).elements, function(el){
29657             
29658             el.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
29659             
29660             if(closable){
29661                 el.show();
29662                 return;
29663             }
29664             
29665             el.hide();
29666             
29667         }, this);
29668     },
29669     
29670     xhrOnLoad : function(xhr)
29671     {
29672         Roo.each(this.managerEl.select('.roo-document-manager-loading', true).elements, function(el){
29673             el.remove();
29674         }, this);
29675         
29676         if (xhr.readyState !== 4) {
29677             this.arrange();
29678             this.fireEvent('exception', this, xhr);
29679             return;
29680         }
29681
29682         var response = Roo.decode(xhr.responseText);
29683         
29684         if(!response.success){
29685             this.arrange();
29686             this.fireEvent('exception', this, xhr);
29687             return;
29688         }
29689         
29690         var file = this.renderPreview(response.data);
29691         
29692         this.files.push(file);
29693         
29694         this.arrange();
29695         
29696         this.fireEvent('afterupload', this, xhr);
29697         
29698     },
29699     
29700     xhrOnError : function(xhr)
29701     {
29702         Roo.log('xhr on error');
29703         
29704         var response = Roo.decode(xhr.responseText);
29705           
29706         Roo.log(response);
29707         
29708         this.arrange();
29709     },
29710     
29711     process : function(file)
29712     {
29713         if(this.fireEvent('process', this, file) !== false){
29714             if(this.editable && file.type.indexOf('image') != -1){
29715                 this.fireEvent('edit', this, file);
29716                 return;
29717             }
29718
29719             this.uploadStart(file, false);
29720
29721             return;
29722         }
29723         
29724     },
29725     
29726     uploadStart : function(file, crop)
29727     {
29728         this.xhr = new XMLHttpRequest();
29729         
29730         if(typeof(file.id) != 'undefined' && file.id * 1 > 0){
29731             this.arrange();
29732             return;
29733         }
29734         
29735         file.xhr = this.xhr;
29736             
29737         this.managerEl.createChild({
29738             tag : 'div',
29739             cls : 'roo-document-manager-loading',
29740             cn : [
29741                 {
29742                     tag : 'div',
29743                     tooltip : file.name,
29744                     cls : 'roo-document-manager-thumb',
29745                     html : '<i class="fa fa-circle-o-notch fa-spin"></i>'
29746                 }
29747             ]
29748
29749         });
29750
29751         this.xhr.open(this.method, this.url, true);
29752         
29753         var headers = {
29754             "Accept": "application/json",
29755             "Cache-Control": "no-cache",
29756             "X-Requested-With": "XMLHttpRequest"
29757         };
29758         
29759         for (var headerName in headers) {
29760             var headerValue = headers[headerName];
29761             if (headerValue) {
29762                 this.xhr.setRequestHeader(headerName, headerValue);
29763             }
29764         }
29765         
29766         var _this = this;
29767         
29768         this.xhr.onload = function()
29769         {
29770             _this.xhrOnLoad(_this.xhr);
29771         }
29772         
29773         this.xhr.onerror = function()
29774         {
29775             _this.xhrOnError(_this.xhr);
29776         }
29777         
29778         var formData = new FormData();
29779
29780         formData.append('returnHTML', 'NO');
29781         
29782         if(crop){
29783             formData.append('crop', crop);
29784         }
29785         
29786         formData.append(this.paramName, file, file.name);
29787         
29788         var options = {
29789             file : file, 
29790             manually : false
29791         };
29792         
29793         if(this.fireEvent('prepare', this, formData, options) != false){
29794             
29795             if(options.manually){
29796                 return;
29797             }
29798             
29799             this.xhr.send(formData);
29800             return;
29801         };
29802         
29803         this.uploadCancel();
29804     },
29805     
29806     uploadCancel : function()
29807     {
29808         if (this.xhr) {
29809             this.xhr.abort();
29810         }
29811         
29812         this.delegates = [];
29813         
29814         Roo.each(this.managerEl.select('.roo-document-manager-loading', true).elements, function(el){
29815             el.remove();
29816         }, this);
29817         
29818         this.arrange();
29819     },
29820     
29821     renderPreview : function(file)
29822     {
29823         if(typeof(file.target) != 'undefined' && file.target){
29824             return file;
29825         }
29826         
29827         var img_src = encodeURI(baseURL +'/Images/Thumb/' + this.thumbSize + '/' + file.id + '/' + file.filename);
29828         
29829         var previewEl = this.managerEl.createChild({
29830             tag : 'div',
29831             cls : 'roo-document-manager-preview',
29832             cn : [
29833                 {
29834                     tag : 'div',
29835                     tooltip : file[this.toolTipName],
29836                     cls : 'roo-document-manager-thumb',
29837                     html : '<img tooltip="' + file[this.toolTipName] + '" src="' + img_src + '">'
29838                 },
29839                 {
29840                     tag : 'button',
29841                     cls : 'close',
29842                     html : '<i class="fa fa-times-circle"></i>'
29843                 }
29844             ]
29845         });
29846
29847         var close = previewEl.select('button.close', true).first();
29848
29849         close.on('click', this.onRemove, this, file);
29850
29851         file.target = previewEl;
29852
29853         var image = previewEl.select('img', true).first();
29854         
29855         var _this = this;
29856         
29857         image.dom.addEventListener("load", function(){ _this.onPreviewLoad(file, image); });
29858         
29859         image.on('click', this.onClick, this, file);
29860         
29861         this.fireEvent('previewrendered', this, file);
29862         
29863         return file;
29864         
29865     },
29866     
29867     onPreviewLoad : function(file, image)
29868     {
29869         if(typeof(file.target) == 'undefined' || !file.target){
29870             return;
29871         }
29872         
29873         var width = image.dom.naturalWidth || image.dom.width;
29874         var height = image.dom.naturalHeight || image.dom.height;
29875         
29876         if(!this.previewResize) {
29877             return;
29878         }
29879         
29880         if(width > height){
29881             file.target.addClass('wide');
29882             return;
29883         }
29884         
29885         file.target.addClass('tall');
29886         return;
29887         
29888     },
29889     
29890     uploadFromSource : function(file, crop)
29891     {
29892         this.xhr = new XMLHttpRequest();
29893         
29894         this.managerEl.createChild({
29895             tag : 'div',
29896             cls : 'roo-document-manager-loading',
29897             cn : [
29898                 {
29899                     tag : 'div',
29900                     tooltip : file.name,
29901                     cls : 'roo-document-manager-thumb',
29902                     html : '<i class="fa fa-circle-o-notch fa-spin"></i>'
29903                 }
29904             ]
29905
29906         });
29907
29908         this.xhr.open(this.method, this.url, true);
29909         
29910         var headers = {
29911             "Accept": "application/json",
29912             "Cache-Control": "no-cache",
29913             "X-Requested-With": "XMLHttpRequest"
29914         };
29915         
29916         for (var headerName in headers) {
29917             var headerValue = headers[headerName];
29918             if (headerValue) {
29919                 this.xhr.setRequestHeader(headerName, headerValue);
29920             }
29921         }
29922         
29923         var _this = this;
29924         
29925         this.xhr.onload = function()
29926         {
29927             _this.xhrOnLoad(_this.xhr);
29928         }
29929         
29930         this.xhr.onerror = function()
29931         {
29932             _this.xhrOnError(_this.xhr);
29933         }
29934         
29935         var formData = new FormData();
29936
29937         formData.append('returnHTML', 'NO');
29938         
29939         formData.append('crop', crop);
29940         
29941         if(typeof(file.filename) != 'undefined'){
29942             formData.append('filename', file.filename);
29943         }
29944         
29945         if(typeof(file.mimetype) != 'undefined'){
29946             formData.append('mimetype', file.mimetype);
29947         }
29948         
29949         Roo.log(formData);
29950         
29951         if(this.fireEvent('prepare', this, formData) != false){
29952             this.xhr.send(formData);
29953         };
29954     }
29955 });
29956
29957 /*
29958 * Licence: LGPL
29959 */
29960
29961 /**
29962  * @class Roo.bootstrap.DocumentViewer
29963  * @extends Roo.bootstrap.Component
29964  * Bootstrap DocumentViewer class
29965  * @cfg {Boolean} showDownload (true|false) show download button (default true)
29966  * @cfg {Boolean} showTrash (true|false) show trash button (default true)
29967  * 
29968  * @constructor
29969  * Create a new DocumentViewer
29970  * @param {Object} config The config object
29971  */
29972
29973 Roo.bootstrap.DocumentViewer = function(config){
29974     Roo.bootstrap.DocumentViewer.superclass.constructor.call(this, config);
29975     
29976     this.addEvents({
29977         /**
29978          * @event initial
29979          * Fire after initEvent
29980          * @param {Roo.bootstrap.DocumentViewer} this
29981          */
29982         "initial" : true,
29983         /**
29984          * @event click
29985          * Fire after click
29986          * @param {Roo.bootstrap.DocumentViewer} this
29987          */
29988         "click" : true,
29989         /**
29990          * @event download
29991          * Fire after download button
29992          * @param {Roo.bootstrap.DocumentViewer} this
29993          */
29994         "download" : true,
29995         /**
29996          * @event trash
29997          * Fire after trash button
29998          * @param {Roo.bootstrap.DocumentViewer} this
29999          */
30000         "trash" : true
30001         
30002     });
30003 };
30004
30005 Roo.extend(Roo.bootstrap.DocumentViewer, Roo.bootstrap.Component,  {
30006     
30007     showDownload : true,
30008     
30009     showTrash : true,
30010     
30011     getAutoCreate : function()
30012     {
30013         var cfg = {
30014             tag : 'div',
30015             cls : 'roo-document-viewer',
30016             cn : [
30017                 {
30018                     tag : 'div',
30019                     cls : 'roo-document-viewer-body',
30020                     cn : [
30021                         {
30022                             tag : 'div',
30023                             cls : 'roo-document-viewer-thumb',
30024                             cn : [
30025                                 {
30026                                     tag : 'img',
30027                                     cls : 'roo-document-viewer-image'
30028                                 }
30029                             ]
30030                         }
30031                     ]
30032                 },
30033                 {
30034                     tag : 'div',
30035                     cls : 'roo-document-viewer-footer',
30036                     cn : {
30037                         tag : 'div',
30038                         cls : 'btn-group btn-group-justified roo-document-viewer-btn-group',
30039                         cn : [
30040                             {
30041                                 tag : 'div',
30042                                 cls : 'btn-group roo-document-viewer-download',
30043                                 cn : [
30044                                     {
30045                                         tag : 'button',
30046                                         cls : 'btn btn-default',
30047                                         html : '<i class="fa fa-download"></i>'
30048                                     }
30049                                 ]
30050                             },
30051                             {
30052                                 tag : 'div',
30053                                 cls : 'btn-group roo-document-viewer-trash',
30054                                 cn : [
30055                                     {
30056                                         tag : 'button',
30057                                         cls : 'btn btn-default',
30058                                         html : '<i class="fa fa-trash"></i>'
30059                                     }
30060                                 ]
30061                             }
30062                         ]
30063                     }
30064                 }
30065             ]
30066         };
30067         
30068         return cfg;
30069     },
30070     
30071     initEvents : function()
30072     {
30073         this.bodyEl = this.el.select('.roo-document-viewer-body', true).first();
30074         this.bodyEl.setVisibilityMode(Roo.Element.DISPLAY);
30075         
30076         this.thumbEl = this.el.select('.roo-document-viewer-thumb', true).first();
30077         this.thumbEl.setVisibilityMode(Roo.Element.DISPLAY);
30078         
30079         this.imageEl = this.el.select('.roo-document-viewer-image', true).first();
30080         this.imageEl.setVisibilityMode(Roo.Element.DISPLAY);
30081         
30082         this.footerEl = this.el.select('.roo-document-viewer-footer', true).first();
30083         this.footerEl.setVisibilityMode(Roo.Element.DISPLAY);
30084         
30085         this.downloadBtn = this.el.select('.roo-document-viewer-download', true).first();
30086         this.downloadBtn.setVisibilityMode(Roo.Element.DISPLAY);
30087         
30088         this.trashBtn = this.el.select('.roo-document-viewer-trash', true).first();
30089         this.trashBtn.setVisibilityMode(Roo.Element.DISPLAY);
30090         
30091         this.bodyEl.on('click', this.onClick, this);
30092         this.downloadBtn.on('click', this.onDownload, this);
30093         this.trashBtn.on('click', this.onTrash, this);
30094         
30095         this.downloadBtn.hide();
30096         this.trashBtn.hide();
30097         
30098         if(this.showDownload){
30099             this.downloadBtn.show();
30100         }
30101         
30102         if(this.showTrash){
30103             this.trashBtn.show();
30104         }
30105         
30106         if(!this.showDownload && !this.showTrash) {
30107             this.footerEl.hide();
30108         }
30109         
30110     },
30111     
30112     initial : function()
30113     {
30114         this.fireEvent('initial', this);
30115         
30116     },
30117     
30118     onClick : function(e)
30119     {
30120         e.preventDefault();
30121         
30122         this.fireEvent('click', this);
30123     },
30124     
30125     onDownload : function(e)
30126     {
30127         e.preventDefault();
30128         
30129         this.fireEvent('download', this);
30130     },
30131     
30132     onTrash : function(e)
30133     {
30134         e.preventDefault();
30135         
30136         this.fireEvent('trash', this);
30137     }
30138     
30139 });
30140 /*
30141  * - LGPL
30142  *
30143  * nav progress bar
30144  * 
30145  */
30146
30147 /**
30148  * @class Roo.bootstrap.NavProgressBar
30149  * @extends Roo.bootstrap.Component
30150  * Bootstrap NavProgressBar class
30151  * 
30152  * @constructor
30153  * Create a new nav progress bar
30154  * @param {Object} config The config object
30155  */
30156
30157 Roo.bootstrap.NavProgressBar = function(config){
30158     Roo.bootstrap.NavProgressBar.superclass.constructor.call(this, config);
30159
30160     this.bullets = this.bullets || [];
30161    
30162 //    Roo.bootstrap.NavProgressBar.register(this);
30163      this.addEvents({
30164         /**
30165              * @event changed
30166              * Fires when the active item changes
30167              * @param {Roo.bootstrap.NavProgressBar} this
30168              * @param {Roo.bootstrap.NavProgressItem} selected The item selected
30169              * @param {Roo.bootstrap.NavProgressItem} prev The previously selected item 
30170          */
30171         'changed': true
30172      });
30173     
30174 };
30175
30176 Roo.extend(Roo.bootstrap.NavProgressBar, Roo.bootstrap.Component,  {
30177     
30178     bullets : [],
30179     barItems : [],
30180     
30181     getAutoCreate : function()
30182     {
30183         var cfg = Roo.apply({}, Roo.bootstrap.NavProgressBar.superclass.getAutoCreate.call(this));
30184         
30185         cfg = {
30186             tag : 'div',
30187             cls : 'roo-navigation-bar-group',
30188             cn : [
30189                 {
30190                     tag : 'div',
30191                     cls : 'roo-navigation-top-bar'
30192                 },
30193                 {
30194                     tag : 'div',
30195                     cls : 'roo-navigation-bullets-bar',
30196                     cn : [
30197                         {
30198                             tag : 'ul',
30199                             cls : 'roo-navigation-bar'
30200                         }
30201                     ]
30202                 },
30203                 
30204                 {
30205                     tag : 'div',
30206                     cls : 'roo-navigation-bottom-bar'
30207                 }
30208             ]
30209             
30210         };
30211         
30212         return cfg;
30213         
30214     },
30215     
30216     initEvents: function() 
30217     {
30218         
30219     },
30220     
30221     onRender : function(ct, position) 
30222     {
30223         Roo.bootstrap.NavProgressBar.superclass.onRender.call(this, ct, position);
30224         
30225         if(this.bullets.length){
30226             Roo.each(this.bullets, function(b){
30227                this.addItem(b);
30228             }, this);
30229         }
30230         
30231         this.format();
30232         
30233     },
30234     
30235     addItem : function(cfg)
30236     {
30237         var item = new Roo.bootstrap.NavProgressItem(cfg);
30238         
30239         item.parentId = this.id;
30240         item.render(this.el.select('.roo-navigation-bar', true).first(), null);
30241         
30242         if(cfg.html){
30243             var top = new Roo.bootstrap.Element({
30244                 tag : 'div',
30245                 cls : 'roo-navigation-bar-text'
30246             });
30247             
30248             var bottom = new Roo.bootstrap.Element({
30249                 tag : 'div',
30250                 cls : 'roo-navigation-bar-text'
30251             });
30252             
30253             top.onRender(this.el.select('.roo-navigation-top-bar', true).first(), null);
30254             bottom.onRender(this.el.select('.roo-navigation-bottom-bar', true).first(), null);
30255             
30256             var topText = new Roo.bootstrap.Element({
30257                 tag : 'span',
30258                 html : (typeof(cfg.position) != 'undefined' && cfg.position == 'top') ? cfg.html : ''
30259             });
30260             
30261             var bottomText = new Roo.bootstrap.Element({
30262                 tag : 'span',
30263                 html : (typeof(cfg.position) != 'undefined' && cfg.position == 'top') ? '' : cfg.html
30264             });
30265             
30266             topText.onRender(top.el, null);
30267             bottomText.onRender(bottom.el, null);
30268             
30269             item.topEl = top;
30270             item.bottomEl = bottom;
30271         }
30272         
30273         this.barItems.push(item);
30274         
30275         return item;
30276     },
30277     
30278     getActive : function()
30279     {
30280         var active = false;
30281         
30282         Roo.each(this.barItems, function(v){
30283             
30284             if (!v.isActive()) {
30285                 return;
30286             }
30287             
30288             active = v;
30289             return false;
30290             
30291         });
30292         
30293         return active;
30294     },
30295     
30296     setActiveItem : function(item)
30297     {
30298         var prev = false;
30299         
30300         Roo.each(this.barItems, function(v){
30301             if (v.rid == item.rid) {
30302                 return ;
30303             }
30304             
30305             if (v.isActive()) {
30306                 v.setActive(false);
30307                 prev = v;
30308             }
30309         });
30310
30311         item.setActive(true);
30312         
30313         this.fireEvent('changed', this, item, prev);
30314     },
30315     
30316     getBarItem: function(rid)
30317     {
30318         var ret = false;
30319         
30320         Roo.each(this.barItems, function(e) {
30321             if (e.rid != rid) {
30322                 return;
30323             }
30324             
30325             ret =  e;
30326             return false;
30327         });
30328         
30329         return ret;
30330     },
30331     
30332     indexOfItem : function(item)
30333     {
30334         var index = false;
30335         
30336         Roo.each(this.barItems, function(v, i){
30337             
30338             if (v.rid != item.rid) {
30339                 return;
30340             }
30341             
30342             index = i;
30343             return false
30344         });
30345         
30346         return index;
30347     },
30348     
30349     setActiveNext : function()
30350     {
30351         var i = this.indexOfItem(this.getActive());
30352         
30353         if (i > this.barItems.length) {
30354             return;
30355         }
30356         
30357         this.setActiveItem(this.barItems[i+1]);
30358     },
30359     
30360     setActivePrev : function()
30361     {
30362         var i = this.indexOfItem(this.getActive());
30363         
30364         if (i  < 1) {
30365             return;
30366         }
30367         
30368         this.setActiveItem(this.barItems[i-1]);
30369     },
30370     
30371     format : function()
30372     {
30373         if(!this.barItems.length){
30374             return;
30375         }
30376      
30377         var width = 100 / this.barItems.length;
30378         
30379         Roo.each(this.barItems, function(i){
30380             i.el.setStyle('width', width + '%');
30381             i.topEl.el.setStyle('width', width + '%');
30382             i.bottomEl.el.setStyle('width', width + '%');
30383         }, this);
30384         
30385     }
30386     
30387 });
30388 /*
30389  * - LGPL
30390  *
30391  * Nav Progress Item
30392  * 
30393  */
30394
30395 /**
30396  * @class Roo.bootstrap.NavProgressItem
30397  * @extends Roo.bootstrap.Component
30398  * Bootstrap NavProgressItem class
30399  * @cfg {String} rid the reference id
30400  * @cfg {Boolean} active (true|false) Is item active default false
30401  * @cfg {Boolean} disabled (true|false) Is item active default false
30402  * @cfg {String} html
30403  * @cfg {String} position (top|bottom) text position default bottom
30404  * @cfg {String} icon show icon instead of number
30405  * 
30406  * @constructor
30407  * Create a new NavProgressItem
30408  * @param {Object} config The config object
30409  */
30410 Roo.bootstrap.NavProgressItem = function(config){
30411     Roo.bootstrap.NavProgressItem.superclass.constructor.call(this, config);
30412     this.addEvents({
30413         // raw events
30414         /**
30415          * @event click
30416          * The raw click event for the entire grid.
30417          * @param {Roo.bootstrap.NavProgressItem} this
30418          * @param {Roo.EventObject} e
30419          */
30420         "click" : true
30421     });
30422    
30423 };
30424
30425 Roo.extend(Roo.bootstrap.NavProgressItem, Roo.bootstrap.Component,  {
30426     
30427     rid : '',
30428     active : false,
30429     disabled : false,
30430     html : '',
30431     position : 'bottom',
30432     icon : false,
30433     
30434     getAutoCreate : function()
30435     {
30436         var iconCls = 'roo-navigation-bar-item-icon';
30437         
30438         iconCls += ((this.icon) ? (' ' + this.icon) : (' step-number')) ;
30439         
30440         var cfg = {
30441             tag: 'li',
30442             cls: 'roo-navigation-bar-item',
30443             cn : [
30444                 {
30445                     tag : 'i',
30446                     cls : iconCls
30447                 }
30448             ]
30449         };
30450         
30451         if(this.active){
30452             cfg.cls += ' active';
30453         }
30454         if(this.disabled){
30455             cfg.cls += ' disabled';
30456         }
30457         
30458         return cfg;
30459     },
30460     
30461     disable : function()
30462     {
30463         this.setDisabled(true);
30464     },
30465     
30466     enable : function()
30467     {
30468         this.setDisabled(false);
30469     },
30470     
30471     initEvents: function() 
30472     {
30473         this.iconEl = this.el.select('.roo-navigation-bar-item-icon', true).first();
30474         
30475         this.iconEl.on('click', this.onClick, this);
30476     },
30477     
30478     onClick : function(e)
30479     {
30480         e.preventDefault();
30481         
30482         if(this.disabled){
30483             return;
30484         }
30485         
30486         if(this.fireEvent('click', this, e) === false){
30487             return;
30488         };
30489         
30490         this.parent().setActiveItem(this);
30491     },
30492     
30493     isActive: function () 
30494     {
30495         return this.active;
30496     },
30497     
30498     setActive : function(state)
30499     {
30500         if(this.active == state){
30501             return;
30502         }
30503         
30504         this.active = state;
30505         
30506         if (state) {
30507             this.el.addClass('active');
30508             return;
30509         }
30510         
30511         this.el.removeClass('active');
30512         
30513         return;
30514     },
30515     
30516     setDisabled : function(state)
30517     {
30518         if(this.disabled == state){
30519             return;
30520         }
30521         
30522         this.disabled = state;
30523         
30524         if (state) {
30525             this.el.addClass('disabled');
30526             return;
30527         }
30528         
30529         this.el.removeClass('disabled');
30530     },
30531     
30532     tooltipEl : function()
30533     {
30534         return this.el.select('.roo-navigation-bar-item-icon', true).first();;
30535     }
30536 });
30537  
30538
30539  /*
30540  * - LGPL
30541  *
30542  * FieldLabel
30543  * 
30544  */
30545
30546 /**
30547  * @class Roo.bootstrap.FieldLabel
30548  * @extends Roo.bootstrap.Component
30549  * Bootstrap FieldLabel class
30550  * @cfg {String} html contents of the element
30551  * @cfg {String} tag tag of the element default label
30552  * @cfg {String} cls class of the element
30553  * @cfg {String} target label target 
30554  * @cfg {Boolean} allowBlank (true|false) target allowBlank default true
30555  * @cfg {String} invalidClass DEPRICATED - BS4 uses is-invalid
30556  * @cfg {String} validClass DEPRICATED - BS4 uses is-valid
30557  * @cfg {String} iconTooltip default "This field is required"
30558  * @cfg {String} indicatorpos (left|right) default left
30559  * 
30560  * @constructor
30561  * Create a new FieldLabel
30562  * @param {Object} config The config object
30563  */
30564
30565 Roo.bootstrap.FieldLabel = function(config){
30566     Roo.bootstrap.Element.superclass.constructor.call(this, config);
30567     
30568     this.addEvents({
30569             /**
30570              * @event invalid
30571              * Fires after the field has been marked as invalid.
30572              * @param {Roo.form.FieldLabel} this
30573              * @param {String} msg The validation message
30574              */
30575             invalid : true,
30576             /**
30577              * @event valid
30578              * Fires after the field has been validated with no errors.
30579              * @param {Roo.form.FieldLabel} this
30580              */
30581             valid : true
30582         });
30583 };
30584
30585 Roo.extend(Roo.bootstrap.FieldLabel, Roo.bootstrap.Component,  {
30586     
30587     tag: 'label',
30588     cls: '',
30589     html: '',
30590     target: '',
30591     allowBlank : true,
30592     invalidClass : 'has-warning',
30593     validClass : 'has-success',
30594     iconTooltip : 'This field is required',
30595     indicatorpos : 'left',
30596     
30597     getAutoCreate : function(){
30598         
30599         var cls = "";
30600         if (!this.allowBlank) {
30601             cls  = "visible";
30602         }
30603         
30604         var cfg = {
30605             tag : this.tag,
30606             cls : 'roo-bootstrap-field-label ' + this.cls,
30607             for : this.target,
30608             cn : [
30609                 {
30610                     tag : 'i',
30611                     cls : 'roo-required-indicator left-indicator text-danger fa fa-lg fa-star ' + cls,
30612                     tooltip : this.iconTooltip
30613                 },
30614                 {
30615                     tag : 'span',
30616                     html : this.html
30617                 }
30618             ] 
30619         };
30620         
30621         if(this.indicatorpos == 'right'){
30622             var cfg = {
30623                 tag : this.tag,
30624                 cls : 'roo-bootstrap-field-label ' + this.cls,
30625                 for : this.target,
30626                 cn : [
30627                     {
30628                         tag : 'span',
30629                         html : this.html
30630                     },
30631                     {
30632                         tag : 'i',
30633                         cls : 'roo-required-indicator right-indicator text-danger fa fa-lg fa-star '+ cls,
30634                         tooltip : this.iconTooltip
30635                     }
30636                 ] 
30637             };
30638         }
30639         
30640         return cfg;
30641     },
30642     
30643     initEvents: function() 
30644     {
30645         Roo.bootstrap.Element.superclass.initEvents.call(this);
30646         
30647         this.indicator = this.indicatorEl();
30648         
30649         if(this.indicator){
30650             this.indicator.removeClass('visible');
30651             this.indicator.addClass('invisible');
30652         }
30653         
30654         Roo.bootstrap.FieldLabel.register(this);
30655     },
30656     
30657     indicatorEl : function()
30658     {
30659         var indicator = this.el.select('i.roo-required-indicator',true).first();
30660         
30661         if(!indicator){
30662             return false;
30663         }
30664         
30665         return indicator;
30666         
30667     },
30668     
30669     /**
30670      * Mark this field as valid
30671      */
30672     markValid : function()
30673     {
30674         if(this.indicator){
30675             this.indicator.removeClass('visible');
30676             this.indicator.addClass('invisible');
30677         }
30678         if (Roo.bootstrap.version == 3) {
30679             this.el.removeClass(this.invalidClass);
30680             this.el.addClass(this.validClass);
30681         } else {
30682             this.el.removeClass('is-invalid');
30683             this.el.addClass('is-valid');
30684         }
30685         
30686         
30687         this.fireEvent('valid', this);
30688     },
30689     
30690     /**
30691      * Mark this field as invalid
30692      * @param {String} msg The validation message
30693      */
30694     markInvalid : function(msg)
30695     {
30696         if(this.indicator){
30697             this.indicator.removeClass('invisible');
30698             this.indicator.addClass('visible');
30699         }
30700           if (Roo.bootstrap.version == 3) {
30701             this.el.removeClass(this.validClass);
30702             this.el.addClass(this.invalidClass);
30703         } else {
30704             this.el.removeClass('is-valid');
30705             this.el.addClass('is-invalid');
30706         }
30707         
30708         
30709         this.fireEvent('invalid', this, msg);
30710     }
30711     
30712    
30713 });
30714
30715 Roo.apply(Roo.bootstrap.FieldLabel, {
30716     
30717     groups: {},
30718     
30719      /**
30720     * register a FieldLabel Group
30721     * @param {Roo.bootstrap.FieldLabel} the FieldLabel to add
30722     */
30723     register : function(label)
30724     {
30725         if(this.groups.hasOwnProperty(label.target)){
30726             return;
30727         }
30728      
30729         this.groups[label.target] = label;
30730         
30731     },
30732     /**
30733     * fetch a FieldLabel Group based on the target
30734     * @param {string} target
30735     * @returns {Roo.bootstrap.FieldLabel} the CheckBox group
30736     */
30737     get: function(target) {
30738         if (typeof(this.groups[target]) == 'undefined') {
30739             return false;
30740         }
30741         
30742         return this.groups[target] ;
30743     }
30744 });
30745
30746  
30747
30748  /*
30749  * - LGPL
30750  *
30751  * page DateSplitField.
30752  * 
30753  */
30754
30755
30756 /**
30757  * @class Roo.bootstrap.DateSplitField
30758  * @extends Roo.bootstrap.Component
30759  * Bootstrap DateSplitField class
30760  * @cfg {string} fieldLabel - the label associated
30761  * @cfg {Number} labelWidth set the width of label (0-12)
30762  * @cfg {String} labelAlign (top|left)
30763  * @cfg {Boolean} dayAllowBlank (true|false) default false
30764  * @cfg {Boolean} monthAllowBlank (true|false) default false
30765  * @cfg {Boolean} yearAllowBlank (true|false) default false
30766  * @cfg {string} dayPlaceholder 
30767  * @cfg {string} monthPlaceholder
30768  * @cfg {string} yearPlaceholder
30769  * @cfg {string} dayFormat default 'd'
30770  * @cfg {string} monthFormat default 'm'
30771  * @cfg {string} yearFormat default 'Y'
30772  * @cfg {Number} labellg set the width of label (1-12)
30773  * @cfg {Number} labelmd set the width of label (1-12)
30774  * @cfg {Number} labelsm set the width of label (1-12)
30775  * @cfg {Number} labelxs set the width of label (1-12)
30776
30777  *     
30778  * @constructor
30779  * Create a new DateSplitField
30780  * @param {Object} config The config object
30781  */
30782
30783 Roo.bootstrap.DateSplitField = function(config){
30784     Roo.bootstrap.DateSplitField.superclass.constructor.call(this, config);
30785     
30786     this.addEvents({
30787         // raw events
30788          /**
30789          * @event years
30790          * getting the data of years
30791          * @param {Roo.bootstrap.DateSplitField} this
30792          * @param {Object} years
30793          */
30794         "years" : true,
30795         /**
30796          * @event days
30797          * getting the data of days
30798          * @param {Roo.bootstrap.DateSplitField} this
30799          * @param {Object} days
30800          */
30801         "days" : true,
30802         /**
30803          * @event invalid
30804          * Fires after the field has been marked as invalid.
30805          * @param {Roo.form.Field} this
30806          * @param {String} msg The validation message
30807          */
30808         invalid : true,
30809        /**
30810          * @event valid
30811          * Fires after the field has been validated with no errors.
30812          * @param {Roo.form.Field} this
30813          */
30814         valid : true
30815     });
30816 };
30817
30818 Roo.extend(Roo.bootstrap.DateSplitField, Roo.bootstrap.Component,  {
30819     
30820     fieldLabel : '',
30821     labelAlign : 'top',
30822     labelWidth : 3,
30823     dayAllowBlank : false,
30824     monthAllowBlank : false,
30825     yearAllowBlank : false,
30826     dayPlaceholder : '',
30827     monthPlaceholder : '',
30828     yearPlaceholder : '',
30829     dayFormat : 'd',
30830     monthFormat : 'm',
30831     yearFormat : 'Y',
30832     isFormField : true,
30833     labellg : 0,
30834     labelmd : 0,
30835     labelsm : 0,
30836     labelxs : 0,
30837     
30838     getAutoCreate : function()
30839     {
30840         var cfg = {
30841             tag : 'div',
30842             cls : 'row roo-date-split-field-group',
30843             cn : [
30844                 {
30845                     tag : 'input',
30846                     type : 'hidden',
30847                     cls : 'form-hidden-field roo-date-split-field-group-value',
30848                     name : this.name
30849                 }
30850             ]
30851         };
30852         
30853         var labelCls = 'col-md-12';
30854         var contentCls = 'col-md-4';
30855         
30856         if(this.fieldLabel){
30857             
30858             var label = {
30859                 tag : 'div',
30860                 cls : 'column roo-date-split-field-label col-md-' + ((this.labelAlign == 'top') ? '12' : this.labelWidth),
30861                 cn : [
30862                     {
30863                         tag : 'label',
30864                         html : this.fieldLabel
30865                     }
30866                 ]
30867             };
30868             
30869             if(this.labelAlign == 'left'){
30870             
30871                 if(this.labelWidth > 12){
30872                     label.style = "width: " + this.labelWidth + 'px';
30873                 }
30874
30875                 if(this.labelWidth < 13 && this.labelmd == 0){
30876                     this.labelmd = this.labelWidth;
30877                 }
30878
30879                 if(this.labellg > 0){
30880                     labelCls = ' col-lg-' + this.labellg;
30881                     contentCls = ' col-lg-' + ((12 - this.labellg) / 3);
30882                 }
30883
30884                 if(this.labelmd > 0){
30885                     labelCls = ' col-md-' + this.labelmd;
30886                     contentCls = ' col-md-' + ((12 - this.labelmd) / 3);
30887                 }
30888
30889                 if(this.labelsm > 0){
30890                     labelCls = ' col-sm-' + this.labelsm;
30891                     contentCls = ' col-sm-' + ((12 - this.labelsm) / 3);
30892                 }
30893
30894                 if(this.labelxs > 0){
30895                     labelCls = ' col-xs-' + this.labelxs;
30896                     contentCls = ' col-xs-' + ((12 - this.labelxs) / 3);
30897                 }
30898             }
30899             
30900             label.cls += ' ' + labelCls;
30901             
30902             cfg.cn.push(label);
30903         }
30904         
30905         Roo.each(['day', 'month', 'year'], function(t){
30906             cfg.cn.push({
30907                 tag : 'div',
30908                 cls : 'column roo-date-split-field-' + t + ' ' + contentCls
30909             });
30910         }, this);
30911         
30912         return cfg;
30913     },
30914     
30915     inputEl: function ()
30916     {
30917         return this.el.select('.roo-date-split-field-group-value', true).first();
30918     },
30919     
30920     onRender : function(ct, position) 
30921     {
30922         var _this = this;
30923         
30924         Roo.bootstrap.NavProgressBar.superclass.onRender.call(this, ct, position);
30925         
30926         this.inputEl = this.el.select('.roo-date-split-field-group-value', true).first();
30927         
30928         this.dayField = new Roo.bootstrap.ComboBox({
30929             allowBlank : this.dayAllowBlank,
30930             alwaysQuery : true,
30931             displayField : 'value',
30932             editable : false,
30933             fieldLabel : '',
30934             forceSelection : true,
30935             mode : 'local',
30936             placeholder : this.dayPlaceholder,
30937             selectOnFocus : true,
30938             tpl : '<div class="roo-select2-result"><b>{value}</b></div>',
30939             triggerAction : 'all',
30940             typeAhead : true,
30941             valueField : 'value',
30942             store : new Roo.data.SimpleStore({
30943                 data : (function() {    
30944                     var days = [];
30945                     _this.fireEvent('days', _this, days);
30946                     return days;
30947                 })(),
30948                 fields : [ 'value' ]
30949             }),
30950             listeners : {
30951                 select : function (_self, record, index)
30952                 {
30953                     _this.setValue(_this.getValue());
30954                 }
30955             }
30956         });
30957
30958         this.dayField.render(this.el.select('.roo-date-split-field-day', true).first(), null);
30959         
30960         this.monthField = new Roo.bootstrap.MonthField({
30961             after : '<i class=\"fa fa-calendar\"></i>',
30962             allowBlank : this.monthAllowBlank,
30963             placeholder : this.monthPlaceholder,
30964             readOnly : true,
30965             listeners : {
30966                 render : function (_self)
30967                 {
30968                     this.el.select('span.input-group-addon', true).first().on('click', function(e){
30969                         e.preventDefault();
30970                         _self.focus();
30971                     });
30972                 },
30973                 select : function (_self, oldvalue, newvalue)
30974                 {
30975                     _this.setValue(_this.getValue());
30976                 }
30977             }
30978         });
30979         
30980         this.monthField.render(this.el.select('.roo-date-split-field-month', true).first(), null);
30981         
30982         this.yearField = new Roo.bootstrap.ComboBox({
30983             allowBlank : this.yearAllowBlank,
30984             alwaysQuery : true,
30985             displayField : 'value',
30986             editable : false,
30987             fieldLabel : '',
30988             forceSelection : true,
30989             mode : 'local',
30990             placeholder : this.yearPlaceholder,
30991             selectOnFocus : true,
30992             tpl : '<div class="roo-select2-result"><b>{value}</b></div>',
30993             triggerAction : 'all',
30994             typeAhead : true,
30995             valueField : 'value',
30996             store : new Roo.data.SimpleStore({
30997                 data : (function() {
30998                     var years = [];
30999                     _this.fireEvent('years', _this, years);
31000                     return years;
31001                 })(),
31002                 fields : [ 'value' ]
31003             }),
31004             listeners : {
31005                 select : function (_self, record, index)
31006                 {
31007                     _this.setValue(_this.getValue());
31008                 }
31009             }
31010         });
31011
31012         this.yearField.render(this.el.select('.roo-date-split-field-year', true).first(), null);
31013     },
31014     
31015     setValue : function(v, format)
31016     {
31017         this.inputEl.dom.value = v;
31018         
31019         var f = format || (this.yearFormat + '-' + this.monthFormat + '-' + this.dayFormat);
31020         
31021         var d = Date.parseDate(v, f);
31022         
31023         if(!d){
31024             this.validate();
31025             return;
31026         }
31027         
31028         this.setDay(d.format(this.dayFormat));
31029         this.setMonth(d.format(this.monthFormat));
31030         this.setYear(d.format(this.yearFormat));
31031         
31032         this.validate();
31033         
31034         return;
31035     },
31036     
31037     setDay : function(v)
31038     {
31039         this.dayField.setValue(v);
31040         this.inputEl.dom.value = this.getValue();
31041         this.validate();
31042         return;
31043     },
31044     
31045     setMonth : function(v)
31046     {
31047         this.monthField.setValue(v, true);
31048         this.inputEl.dom.value = this.getValue();
31049         this.validate();
31050         return;
31051     },
31052     
31053     setYear : function(v)
31054     {
31055         this.yearField.setValue(v);
31056         this.inputEl.dom.value = this.getValue();
31057         this.validate();
31058         return;
31059     },
31060     
31061     getDay : function()
31062     {
31063         return this.dayField.getValue();
31064     },
31065     
31066     getMonth : function()
31067     {
31068         return this.monthField.getValue();
31069     },
31070     
31071     getYear : function()
31072     {
31073         return this.yearField.getValue();
31074     },
31075     
31076     getValue : function()
31077     {
31078         var f = this.yearFormat + '-' + this.monthFormat + '-' + this.dayFormat;
31079         
31080         var date = this.yearField.getValue() + '-' + this.monthField.getValue() + '-' + this.dayField.getValue();
31081         
31082         return date;
31083     },
31084     
31085     reset : function()
31086     {
31087         this.setDay('');
31088         this.setMonth('');
31089         this.setYear('');
31090         this.inputEl.dom.value = '';
31091         this.validate();
31092         return;
31093     },
31094     
31095     validate : function()
31096     {
31097         var d = this.dayField.validate();
31098         var m = this.monthField.validate();
31099         var y = this.yearField.validate();
31100         
31101         var valid = true;
31102         
31103         if(
31104                 (!this.dayAllowBlank && !d) ||
31105                 (!this.monthAllowBlank && !m) ||
31106                 (!this.yearAllowBlank && !y)
31107         ){
31108             valid = false;
31109         }
31110         
31111         if(this.dayAllowBlank && this.monthAllowBlank && this.yearAllowBlank){
31112             return valid;
31113         }
31114         
31115         if(valid){
31116             this.markValid();
31117             return valid;
31118         }
31119         
31120         this.markInvalid();
31121         
31122         return valid;
31123     },
31124     
31125     markValid : function()
31126     {
31127         
31128         var label = this.el.select('label', true).first();
31129         var icon = this.el.select('i.fa-star', true).first();
31130
31131         if(label && icon){
31132             icon.remove();
31133         }
31134         
31135         this.fireEvent('valid', this);
31136     },
31137     
31138      /**
31139      * Mark this field as invalid
31140      * @param {String} msg The validation message
31141      */
31142     markInvalid : function(msg)
31143     {
31144         
31145         var label = this.el.select('label', true).first();
31146         var icon = this.el.select('i.fa-star', true).first();
31147
31148         if(label && !icon){
31149             this.el.select('.roo-date-split-field-label', true).createChild({
31150                 tag : 'i',
31151                 cls : 'text-danger fa fa-lg fa-star',
31152                 tooltip : 'This field is required',
31153                 style : 'margin-right:5px;'
31154             }, label, true);
31155         }
31156         
31157         this.fireEvent('invalid', this, msg);
31158     },
31159     
31160     clearInvalid : function()
31161     {
31162         var label = this.el.select('label', true).first();
31163         var icon = this.el.select('i.fa-star', true).first();
31164
31165         if(label && icon){
31166             icon.remove();
31167         }
31168         
31169         this.fireEvent('valid', this);
31170     },
31171     
31172     getName: function()
31173     {
31174         return this.name;
31175     }
31176     
31177 });
31178
31179  /**
31180  *
31181  * This is based on 
31182  * http://masonry.desandro.com
31183  *
31184  * The idea is to render all the bricks based on vertical width...
31185  *
31186  * The original code extends 'outlayer' - we might need to use that....
31187  * 
31188  */
31189
31190
31191 /**
31192  * @class Roo.bootstrap.LayoutMasonry
31193  * @extends Roo.bootstrap.Component
31194  * Bootstrap Layout Masonry class
31195  * 
31196  * @constructor
31197  * Create a new Element
31198  * @param {Object} config The config object
31199  */
31200
31201 Roo.bootstrap.LayoutMasonry = function(config){
31202     
31203     Roo.bootstrap.LayoutMasonry.superclass.constructor.call(this, config);
31204     
31205     this.bricks = [];
31206     
31207     Roo.bootstrap.LayoutMasonry.register(this);
31208     
31209     this.addEvents({
31210         // raw events
31211         /**
31212          * @event layout
31213          * Fire after layout the items
31214          * @param {Roo.bootstrap.LayoutMasonry} this
31215          * @param {Roo.EventObject} e
31216          */
31217         "layout" : true
31218     });
31219     
31220 };
31221
31222 Roo.extend(Roo.bootstrap.LayoutMasonry, Roo.bootstrap.Component,  {
31223     
31224     /**
31225      * @cfg {Boolean} isLayoutInstant = no animation?
31226      */   
31227     isLayoutInstant : false, // needed?
31228    
31229     /**
31230      * @cfg {Number} boxWidth  width of the columns
31231      */   
31232     boxWidth : 450,
31233     
31234       /**
31235      * @cfg {Number} boxHeight  - 0 for square, or fix it at a certian height
31236      */   
31237     boxHeight : 0,
31238     
31239     /**
31240      * @cfg {Number} padWidth padding below box..
31241      */   
31242     padWidth : 10, 
31243     
31244     /**
31245      * @cfg {Number} gutter gutter width..
31246      */   
31247     gutter : 10,
31248     
31249      /**
31250      * @cfg {Number} maxCols maximum number of columns
31251      */   
31252     
31253     maxCols: 0,
31254     
31255     /**
31256      * @cfg {Boolean} isAutoInitial defalut true
31257      */   
31258     isAutoInitial : true, 
31259     
31260     containerWidth: 0,
31261     
31262     /**
31263      * @cfg {Boolean} isHorizontal defalut false
31264      */   
31265     isHorizontal : false, 
31266
31267     currentSize : null,
31268     
31269     tag: 'div',
31270     
31271     cls: '',
31272     
31273     bricks: null, //CompositeElement
31274     
31275     cols : 1,
31276     
31277     _isLayoutInited : false,
31278     
31279 //    isAlternative : false, // only use for vertical layout...
31280     
31281     /**
31282      * @cfg {Number} alternativePadWidth padding below box..
31283      */   
31284     alternativePadWidth : 50,
31285     
31286     selectedBrick : [],
31287     
31288     getAutoCreate : function(){
31289         
31290         var cfg = Roo.apply({}, Roo.bootstrap.LayoutMasonry.superclass.getAutoCreate.call(this));
31291         
31292         var cfg = {
31293             tag: this.tag,
31294             cls: 'blog-masonary-wrapper ' + this.cls,
31295             cn : {
31296                 cls : 'mas-boxes masonary'
31297             }
31298         };
31299         
31300         return cfg;
31301     },
31302     
31303     getChildContainer: function( )
31304     {
31305         if (this.boxesEl) {
31306             return this.boxesEl;
31307         }
31308         
31309         this.boxesEl = this.el.select('.mas-boxes').first();
31310         
31311         return this.boxesEl;
31312     },
31313     
31314     
31315     initEvents : function()
31316     {
31317         var _this = this;
31318         
31319         if(this.isAutoInitial){
31320             Roo.log('hook children rendered');
31321             this.on('childrenrendered', function() {
31322                 Roo.log('children rendered');
31323                 _this.initial();
31324             } ,this);
31325         }
31326     },
31327     
31328     initial : function()
31329     {
31330         this.selectedBrick = [];
31331         
31332         this.currentSize = this.el.getBox(true);
31333         
31334         Roo.EventManager.onWindowResize(this.resize, this); 
31335
31336         if(!this.isAutoInitial){
31337             this.layout();
31338             return;
31339         }
31340         
31341         this.layout();
31342         
31343         return;
31344         //this.layout.defer(500,this);
31345         
31346     },
31347     
31348     resize : function()
31349     {
31350         var cs = this.el.getBox(true);
31351         
31352         if (
31353                 this.currentSize.width == cs.width && 
31354                 this.currentSize.x == cs.x && 
31355                 this.currentSize.height == cs.height && 
31356                 this.currentSize.y == cs.y 
31357         ) {
31358             Roo.log("no change in with or X or Y");
31359             return;
31360         }
31361         
31362         this.currentSize = cs;
31363         
31364         this.layout();
31365         
31366     },
31367     
31368     layout : function()
31369     {   
31370         this._resetLayout();
31371         
31372         var isInstant = this.isLayoutInstant !== undefined ? this.isLayoutInstant : !this._isLayoutInited;
31373         
31374         this.layoutItems( isInstant );
31375       
31376         this._isLayoutInited = true;
31377         
31378         this.fireEvent('layout', this);
31379         
31380     },
31381     
31382     _resetLayout : function()
31383     {
31384         if(this.isHorizontal){
31385             this.horizontalMeasureColumns();
31386             return;
31387         }
31388         
31389         this.verticalMeasureColumns();
31390         
31391     },
31392     
31393     verticalMeasureColumns : function()
31394     {
31395         this.getContainerWidth();
31396         
31397 //        if(Roo.lib.Dom.getViewWidth() < 768 && this.isAlternative){
31398 //            this.colWidth = Math.floor(this.containerWidth * 0.8);
31399 //            return;
31400 //        }
31401         
31402         var boxWidth = this.boxWidth + this.padWidth;
31403         
31404         if(this.containerWidth < this.boxWidth){
31405             boxWidth = this.containerWidth
31406         }
31407         
31408         var containerWidth = this.containerWidth;
31409         
31410         var cols = Math.floor(containerWidth / boxWidth);
31411         
31412         this.cols = Math.max( cols, 1 );
31413         
31414         this.cols = this.maxCols > 0 ? Math.min( this.cols, this.maxCols ) : this.cols;
31415         
31416         var totalBoxWidth = this.cols * boxWidth - this.padWidth;
31417         
31418         var avail = Math.floor((containerWidth - totalBoxWidth) / this.cols);
31419         
31420         this.colWidth = boxWidth + avail - this.padWidth;
31421         
31422         this.unitWidth = Math.round((this.colWidth - (this.gutter * 2)) / 3);
31423         this.unitHeight = this.boxHeight > 0 ? this.boxHeight  : this.unitWidth;
31424     },
31425     
31426     horizontalMeasureColumns : function()
31427     {
31428         this.getContainerWidth();
31429         
31430         var boxWidth = this.boxWidth;
31431         
31432         if(this.containerWidth < boxWidth){
31433             boxWidth = this.containerWidth;
31434         }
31435         
31436         this.unitWidth = Math.floor((boxWidth - (this.gutter * 2)) / 3);
31437         
31438         this.el.setHeight(boxWidth);
31439         
31440     },
31441     
31442     getContainerWidth : function()
31443     {
31444         this.containerWidth = this.el.getBox(true).width;  //maybe use getComputedWidth
31445     },
31446     
31447     layoutItems : function( isInstant )
31448     {
31449         Roo.log(this.bricks);
31450         
31451         var items = Roo.apply([], this.bricks);
31452         
31453         if(this.isHorizontal){
31454             this._horizontalLayoutItems( items , isInstant );
31455             return;
31456         }
31457         
31458 //        if(Roo.lib.Dom.getViewWidth() < 768 && this.isAlternative){
31459 //            this._verticalAlternativeLayoutItems( items , isInstant );
31460 //            return;
31461 //        }
31462         
31463         this._verticalLayoutItems( items , isInstant );
31464         
31465     },
31466     
31467     _verticalLayoutItems : function ( items , isInstant)
31468     {
31469         if ( !items || !items.length ) {
31470             return;
31471         }
31472         
31473         var standard = [
31474             ['xs', 'xs', 'xs', 'tall'],
31475             ['xs', 'xs', 'tall'],
31476             ['xs', 'xs', 'sm'],
31477             ['xs', 'xs', 'xs'],
31478             ['xs', 'tall'],
31479             ['xs', 'sm'],
31480             ['xs', 'xs'],
31481             ['xs'],
31482             
31483             ['sm', 'xs', 'xs'],
31484             ['sm', 'xs'],
31485             ['sm'],
31486             
31487             ['tall', 'xs', 'xs', 'xs'],
31488             ['tall', 'xs', 'xs'],
31489             ['tall', 'xs'],
31490             ['tall']
31491             
31492         ];
31493         
31494         var queue = [];
31495         
31496         var boxes = [];
31497         
31498         var box = [];
31499         
31500         Roo.each(items, function(item, k){
31501             
31502             switch (item.size) {
31503                 // these layouts take up a full box,
31504                 case 'md' :
31505                 case 'md-left' :
31506                 case 'md-right' :
31507                 case 'wide' :
31508                     
31509                     if(box.length){
31510                         boxes.push(box);
31511                         box = [];
31512                     }
31513                     
31514                     boxes.push([item]);
31515                     
31516                     break;
31517                     
31518                 case 'xs' :
31519                 case 'sm' :
31520                 case 'tall' :
31521                     
31522                     box.push(item);
31523                     
31524                     break;
31525                 default :
31526                     break;
31527                     
31528             }
31529             
31530         }, this);
31531         
31532         if(box.length){
31533             boxes.push(box);
31534             box = [];
31535         }
31536         
31537         var filterPattern = function(box, length)
31538         {
31539             if(!box.length){
31540                 return;
31541             }
31542             
31543             var match = false;
31544             
31545             var pattern = box.slice(0, length);
31546             
31547             var format = [];
31548             
31549             Roo.each(pattern, function(i){
31550                 format.push(i.size);
31551             }, this);
31552             
31553             Roo.each(standard, function(s){
31554                 
31555                 if(String(s) != String(format)){
31556                     return;
31557                 }
31558                 
31559                 match = true;
31560                 return false;
31561                 
31562             }, this);
31563             
31564             if(!match && length == 1){
31565                 return;
31566             }
31567             
31568             if(!match){
31569                 filterPattern(box, length - 1);
31570                 return;
31571             }
31572                 
31573             queue.push(pattern);
31574
31575             box = box.slice(length, box.length);
31576
31577             filterPattern(box, 4);
31578
31579             return;
31580             
31581         }
31582         
31583         Roo.each(boxes, function(box, k){
31584             
31585             if(!box.length){
31586                 return;
31587             }
31588             
31589             if(box.length == 1){
31590                 queue.push(box);
31591                 return;
31592             }
31593             
31594             filterPattern(box, 4);
31595             
31596         }, this);
31597         
31598         this._processVerticalLayoutQueue( queue, isInstant );
31599         
31600     },
31601     
31602 //    _verticalAlternativeLayoutItems : function( items , isInstant )
31603 //    {
31604 //        if ( !items || !items.length ) {
31605 //            return;
31606 //        }
31607 //
31608 //        this._processVerticalAlternativeLayoutQueue( items, isInstant );
31609 //        
31610 //    },
31611     
31612     _horizontalLayoutItems : function ( items , isInstant)
31613     {
31614         if ( !items || !items.length || items.length < 3) {
31615             return;
31616         }
31617         
31618         items.reverse();
31619         
31620         var eItems = items.slice(0, 3);
31621         
31622         items = items.slice(3, items.length);
31623         
31624         var standard = [
31625             ['xs', 'xs', 'xs', 'wide'],
31626             ['xs', 'xs', 'wide'],
31627             ['xs', 'xs', 'sm'],
31628             ['xs', 'xs', 'xs'],
31629             ['xs', 'wide'],
31630             ['xs', 'sm'],
31631             ['xs', 'xs'],
31632             ['xs'],
31633             
31634             ['sm', 'xs', 'xs'],
31635             ['sm', 'xs'],
31636             ['sm'],
31637             
31638             ['wide', 'xs', 'xs', 'xs'],
31639             ['wide', 'xs', 'xs'],
31640             ['wide', 'xs'],
31641             ['wide'],
31642             
31643             ['wide-thin']
31644         ];
31645         
31646         var queue = [];
31647         
31648         var boxes = [];
31649         
31650         var box = [];
31651         
31652         Roo.each(items, function(item, k){
31653             
31654             switch (item.size) {
31655                 case 'md' :
31656                 case 'md-left' :
31657                 case 'md-right' :
31658                 case 'tall' :
31659                     
31660                     if(box.length){
31661                         boxes.push(box);
31662                         box = [];
31663                     }
31664                     
31665                     boxes.push([item]);
31666                     
31667                     break;
31668                     
31669                 case 'xs' :
31670                 case 'sm' :
31671                 case 'wide' :
31672                 case 'wide-thin' :
31673                     
31674                     box.push(item);
31675                     
31676                     break;
31677                 default :
31678                     break;
31679                     
31680             }
31681             
31682         }, this);
31683         
31684         if(box.length){
31685             boxes.push(box);
31686             box = [];
31687         }
31688         
31689         var filterPattern = function(box, length)
31690         {
31691             if(!box.length){
31692                 return;
31693             }
31694             
31695             var match = false;
31696             
31697             var pattern = box.slice(0, length);
31698             
31699             var format = [];
31700             
31701             Roo.each(pattern, function(i){
31702                 format.push(i.size);
31703             }, this);
31704             
31705             Roo.each(standard, function(s){
31706                 
31707                 if(String(s) != String(format)){
31708                     return;
31709                 }
31710                 
31711                 match = true;
31712                 return false;
31713                 
31714             }, this);
31715             
31716             if(!match && length == 1){
31717                 return;
31718             }
31719             
31720             if(!match){
31721                 filterPattern(box, length - 1);
31722                 return;
31723             }
31724                 
31725             queue.push(pattern);
31726
31727             box = box.slice(length, box.length);
31728
31729             filterPattern(box, 4);
31730
31731             return;
31732             
31733         }
31734         
31735         Roo.each(boxes, function(box, k){
31736             
31737             if(!box.length){
31738                 return;
31739             }
31740             
31741             if(box.length == 1){
31742                 queue.push(box);
31743                 return;
31744             }
31745             
31746             filterPattern(box, 4);
31747             
31748         }, this);
31749         
31750         
31751         var prune = [];
31752         
31753         var pos = this.el.getBox(true);
31754         
31755         var minX = pos.x;
31756         
31757         var maxX = pos.right - this.unitWidth * 3 - this.gutter * 2 - this.padWidth;
31758         
31759         var hit_end = false;
31760         
31761         Roo.each(queue, function(box){
31762             
31763             if(hit_end){
31764                 
31765                 Roo.each(box, function(b){
31766                 
31767                     b.el.setVisibilityMode(Roo.Element.DISPLAY);
31768                     b.el.hide();
31769
31770                 }, this);
31771
31772                 return;
31773             }
31774             
31775             var mx = 0;
31776             
31777             Roo.each(box, function(b){
31778                 
31779                 b.el.setVisibilityMode(Roo.Element.DISPLAY);
31780                 b.el.show();
31781
31782                 mx = Math.max(mx, b.x);
31783                 
31784             }, this);
31785             
31786             maxX = maxX - this.unitWidth * mx - this.gutter * (mx - 1) - this.padWidth;
31787             
31788             if(maxX < minX){
31789                 
31790                 Roo.each(box, function(b){
31791                 
31792                     b.el.setVisibilityMode(Roo.Element.DISPLAY);
31793                     b.el.hide();
31794                     
31795                 }, this);
31796                 
31797                 hit_end = true;
31798                 
31799                 return;
31800             }
31801             
31802             prune.push(box);
31803             
31804         }, this);
31805         
31806         this._processHorizontalLayoutQueue( prune, eItems, isInstant );
31807     },
31808     
31809     /** Sets position of item in DOM
31810     * @param {Element} item
31811     * @param {Number} x - horizontal position
31812     * @param {Number} y - vertical position
31813     * @param {Boolean} isInstant - disables transitions
31814     */
31815     _processVerticalLayoutQueue : function( queue, isInstant )
31816     {
31817         var pos = this.el.getBox(true);
31818         var x = pos.x;
31819         var y = pos.y;
31820         var maxY = [];
31821         
31822         for (var i = 0; i < this.cols; i++){
31823             maxY[i] = pos.y;
31824         }
31825         
31826         Roo.each(queue, function(box, k){
31827             
31828             var col = k % this.cols;
31829             
31830             Roo.each(box, function(b,kk){
31831                 
31832                 b.el.position('absolute');
31833                 
31834                 var width = Math.floor(this.unitWidth * b.x + (this.gutter * (b.x - 1)) + b.el.getPadding('lr'));
31835                 var height = Math.floor(this.unitHeight * b.y + (this.gutter * (b.y - 1)) + b.el.getPadding('tb'));
31836                 
31837                 if(b.size == 'md-left' || b.size == 'md-right'){
31838                     width = Math.floor(this.unitWidth * (b.x - 1) + (this.gutter * (b.x - 2)) + b.el.getPadding('lr'));
31839                     height = Math.floor(this.unitHeight * (b.y - 1) + (this.gutter * (b.y - 2)) + b.el.getPadding('tb'));
31840                 }
31841                 
31842                 b.el.setWidth(width);
31843                 b.el.setHeight(height);
31844                 // iframe?
31845                 b.el.select('iframe',true).setSize(width,height);
31846                 
31847             }, this);
31848             
31849             for (var i = 0; i < this.cols; i++){
31850                 
31851                 if(maxY[i] < maxY[col]){
31852                     col = i;
31853                     continue;
31854                 }
31855                 
31856                 col = Math.min(col, i);
31857                 
31858             }
31859             
31860             x = pos.x + col * (this.colWidth + this.padWidth);
31861             
31862             y = maxY[col];
31863             
31864             var positions = [];
31865             
31866             switch (box.length){
31867                 case 1 :
31868                     positions = this.getVerticalOneBoxColPositions(x, y, box);
31869                     break;
31870                 case 2 :
31871                     positions = this.getVerticalTwoBoxColPositions(x, y, box);
31872                     break;
31873                 case 3 :
31874                     positions = this.getVerticalThreeBoxColPositions(x, y, box);
31875                     break;
31876                 case 4 :
31877                     positions = this.getVerticalFourBoxColPositions(x, y, box);
31878                     break;
31879                 default :
31880                     break;
31881             }
31882             
31883             Roo.each(box, function(b,kk){
31884                 
31885                 b.el.setXY([positions[kk].x, positions[kk].y], isInstant ? false : true);
31886                 
31887                 var sz = b.el.getSize();
31888                 
31889                 maxY[col] = Math.max(maxY[col], positions[kk].y + sz.height + this.padWidth);
31890                 
31891             }, this);
31892             
31893         }, this);
31894         
31895         var mY = 0;
31896         
31897         for (var i = 0; i < this.cols; i++){
31898             mY = Math.max(mY, maxY[i]);
31899         }
31900         
31901         this.el.setHeight(mY - pos.y);
31902         
31903     },
31904     
31905 //    _processVerticalAlternativeLayoutQueue : function( items, isInstant )
31906 //    {
31907 //        var pos = this.el.getBox(true);
31908 //        var x = pos.x;
31909 //        var y = pos.y;
31910 //        var maxX = pos.right;
31911 //        
31912 //        var maxHeight = 0;
31913 //        
31914 //        Roo.each(items, function(item, k){
31915 //            
31916 //            var c = k % 2;
31917 //            
31918 //            item.el.position('absolute');
31919 //                
31920 //            var width = Math.floor(this.colWidth + item.el.getPadding('lr'));
31921 //
31922 //            item.el.setWidth(width);
31923 //
31924 //            var height = Math.floor(this.colWidth * item.y / item.x + item.el.getPadding('tb'));
31925 //
31926 //            item.el.setHeight(height);
31927 //            
31928 //            if(c == 0){
31929 //                item.el.setXY([x, y], isInstant ? false : true);
31930 //            } else {
31931 //                item.el.setXY([maxX - width, y], isInstant ? false : true);
31932 //            }
31933 //            
31934 //            y = y + height + this.alternativePadWidth;
31935 //            
31936 //            maxHeight = maxHeight + height + this.alternativePadWidth;
31937 //            
31938 //        }, this);
31939 //        
31940 //        this.el.setHeight(maxHeight);
31941 //        
31942 //    },
31943     
31944     _processHorizontalLayoutQueue : function( queue, eItems, isInstant )
31945     {
31946         var pos = this.el.getBox(true);
31947         
31948         var minX = pos.x;
31949         var minY = pos.y;
31950         
31951         var maxX = pos.right;
31952         
31953         this._processHorizontalEndItem(eItems, maxX, minX, minY, isInstant);
31954         
31955         var maxX = maxX - this.unitWidth * 3 - this.gutter * 2 - this.padWidth;
31956         
31957         Roo.each(queue, function(box, k){
31958             
31959             Roo.each(box, function(b, kk){
31960                 
31961                 b.el.position('absolute');
31962                 
31963                 var width = Math.floor(this.unitWidth * b.x + (this.gutter * (b.x - 1)) + b.el.getPadding('lr'));
31964                 var height = Math.floor(this.unitWidth * b.y + (this.gutter * (b.y - 1)) + b.el.getPadding('tb'));
31965                 
31966                 if(b.size == 'md-left' || b.size == 'md-right'){
31967                     width = Math.floor(this.unitWidth * (b.x - 1) + (this.gutter * (b.x - 2)) + b.el.getPadding('lr'));
31968                     height = Math.floor(this.unitWidth * (b.y - 1) + (this.gutter * (b.y - 2)) + b.el.getPadding('tb'));
31969                 }
31970                 
31971                 b.el.setWidth(width);
31972                 b.el.setHeight(height);
31973                 
31974             }, this);
31975             
31976             if(!box.length){
31977                 return;
31978             }
31979             
31980             var positions = [];
31981             
31982             switch (box.length){
31983                 case 1 :
31984                     positions = this.getHorizontalOneBoxColPositions(maxX, minY, box);
31985                     break;
31986                 case 2 :
31987                     positions = this.getHorizontalTwoBoxColPositions(maxX, minY, box);
31988                     break;
31989                 case 3 :
31990                     positions = this.getHorizontalThreeBoxColPositions(maxX, minY, box);
31991                     break;
31992                 case 4 :
31993                     positions = this.getHorizontalFourBoxColPositions(maxX, minY, box);
31994                     break;
31995                 default :
31996                     break;
31997             }
31998             
31999             Roo.each(box, function(b,kk){
32000                 
32001                 b.el.setXY([positions[kk].x, positions[kk].y], isInstant ? false : true);
32002                 
32003                 maxX = Math.min(maxX, positions[kk].x - this.padWidth);
32004                 
32005             }, this);
32006             
32007         }, this);
32008         
32009     },
32010     
32011     _processHorizontalEndItem : function(eItems, maxX, minX, minY, isInstant)
32012     {
32013         Roo.each(eItems, function(b,k){
32014             
32015             b.size = (k == 0) ? 'sm' : 'xs';
32016             b.x = (k == 0) ? 2 : 1;
32017             b.y = (k == 0) ? 2 : 1;
32018             
32019             b.el.position('absolute');
32020             
32021             var width = Math.floor(this.unitWidth * b.x + (this.gutter * (b.x - 1)) + b.el.getPadding('lr'));
32022                 
32023             b.el.setWidth(width);
32024             
32025             var height = Math.floor(this.unitWidth * b.y + (this.gutter * (b.y - 1)) + b.el.getPadding('tb'));
32026             
32027             b.el.setHeight(height);
32028             
32029         }, this);
32030
32031         var positions = [];
32032         
32033         positions.push({
32034             x : maxX - this.unitWidth * 2 - this.gutter,
32035             y : minY
32036         });
32037         
32038         positions.push({
32039             x : maxX - this.unitWidth,
32040             y : minY + (this.unitWidth + this.gutter) * 2
32041         });
32042         
32043         positions.push({
32044             x : maxX - this.unitWidth * 3 - this.gutter * 2,
32045             y : minY
32046         });
32047         
32048         Roo.each(eItems, function(b,k){
32049             
32050             b.el.setXY([positions[k].x, positions[k].y], isInstant ? false : true);
32051
32052         }, this);
32053         
32054     },
32055     
32056     getVerticalOneBoxColPositions : function(x, y, box)
32057     {
32058         var pos = [];
32059         
32060         var rand = Math.floor(Math.random() * ((4 - box[0].x)));
32061         
32062         if(box[0].size == 'md-left'){
32063             rand = 0;
32064         }
32065         
32066         if(box[0].size == 'md-right'){
32067             rand = 1;
32068         }
32069         
32070         pos.push({
32071             x : x + (this.unitWidth + this.gutter) * rand,
32072             y : y
32073         });
32074         
32075         return pos;
32076     },
32077     
32078     getVerticalTwoBoxColPositions : function(x, y, box)
32079     {
32080         var pos = [];
32081         
32082         if(box[0].size == 'xs'){
32083             
32084             pos.push({
32085                 x : x,
32086                 y : y + ((this.unitHeight + this.gutter) * Math.floor(Math.random() * box[1].y))
32087             });
32088
32089             pos.push({
32090                 x : x + (this.unitWidth + this.gutter) * (3 - box[1].x),
32091                 y : y
32092             });
32093             
32094             return pos;
32095             
32096         }
32097         
32098         pos.push({
32099             x : x,
32100             y : y
32101         });
32102
32103         pos.push({
32104             x : x + (this.unitWidth + this.gutter) * 2,
32105             y : y + ((this.unitHeight + this.gutter) * Math.floor(Math.random() * box[0].y))
32106         });
32107         
32108         return pos;
32109         
32110     },
32111     
32112     getVerticalThreeBoxColPositions : function(x, y, box)
32113     {
32114         var pos = [];
32115         
32116         if(box[0].size == 'xs' && box[1].size == 'xs' && box[2].size == 'xs'){
32117             
32118             pos.push({
32119                 x : x,
32120                 y : y
32121             });
32122
32123             pos.push({
32124                 x : x + (this.unitWidth + this.gutter) * 1,
32125                 y : y
32126             });
32127             
32128             pos.push({
32129                 x : x + (this.unitWidth + this.gutter) * 2,
32130                 y : y
32131             });
32132             
32133             return pos;
32134             
32135         }
32136         
32137         if(box[0].size == 'xs' && box[1].size == 'xs'){
32138             
32139             pos.push({
32140                 x : x,
32141                 y : y
32142             });
32143
32144             pos.push({
32145                 x : x,
32146                 y : y + ((this.unitHeight + this.gutter) * (box[2].y - 1))
32147             });
32148             
32149             pos.push({
32150                 x : x + (this.unitWidth + this.gutter) * 1,
32151                 y : y
32152             });
32153             
32154             return pos;
32155             
32156         }
32157         
32158         pos.push({
32159             x : x,
32160             y : y
32161         });
32162
32163         pos.push({
32164             x : x + (this.unitWidth + this.gutter) * 2,
32165             y : y
32166         });
32167
32168         pos.push({
32169             x : x + (this.unitWidth + this.gutter) * 2,
32170             y : y + (this.unitHeight + this.gutter) * (box[0].y - 1)
32171         });
32172             
32173         return pos;
32174         
32175     },
32176     
32177     getVerticalFourBoxColPositions : function(x, y, box)
32178     {
32179         var pos = [];
32180         
32181         if(box[0].size == 'xs'){
32182             
32183             pos.push({
32184                 x : x,
32185                 y : y
32186             });
32187
32188             pos.push({
32189                 x : x,
32190                 y : y + (this.unitHeight + this.gutter) * 1
32191             });
32192             
32193             pos.push({
32194                 x : x,
32195                 y : y + (this.unitHeight + this.gutter) * 2
32196             });
32197             
32198             pos.push({
32199                 x : x + (this.unitWidth + this.gutter) * 1,
32200                 y : y
32201             });
32202             
32203             return pos;
32204             
32205         }
32206         
32207         pos.push({
32208             x : x,
32209             y : y
32210         });
32211
32212         pos.push({
32213             x : x + (this.unitWidth + this.gutter) * 2,
32214             y : y
32215         });
32216
32217         pos.push({
32218             x : x + (this.unitHeightunitWidth + this.gutter) * 2,
32219             y : y + (this.unitHeight + this.gutter) * 1
32220         });
32221
32222         pos.push({
32223             x : x + (this.unitWidth + this.gutter) * 2,
32224             y : y + (this.unitWidth + this.gutter) * 2
32225         });
32226
32227         return pos;
32228         
32229     },
32230     
32231     getHorizontalOneBoxColPositions : function(maxX, minY, box)
32232     {
32233         var pos = [];
32234         
32235         if(box[0].size == 'md-left'){
32236             pos.push({
32237                 x : maxX - this.unitWidth * (box[0].x - 1) - this.gutter * (box[0].x - 2),
32238                 y : minY
32239             });
32240             
32241             return pos;
32242         }
32243         
32244         if(box[0].size == 'md-right'){
32245             pos.push({
32246                 x : maxX - this.unitWidth * (box[0].x - 1) - this.gutter * (box[0].x - 2),
32247                 y : minY + (this.unitWidth + this.gutter) * 1
32248             });
32249             
32250             return pos;
32251         }
32252         
32253         var rand = Math.floor(Math.random() * (4 - box[0].y));
32254         
32255         pos.push({
32256             x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
32257             y : minY + (this.unitWidth + this.gutter) * rand
32258         });
32259         
32260         return pos;
32261         
32262     },
32263     
32264     getHorizontalTwoBoxColPositions : function(maxX, minY, box)
32265     {
32266         var pos = [];
32267         
32268         if(box[0].size == 'xs'){
32269             
32270             pos.push({
32271                 x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
32272                 y : minY
32273             });
32274
32275             pos.push({
32276                 x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
32277                 y : minY + (this.unitWidth + this.gutter) * (3 - box[1].y)
32278             });
32279             
32280             return pos;
32281             
32282         }
32283         
32284         pos.push({
32285             x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
32286             y : minY
32287         });
32288
32289         pos.push({
32290             x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
32291             y : minY + (this.unitWidth + this.gutter) * 2
32292         });
32293         
32294         return pos;
32295         
32296     },
32297     
32298     getHorizontalThreeBoxColPositions : function(maxX, minY, box)
32299     {
32300         var pos = [];
32301         
32302         if(box[0].size == 'xs' && box[1].size == 'xs' && box[2].size == 'xs'){
32303             
32304             pos.push({
32305                 x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
32306                 y : minY
32307             });
32308
32309             pos.push({
32310                 x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
32311                 y : minY + (this.unitWidth + this.gutter) * 1
32312             });
32313             
32314             pos.push({
32315                 x : maxX - this.unitWidth * box[2].x - this.gutter * (box[2].x - 1),
32316                 y : minY + (this.unitWidth + this.gutter) * 2
32317             });
32318             
32319             return pos;
32320             
32321         }
32322         
32323         if(box[0].size == 'xs' && box[1].size == 'xs'){
32324             
32325             pos.push({
32326                 x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
32327                 y : minY
32328             });
32329
32330             pos.push({
32331                 x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1) - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
32332                 y : minY
32333             });
32334             
32335             pos.push({
32336                 x : maxX - this.unitWidth * box[2].x - this.gutter * (box[2].x - 1),
32337                 y : minY + (this.unitWidth + this.gutter) * 1
32338             });
32339             
32340             return pos;
32341             
32342         }
32343         
32344         pos.push({
32345             x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
32346             y : minY
32347         });
32348
32349         pos.push({
32350             x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
32351             y : minY + (this.unitWidth + this.gutter) * 2
32352         });
32353
32354         pos.push({
32355             x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1) - this.unitWidth * box[2].x - this.gutter * (box[2].x - 1),
32356             y : minY + (this.unitWidth + this.gutter) * 2
32357         });
32358             
32359         return pos;
32360         
32361     },
32362     
32363     getHorizontalFourBoxColPositions : function(maxX, minY, box)
32364     {
32365         var pos = [];
32366         
32367         if(box[0].size == 'xs'){
32368             
32369             pos.push({
32370                 x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
32371                 y : minY
32372             });
32373
32374             pos.push({
32375                 x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1) - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
32376                 y : minY
32377             });
32378             
32379             pos.push({
32380                 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),
32381                 y : minY
32382             });
32383             
32384             pos.push({
32385                 x : maxX - this.unitWidth * box[3].x - this.gutter * (box[3].x - 1),
32386                 y : minY + (this.unitWidth + this.gutter) * 1
32387             });
32388             
32389             return pos;
32390             
32391         }
32392         
32393         pos.push({
32394             x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
32395             y : minY
32396         });
32397         
32398         pos.push({
32399             x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
32400             y : minY + (this.unitWidth + this.gutter) * 2
32401         });
32402         
32403         pos.push({
32404             x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1) - this.unitWidth * box[2].x - this.gutter * (box[2].x - 1),
32405             y : minY + (this.unitWidth + this.gutter) * 2
32406         });
32407         
32408         pos.push({
32409             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),
32410             y : minY + (this.unitWidth + this.gutter) * 2
32411         });
32412
32413         return pos;
32414         
32415     },
32416     
32417     /**
32418     * remove a Masonry Brick
32419     * @param {Roo.bootstrap.MasonryBrick} the masonry brick to remove
32420     */
32421     removeBrick : function(brick_id)
32422     {
32423         if (!brick_id) {
32424             return;
32425         }
32426         
32427         for (var i = 0; i<this.bricks.length; i++) {
32428             if (this.bricks[i].id == brick_id) {
32429                 this.bricks.splice(i,1);
32430                 this.el.dom.removeChild(Roo.get(brick_id).dom);
32431                 this.initial();
32432             }
32433         }
32434     },
32435     
32436     /**
32437     * adds a Masonry Brick
32438     * @param {Roo.bootstrap.MasonryBrick} the masonry brick to add
32439     */
32440     addBrick : function(cfg)
32441     {
32442         var cn = new Roo.bootstrap.MasonryBrick(cfg);
32443         //this.register(cn);
32444         cn.parentId = this.id;
32445         cn.render(this.el);
32446         return cn;
32447     },
32448     
32449     /**
32450     * register a Masonry Brick
32451     * @param {Roo.bootstrap.MasonryBrick} the masonry brick to add
32452     */
32453     
32454     register : function(brick)
32455     {
32456         this.bricks.push(brick);
32457         brick.masonryId = this.id;
32458     },
32459     
32460     /**
32461     * clear all the Masonry Brick
32462     */
32463     clearAll : function()
32464     {
32465         this.bricks = [];
32466         //this.getChildContainer().dom.innerHTML = "";
32467         this.el.dom.innerHTML = '';
32468     },
32469     
32470     getSelected : function()
32471     {
32472         if (!this.selectedBrick) {
32473             return false;
32474         }
32475         
32476         return this.selectedBrick;
32477     }
32478 });
32479
32480 Roo.apply(Roo.bootstrap.LayoutMasonry, {
32481     
32482     groups: {},
32483      /**
32484     * register a Masonry Layout
32485     * @param {Roo.bootstrap.LayoutMasonry} the masonry layout to add
32486     */
32487     
32488     register : function(layout)
32489     {
32490         this.groups[layout.id] = layout;
32491     },
32492     /**
32493     * fetch a  Masonry Layout based on the masonry layout ID
32494     * @param {string} the masonry layout to add
32495     * @returns {Roo.bootstrap.LayoutMasonry} the masonry layout
32496     */
32497     
32498     get: function(layout_id) {
32499         if (typeof(this.groups[layout_id]) == 'undefined') {
32500             return false;
32501         }
32502         return this.groups[layout_id] ;
32503     }
32504     
32505     
32506     
32507 });
32508
32509  
32510
32511  /**
32512  *
32513  * This is based on 
32514  * http://masonry.desandro.com
32515  *
32516  * The idea is to render all the bricks based on vertical width...
32517  *
32518  * The original code extends 'outlayer' - we might need to use that....
32519  * 
32520  */
32521
32522
32523 /**
32524  * @class Roo.bootstrap.LayoutMasonryAuto
32525  * @extends Roo.bootstrap.Component
32526  * Bootstrap Layout Masonry class
32527  * 
32528  * @constructor
32529  * Create a new Element
32530  * @param {Object} config The config object
32531  */
32532
32533 Roo.bootstrap.LayoutMasonryAuto = function(config){
32534     Roo.bootstrap.LayoutMasonryAuto.superclass.constructor.call(this, config);
32535 };
32536
32537 Roo.extend(Roo.bootstrap.LayoutMasonryAuto, Roo.bootstrap.Component,  {
32538     
32539       /**
32540      * @cfg {Boolean} isFitWidth  - resize the width..
32541      */   
32542     isFitWidth : false,  // options..
32543     /**
32544      * @cfg {Boolean} isOriginLeft = left align?
32545      */   
32546     isOriginLeft : true,
32547     /**
32548      * @cfg {Boolean} isOriginTop = top align?
32549      */   
32550     isOriginTop : false,
32551     /**
32552      * @cfg {Boolean} isLayoutInstant = no animation?
32553      */   
32554     isLayoutInstant : false, // needed?
32555     /**
32556      * @cfg {Boolean} isResizingContainer = not sure if this is used..
32557      */   
32558     isResizingContainer : true,
32559     /**
32560      * @cfg {Number} columnWidth  width of the columns 
32561      */   
32562     
32563     columnWidth : 0,
32564     
32565     /**
32566      * @cfg {Number} maxCols maximum number of columns
32567      */   
32568     
32569     maxCols: 0,
32570     /**
32571      * @cfg {Number} padHeight padding below box..
32572      */   
32573     
32574     padHeight : 10, 
32575     
32576     /**
32577      * @cfg {Boolean} isAutoInitial defalut true
32578      */   
32579     
32580     isAutoInitial : true, 
32581     
32582     // private?
32583     gutter : 0,
32584     
32585     containerWidth: 0,
32586     initialColumnWidth : 0,
32587     currentSize : null,
32588     
32589     colYs : null, // array.
32590     maxY : 0,
32591     padWidth: 10,
32592     
32593     
32594     tag: 'div',
32595     cls: '',
32596     bricks: null, //CompositeElement
32597     cols : 0, // array?
32598     // element : null, // wrapped now this.el
32599     _isLayoutInited : null, 
32600     
32601     
32602     getAutoCreate : function(){
32603         
32604         var cfg = {
32605             tag: this.tag,
32606             cls: 'blog-masonary-wrapper ' + this.cls,
32607             cn : {
32608                 cls : 'mas-boxes masonary'
32609             }
32610         };
32611         
32612         return cfg;
32613     },
32614     
32615     getChildContainer: function( )
32616     {
32617         if (this.boxesEl) {
32618             return this.boxesEl;
32619         }
32620         
32621         this.boxesEl = this.el.select('.mas-boxes').first();
32622         
32623         return this.boxesEl;
32624     },
32625     
32626     
32627     initEvents : function()
32628     {
32629         var _this = this;
32630         
32631         if(this.isAutoInitial){
32632             Roo.log('hook children rendered');
32633             this.on('childrenrendered', function() {
32634                 Roo.log('children rendered');
32635                 _this.initial();
32636             } ,this);
32637         }
32638         
32639     },
32640     
32641     initial : function()
32642     {
32643         this.reloadItems();
32644
32645         this.currentSize = this.el.getBox(true);
32646
32647         /// was window resize... - let's see if this works..
32648         Roo.EventManager.onWindowResize(this.resize, this); 
32649
32650         if(!this.isAutoInitial){
32651             this.layout();
32652             return;
32653         }
32654         
32655         this.layout.defer(500,this);
32656     },
32657     
32658     reloadItems: function()
32659     {
32660         this.bricks = this.el.select('.masonry-brick', true);
32661         
32662         this.bricks.each(function(b) {
32663             //Roo.log(b.getSize());
32664             if (!b.attr('originalwidth')) {
32665                 b.attr('originalwidth',  b.getSize().width);
32666             }
32667             
32668         });
32669         
32670         Roo.log(this.bricks.elements.length);
32671     },
32672     
32673     resize : function()
32674     {
32675         Roo.log('resize');
32676         var cs = this.el.getBox(true);
32677         
32678         if (this.currentSize.width == cs.width && this.currentSize.x == cs.x ) {
32679             Roo.log("no change in with or X");
32680             return;
32681         }
32682         this.currentSize = cs;
32683         this.layout();
32684     },
32685     
32686     layout : function()
32687     {
32688          Roo.log('layout');
32689         this._resetLayout();
32690         //this._manageStamps();
32691       
32692         // don't animate first layout
32693         var isInstant = this.isLayoutInstant !== undefined ? this.isLayoutInstant : !this._isLayoutInited;
32694         this.layoutItems( isInstant );
32695       
32696         // flag for initalized
32697         this._isLayoutInited = true;
32698     },
32699     
32700     layoutItems : function( isInstant )
32701     {
32702         //var items = this._getItemsForLayout( this.items );
32703         // original code supports filtering layout items.. we just ignore it..
32704         
32705         this._layoutItems( this.bricks , isInstant );
32706       
32707         this._postLayout();
32708     },
32709     _layoutItems : function ( items , isInstant)
32710     {
32711        //this.fireEvent( 'layout', this, items );
32712     
32713
32714         if ( !items || !items.elements.length ) {
32715           // no items, emit event with empty array
32716             return;
32717         }
32718
32719         var queue = [];
32720         items.each(function(item) {
32721             Roo.log("layout item");
32722             Roo.log(item);
32723             // get x/y object from method
32724             var position = this._getItemLayoutPosition( item );
32725             // enqueue
32726             position.item = item;
32727             position.isInstant = isInstant; // || item.isLayoutInstant; << not set yet...
32728             queue.push( position );
32729         }, this);
32730       
32731         this._processLayoutQueue( queue );
32732     },
32733     /** Sets position of item in DOM
32734     * @param {Element} item
32735     * @param {Number} x - horizontal position
32736     * @param {Number} y - vertical position
32737     * @param {Boolean} isInstant - disables transitions
32738     */
32739     _processLayoutQueue : function( queue )
32740     {
32741         for ( var i=0, len = queue.length; i < len; i++ ) {
32742             var obj = queue[i];
32743             obj.item.position('absolute');
32744             obj.item.setXY([obj.x,obj.y], obj.isInstant ? false : true);
32745         }
32746     },
32747       
32748     
32749     /**
32750     * Any logic you want to do after each layout,
32751     * i.e. size the container
32752     */
32753     _postLayout : function()
32754     {
32755         this.resizeContainer();
32756     },
32757     
32758     resizeContainer : function()
32759     {
32760         if ( !this.isResizingContainer ) {
32761             return;
32762         }
32763         var size = this._getContainerSize();
32764         if ( size ) {
32765             this.el.setSize(size.width,size.height);
32766             this.boxesEl.setSize(size.width,size.height);
32767         }
32768     },
32769     
32770     
32771     
32772     _resetLayout : function()
32773     {
32774         //this.getSize();  // -- does not really do anything.. it probably applies left/right etc. to obuject but not used
32775         this.colWidth = this.el.getWidth();
32776         //this.gutter = this.el.getWidth(); 
32777         
32778         this.measureColumns();
32779
32780         // reset column Y
32781         var i = this.cols;
32782         this.colYs = [];
32783         while (i--) {
32784             this.colYs.push( 0 );
32785         }
32786     
32787         this.maxY = 0;
32788     },
32789
32790     measureColumns : function()
32791     {
32792         this.getContainerWidth();
32793       // if columnWidth is 0, default to outerWidth of first item
32794         if ( !this.columnWidth ) {
32795             var firstItem = this.bricks.first();
32796             Roo.log(firstItem);
32797             this.columnWidth  = this.containerWidth;
32798             if (firstItem && firstItem.attr('originalwidth') ) {
32799                 this.columnWidth = 1* (firstItem.attr('originalwidth') || firstItem.getWidth());
32800             }
32801             // columnWidth fall back to item of first element
32802             Roo.log("set column width?");
32803                         this.initialColumnWidth = this.columnWidth  ;
32804
32805             // if first elem has no width, default to size of container
32806             
32807         }
32808         
32809         
32810         if (this.initialColumnWidth) {
32811             this.columnWidth = this.initialColumnWidth;
32812         }
32813         
32814         
32815             
32816         // column width is fixed at the top - however if container width get's smaller we should
32817         // reduce it...
32818         
32819         // this bit calcs how man columns..
32820             
32821         var columnWidth = this.columnWidth += this.gutter;
32822       
32823         // calculate columns
32824         var containerWidth = this.containerWidth + this.gutter;
32825         
32826         var cols = (containerWidth - this.padWidth) / (columnWidth - this.padWidth);
32827         // fix rounding errors, typically with gutters
32828         var excess = columnWidth - containerWidth % columnWidth;
32829         
32830         
32831         // if overshoot is less than a pixel, round up, otherwise floor it
32832         var mathMethod = excess && excess < 1 ? 'round' : 'floor';
32833         cols = Math[ mathMethod ]( cols );
32834         this.cols = Math.max( cols, 1 );
32835         this.cols = this.maxCols > 0 ? Math.min( this.cols, this.maxCols ) : this.cols;
32836         
32837          // padding positioning..
32838         var totalColWidth = this.cols * this.columnWidth;
32839         var padavail = this.containerWidth - totalColWidth;
32840         // so for 2 columns - we need 3 'pads'
32841         
32842         var padNeeded = (1+this.cols) * this.padWidth;
32843         
32844         var padExtra = Math.floor((padavail - padNeeded) / this.cols);
32845         
32846         this.columnWidth += padExtra
32847         //this.padWidth = Math.floor(padavail /  ( this.cols));
32848         
32849         // adjust colum width so that padding is fixed??
32850         
32851         // we have 3 columns ... total = width * 3
32852         // we have X left over... that should be used by 
32853         
32854         //if (this.expandC) {
32855             
32856         //}
32857         
32858         
32859         
32860     },
32861     
32862     getContainerWidth : function()
32863     {
32864        /* // container is parent if fit width
32865         var container = this.isFitWidth ? this.element.parentNode : this.element;
32866         // check that this.size and size are there
32867         // IE8 triggers resize on body size change, so they might not be
32868         
32869         var size = getSize( container );  //FIXME
32870         this.containerWidth = size && size.innerWidth; //FIXME
32871         */
32872          
32873         this.containerWidth = this.el.getBox(true).width;  //maybe use getComputedWidth
32874         
32875     },
32876     
32877     _getItemLayoutPosition : function( item )  // what is item?
32878     {
32879         // we resize the item to our columnWidth..
32880       
32881         item.setWidth(this.columnWidth);
32882         item.autoBoxAdjust  = false;
32883         
32884         var sz = item.getSize();
32885  
32886         // how many columns does this brick span
32887         var remainder = this.containerWidth % this.columnWidth;
32888         
32889         var mathMethod = remainder && remainder < 1 ? 'round' : 'ceil';
32890         // round if off by 1 pixel, otherwise use ceil
32891         var colSpan = Math[ mathMethod ]( sz.width  / this.columnWidth );
32892         colSpan = Math.min( colSpan, this.cols );
32893         
32894         // normally this should be '1' as we dont' currently allow multi width columns..
32895         
32896         var colGroup = this._getColGroup( colSpan );
32897         // get the minimum Y value from the columns
32898         var minimumY = Math.min.apply( Math, colGroup );
32899         Roo.log([ 'setHeight',  minimumY, sz.height, setHeight ]);
32900         
32901         var shortColIndex = colGroup.indexOf(  minimumY ); // broken on ie8..?? probably...
32902          
32903         // position the brick
32904         var position = {
32905             x: this.currentSize.x + (this.padWidth /2) + ((this.columnWidth + this.padWidth )* shortColIndex),
32906             y: this.currentSize.y + minimumY + this.padHeight
32907         };
32908         
32909         Roo.log(position);
32910         // apply setHeight to necessary columns
32911         var setHeight = minimumY + sz.height + this.padHeight;
32912         //Roo.log([ 'setHeight',  minimumY, sz.height, setHeight ]);
32913         
32914         var setSpan = this.cols + 1 - colGroup.length;
32915         for ( var i = 0; i < setSpan; i++ ) {
32916           this.colYs[ shortColIndex + i ] = setHeight ;
32917         }
32918       
32919         return position;
32920     },
32921     
32922     /**
32923      * @param {Number} colSpan - number of columns the element spans
32924      * @returns {Array} colGroup
32925      */
32926     _getColGroup : function( colSpan )
32927     {
32928         if ( colSpan < 2 ) {
32929           // if brick spans only one column, use all the column Ys
32930           return this.colYs;
32931         }
32932       
32933         var colGroup = [];
32934         // how many different places could this brick fit horizontally
32935         var groupCount = this.cols + 1 - colSpan;
32936         // for each group potential horizontal position
32937         for ( var i = 0; i < groupCount; i++ ) {
32938           // make an array of colY values for that one group
32939           var groupColYs = this.colYs.slice( i, i + colSpan );
32940           // and get the max value of the array
32941           colGroup[i] = Math.max.apply( Math, groupColYs );
32942         }
32943         return colGroup;
32944     },
32945     /*
32946     _manageStamp : function( stamp )
32947     {
32948         var stampSize =  stamp.getSize();
32949         var offset = stamp.getBox();
32950         // get the columns that this stamp affects
32951         var firstX = this.isOriginLeft ? offset.x : offset.right;
32952         var lastX = firstX + stampSize.width;
32953         var firstCol = Math.floor( firstX / this.columnWidth );
32954         firstCol = Math.max( 0, firstCol );
32955         
32956         var lastCol = Math.floor( lastX / this.columnWidth );
32957         // lastCol should not go over if multiple of columnWidth #425
32958         lastCol -= lastX % this.columnWidth ? 0 : 1;
32959         lastCol = Math.min( this.cols - 1, lastCol );
32960         
32961         // set colYs to bottom of the stamp
32962         var stampMaxY = ( this.isOriginTop ? offset.y : offset.bottom ) +
32963             stampSize.height;
32964             
32965         for ( var i = firstCol; i <= lastCol; i++ ) {
32966           this.colYs[i] = Math.max( stampMaxY, this.colYs[i] );
32967         }
32968     },
32969     */
32970     
32971     _getContainerSize : function()
32972     {
32973         this.maxY = Math.max.apply( Math, this.colYs );
32974         var size = {
32975             height: this.maxY
32976         };
32977       
32978         if ( this.isFitWidth ) {
32979             size.width = this._getContainerFitWidth();
32980         }
32981       
32982         return size;
32983     },
32984     
32985     _getContainerFitWidth : function()
32986     {
32987         var unusedCols = 0;
32988         // count unused columns
32989         var i = this.cols;
32990         while ( --i ) {
32991           if ( this.colYs[i] !== 0 ) {
32992             break;
32993           }
32994           unusedCols++;
32995         }
32996         // fit container to columns that have been used
32997         return ( this.cols - unusedCols ) * this.columnWidth - this.gutter;
32998     },
32999     
33000     needsResizeLayout : function()
33001     {
33002         var previousWidth = this.containerWidth;
33003         this.getContainerWidth();
33004         return previousWidth !== this.containerWidth;
33005     }
33006  
33007 });
33008
33009  
33010
33011  /*
33012  * - LGPL
33013  *
33014  * element
33015  * 
33016  */
33017
33018 /**
33019  * @class Roo.bootstrap.MasonryBrick
33020  * @extends Roo.bootstrap.Component
33021  * Bootstrap MasonryBrick class
33022  * 
33023  * @constructor
33024  * Create a new MasonryBrick
33025  * @param {Object} config The config object
33026  */
33027
33028 Roo.bootstrap.MasonryBrick = function(config){
33029     
33030     Roo.bootstrap.MasonryBrick.superclass.constructor.call(this, config);
33031     
33032     Roo.bootstrap.MasonryBrick.register(this);
33033     
33034     this.addEvents({
33035         // raw events
33036         /**
33037          * @event click
33038          * When a MasonryBrick is clcik
33039          * @param {Roo.bootstrap.MasonryBrick} this
33040          * @param {Roo.EventObject} e
33041          */
33042         "click" : true
33043     });
33044 };
33045
33046 Roo.extend(Roo.bootstrap.MasonryBrick, Roo.bootstrap.Component,  {
33047     
33048     /**
33049      * @cfg {String} title
33050      */   
33051     title : '',
33052     /**
33053      * @cfg {String} html
33054      */   
33055     html : '',
33056     /**
33057      * @cfg {String} bgimage
33058      */   
33059     bgimage : '',
33060     /**
33061      * @cfg {String} videourl
33062      */   
33063     videourl : '',
33064     /**
33065      * @cfg {String} cls
33066      */   
33067     cls : '',
33068     /**
33069      * @cfg {String} href
33070      */   
33071     href : '',
33072     /**
33073      * @cfg {String} size (xs|sm|md|md-left|md-right|tall|wide)
33074      */   
33075     size : 'xs',
33076     
33077     /**
33078      * @cfg {String} placetitle (center|bottom)
33079      */   
33080     placetitle : '',
33081     
33082     /**
33083      * @cfg {Boolean} isFitContainer defalut true
33084      */   
33085     isFitContainer : true, 
33086     
33087     /**
33088      * @cfg {Boolean} preventDefault defalut false
33089      */   
33090     preventDefault : false, 
33091     
33092     /**
33093      * @cfg {Boolean} inverse defalut false
33094      */   
33095     maskInverse : false, 
33096     
33097     getAutoCreate : function()
33098     {
33099         if(!this.isFitContainer){
33100             return this.getSplitAutoCreate();
33101         }
33102         
33103         var cls = 'masonry-brick masonry-brick-full';
33104         
33105         if(this.href.length){
33106             cls += ' masonry-brick-link';
33107         }
33108         
33109         if(this.bgimage.length){
33110             cls += ' masonry-brick-image';
33111         }
33112         
33113         if(this.maskInverse){
33114             cls += ' mask-inverse';
33115         }
33116         
33117         if(!this.html.length && !this.maskInverse && !this.videourl.length){
33118             cls += ' enable-mask';
33119         }
33120         
33121         if(this.size){
33122             cls += ' masonry-' + this.size + '-brick';
33123         }
33124         
33125         if(this.placetitle.length){
33126             
33127             switch (this.placetitle) {
33128                 case 'center' :
33129                     cls += ' masonry-center-title';
33130                     break;
33131                 case 'bottom' :
33132                     cls += ' masonry-bottom-title';
33133                     break;
33134                 default:
33135                     break;
33136             }
33137             
33138         } else {
33139             if(!this.html.length && !this.bgimage.length){
33140                 cls += ' masonry-center-title';
33141             }
33142
33143             if(!this.html.length && this.bgimage.length){
33144                 cls += ' masonry-bottom-title';
33145             }
33146         }
33147         
33148         if(this.cls){
33149             cls += ' ' + this.cls;
33150         }
33151         
33152         var cfg = {
33153             tag: (this.href.length) ? 'a' : 'div',
33154             cls: cls,
33155             cn: [
33156                 {
33157                     tag: 'div',
33158                     cls: 'masonry-brick-mask'
33159                 },
33160                 {
33161                     tag: 'div',
33162                     cls: 'masonry-brick-paragraph',
33163                     cn: []
33164                 }
33165             ]
33166         };
33167         
33168         if(this.href.length){
33169             cfg.href = this.href;
33170         }
33171         
33172         var cn = cfg.cn[1].cn;
33173         
33174         if(this.title.length){
33175             cn.push({
33176                 tag: 'h4',
33177                 cls: 'masonry-brick-title',
33178                 html: this.title
33179             });
33180         }
33181         
33182         if(this.html.length){
33183             cn.push({
33184                 tag: 'p',
33185                 cls: 'masonry-brick-text',
33186                 html: this.html
33187             });
33188         }
33189         
33190         if (!this.title.length && !this.html.length) {
33191             cfg.cn[1].cls += ' hide';
33192         }
33193         
33194         if(this.bgimage.length){
33195             cfg.cn.push({
33196                 tag: 'img',
33197                 cls: 'masonry-brick-image-view',
33198                 src: this.bgimage
33199             });
33200         }
33201         
33202         if(this.videourl.length){
33203             var vurl = this.videourl.replace(/https:\/\/youtu\.be/, 'https://www.youtube.com/embed/');
33204             // youtube support only?
33205             cfg.cn.push({
33206                 tag: 'iframe',
33207                 cls: 'masonry-brick-image-view',
33208                 src: vurl,
33209                 frameborder : 0,
33210                 allowfullscreen : true
33211             });
33212         }
33213         
33214         return cfg;
33215         
33216     },
33217     
33218     getSplitAutoCreate : function()
33219     {
33220         var cls = 'masonry-brick masonry-brick-split';
33221         
33222         if(this.href.length){
33223             cls += ' masonry-brick-link';
33224         }
33225         
33226         if(this.bgimage.length){
33227             cls += ' masonry-brick-image';
33228         }
33229         
33230         if(this.size){
33231             cls += ' masonry-' + this.size + '-brick';
33232         }
33233         
33234         switch (this.placetitle) {
33235             case 'center' :
33236                 cls += ' masonry-center-title';
33237                 break;
33238             case 'bottom' :
33239                 cls += ' masonry-bottom-title';
33240                 break;
33241             default:
33242                 if(!this.bgimage.length){
33243                     cls += ' masonry-center-title';
33244                 }
33245
33246                 if(this.bgimage.length){
33247                     cls += ' masonry-bottom-title';
33248                 }
33249                 break;
33250         }
33251         
33252         if(this.cls){
33253             cls += ' ' + this.cls;
33254         }
33255         
33256         var cfg = {
33257             tag: (this.href.length) ? 'a' : 'div',
33258             cls: cls,
33259             cn: [
33260                 {
33261                     tag: 'div',
33262                     cls: 'masonry-brick-split-head',
33263                     cn: [
33264                         {
33265                             tag: 'div',
33266                             cls: 'masonry-brick-paragraph',
33267                             cn: []
33268                         }
33269                     ]
33270                 },
33271                 {
33272                     tag: 'div',
33273                     cls: 'masonry-brick-split-body',
33274                     cn: []
33275                 }
33276             ]
33277         };
33278         
33279         if(this.href.length){
33280             cfg.href = this.href;
33281         }
33282         
33283         if(this.title.length){
33284             cfg.cn[0].cn[0].cn.push({
33285                 tag: 'h4',
33286                 cls: 'masonry-brick-title',
33287                 html: this.title
33288             });
33289         }
33290         
33291         if(this.html.length){
33292             cfg.cn[1].cn.push({
33293                 tag: 'p',
33294                 cls: 'masonry-brick-text',
33295                 html: this.html
33296             });
33297         }
33298
33299         if(this.bgimage.length){
33300             cfg.cn[0].cn.push({
33301                 tag: 'img',
33302                 cls: 'masonry-brick-image-view',
33303                 src: this.bgimage
33304             });
33305         }
33306         
33307         if(this.videourl.length){
33308             var vurl = this.videourl.replace(/https:\/\/youtu\.be/, 'https://www.youtube.com/embed/');
33309             // youtube support only?
33310             cfg.cn[0].cn.cn.push({
33311                 tag: 'iframe',
33312                 cls: 'masonry-brick-image-view',
33313                 src: vurl,
33314                 frameborder : 0,
33315                 allowfullscreen : true
33316             });
33317         }
33318         
33319         return cfg;
33320     },
33321     
33322     initEvents: function() 
33323     {
33324         switch (this.size) {
33325             case 'xs' :
33326                 this.x = 1;
33327                 this.y = 1;
33328                 break;
33329             case 'sm' :
33330                 this.x = 2;
33331                 this.y = 2;
33332                 break;
33333             case 'md' :
33334             case 'md-left' :
33335             case 'md-right' :
33336                 this.x = 3;
33337                 this.y = 3;
33338                 break;
33339             case 'tall' :
33340                 this.x = 2;
33341                 this.y = 3;
33342                 break;
33343             case 'wide' :
33344                 this.x = 3;
33345                 this.y = 2;
33346                 break;
33347             case 'wide-thin' :
33348                 this.x = 3;
33349                 this.y = 1;
33350                 break;
33351                         
33352             default :
33353                 break;
33354         }
33355         
33356         if(Roo.isTouch){
33357             this.el.on('touchstart', this.onTouchStart, this);
33358             this.el.on('touchmove', this.onTouchMove, this);
33359             this.el.on('touchend', this.onTouchEnd, this);
33360             this.el.on('contextmenu', this.onContextMenu, this);
33361         } else {
33362             this.el.on('mouseenter'  ,this.enter, this);
33363             this.el.on('mouseleave', this.leave, this);
33364             this.el.on('click', this.onClick, this);
33365         }
33366         
33367         if (typeof(this.parent().bricks) == 'object' && this.parent().bricks != null) {
33368             this.parent().bricks.push(this);   
33369         }
33370         
33371     },
33372     
33373     onClick: function(e, el)
33374     {
33375         var time = this.endTimer - this.startTimer;
33376         // Roo.log(e.preventDefault());
33377         if(Roo.isTouch){
33378             if(time > 1000){
33379                 e.preventDefault();
33380                 return;
33381             }
33382         }
33383         
33384         if(!this.preventDefault){
33385             return;
33386         }
33387         
33388         e.preventDefault();
33389         
33390         if (this.activeClass != '') {
33391             this.selectBrick();
33392         }
33393         
33394         this.fireEvent('click', this, e);
33395     },
33396     
33397     enter: function(e, el)
33398     {
33399         e.preventDefault();
33400         
33401         if(!this.isFitContainer || this.maskInverse || this.videourl.length){
33402             return;
33403         }
33404         
33405         if(this.bgimage.length && this.html.length){
33406             this.el.select('.masonry-brick-paragraph', true).first().setOpacity(0.9, true);
33407         }
33408     },
33409     
33410     leave: function(e, el)
33411     {
33412         e.preventDefault();
33413         
33414         if(!this.isFitContainer || this.maskInverse  || this.videourl.length){
33415             return;
33416         }
33417         
33418         if(this.bgimage.length && this.html.length){
33419             this.el.select('.masonry-brick-paragraph', true).first().setOpacity(0, true);
33420         }
33421     },
33422     
33423     onTouchStart: function(e, el)
33424     {
33425 //        e.preventDefault();
33426         
33427         this.touchmoved = false;
33428         
33429         if(!this.isFitContainer){
33430             return;
33431         }
33432         
33433         if(!this.bgimage.length || !this.html.length){
33434             return;
33435         }
33436         
33437         this.el.select('.masonry-brick-paragraph', true).first().setOpacity(0.9, true);
33438         
33439         this.timer = new Date().getTime();
33440         
33441     },
33442     
33443     onTouchMove: function(e, el)
33444     {
33445         this.touchmoved = true;
33446     },
33447     
33448     onContextMenu : function(e,el)
33449     {
33450         e.preventDefault();
33451         e.stopPropagation();
33452         return false;
33453     },
33454     
33455     onTouchEnd: function(e, el)
33456     {
33457 //        e.preventDefault();
33458         
33459         if((new Date().getTime() - this.timer > 1000) || !this.href.length || this.touchmoved){
33460         
33461             this.leave(e,el);
33462             
33463             return;
33464         }
33465         
33466         if(!this.bgimage.length || !this.html.length){
33467             
33468             if(this.href.length){
33469                 window.location.href = this.href;
33470             }
33471             
33472             return;
33473         }
33474         
33475         if(!this.isFitContainer){
33476             return;
33477         }
33478         
33479         this.el.select('.masonry-brick-paragraph', true).first().setOpacity(0, true);
33480         
33481         window.location.href = this.href;
33482     },
33483     
33484     //selection on single brick only
33485     selectBrick : function() {
33486         
33487         if (!this.parentId) {
33488             return;
33489         }
33490         
33491         var m = Roo.bootstrap.LayoutMasonry.get(this.parentId);
33492         var index = m.selectedBrick.indexOf(this.id);
33493         
33494         if ( index > -1) {
33495             m.selectedBrick.splice(index,1);
33496             this.el.removeClass(this.activeClass);
33497             return;
33498         }
33499         
33500         for(var i = 0; i < m.selectedBrick.length; i++) {
33501             var b = Roo.bootstrap.MasonryBrick.get(m.selectedBrick[i]);
33502             b.el.removeClass(b.activeClass);
33503         }
33504         
33505         m.selectedBrick = [];
33506         
33507         m.selectedBrick.push(this.id);
33508         this.el.addClass(this.activeClass);
33509         return;
33510     },
33511     
33512     isSelected : function(){
33513         return this.el.hasClass(this.activeClass);
33514         
33515     }
33516 });
33517
33518 Roo.apply(Roo.bootstrap.MasonryBrick, {
33519     
33520     //groups: {},
33521     groups : new Roo.util.MixedCollection(false, function(o) { return o.el.id; }),
33522      /**
33523     * register a Masonry Brick
33524     * @param {Roo.bootstrap.MasonryBrick} the masonry brick to add
33525     */
33526     
33527     register : function(brick)
33528     {
33529         //this.groups[brick.id] = brick;
33530         this.groups.add(brick.id, brick);
33531     },
33532     /**
33533     * fetch a  masonry brick based on the masonry brick ID
33534     * @param {string} the masonry brick to add
33535     * @returns {Roo.bootstrap.MasonryBrick} the masonry brick
33536     */
33537     
33538     get: function(brick_id) 
33539     {
33540         // if (typeof(this.groups[brick_id]) == 'undefined') {
33541         //     return false;
33542         // }
33543         // return this.groups[brick_id] ;
33544         
33545         if(this.groups.key(brick_id)) {
33546             return this.groups.key(brick_id);
33547         }
33548         
33549         return false;
33550     }
33551     
33552     
33553     
33554 });
33555
33556  /*
33557  * - LGPL
33558  *
33559  * element
33560  * 
33561  */
33562
33563 /**
33564  * @class Roo.bootstrap.Brick
33565  * @extends Roo.bootstrap.Component
33566  * Bootstrap Brick class
33567  * 
33568  * @constructor
33569  * Create a new Brick
33570  * @param {Object} config The config object
33571  */
33572
33573 Roo.bootstrap.Brick = function(config){
33574     Roo.bootstrap.Brick.superclass.constructor.call(this, config);
33575     
33576     this.addEvents({
33577         // raw events
33578         /**
33579          * @event click
33580          * When a Brick is click
33581          * @param {Roo.bootstrap.Brick} this
33582          * @param {Roo.EventObject} e
33583          */
33584         "click" : true
33585     });
33586 };
33587
33588 Roo.extend(Roo.bootstrap.Brick, Roo.bootstrap.Component,  {
33589     
33590     /**
33591      * @cfg {String} title
33592      */   
33593     title : '',
33594     /**
33595      * @cfg {String} html
33596      */   
33597     html : '',
33598     /**
33599      * @cfg {String} bgimage
33600      */   
33601     bgimage : '',
33602     /**
33603      * @cfg {String} cls
33604      */   
33605     cls : '',
33606     /**
33607      * @cfg {String} href
33608      */   
33609     href : '',
33610     /**
33611      * @cfg {String} video
33612      */   
33613     video : '',
33614     /**
33615      * @cfg {Boolean} square
33616      */   
33617     square : true,
33618     
33619     getAutoCreate : function()
33620     {
33621         var cls = 'roo-brick';
33622         
33623         if(this.href.length){
33624             cls += ' roo-brick-link';
33625         }
33626         
33627         if(this.bgimage.length){
33628             cls += ' roo-brick-image';
33629         }
33630         
33631         if(!this.html.length && !this.bgimage.length){
33632             cls += ' roo-brick-center-title';
33633         }
33634         
33635         if(!this.html.length && this.bgimage.length){
33636             cls += ' roo-brick-bottom-title';
33637         }
33638         
33639         if(this.cls){
33640             cls += ' ' + this.cls;
33641         }
33642         
33643         var cfg = {
33644             tag: (this.href.length) ? 'a' : 'div',
33645             cls: cls,
33646             cn: [
33647                 {
33648                     tag: 'div',
33649                     cls: 'roo-brick-paragraph',
33650                     cn: []
33651                 }
33652             ]
33653         };
33654         
33655         if(this.href.length){
33656             cfg.href = this.href;
33657         }
33658         
33659         var cn = cfg.cn[0].cn;
33660         
33661         if(this.title.length){
33662             cn.push({
33663                 tag: 'h4',
33664                 cls: 'roo-brick-title',
33665                 html: this.title
33666             });
33667         }
33668         
33669         if(this.html.length){
33670             cn.push({
33671                 tag: 'p',
33672                 cls: 'roo-brick-text',
33673                 html: this.html
33674             });
33675         } else {
33676             cn.cls += ' hide';
33677         }
33678         
33679         if(this.bgimage.length){
33680             cfg.cn.push({
33681                 tag: 'img',
33682                 cls: 'roo-brick-image-view',
33683                 src: this.bgimage
33684             });
33685         }
33686         
33687         return cfg;
33688     },
33689     
33690     initEvents: function() 
33691     {
33692         if(this.title.length || this.html.length){
33693             this.el.on('mouseenter'  ,this.enter, this);
33694             this.el.on('mouseleave', this.leave, this);
33695         }
33696         
33697         Roo.EventManager.onWindowResize(this.resize, this); 
33698         
33699         if(this.bgimage.length){
33700             this.imageEl = this.el.select('.roo-brick-image-view', true).first();
33701             this.imageEl.on('load', this.onImageLoad, this);
33702             return;
33703         }
33704         
33705         this.resize();
33706     },
33707     
33708     onImageLoad : function()
33709     {
33710         this.resize();
33711     },
33712     
33713     resize : function()
33714     {
33715         var paragraph = this.el.select('.roo-brick-paragraph', true).first();
33716         
33717         paragraph.setHeight(paragraph.getWidth() + paragraph.getPadding('tb'));
33718         
33719         if(this.bgimage.length){
33720             var image = this.el.select('.roo-brick-image-view', true).first();
33721             
33722             image.setWidth(paragraph.getWidth());
33723             
33724             if(this.square){
33725                 image.setHeight(paragraph.getWidth());
33726             }
33727             
33728             this.el.setHeight(image.getHeight());
33729             paragraph.setHeight(image.getHeight());
33730             
33731         }
33732         
33733     },
33734     
33735     enter: function(e, el)
33736     {
33737         e.preventDefault();
33738         
33739         if(this.bgimage.length){
33740             this.el.select('.roo-brick-paragraph', true).first().setOpacity(0.9, true);
33741             this.el.select('.roo-brick-image-view', true).first().setOpacity(0.1, true);
33742         }
33743     },
33744     
33745     leave: function(e, el)
33746     {
33747         e.preventDefault();
33748         
33749         if(this.bgimage.length){
33750             this.el.select('.roo-brick-paragraph', true).first().setOpacity(0, true);
33751             this.el.select('.roo-brick-image-view', true).first().setOpacity(1, true);
33752         }
33753     }
33754     
33755 });
33756
33757  
33758
33759  /*
33760  * - LGPL
33761  *
33762  * Number field 
33763  */
33764
33765 /**
33766  * @class Roo.bootstrap.NumberField
33767  * @extends Roo.bootstrap.Input
33768  * Bootstrap NumberField class
33769  * 
33770  * 
33771  * 
33772  * 
33773  * @constructor
33774  * Create a new NumberField
33775  * @param {Object} config The config object
33776  */
33777
33778 Roo.bootstrap.NumberField = function(config){
33779     Roo.bootstrap.NumberField.superclass.constructor.call(this, config);
33780 };
33781
33782 Roo.extend(Roo.bootstrap.NumberField, Roo.bootstrap.Input, {
33783     
33784     /**
33785      * @cfg {Boolean} allowDecimals False to disallow decimal values (defaults to true)
33786      */
33787     allowDecimals : true,
33788     /**
33789      * @cfg {String} decimalSeparator Character(s) to allow as the decimal separator (defaults to '.')
33790      */
33791     decimalSeparator : ".",
33792     /**
33793      * @cfg {Number} decimalPrecision The maximum precision to display after the decimal separator (defaults to 2)
33794      */
33795     decimalPrecision : 2,
33796     /**
33797      * @cfg {Boolean} allowNegative False to prevent entering a negative sign (defaults to true)
33798      */
33799     allowNegative : true,
33800     
33801     /**
33802      * @cfg {Boolean} allowZero False to blank out if the user enters '0' (defaults to true)
33803      */
33804     allowZero: true,
33805     /**
33806      * @cfg {Number} minValue The minimum allowed value (defaults to Number.NEGATIVE_INFINITY)
33807      */
33808     minValue : Number.NEGATIVE_INFINITY,
33809     /**
33810      * @cfg {Number} maxValue The maximum allowed value (defaults to Number.MAX_VALUE)
33811      */
33812     maxValue : Number.MAX_VALUE,
33813     /**
33814      * @cfg {String} minText Error text to display if the minimum value validation fails (defaults to "The minimum value for this field is {minValue}")
33815      */
33816     minText : "The minimum value for this field is {0}",
33817     /**
33818      * @cfg {String} maxText Error text to display if the maximum value validation fails (defaults to "The maximum value for this field is {maxValue}")
33819      */
33820     maxText : "The maximum value for this field is {0}",
33821     /**
33822      * @cfg {String} nanText Error text to display if the value is not a valid number.  For example, this can happen
33823      * if a valid character like '.' or '-' is left in the field with no number (defaults to "{value} is not a valid number")
33824      */
33825     nanText : "{0} is not a valid number",
33826     /**
33827      * @cfg {String} thousandsDelimiter Symbol of thousandsDelimiter
33828      */
33829     thousandsDelimiter : false,
33830     /**
33831      * @cfg {String} valueAlign alignment of value
33832      */
33833     valueAlign : "left",
33834
33835     getAutoCreate : function()
33836     {
33837         var hiddenInput = {
33838             tag: 'input',
33839             type: 'hidden',
33840             id: Roo.id(),
33841             cls: 'hidden-number-input'
33842         };
33843         
33844         if (this.name) {
33845             hiddenInput.name = this.name;
33846         }
33847         
33848         this.name = '';
33849         
33850         var cfg = Roo.bootstrap.NumberField.superclass.getAutoCreate.call(this);
33851         
33852         this.name = hiddenInput.name;
33853         
33854         if(cfg.cn.length > 0) {
33855             cfg.cn.push(hiddenInput);
33856         }
33857         
33858         return cfg;
33859     },
33860
33861     // private
33862     initEvents : function()
33863     {   
33864         Roo.bootstrap.NumberField.superclass.initEvents.call(this);
33865         
33866         var allowed = "0123456789";
33867         
33868         if(this.allowDecimals){
33869             allowed += this.decimalSeparator;
33870         }
33871         
33872         if(this.allowNegative){
33873             allowed += "-";
33874         }
33875         
33876         if(this.thousandsDelimiter) {
33877             allowed += ",";
33878         }
33879         
33880         this.stripCharsRe = new RegExp('[^'+allowed+']', 'gi');
33881         
33882         var keyPress = function(e){
33883             
33884             var k = e.getKey();
33885             
33886             var c = e.getCharCode();
33887             
33888             if(
33889                     (String.fromCharCode(c) == '.' || String.fromCharCode(c) == '-') &&
33890                     allowed.indexOf(String.fromCharCode(c)) === -1
33891             ){
33892                 e.stopEvent();
33893                 return;
33894             }
33895             
33896             if(!Roo.isIE && (e.isSpecialKey() || k == e.BACKSPACE || k == e.DELETE)){
33897                 return;
33898             }
33899             
33900             if(allowed.indexOf(String.fromCharCode(c)) === -1){
33901                 e.stopEvent();
33902             }
33903         };
33904         
33905         this.el.on("keypress", keyPress, this);
33906     },
33907     
33908     validateValue : function(value)
33909     {
33910         
33911         if(!Roo.bootstrap.NumberField.superclass.validateValue.call(this, value)){
33912             return false;
33913         }
33914         
33915         var num = this.parseValue(value);
33916         
33917         if(isNaN(num)){
33918             this.markInvalid(String.format(this.nanText, value));
33919             return false;
33920         }
33921         
33922         if(num < this.minValue){
33923             this.markInvalid(String.format(this.minText, this.minValue));
33924             return false;
33925         }
33926         
33927         if(num > this.maxValue){
33928             this.markInvalid(String.format(this.maxText, this.maxValue));
33929             return false;
33930         }
33931         
33932         return true;
33933     },
33934
33935     getValue : function()
33936     {
33937         var v = this.hiddenEl().getValue();
33938         
33939         return this.fixPrecision(this.parseValue(v));
33940     },
33941
33942     parseValue : function(value)
33943     {
33944         if(this.thousandsDelimiter) {
33945             value += "";
33946             r = new RegExp(",", "g");
33947             value = value.replace(r, "");
33948         }
33949         
33950         value = parseFloat(String(value).replace(this.decimalSeparator, "."));
33951         return isNaN(value) ? '' : value;
33952     },
33953
33954     fixPrecision : function(value)
33955     {
33956         if(this.thousandsDelimiter) {
33957             value += "";
33958             r = new RegExp(",", "g");
33959             value = value.replace(r, "");
33960         }
33961         
33962         var nan = isNaN(value);
33963         
33964         if(!this.allowDecimals || this.decimalPrecision == -1 || nan || !value){
33965             return nan ? '' : value;
33966         }
33967         return parseFloat(value).toFixed(this.decimalPrecision);
33968     },
33969
33970     setValue : function(v)
33971     {
33972         v = String(this.fixPrecision(v)).replace(".", this.decimalSeparator);
33973         
33974         this.value = v;
33975         
33976         if(this.rendered){
33977             
33978             this.hiddenEl().dom.value = (v === null || v === undefined ? '' : v);
33979             
33980             this.inputEl().dom.value = (v == '') ? '' :
33981                 Roo.util.Format.number(v, this.decimalPrecision, this.thousandsDelimiter || '');
33982             
33983             if(!this.allowZero && v === '0') {
33984                 this.hiddenEl().dom.value = '';
33985                 this.inputEl().dom.value = '';
33986             }
33987             
33988             this.validate();
33989         }
33990     },
33991
33992     decimalPrecisionFcn : function(v)
33993     {
33994         return Math.floor(v);
33995     },
33996
33997     beforeBlur : function()
33998     {
33999         var v = this.parseValue(this.getRawValue());
34000         
34001         if(v || v === 0 || v === ''){
34002             this.setValue(v);
34003         }
34004     },
34005     
34006     hiddenEl : function()
34007     {
34008         return this.el.select('input.hidden-number-input',true).first();
34009     }
34010     
34011 });
34012
34013  
34014
34015 /*
34016 * Licence: LGPL
34017 */
34018
34019 /**
34020  * @class Roo.bootstrap.DocumentSlider
34021  * @extends Roo.bootstrap.Component
34022  * Bootstrap DocumentSlider class
34023  * 
34024  * @constructor
34025  * Create a new DocumentViewer
34026  * @param {Object} config The config object
34027  */
34028
34029 Roo.bootstrap.DocumentSlider = function(config){
34030     Roo.bootstrap.DocumentSlider.superclass.constructor.call(this, config);
34031     
34032     this.files = [];
34033     
34034     this.addEvents({
34035         /**
34036          * @event initial
34037          * Fire after initEvent
34038          * @param {Roo.bootstrap.DocumentSlider} this
34039          */
34040         "initial" : true,
34041         /**
34042          * @event update
34043          * Fire after update
34044          * @param {Roo.bootstrap.DocumentSlider} this
34045          */
34046         "update" : true,
34047         /**
34048          * @event click
34049          * Fire after click
34050          * @param {Roo.bootstrap.DocumentSlider} this
34051          */
34052         "click" : true
34053     });
34054 };
34055
34056 Roo.extend(Roo.bootstrap.DocumentSlider, Roo.bootstrap.Component,  {
34057     
34058     files : false,
34059     
34060     indicator : 0,
34061     
34062     getAutoCreate : function()
34063     {
34064         var cfg = {
34065             tag : 'div',
34066             cls : 'roo-document-slider',
34067             cn : [
34068                 {
34069                     tag : 'div',
34070                     cls : 'roo-document-slider-header',
34071                     cn : [
34072                         {
34073                             tag : 'div',
34074                             cls : 'roo-document-slider-header-title'
34075                         }
34076                     ]
34077                 },
34078                 {
34079                     tag : 'div',
34080                     cls : 'roo-document-slider-body',
34081                     cn : [
34082                         {
34083                             tag : 'div',
34084                             cls : 'roo-document-slider-prev',
34085                             cn : [
34086                                 {
34087                                     tag : 'i',
34088                                     cls : 'fa fa-chevron-left'
34089                                 }
34090                             ]
34091                         },
34092                         {
34093                             tag : 'div',
34094                             cls : 'roo-document-slider-thumb',
34095                             cn : [
34096                                 {
34097                                     tag : 'img',
34098                                     cls : 'roo-document-slider-image'
34099                                 }
34100                             ]
34101                         },
34102                         {
34103                             tag : 'div',
34104                             cls : 'roo-document-slider-next',
34105                             cn : [
34106                                 {
34107                                     tag : 'i',
34108                                     cls : 'fa fa-chevron-right'
34109                                 }
34110                             ]
34111                         }
34112                     ]
34113                 }
34114             ]
34115         };
34116         
34117         return cfg;
34118     },
34119     
34120     initEvents : function()
34121     {
34122         this.headerEl = this.el.select('.roo-document-slider-header', true).first();
34123         this.headerEl.setVisibilityMode(Roo.Element.DISPLAY);
34124         
34125         this.titleEl = this.el.select('.roo-document-slider-header .roo-document-slider-header-title', true).first();
34126         this.titleEl.setVisibilityMode(Roo.Element.DISPLAY);
34127         
34128         this.bodyEl = this.el.select('.roo-document-slider-body', true).first();
34129         this.bodyEl.setVisibilityMode(Roo.Element.DISPLAY);
34130         
34131         this.thumbEl = this.el.select('.roo-document-slider-thumb', true).first();
34132         this.thumbEl.setVisibilityMode(Roo.Element.DISPLAY);
34133         
34134         this.imageEl = this.el.select('.roo-document-slider-image', true).first();
34135         this.imageEl.setVisibilityMode(Roo.Element.DISPLAY);
34136         
34137         this.prevIndicator = this.el.select('.roo-document-slider-prev i', true).first();
34138         this.prevIndicator.setVisibilityMode(Roo.Element.DISPLAY);
34139         
34140         this.nextIndicator = this.el.select('.roo-document-slider-next i', true).first();
34141         this.nextIndicator.setVisibilityMode(Roo.Element.DISPLAY);
34142         
34143         this.thumbEl.on('click', this.onClick, this);
34144         
34145         this.prevIndicator.on('click', this.prev, this);
34146         
34147         this.nextIndicator.on('click', this.next, this);
34148         
34149     },
34150     
34151     initial : function()
34152     {
34153         if(this.files.length){
34154             this.indicator = 1;
34155             this.update()
34156         }
34157         
34158         this.fireEvent('initial', this);
34159     },
34160     
34161     update : function()
34162     {
34163         this.imageEl.attr('src', this.files[this.indicator - 1]);
34164         
34165         this.titleEl.dom.innerHTML = String.format('{0} / {1}', this.indicator, this.files.length);
34166         
34167         this.prevIndicator.show();
34168         
34169         if(this.indicator == 1){
34170             this.prevIndicator.hide();
34171         }
34172         
34173         this.nextIndicator.show();
34174         
34175         if(this.indicator == this.files.length){
34176             this.nextIndicator.hide();
34177         }
34178         
34179         this.thumbEl.scrollTo('top');
34180         
34181         this.fireEvent('update', this);
34182     },
34183     
34184     onClick : function(e)
34185     {
34186         e.preventDefault();
34187         
34188         this.fireEvent('click', this);
34189     },
34190     
34191     prev : function(e)
34192     {
34193         e.preventDefault();
34194         
34195         this.indicator = Math.max(1, this.indicator - 1);
34196         
34197         this.update();
34198     },
34199     
34200     next : function(e)
34201     {
34202         e.preventDefault();
34203         
34204         this.indicator = Math.min(this.files.length, this.indicator + 1);
34205         
34206         this.update();
34207     }
34208 });
34209 /*
34210  * - LGPL
34211  *
34212  * RadioSet
34213  *
34214  *
34215  */
34216
34217 /**
34218  * @class Roo.bootstrap.RadioSet
34219  * @extends Roo.bootstrap.Input
34220  * Bootstrap RadioSet class
34221  * @cfg {String} indicatorpos (left|right) default left
34222  * @cfg {Boolean} inline (true|false) inline the element (default true)
34223  * @cfg {String} weight (primary|warning|info|danger|success) The text that appears beside the radio
34224  * @constructor
34225  * Create a new RadioSet
34226  * @param {Object} config The config object
34227  */
34228
34229 Roo.bootstrap.RadioSet = function(config){
34230     
34231     Roo.bootstrap.RadioSet.superclass.constructor.call(this, config);
34232     
34233     this.radioes = [];
34234     
34235     Roo.bootstrap.RadioSet.register(this);
34236     
34237     this.addEvents({
34238         /**
34239         * @event check
34240         * Fires when the element is checked or unchecked.
34241         * @param {Roo.bootstrap.RadioSet} this This radio
34242         * @param {Roo.bootstrap.Radio} item The checked item
34243         */
34244        check : true,
34245        /**
34246         * @event click
34247         * Fires when the element is click.
34248         * @param {Roo.bootstrap.RadioSet} this This radio set
34249         * @param {Roo.bootstrap.Radio} item The checked item
34250         * @param {Roo.EventObject} e The event object
34251         */
34252        click : true
34253     });
34254     
34255 };
34256
34257 Roo.extend(Roo.bootstrap.RadioSet, Roo.bootstrap.Input,  {
34258
34259     radioes : false,
34260     
34261     inline : true,
34262     
34263     weight : '',
34264     
34265     indicatorpos : 'left',
34266     
34267     getAutoCreate : function()
34268     {
34269         var label = {
34270             tag : 'label',
34271             cls : 'roo-radio-set-label',
34272             cn : [
34273                 {
34274                     tag : 'span',
34275                     html : this.fieldLabel
34276                 }
34277             ]
34278         };
34279         if (Roo.bootstrap.version == 3) {
34280             
34281             
34282             if(this.indicatorpos == 'left'){
34283                 label.cn.unshift({
34284                     tag : 'i',
34285                     cls : 'roo-required-indicator left-indicator text-danger fa fa-lg fa-star',
34286                     tooltip : 'This field is required'
34287                 });
34288             } else {
34289                 label.cn.push({
34290                     tag : 'i',
34291                     cls : 'roo-required-indicator right-indicator text-danger fa fa-lg fa-star',
34292                     tooltip : 'This field is required'
34293                 });
34294             }
34295         }
34296         var items = {
34297             tag : 'div',
34298             cls : 'roo-radio-set-items'
34299         };
34300         
34301         var align = (!this.labelAlign) ? this.parentLabelAlign() : this.labelAlign;
34302         
34303         if (align === 'left' && this.fieldLabel.length) {
34304             
34305             items = {
34306                 cls : "roo-radio-set-right", 
34307                 cn: [
34308                     items
34309                 ]
34310             };
34311             
34312             if(this.labelWidth > 12){
34313                 label.style = "width: " + this.labelWidth + 'px';
34314             }
34315             
34316             if(this.labelWidth < 13 && this.labelmd == 0){
34317                 this.labelmd = this.labelWidth;
34318             }
34319             
34320             if(this.labellg > 0){
34321                 label.cls += ' col-lg-' + this.labellg;
34322                 items.cls += ' col-lg-' + (12 - this.labellg);
34323             }
34324             
34325             if(this.labelmd > 0){
34326                 label.cls += ' col-md-' + this.labelmd;
34327                 items.cls += ' col-md-' + (12 - this.labelmd);
34328             }
34329             
34330             if(this.labelsm > 0){
34331                 label.cls += ' col-sm-' + this.labelsm;
34332                 items.cls += ' col-sm-' + (12 - this.labelsm);
34333             }
34334             
34335             if(this.labelxs > 0){
34336                 label.cls += ' col-xs-' + this.labelxs;
34337                 items.cls += ' col-xs-' + (12 - this.labelxs);
34338             }
34339         }
34340         
34341         var cfg = {
34342             tag : 'div',
34343             cls : 'roo-radio-set',
34344             cn : [
34345                 {
34346                     tag : 'input',
34347                     cls : 'roo-radio-set-input',
34348                     type : 'hidden',
34349                     name : this.name,
34350                     value : this.value ? this.value :  ''
34351                 },
34352                 label,
34353                 items
34354             ]
34355         };
34356         
34357         if(this.weight.length){
34358             cfg.cls += ' roo-radio-' + this.weight;
34359         }
34360         
34361         if(this.inline) {
34362             cfg.cls += ' roo-radio-set-inline';
34363         }
34364         
34365         var settings=this;
34366         ['xs','sm','md','lg'].map(function(size){
34367             if (settings[size]) {
34368                 cfg.cls += ' col-' + size + '-' + settings[size];
34369             }
34370         });
34371         
34372         return cfg;
34373         
34374     },
34375
34376     initEvents : function()
34377     {
34378         this.labelEl = this.el.select('.roo-radio-set-label', true).first();
34379         this.labelEl.setVisibilityMode(Roo.Element.DISPLAY);
34380         
34381         if(!this.fieldLabel.length){
34382             this.labelEl.hide();
34383         }
34384         
34385         this.itemsEl = this.el.select('.roo-radio-set-items', true).first();
34386         this.itemsEl.setVisibilityMode(Roo.Element.DISPLAY);
34387         
34388         this.indicator = this.indicatorEl();
34389         
34390         if(this.indicator){
34391             this.indicator.addClass('invisible');
34392         }
34393         
34394         this.originalValue = this.getValue();
34395         
34396     },
34397     
34398     inputEl: function ()
34399     {
34400         return this.el.select('.roo-radio-set-input', true).first();
34401     },
34402     
34403     getChildContainer : function()
34404     {
34405         return this.itemsEl;
34406     },
34407     
34408     register : function(item)
34409     {
34410         this.radioes.push(item);
34411         
34412     },
34413     
34414     validate : function()
34415     {   
34416         if(this.getVisibilityEl().hasClass('hidden')){
34417             return true;
34418         }
34419         
34420         var valid = false;
34421         
34422         Roo.each(this.radioes, function(i){
34423             if(!i.checked){
34424                 return;
34425             }
34426             
34427             valid = true;
34428             return false;
34429         });
34430         
34431         if(this.allowBlank) {
34432             return true;
34433         }
34434         
34435         if(this.disabled || valid){
34436             this.markValid();
34437             return true;
34438         }
34439         
34440         this.markInvalid();
34441         return false;
34442         
34443     },
34444     
34445     markValid : function()
34446     {
34447         if(this.labelEl.isVisible(true) && this.indicatorEl()){
34448             this.indicatorEl().removeClass('visible');
34449             this.indicatorEl().addClass('invisible');
34450         }
34451         
34452         
34453         if (Roo.bootstrap.version == 3) {
34454             this.el.removeClass([this.invalidClass, this.validClass]);
34455             this.el.addClass(this.validClass);
34456         } else {
34457             this.el.removeClass(['is-invalid','is-valid']);
34458             this.el.addClass(['is-valid']);
34459         }
34460         this.fireEvent('valid', this);
34461     },
34462     
34463     markInvalid : function(msg)
34464     {
34465         if(this.allowBlank || this.disabled){
34466             return;
34467         }
34468         
34469         if(this.labelEl.isVisible(true) && this.indicatorEl()){
34470             this.indicatorEl().removeClass('invisible');
34471             this.indicatorEl().addClass('visible');
34472         }
34473         if (Roo.bootstrap.version == 3) {
34474             this.el.removeClass([this.invalidClass, this.validClass]);
34475             this.el.addClass(this.invalidClass);
34476         } else {
34477             this.el.removeClass(['is-invalid','is-valid']);
34478             this.el.addClass(['is-invalid']);
34479         }
34480         
34481         this.fireEvent('invalid', this, msg);
34482         
34483     },
34484     
34485     setValue : function(v, suppressEvent)
34486     {   
34487         if(this.value === v){
34488             return;
34489         }
34490         
34491         this.value = v;
34492         
34493         if(this.rendered){
34494             this.inputEl().dom.value = (v === null || v === undefined ? '' : v);
34495         }
34496         
34497         Roo.each(this.radioes, function(i){
34498             i.checked = false;
34499             i.el.removeClass('checked');
34500         });
34501         
34502         Roo.each(this.radioes, function(i){
34503             
34504             if(i.value === v || i.value.toString() === v.toString()){
34505                 i.checked = true;
34506                 i.el.addClass('checked');
34507                 
34508                 if(suppressEvent !== true){
34509                     this.fireEvent('check', this, i);
34510                 }
34511                 
34512                 return false;
34513             }
34514             
34515         }, this);
34516         
34517         this.validate();
34518     },
34519     
34520     clearInvalid : function(){
34521         
34522         if(!this.el || this.preventMark){
34523             return;
34524         }
34525         
34526         this.el.removeClass([this.invalidClass]);
34527         
34528         this.fireEvent('valid', this);
34529     }
34530     
34531 });
34532
34533 Roo.apply(Roo.bootstrap.RadioSet, {
34534     
34535     groups: {},
34536     
34537     register : function(set)
34538     {
34539         this.groups[set.name] = set;
34540     },
34541     
34542     get: function(name) 
34543     {
34544         if (typeof(this.groups[name]) == 'undefined') {
34545             return false;
34546         }
34547         
34548         return this.groups[name] ;
34549     }
34550     
34551 });
34552 /*
34553  * Based on:
34554  * Ext JS Library 1.1.1
34555  * Copyright(c) 2006-2007, Ext JS, LLC.
34556  *
34557  * Originally Released Under LGPL - original licence link has changed is not relivant.
34558  *
34559  * Fork - LGPL
34560  * <script type="text/javascript">
34561  */
34562
34563
34564 /**
34565  * @class Roo.bootstrap.SplitBar
34566  * @extends Roo.util.Observable
34567  * Creates draggable splitter bar functionality from two elements (element to be dragged and element to be resized).
34568  * <br><br>
34569  * Usage:
34570  * <pre><code>
34571 var split = new Roo.bootstrap.SplitBar("elementToDrag", "elementToSize",
34572                    Roo.bootstrap.SplitBar.HORIZONTAL, Roo.bootstrap.SplitBar.LEFT);
34573 split.setAdapter(new Roo.bootstrap.SplitBar.AbsoluteLayoutAdapter("container"));
34574 split.minSize = 100;
34575 split.maxSize = 600;
34576 split.animate = true;
34577 split.on('moved', splitterMoved);
34578 </code></pre>
34579  * @constructor
34580  * Create a new SplitBar
34581  * @config {String/HTMLElement/Roo.Element} dragElement The element to be dragged and act as the SplitBar. 
34582  * @config {String/HTMLElement/Roo.Element} resizingElement The element to be resized based on where the SplitBar element is dragged 
34583  * @config {Number} orientation (optional) Either Roo.bootstrap.SplitBar.HORIZONTAL or Roo.bootstrap.SplitBar.VERTICAL. (Defaults to HORIZONTAL)
34584  * @config {Number} placement (optional) Either Roo.bootstrap.SplitBar.LEFT or Roo.bootstrap.SplitBar.RIGHT for horizontal or  
34585                         Roo.bootstrap.SplitBar.TOP or Roo.bootstrap.SplitBar.BOTTOM for vertical. (By default, this is determined automatically by the initial
34586                         position of the SplitBar).
34587  */
34588 Roo.bootstrap.SplitBar = function(cfg){
34589     
34590     /** @private */
34591     
34592     //{
34593     //  dragElement : elm
34594     //  resizingElement: el,
34595         // optional..
34596     //    orientation : Either Roo.bootstrap.SplitBar.HORIZONTAL
34597     //    placement : Roo.bootstrap.SplitBar.LEFT  ,
34598         // existingProxy ???
34599     //}
34600     
34601     this.el = Roo.get(cfg.dragElement, true);
34602     this.el.dom.unselectable = "on";
34603     /** @private */
34604     this.resizingEl = Roo.get(cfg.resizingElement, true);
34605
34606     /**
34607      * @private
34608      * The orientation of the split. Either Roo.bootstrap.SplitBar.HORIZONTAL or Roo.bootstrap.SplitBar.VERTICAL. (Defaults to HORIZONTAL)
34609      * Note: If this is changed after creating the SplitBar, the placement property must be manually updated
34610      * @type Number
34611      */
34612     this.orientation = cfg.orientation || Roo.bootstrap.SplitBar.HORIZONTAL;
34613     
34614     /**
34615      * The minimum size of the resizing element. (Defaults to 0)
34616      * @type Number
34617      */
34618     this.minSize = 0;
34619     
34620     /**
34621      * The maximum size of the resizing element. (Defaults to 2000)
34622      * @type Number
34623      */
34624     this.maxSize = 2000;
34625     
34626     /**
34627      * Whether to animate the transition to the new size
34628      * @type Boolean
34629      */
34630     this.animate = false;
34631     
34632     /**
34633      * Whether to create a transparent shim that overlays the page when dragging, enables dragging across iframes.
34634      * @type Boolean
34635      */
34636     this.useShim = false;
34637     
34638     /** @private */
34639     this.shim = null;
34640     
34641     if(!cfg.existingProxy){
34642         /** @private */
34643         this.proxy = Roo.bootstrap.SplitBar.createProxy(this.orientation);
34644     }else{
34645         this.proxy = Roo.get(cfg.existingProxy).dom;
34646     }
34647     /** @private */
34648     this.dd = new Roo.dd.DDProxy(this.el.dom.id, "XSplitBars", {dragElId : this.proxy.id});
34649     
34650     /** @private */
34651     this.dd.b4StartDrag = this.onStartProxyDrag.createDelegate(this);
34652     
34653     /** @private */
34654     this.dd.endDrag = this.onEndProxyDrag.createDelegate(this);
34655     
34656     /** @private */
34657     this.dragSpecs = {};
34658     
34659     /**
34660      * @private The adapter to use to positon and resize elements
34661      */
34662     this.adapter = new Roo.bootstrap.SplitBar.BasicLayoutAdapter();
34663     this.adapter.init(this);
34664     
34665     if(this.orientation == Roo.bootstrap.SplitBar.HORIZONTAL){
34666         /** @private */
34667         this.placement = cfg.placement || (this.el.getX() > this.resizingEl.getX() ? Roo.bootstrap.SplitBar.LEFT : Roo.bootstrap.SplitBar.RIGHT);
34668         this.el.addClass("roo-splitbar-h");
34669     }else{
34670         /** @private */
34671         this.placement = cfg.placement || (this.el.getY() > this.resizingEl.getY() ? Roo.bootstrap.SplitBar.TOP : Roo.bootstrap.SplitBar.BOTTOM);
34672         this.el.addClass("roo-splitbar-v");
34673     }
34674     
34675     this.addEvents({
34676         /**
34677          * @event resize
34678          * Fires when the splitter is moved (alias for {@link #event-moved})
34679          * @param {Roo.bootstrap.SplitBar} this
34680          * @param {Number} newSize the new width or height
34681          */
34682         "resize" : true,
34683         /**
34684          * @event moved
34685          * Fires when the splitter is moved
34686          * @param {Roo.bootstrap.SplitBar} this
34687          * @param {Number} newSize the new width or height
34688          */
34689         "moved" : true,
34690         /**
34691          * @event beforeresize
34692          * Fires before the splitter is dragged
34693          * @param {Roo.bootstrap.SplitBar} this
34694          */
34695         "beforeresize" : true,
34696
34697         "beforeapply" : true
34698     });
34699
34700     Roo.util.Observable.call(this);
34701 };
34702
34703 Roo.extend(Roo.bootstrap.SplitBar, Roo.util.Observable, {
34704     onStartProxyDrag : function(x, y){
34705         this.fireEvent("beforeresize", this);
34706         if(!this.overlay){
34707             var o = Roo.DomHelper.insertFirst(document.body,  {cls: "roo-drag-overlay", html: "&#160;"}, true);
34708             o.unselectable();
34709             o.enableDisplayMode("block");
34710             // all splitbars share the same overlay
34711             Roo.bootstrap.SplitBar.prototype.overlay = o;
34712         }
34713         this.overlay.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
34714         this.overlay.show();
34715         Roo.get(this.proxy).setDisplayed("block");
34716         var size = this.adapter.getElementSize(this);
34717         this.activeMinSize = this.getMinimumSize();;
34718         this.activeMaxSize = this.getMaximumSize();;
34719         var c1 = size - this.activeMinSize;
34720         var c2 = Math.max(this.activeMaxSize - size, 0);
34721         if(this.orientation == Roo.bootstrap.SplitBar.HORIZONTAL){
34722             this.dd.resetConstraints();
34723             this.dd.setXConstraint(
34724                 this.placement == Roo.bootstrap.SplitBar.LEFT ? c1 : c2, 
34725                 this.placement == Roo.bootstrap.SplitBar.LEFT ? c2 : c1
34726             );
34727             this.dd.setYConstraint(0, 0);
34728         }else{
34729             this.dd.resetConstraints();
34730             this.dd.setXConstraint(0, 0);
34731             this.dd.setYConstraint(
34732                 this.placement == Roo.bootstrap.SplitBar.TOP ? c1 : c2, 
34733                 this.placement == Roo.bootstrap.SplitBar.TOP ? c2 : c1
34734             );
34735          }
34736         this.dragSpecs.startSize = size;
34737         this.dragSpecs.startPoint = [x, y];
34738         Roo.dd.DDProxy.prototype.b4StartDrag.call(this.dd, x, y);
34739     },
34740     
34741     /** 
34742      * @private Called after the drag operation by the DDProxy
34743      */
34744     onEndProxyDrag : function(e){
34745         Roo.get(this.proxy).setDisplayed(false);
34746         var endPoint = Roo.lib.Event.getXY(e);
34747         if(this.overlay){
34748             this.overlay.hide();
34749         }
34750         var newSize;
34751         if(this.orientation == Roo.bootstrap.SplitBar.HORIZONTAL){
34752             newSize = this.dragSpecs.startSize + 
34753                 (this.placement == Roo.bootstrap.SplitBar.LEFT ?
34754                     endPoint[0] - this.dragSpecs.startPoint[0] :
34755                     this.dragSpecs.startPoint[0] - endPoint[0]
34756                 );
34757         }else{
34758             newSize = this.dragSpecs.startSize + 
34759                 (this.placement == Roo.bootstrap.SplitBar.TOP ?
34760                     endPoint[1] - this.dragSpecs.startPoint[1] :
34761                     this.dragSpecs.startPoint[1] - endPoint[1]
34762                 );
34763         }
34764         newSize = Math.min(Math.max(newSize, this.activeMinSize), this.activeMaxSize);
34765         if(newSize != this.dragSpecs.startSize){
34766             if(this.fireEvent('beforeapply', this, newSize) !== false){
34767                 this.adapter.setElementSize(this, newSize);
34768                 this.fireEvent("moved", this, newSize);
34769                 this.fireEvent("resize", this, newSize);
34770             }
34771         }
34772     },
34773     
34774     /**
34775      * Get the adapter this SplitBar uses
34776      * @return The adapter object
34777      */
34778     getAdapter : function(){
34779         return this.adapter;
34780     },
34781     
34782     /**
34783      * Set the adapter this SplitBar uses
34784      * @param {Object} adapter A SplitBar adapter object
34785      */
34786     setAdapter : function(adapter){
34787         this.adapter = adapter;
34788         this.adapter.init(this);
34789     },
34790     
34791     /**
34792      * Gets the minimum size for the resizing element
34793      * @return {Number} The minimum size
34794      */
34795     getMinimumSize : function(){
34796         return this.minSize;
34797     },
34798     
34799     /**
34800      * Sets the minimum size for the resizing element
34801      * @param {Number} minSize The minimum size
34802      */
34803     setMinimumSize : function(minSize){
34804         this.minSize = minSize;
34805     },
34806     
34807     /**
34808      * Gets the maximum size for the resizing element
34809      * @return {Number} The maximum size
34810      */
34811     getMaximumSize : function(){
34812         return this.maxSize;
34813     },
34814     
34815     /**
34816      * Sets the maximum size for the resizing element
34817      * @param {Number} maxSize The maximum size
34818      */
34819     setMaximumSize : function(maxSize){
34820         this.maxSize = maxSize;
34821     },
34822     
34823     /**
34824      * Sets the initialize size for the resizing element
34825      * @param {Number} size The initial size
34826      */
34827     setCurrentSize : function(size){
34828         var oldAnimate = this.animate;
34829         this.animate = false;
34830         this.adapter.setElementSize(this, size);
34831         this.animate = oldAnimate;
34832     },
34833     
34834     /**
34835      * Destroy this splitbar. 
34836      * @param {Boolean} removeEl True to remove the element
34837      */
34838     destroy : function(removeEl){
34839         if(this.shim){
34840             this.shim.remove();
34841         }
34842         this.dd.unreg();
34843         this.proxy.parentNode.removeChild(this.proxy);
34844         if(removeEl){
34845             this.el.remove();
34846         }
34847     }
34848 });
34849
34850 /**
34851  * @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.
34852  */
34853 Roo.bootstrap.SplitBar.createProxy = function(dir){
34854     var proxy = new Roo.Element(document.createElement("div"));
34855     proxy.unselectable();
34856     var cls = 'roo-splitbar-proxy';
34857     proxy.addClass(cls + ' ' + (dir == Roo.bootstrap.SplitBar.HORIZONTAL ? cls +'-h' : cls + '-v'));
34858     document.body.appendChild(proxy.dom);
34859     return proxy.dom;
34860 };
34861
34862 /** 
34863  * @class Roo.bootstrap.SplitBar.BasicLayoutAdapter
34864  * Default Adapter. It assumes the splitter and resizing element are not positioned
34865  * elements and only gets/sets the width of the element. Generally used for table based layouts.
34866  */
34867 Roo.bootstrap.SplitBar.BasicLayoutAdapter = function(){
34868 };
34869
34870 Roo.bootstrap.SplitBar.BasicLayoutAdapter.prototype = {
34871     // do nothing for now
34872     init : function(s){
34873     
34874     },
34875     /**
34876      * Called before drag operations to get the current size of the resizing element. 
34877      * @param {Roo.bootstrap.SplitBar} s The SplitBar using this adapter
34878      */
34879      getElementSize : function(s){
34880         if(s.orientation == Roo.bootstrap.SplitBar.HORIZONTAL){
34881             return s.resizingEl.getWidth();
34882         }else{
34883             return s.resizingEl.getHeight();
34884         }
34885     },
34886     
34887     /**
34888      * Called after drag operations to set the size of the resizing element.
34889      * @param {Roo.bootstrap.SplitBar} s The SplitBar using this adapter
34890      * @param {Number} newSize The new size to set
34891      * @param {Function} onComplete A function to be invoked when resizing is complete
34892      */
34893     setElementSize : function(s, newSize, onComplete){
34894         if(s.orientation == Roo.bootstrap.SplitBar.HORIZONTAL){
34895             if(!s.animate){
34896                 s.resizingEl.setWidth(newSize);
34897                 if(onComplete){
34898                     onComplete(s, newSize);
34899                 }
34900             }else{
34901                 s.resizingEl.setWidth(newSize, true, .1, onComplete, 'easeOut');
34902             }
34903         }else{
34904             
34905             if(!s.animate){
34906                 s.resizingEl.setHeight(newSize);
34907                 if(onComplete){
34908                     onComplete(s, newSize);
34909                 }
34910             }else{
34911                 s.resizingEl.setHeight(newSize, true, .1, onComplete, 'easeOut');
34912             }
34913         }
34914     }
34915 };
34916
34917 /** 
34918  *@class Roo.bootstrap.SplitBar.AbsoluteLayoutAdapter
34919  * @extends Roo.bootstrap.SplitBar.BasicLayoutAdapter
34920  * Adapter that  moves the splitter element to align with the resized sizing element. 
34921  * Used with an absolute positioned SplitBar.
34922  * @param {String/HTMLElement/Roo.Element} container The container that wraps around the absolute positioned content. If it's
34923  * document.body, make sure you assign an id to the body element.
34924  */
34925 Roo.bootstrap.SplitBar.AbsoluteLayoutAdapter = function(container){
34926     this.basic = new Roo.bootstrap.SplitBar.BasicLayoutAdapter();
34927     this.container = Roo.get(container);
34928 };
34929
34930 Roo.bootstrap.SplitBar.AbsoluteLayoutAdapter.prototype = {
34931     init : function(s){
34932         this.basic.init(s);
34933     },
34934     
34935     getElementSize : function(s){
34936         return this.basic.getElementSize(s);
34937     },
34938     
34939     setElementSize : function(s, newSize, onComplete){
34940         this.basic.setElementSize(s, newSize, this.moveSplitter.createDelegate(this, [s]));
34941     },
34942     
34943     moveSplitter : function(s){
34944         var yes = Roo.bootstrap.SplitBar;
34945         switch(s.placement){
34946             case yes.LEFT:
34947                 s.el.setX(s.resizingEl.getRight());
34948                 break;
34949             case yes.RIGHT:
34950                 s.el.setStyle("right", (this.container.getWidth() - s.resizingEl.getLeft()) + "px");
34951                 break;
34952             case yes.TOP:
34953                 s.el.setY(s.resizingEl.getBottom());
34954                 break;
34955             case yes.BOTTOM:
34956                 s.el.setY(s.resizingEl.getTop() - s.el.getHeight());
34957                 break;
34958         }
34959     }
34960 };
34961
34962 /**
34963  * Orientation constant - Create a vertical SplitBar
34964  * @static
34965  * @type Number
34966  */
34967 Roo.bootstrap.SplitBar.VERTICAL = 1;
34968
34969 /**
34970  * Orientation constant - Create a horizontal SplitBar
34971  * @static
34972  * @type Number
34973  */
34974 Roo.bootstrap.SplitBar.HORIZONTAL = 2;
34975
34976 /**
34977  * Placement constant - The resizing element is to the left of the splitter element
34978  * @static
34979  * @type Number
34980  */
34981 Roo.bootstrap.SplitBar.LEFT = 1;
34982
34983 /**
34984  * Placement constant - The resizing element is to the right of the splitter element
34985  * @static
34986  * @type Number
34987  */
34988 Roo.bootstrap.SplitBar.RIGHT = 2;
34989
34990 /**
34991  * Placement constant - The resizing element is positioned above the splitter element
34992  * @static
34993  * @type Number
34994  */
34995 Roo.bootstrap.SplitBar.TOP = 3;
34996
34997 /**
34998  * Placement constant - The resizing element is positioned under splitter element
34999  * @static
35000  * @type Number
35001  */
35002 Roo.bootstrap.SplitBar.BOTTOM = 4;
35003 Roo.namespace("Roo.bootstrap.layout");/*
35004  * Based on:
35005  * Ext JS Library 1.1.1
35006  * Copyright(c) 2006-2007, Ext JS, LLC.
35007  *
35008  * Originally Released Under LGPL - original licence link has changed is not relivant.
35009  *
35010  * Fork - LGPL
35011  * <script type="text/javascript">
35012  */
35013
35014 /**
35015  * @class Roo.bootstrap.layout.Manager
35016  * @extends Roo.bootstrap.Component
35017  * Base class for layout managers.
35018  */
35019 Roo.bootstrap.layout.Manager = function(config)
35020 {
35021     Roo.bootstrap.layout.Manager.superclass.constructor.call(this,config);
35022
35023
35024
35025
35026
35027     /** false to disable window resize monitoring @type Boolean */
35028     this.monitorWindowResize = true;
35029     this.regions = {};
35030     this.addEvents({
35031         /**
35032          * @event layout
35033          * Fires when a layout is performed.
35034          * @param {Roo.LayoutManager} this
35035          */
35036         "layout" : true,
35037         /**
35038          * @event regionresized
35039          * Fires when the user resizes a region.
35040          * @param {Roo.LayoutRegion} region The resized region
35041          * @param {Number} newSize The new size (width for east/west, height for north/south)
35042          */
35043         "regionresized" : true,
35044         /**
35045          * @event regioncollapsed
35046          * Fires when a region is collapsed.
35047          * @param {Roo.LayoutRegion} region The collapsed region
35048          */
35049         "regioncollapsed" : true,
35050         /**
35051          * @event regionexpanded
35052          * Fires when a region is expanded.
35053          * @param {Roo.LayoutRegion} region The expanded region
35054          */
35055         "regionexpanded" : true
35056     });
35057     this.updating = false;
35058
35059     if (config.el) {
35060         this.el = Roo.get(config.el);
35061         this.initEvents();
35062     }
35063
35064 };
35065
35066 Roo.extend(Roo.bootstrap.layout.Manager, Roo.bootstrap.Component, {
35067
35068
35069     regions : null,
35070
35071     monitorWindowResize : true,
35072
35073
35074     updating : false,
35075
35076
35077     onRender : function(ct, position)
35078     {
35079         if(!this.el){
35080             this.el = Roo.get(ct);
35081             this.initEvents();
35082         }
35083         //this.fireEvent('render',this);
35084     },
35085
35086
35087     initEvents: function()
35088     {
35089
35090
35091         // ie scrollbar fix
35092         if(this.el.dom == document.body && Roo.isIE && !config.allowScroll){
35093             document.body.scroll = "no";
35094         }else if(this.el.dom != document.body && this.el.getStyle('position') == 'static'){
35095             this.el.position('relative');
35096         }
35097         this.id = this.el.id;
35098         this.el.addClass("roo-layout-container");
35099         Roo.EventManager.onWindowResize(this.onWindowResize, this, true);
35100         if(this.el.dom != document.body ) {
35101             this.el.on('resize', this.layout,this);
35102             this.el.on('show', this.layout,this);
35103         }
35104
35105     },
35106
35107     /**
35108      * Returns true if this layout is currently being updated
35109      * @return {Boolean}
35110      */
35111     isUpdating : function(){
35112         return this.updating;
35113     },
35114
35115     /**
35116      * Suspend the LayoutManager from doing auto-layouts while
35117      * making multiple add or remove calls
35118      */
35119     beginUpdate : function(){
35120         this.updating = true;
35121     },
35122
35123     /**
35124      * Restore auto-layouts and optionally disable the manager from performing a layout
35125      * @param {Boolean} noLayout true to disable a layout update
35126      */
35127     endUpdate : function(noLayout){
35128         this.updating = false;
35129         if(!noLayout){
35130             this.layout();
35131         }
35132     },
35133
35134     layout: function(){
35135         // abstract...
35136     },
35137
35138     onRegionResized : function(region, newSize){
35139         this.fireEvent("regionresized", region, newSize);
35140         this.layout();
35141     },
35142
35143     onRegionCollapsed : function(region){
35144         this.fireEvent("regioncollapsed", region);
35145     },
35146
35147     onRegionExpanded : function(region){
35148         this.fireEvent("regionexpanded", region);
35149     },
35150
35151     /**
35152      * Returns the size of the current view. This method normalizes document.body and element embedded layouts and
35153      * performs box-model adjustments.
35154      * @return {Object} The size as an object {width: (the width), height: (the height)}
35155      */
35156     getViewSize : function()
35157     {
35158         var size;
35159         if(this.el.dom != document.body){
35160             size = this.el.getSize();
35161         }else{
35162             size = {width: Roo.lib.Dom.getViewWidth(), height: Roo.lib.Dom.getViewHeight()};
35163         }
35164         size.width -= this.el.getBorderWidth("lr")-this.el.getPadding("lr");
35165         size.height -= this.el.getBorderWidth("tb")-this.el.getPadding("tb");
35166         return size;
35167     },
35168
35169     /**
35170      * Returns the Element this layout is bound to.
35171      * @return {Roo.Element}
35172      */
35173     getEl : function(){
35174         return this.el;
35175     },
35176
35177     /**
35178      * Returns the specified region.
35179      * @param {String} target The region key ('center', 'north', 'south', 'east' or 'west')
35180      * @return {Roo.LayoutRegion}
35181      */
35182     getRegion : function(target){
35183         return this.regions[target.toLowerCase()];
35184     },
35185
35186     onWindowResize : function(){
35187         if(this.monitorWindowResize){
35188             this.layout();
35189         }
35190     }
35191 });
35192 /*
35193  * Based on:
35194  * Ext JS Library 1.1.1
35195  * Copyright(c) 2006-2007, Ext JS, LLC.
35196  *
35197  * Originally Released Under LGPL - original licence link has changed is not relivant.
35198  *
35199  * Fork - LGPL
35200  * <script type="text/javascript">
35201  */
35202 /**
35203  * @class Roo.bootstrap.layout.Border
35204  * @extends Roo.bootstrap.layout.Manager
35205  * This class represents a common layout manager used in desktop applications. For screenshots and more details,
35206  * please see: examples/bootstrap/nested.html<br><br>
35207  
35208 <b>The container the layout is rendered into can be either the body element or any other element.
35209 If it is not the body element, the container needs to either be an absolute positioned element,
35210 or you will need to add "position:relative" to the css of the container.  You will also need to specify
35211 the container size if it is not the body element.</b>
35212
35213 * @constructor
35214 * Create a new Border
35215 * @param {Object} config Configuration options
35216  */
35217 Roo.bootstrap.layout.Border = function(config){
35218     config = config || {};
35219     Roo.bootstrap.layout.Border.superclass.constructor.call(this, config);
35220     
35221     
35222     
35223     Roo.each(Roo.bootstrap.layout.Border.regions, function(region) {
35224         if(config[region]){
35225             config[region].region = region;
35226             this.addRegion(config[region]);
35227         }
35228     },this);
35229     
35230 };
35231
35232 Roo.bootstrap.layout.Border.regions =  ["north","south","east","west","center"];
35233
35234 Roo.extend(Roo.bootstrap.layout.Border, Roo.bootstrap.layout.Manager, {
35235     
35236     parent : false, // this might point to a 'nest' or a ???
35237     
35238     /**
35239      * Creates and adds a new region if it doesn't already exist.
35240      * @param {String} target The target region key (north, south, east, west or center).
35241      * @param {Object} config The regions config object
35242      * @return {BorderLayoutRegion} The new region
35243      */
35244     addRegion : function(config)
35245     {
35246         if(!this.regions[config.region]){
35247             var r = this.factory(config);
35248             this.bindRegion(r);
35249         }
35250         return this.regions[config.region];
35251     },
35252
35253     // private (kinda)
35254     bindRegion : function(r){
35255         this.regions[r.config.region] = r;
35256         
35257         r.on("visibilitychange",    this.layout, this);
35258         r.on("paneladded",          this.layout, this);
35259         r.on("panelremoved",        this.layout, this);
35260         r.on("invalidated",         this.layout, this);
35261         r.on("resized",             this.onRegionResized, this);
35262         r.on("collapsed",           this.onRegionCollapsed, this);
35263         r.on("expanded",            this.onRegionExpanded, this);
35264     },
35265
35266     /**
35267      * Performs a layout update.
35268      */
35269     layout : function()
35270     {
35271         if(this.updating) {
35272             return;
35273         }
35274         
35275         // render all the rebions if they have not been done alreayd?
35276         Roo.each(Roo.bootstrap.layout.Border.regions, function(region) {
35277             if(this.regions[region] && !this.regions[region].bodyEl){
35278                 this.regions[region].onRender(this.el)
35279             }
35280         },this);
35281         
35282         var size = this.getViewSize();
35283         var w = size.width;
35284         var h = size.height;
35285         var centerW = w;
35286         var centerH = h;
35287         var centerY = 0;
35288         var centerX = 0;
35289         //var x = 0, y = 0;
35290
35291         var rs = this.regions;
35292         var north = rs["north"];
35293         var south = rs["south"]; 
35294         var west = rs["west"];
35295         var east = rs["east"];
35296         var center = rs["center"];
35297         //if(this.hideOnLayout){ // not supported anymore
35298             //c.el.setStyle("display", "none");
35299         //}
35300         if(north && north.isVisible()){
35301             var b = north.getBox();
35302             var m = north.getMargins();
35303             b.width = w - (m.left+m.right);
35304             b.x = m.left;
35305             b.y = m.top;
35306             centerY = b.height + b.y + m.bottom;
35307             centerH -= centerY;
35308             north.updateBox(this.safeBox(b));
35309         }
35310         if(south && south.isVisible()){
35311             var b = south.getBox();
35312             var m = south.getMargins();
35313             b.width = w - (m.left+m.right);
35314             b.x = m.left;
35315             var totalHeight = (b.height + m.top + m.bottom);
35316             b.y = h - totalHeight + m.top;
35317             centerH -= totalHeight;
35318             south.updateBox(this.safeBox(b));
35319         }
35320         if(west && west.isVisible()){
35321             var b = west.getBox();
35322             var m = west.getMargins();
35323             b.height = centerH - (m.top+m.bottom);
35324             b.x = m.left;
35325             b.y = centerY + m.top;
35326             var totalWidth = (b.width + m.left + m.right);
35327             centerX += totalWidth;
35328             centerW -= totalWidth;
35329             west.updateBox(this.safeBox(b));
35330         }
35331         if(east && east.isVisible()){
35332             var b = east.getBox();
35333             var m = east.getMargins();
35334             b.height = centerH - (m.top+m.bottom);
35335             var totalWidth = (b.width + m.left + m.right);
35336             b.x = w - totalWidth + m.left;
35337             b.y = centerY + m.top;
35338             centerW -= totalWidth;
35339             east.updateBox(this.safeBox(b));
35340         }
35341         if(center){
35342             var m = center.getMargins();
35343             var centerBox = {
35344                 x: centerX + m.left,
35345                 y: centerY + m.top,
35346                 width: centerW - (m.left+m.right),
35347                 height: centerH - (m.top+m.bottom)
35348             };
35349             //if(this.hideOnLayout){
35350                 //center.el.setStyle("display", "block");
35351             //}
35352             center.updateBox(this.safeBox(centerBox));
35353         }
35354         this.el.repaint();
35355         this.fireEvent("layout", this);
35356     },
35357
35358     // private
35359     safeBox : function(box){
35360         box.width = Math.max(0, box.width);
35361         box.height = Math.max(0, box.height);
35362         return box;
35363     },
35364
35365     /**
35366      * Adds a ContentPanel (or subclass) to this layout.
35367      * @param {String} target The target region key (north, south, east, west or center).
35368      * @param {Roo.ContentPanel} panel The panel to add
35369      * @return {Roo.ContentPanel} The added panel
35370      */
35371     add : function(target, panel){
35372          
35373         target = target.toLowerCase();
35374         return this.regions[target].add(panel);
35375     },
35376
35377     /**
35378      * Remove a ContentPanel (or subclass) to this layout.
35379      * @param {String} target The target region key (north, south, east, west or center).
35380      * @param {Number/String/Roo.ContentPanel} panel The index, id or panel to remove
35381      * @return {Roo.ContentPanel} The removed panel
35382      */
35383     remove : function(target, panel){
35384         target = target.toLowerCase();
35385         return this.regions[target].remove(panel);
35386     },
35387
35388     /**
35389      * Searches all regions for a panel with the specified id
35390      * @param {String} panelId
35391      * @return {Roo.ContentPanel} The panel or null if it wasn't found
35392      */
35393     findPanel : function(panelId){
35394         var rs = this.regions;
35395         for(var target in rs){
35396             if(typeof rs[target] != "function"){
35397                 var p = rs[target].getPanel(panelId);
35398                 if(p){
35399                     return p;
35400                 }
35401             }
35402         }
35403         return null;
35404     },
35405
35406     /**
35407      * Searches all regions for a panel with the specified id and activates (shows) it.
35408      * @param {String/ContentPanel} panelId The panels id or the panel itself
35409      * @return {Roo.ContentPanel} The shown panel or null
35410      */
35411     showPanel : function(panelId) {
35412       var rs = this.regions;
35413       for(var target in rs){
35414          var r = rs[target];
35415          if(typeof r != "function"){
35416             if(r.hasPanel(panelId)){
35417                return r.showPanel(panelId);
35418             }
35419          }
35420       }
35421       return null;
35422    },
35423
35424    /**
35425      * Restores this layout's state using Roo.state.Manager or the state provided by the passed provider.
35426      * @param {Roo.state.Provider} provider (optional) An alternate state provider
35427      */
35428    /*
35429     restoreState : function(provider){
35430         if(!provider){
35431             provider = Roo.state.Manager;
35432         }
35433         var sm = new Roo.LayoutStateManager();
35434         sm.init(this, provider);
35435     },
35436 */
35437  
35438  
35439     /**
35440      * Adds a xtype elements to the layout.
35441      * <pre><code>
35442
35443 layout.addxtype({
35444        xtype : 'ContentPanel',
35445        region: 'west',
35446        items: [ .... ]
35447    }
35448 );
35449
35450 layout.addxtype({
35451         xtype : 'NestedLayoutPanel',
35452         region: 'west',
35453         layout: {
35454            center: { },
35455            west: { }   
35456         },
35457         items : [ ... list of content panels or nested layout panels.. ]
35458    }
35459 );
35460 </code></pre>
35461      * @param {Object} cfg Xtype definition of item to add.
35462      */
35463     addxtype : function(cfg)
35464     {
35465         // basically accepts a pannel...
35466         // can accept a layout region..!?!?
35467         //Roo.log('Roo.BorderLayout add ' + cfg.xtype)
35468         
35469         
35470         // theory?  children can only be panels??
35471         
35472         //if (!cfg.xtype.match(/Panel$/)) {
35473         //    return false;
35474         //}
35475         var ret = false;
35476         
35477         if (typeof(cfg.region) == 'undefined') {
35478             Roo.log("Failed to add Panel, region was not set");
35479             Roo.log(cfg);
35480             return false;
35481         }
35482         var region = cfg.region;
35483         delete cfg.region;
35484         
35485           
35486         var xitems = [];
35487         if (cfg.items) {
35488             xitems = cfg.items;
35489             delete cfg.items;
35490         }
35491         var nb = false;
35492         
35493         if ( region == 'center') {
35494             Roo.log("Center: " + cfg.title);
35495         }
35496         
35497         
35498         switch(cfg.xtype) 
35499         {
35500             case 'Content':  // ContentPanel (el, cfg)
35501             case 'Scroll':  // ContentPanel (el, cfg)
35502             case 'View': 
35503                 cfg.autoCreate = cfg.autoCreate || true;
35504                 ret = new cfg.xns[cfg.xtype](cfg); // new panel!!!!!
35505                 //} else {
35506                 //    var el = this.el.createChild();
35507                 //    ret = new Roo[cfg.xtype](el, cfg); // new panel!!!!!
35508                 //}
35509                 
35510                 this.add(region, ret);
35511                 break;
35512             
35513             /*
35514             case 'TreePanel': // our new panel!
35515                 cfg.el = this.el.createChild();
35516                 ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
35517                 this.add(region, ret);
35518                 break;
35519             */
35520             
35521             case 'Nest': 
35522                 // create a new Layout (which is  a Border Layout...
35523                 
35524                 var clayout = cfg.layout;
35525                 clayout.el  = this.el.createChild();
35526                 clayout.items   = clayout.items  || [];
35527                 
35528                 delete cfg.layout;
35529                 
35530                 // replace this exitems with the clayout ones..
35531                 xitems = clayout.items;
35532                  
35533                 // force background off if it's in center...
35534                 if (region == 'center' && this.active && this.getRegion('center').panels.length < 1) {
35535                     cfg.background = false;
35536                 }
35537                 cfg.layout  = new Roo.bootstrap.layout.Border(clayout);
35538                 
35539                 
35540                 ret = new cfg.xns[cfg.xtype](cfg); // new panel!!!!!
35541                 //console.log('adding nested layout panel '  + cfg.toSource());
35542                 this.add(region, ret);
35543                 nb = {}; /// find first...
35544                 break;
35545             
35546             case 'Grid':
35547                 
35548                 // needs grid and region
35549                 
35550                 //var el = this.getRegion(region).el.createChild();
35551                 /*
35552                  *var el = this.el.createChild();
35553                 // create the grid first...
35554                 cfg.grid.container = el;
35555                 cfg.grid = new cfg.grid.xns[cfg.grid.xtype](cfg.grid);
35556                 */
35557                 
35558                 if (region == 'center' && this.active ) {
35559                     cfg.background = false;
35560                 }
35561                 
35562                 ret = new cfg.xns[cfg.xtype](cfg); // new panel!!!!!
35563                 
35564                 this.add(region, ret);
35565                 /*
35566                 if (cfg.background) {
35567                     // render grid on panel activation (if panel background)
35568                     ret.on('activate', function(gp) {
35569                         if (!gp.grid.rendered) {
35570                     //        gp.grid.render(el);
35571                         }
35572                     });
35573                 } else {
35574                   //  cfg.grid.render(el);
35575                 }
35576                 */
35577                 break;
35578            
35579            
35580             case 'Border': // it can get called on it'self... - might need to check if this is fixed?
35581                 // it was the old xcomponent building that caused this before.
35582                 // espeically if border is the top element in the tree.
35583                 ret = this;
35584                 break; 
35585                 
35586                     
35587                 
35588                 
35589                 
35590             default:
35591                 /*
35592                 if (typeof(Roo[cfg.xtype]) != 'undefined') {
35593                     
35594                     ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
35595                     this.add(region, ret);
35596                 } else {
35597                 */
35598                     Roo.log(cfg);
35599                     throw "Can not add '" + cfg.xtype + "' to Border";
35600                     return null;
35601              
35602                                 
35603              
35604         }
35605         this.beginUpdate();
35606         // add children..
35607         var region = '';
35608         var abn = {};
35609         Roo.each(xitems, function(i)  {
35610             region = nb && i.region ? i.region : false;
35611             
35612             var add = ret.addxtype(i);
35613            
35614             if (region) {
35615                 nb[region] = nb[region] == undefined ? 0 : nb[region]+1;
35616                 if (!i.background) {
35617                     abn[region] = nb[region] ;
35618                 }
35619             }
35620             
35621         });
35622         this.endUpdate();
35623
35624         // make the last non-background panel active..
35625         //if (nb) { Roo.log(abn); }
35626         if (nb) {
35627             
35628             for(var r in abn) {
35629                 region = this.getRegion(r);
35630                 if (region) {
35631                     // tried using nb[r], but it does not work..
35632                      
35633                     region.showPanel(abn[r]);
35634                    
35635                 }
35636             }
35637         }
35638         return ret;
35639         
35640     },
35641     
35642     
35643 // private
35644     factory : function(cfg)
35645     {
35646         
35647         var validRegions = Roo.bootstrap.layout.Border.regions;
35648
35649         var target = cfg.region;
35650         cfg.mgr = this;
35651         
35652         var r = Roo.bootstrap.layout;
35653         Roo.log(target);
35654         switch(target){
35655             case "north":
35656                 return new r.North(cfg);
35657             case "south":
35658                 return new r.South(cfg);
35659             case "east":
35660                 return new r.East(cfg);
35661             case "west":
35662                 return new r.West(cfg);
35663             case "center":
35664                 return new r.Center(cfg);
35665         }
35666         throw 'Layout region "'+target+'" not supported.';
35667     }
35668     
35669     
35670 });
35671  /*
35672  * Based on:
35673  * Ext JS Library 1.1.1
35674  * Copyright(c) 2006-2007, Ext JS, LLC.
35675  *
35676  * Originally Released Under LGPL - original licence link has changed is not relivant.
35677  *
35678  * Fork - LGPL
35679  * <script type="text/javascript">
35680  */
35681  
35682 /**
35683  * @class Roo.bootstrap.layout.Basic
35684  * @extends Roo.util.Observable
35685  * This class represents a lightweight region in a layout manager. This region does not move dom nodes
35686  * and does not have a titlebar, tabs or any other features. All it does is size and position 
35687  * panels. To create a BasicLayoutRegion, add lightweight:true or basic:true to your regions config.
35688  * @cfg {Roo.bootstrap.layout.Manager}   mgr The manager
35689  * @cfg {string}   region  the region that it inhabits..
35690  * @cfg {bool}   skipConfig skip config?
35691  * 
35692
35693  */
35694 Roo.bootstrap.layout.Basic = function(config){
35695     
35696     this.mgr = config.mgr;
35697     
35698     this.position = config.region;
35699     
35700     var skipConfig = config.skipConfig;
35701     
35702     this.events = {
35703         /**
35704          * @scope Roo.BasicLayoutRegion
35705          */
35706         
35707         /**
35708          * @event beforeremove
35709          * Fires before a panel is removed (or closed). To cancel the removal set "e.cancel = true" on the event argument.
35710          * @param {Roo.LayoutRegion} this
35711          * @param {Roo.ContentPanel} panel The panel
35712          * @param {Object} e The cancel event object
35713          */
35714         "beforeremove" : true,
35715         /**
35716          * @event invalidated
35717          * Fires when the layout for this region is changed.
35718          * @param {Roo.LayoutRegion} this
35719          */
35720         "invalidated" : true,
35721         /**
35722          * @event visibilitychange
35723          * Fires when this region is shown or hidden 
35724          * @param {Roo.LayoutRegion} this
35725          * @param {Boolean} visibility true or false
35726          */
35727         "visibilitychange" : true,
35728         /**
35729          * @event paneladded
35730          * Fires when a panel is added. 
35731          * @param {Roo.LayoutRegion} this
35732          * @param {Roo.ContentPanel} panel The panel
35733          */
35734         "paneladded" : true,
35735         /**
35736          * @event panelremoved
35737          * Fires when a panel is removed. 
35738          * @param {Roo.LayoutRegion} this
35739          * @param {Roo.ContentPanel} panel The panel
35740          */
35741         "panelremoved" : true,
35742         /**
35743          * @event beforecollapse
35744          * Fires when this region before collapse.
35745          * @param {Roo.LayoutRegion} this
35746          */
35747         "beforecollapse" : true,
35748         /**
35749          * @event collapsed
35750          * Fires when this region is collapsed.
35751          * @param {Roo.LayoutRegion} this
35752          */
35753         "collapsed" : true,
35754         /**
35755          * @event expanded
35756          * Fires when this region is expanded.
35757          * @param {Roo.LayoutRegion} this
35758          */
35759         "expanded" : true,
35760         /**
35761          * @event slideshow
35762          * Fires when this region is slid into view.
35763          * @param {Roo.LayoutRegion} this
35764          */
35765         "slideshow" : true,
35766         /**
35767          * @event slidehide
35768          * Fires when this region slides out of view. 
35769          * @param {Roo.LayoutRegion} this
35770          */
35771         "slidehide" : true,
35772         /**
35773          * @event panelactivated
35774          * Fires when a panel is activated. 
35775          * @param {Roo.LayoutRegion} this
35776          * @param {Roo.ContentPanel} panel The activated panel
35777          */
35778         "panelactivated" : true,
35779         /**
35780          * @event resized
35781          * Fires when the user resizes this region. 
35782          * @param {Roo.LayoutRegion} this
35783          * @param {Number} newSize The new size (width for east/west, height for north/south)
35784          */
35785         "resized" : true
35786     };
35787     /** A collection of panels in this region. @type Roo.util.MixedCollection */
35788     this.panels = new Roo.util.MixedCollection();
35789     this.panels.getKey = this.getPanelId.createDelegate(this);
35790     this.box = null;
35791     this.activePanel = null;
35792     // ensure listeners are added...
35793     
35794     if (config.listeners || config.events) {
35795         Roo.bootstrap.layout.Basic.superclass.constructor.call(this, {
35796             listeners : config.listeners || {},
35797             events : config.events || {}
35798         });
35799     }
35800     
35801     if(skipConfig !== true){
35802         this.applyConfig(config);
35803     }
35804 };
35805
35806 Roo.extend(Roo.bootstrap.layout.Basic, Roo.util.Observable,
35807 {
35808     getPanelId : function(p){
35809         return p.getId();
35810     },
35811     
35812     applyConfig : function(config){
35813         this.margins = config.margins || this.margins || {top: 0, left: 0, right:0, bottom: 0};
35814         this.config = config;
35815         
35816     },
35817     
35818     /**
35819      * Resizes the region to the specified size. For vertical regions (west, east) this adjusts 
35820      * the width, for horizontal (north, south) the height.
35821      * @param {Number} newSize The new width or height
35822      */
35823     resizeTo : function(newSize){
35824         var el = this.el ? this.el :
35825                  (this.activePanel ? this.activePanel.getEl() : null);
35826         if(el){
35827             switch(this.position){
35828                 case "east":
35829                 case "west":
35830                     el.setWidth(newSize);
35831                     this.fireEvent("resized", this, newSize);
35832                 break;
35833                 case "north":
35834                 case "south":
35835                     el.setHeight(newSize);
35836                     this.fireEvent("resized", this, newSize);
35837                 break;                
35838             }
35839         }
35840     },
35841     
35842     getBox : function(){
35843         return this.activePanel ? this.activePanel.getEl().getBox(false, true) : null;
35844     },
35845     
35846     getMargins : function(){
35847         return this.margins;
35848     },
35849     
35850     updateBox : function(box){
35851         this.box = box;
35852         var el = this.activePanel.getEl();
35853         el.dom.style.left = box.x + "px";
35854         el.dom.style.top = box.y + "px";
35855         this.activePanel.setSize(box.width, box.height);
35856     },
35857     
35858     /**
35859      * Returns the container element for this region.
35860      * @return {Roo.Element}
35861      */
35862     getEl : function(){
35863         return this.activePanel;
35864     },
35865     
35866     /**
35867      * Returns true if this region is currently visible.
35868      * @return {Boolean}
35869      */
35870     isVisible : function(){
35871         return this.activePanel ? true : false;
35872     },
35873     
35874     setActivePanel : function(panel){
35875         panel = this.getPanel(panel);
35876         if(this.activePanel && this.activePanel != panel){
35877             this.activePanel.setActiveState(false);
35878             this.activePanel.getEl().setLeftTop(-10000,-10000);
35879         }
35880         this.activePanel = panel;
35881         panel.setActiveState(true);
35882         if(this.box){
35883             panel.setSize(this.box.width, this.box.height);
35884         }
35885         this.fireEvent("panelactivated", this, panel);
35886         this.fireEvent("invalidated");
35887     },
35888     
35889     /**
35890      * Show the specified panel.
35891      * @param {Number/String/ContentPanel} panelId The panels index, id or the panel itself
35892      * @return {Roo.ContentPanel} The shown panel or null
35893      */
35894     showPanel : function(panel){
35895         panel = this.getPanel(panel);
35896         if(panel){
35897             this.setActivePanel(panel);
35898         }
35899         return panel;
35900     },
35901     
35902     /**
35903      * Get the active panel for this region.
35904      * @return {Roo.ContentPanel} The active panel or null
35905      */
35906     getActivePanel : function(){
35907         return this.activePanel;
35908     },
35909     
35910     /**
35911      * Add the passed ContentPanel(s)
35912      * @param {ContentPanel...} panel The ContentPanel(s) to add (you can pass more than one)
35913      * @return {Roo.ContentPanel} The panel added (if only one was added)
35914      */
35915     add : function(panel){
35916         if(arguments.length > 1){
35917             for(var i = 0, len = arguments.length; i < len; i++) {
35918                 this.add(arguments[i]);
35919             }
35920             return null;
35921         }
35922         if(this.hasPanel(panel)){
35923             this.showPanel(panel);
35924             return panel;
35925         }
35926         var el = panel.getEl();
35927         if(el.dom.parentNode != this.mgr.el.dom){
35928             this.mgr.el.dom.appendChild(el.dom);
35929         }
35930         if(panel.setRegion){
35931             panel.setRegion(this);
35932         }
35933         this.panels.add(panel);
35934         el.setStyle("position", "absolute");
35935         if(!panel.background){
35936             this.setActivePanel(panel);
35937             if(this.config.initialSize && this.panels.getCount()==1){
35938                 this.resizeTo(this.config.initialSize);
35939             }
35940         }
35941         this.fireEvent("paneladded", this, panel);
35942         return panel;
35943     },
35944     
35945     /**
35946      * Returns true if the panel is in this region.
35947      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
35948      * @return {Boolean}
35949      */
35950     hasPanel : function(panel){
35951         if(typeof panel == "object"){ // must be panel obj
35952             panel = panel.getId();
35953         }
35954         return this.getPanel(panel) ? true : false;
35955     },
35956     
35957     /**
35958      * Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed.
35959      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
35960      * @param {Boolean} preservePanel Overrides the config preservePanel option
35961      * @return {Roo.ContentPanel} The panel that was removed
35962      */
35963     remove : function(panel, preservePanel){
35964         panel = this.getPanel(panel);
35965         if(!panel){
35966             return null;
35967         }
35968         var e = {};
35969         this.fireEvent("beforeremove", this, panel, e);
35970         if(e.cancel === true){
35971             return null;
35972         }
35973         var panelId = panel.getId();
35974         this.panels.removeKey(panelId);
35975         return panel;
35976     },
35977     
35978     /**
35979      * Returns the panel specified or null if it's not in this region.
35980      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
35981      * @return {Roo.ContentPanel}
35982      */
35983     getPanel : function(id){
35984         if(typeof id == "object"){ // must be panel obj
35985             return id;
35986         }
35987         return this.panels.get(id);
35988     },
35989     
35990     /**
35991      * Returns this regions position (north/south/east/west/center).
35992      * @return {String} 
35993      */
35994     getPosition: function(){
35995         return this.position;    
35996     }
35997 });/*
35998  * Based on:
35999  * Ext JS Library 1.1.1
36000  * Copyright(c) 2006-2007, Ext JS, LLC.
36001  *
36002  * Originally Released Under LGPL - original licence link has changed is not relivant.
36003  *
36004  * Fork - LGPL
36005  * <script type="text/javascript">
36006  */
36007  
36008 /**
36009  * @class Roo.bootstrap.layout.Region
36010  * @extends Roo.bootstrap.layout.Basic
36011  * This class represents a region in a layout manager.
36012  
36013  * @cfg {Object}    margins         Margins for the element (defaults to {top: 0, left: 0, right:0, bottom: 0})
36014  * @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})
36015  * @cfg {String}    tabPosition     (top|bottom) "top" or "bottom" (defaults to "bottom")
36016  * @cfg {Boolean}   alwaysShowTabs  True to always display tabs even when there is only 1 panel (defaults to false)
36017  * @cfg {Boolean}   autoScroll      True to enable overflow scrolling (defaults to false)
36018  * @cfg {Boolean}   titlebar        True to display a title bar (defaults to true)
36019  * @cfg {String}    title           The title for the region (overrides panel titles)
36020  * @cfg {Boolean}   animate         True to animate expand/collapse (defaults to false)
36021  * @cfg {Boolean}   autoHide        False to disable auto hiding when the mouse leaves the "floated" region (defaults to true)
36022  * @cfg {Boolean}   preservePanels  True to preserve removed panels so they can be readded later (defaults to false)
36023  * @cfg {Boolean}   closeOnTab      True to place the close icon on the tabs instead of the region titlebar (defaults to false)
36024  * @cfg {Boolean}   hideTabs        True to hide the tab strip (defaults to false)
36025  * @cfg {Boolean}   resizeTabs      True to enable automatic tab resizing. This will resize the tabs so they are all the same size and fit within
36026  *                      the space available, similar to FireFox 1.5 tabs (defaults to false)
36027  * @cfg {Number}    minTabWidth     The minimum tab width (defaults to 40)
36028  * @cfg {Number}    preferredTabWidth The preferred tab width (defaults to 150)
36029  * @cfg {String}    overflow       (hidden|visible) if you have menus in the region, then you need to set this to visible.
36030
36031  * @cfg {Boolean}   hidden          True to start the region hidden (defaults to false)
36032  * @cfg {Boolean}   hideWhenEmpty   True to hide the region when it has no panels
36033  * @cfg {Boolean}   disableTabTips  True to disable tab tooltips
36034  * @cfg {Number}    width           For East/West panels
36035  * @cfg {Number}    height          For North/South panels
36036  * @cfg {Boolean}   split           To show the splitter
36037  * @cfg {Boolean}   toolbar         xtype configuration for a toolbar - shows on right of tabbar
36038  * 
36039  * @cfg {string}   cls             Extra CSS classes to add to region
36040  * 
36041  * @cfg {Roo.bootstrap.layout.Manager}   mgr The manager
36042  * @cfg {string}   region  the region that it inhabits..
36043  *
36044
36045  * @xxxcfg {Boolean}   collapsible     DISABLED False to disable collapsing (defaults to true)
36046  * @xxxcfg {Boolean}   collapsed       DISABLED True to set the initial display to collapsed (defaults to false)
36047
36048  * @xxxcfg {String}    collapsedTitle  DISABLED Optional string message to display in the collapsed block of a north or south region
36049  * @xxxxcfg {Boolean}   floatable       DISABLED False to disable floating (defaults to true)
36050  * @xxxxcfg {Boolean}   showPin         True to show a pin button NOT SUPPORTED YET
36051  */
36052 Roo.bootstrap.layout.Region = function(config)
36053 {
36054     this.applyConfig(config);
36055
36056     var mgr = config.mgr;
36057     var pos = config.region;
36058     config.skipConfig = true;
36059     Roo.bootstrap.layout.Region.superclass.constructor.call(this, config);
36060     
36061     if (mgr.el) {
36062         this.onRender(mgr.el);   
36063     }
36064      
36065     this.visible = true;
36066     this.collapsed = false;
36067     this.unrendered_panels = [];
36068 };
36069
36070 Roo.extend(Roo.bootstrap.layout.Region, Roo.bootstrap.layout.Basic, {
36071
36072     position: '', // set by wrapper (eg. north/south etc..)
36073     unrendered_panels : null,  // unrendered panels.
36074     
36075     tabPosition : false,
36076     
36077     mgr: false, // points to 'Border'
36078     
36079     
36080     createBody : function(){
36081         /** This region's body element 
36082         * @type Roo.Element */
36083         this.bodyEl = this.el.createChild({
36084                 tag: "div",
36085                 cls: "roo-layout-panel-body tab-content" // bootstrap added...
36086         });
36087     },
36088
36089     onRender: function(ctr, pos)
36090     {
36091         var dh = Roo.DomHelper;
36092         /** This region's container element 
36093         * @type Roo.Element */
36094         this.el = dh.append(ctr.dom, {
36095                 tag: "div",
36096                 cls: (this.config.cls || '') + " roo-layout-region roo-layout-panel roo-layout-panel-" + this.position
36097             }, true);
36098         /** This region's title element 
36099         * @type Roo.Element */
36100     
36101         this.titleEl = dh.append(this.el.dom,  {
36102                 tag: "div",
36103                 unselectable: "on",
36104                 cls: "roo-unselectable roo-layout-panel-hd breadcrumb roo-layout-title-" + this.position,
36105                 children:[
36106                     {tag: "span", cls: "roo-unselectable roo-layout-panel-hd-text", unselectable: "on", html: "&#160;"},
36107                     {tag: "div", cls: "roo-unselectable roo-layout-panel-hd-tools", unselectable: "on"}
36108                 ]
36109             }, true);
36110         
36111         this.titleEl.enableDisplayMode();
36112         /** This region's title text element 
36113         * @type HTMLElement */
36114         this.titleTextEl = this.titleEl.dom.firstChild;
36115         this.tools = Roo.get(this.titleEl.dom.childNodes[1], true);
36116         /*
36117         this.closeBtn = this.createTool(this.tools.dom, "roo-layout-close");
36118         this.closeBtn.enableDisplayMode();
36119         this.closeBtn.on("click", this.closeClicked, this);
36120         this.closeBtn.hide();
36121     */
36122         this.createBody(this.config);
36123         if(this.config.hideWhenEmpty){
36124             this.hide();
36125             this.on("paneladded", this.validateVisibility, this);
36126             this.on("panelremoved", this.validateVisibility, this);
36127         }
36128         if(this.autoScroll){
36129             this.bodyEl.setStyle("overflow", "auto");
36130         }else{
36131             this.bodyEl.setStyle("overflow", this.config.overflow || 'hidden');
36132         }
36133         //if(c.titlebar !== false){
36134             if((!this.config.titlebar && !this.config.title) || this.config.titlebar === false){
36135                 this.titleEl.hide();
36136             }else{
36137                 this.titleEl.show();
36138                 if(this.config.title){
36139                     this.titleTextEl.innerHTML = this.config.title;
36140                 }
36141             }
36142         //}
36143         if(this.config.collapsed){
36144             this.collapse(true);
36145         }
36146         if(this.config.hidden){
36147             this.hide();
36148         }
36149         
36150         if (this.unrendered_panels && this.unrendered_panels.length) {
36151             for (var i =0;i< this.unrendered_panels.length; i++) {
36152                 this.add(this.unrendered_panels[i]);
36153             }
36154             this.unrendered_panels = null;
36155             
36156         }
36157         
36158     },
36159     
36160     applyConfig : function(c)
36161     {
36162         /*
36163          *if(c.collapsible && this.position != "center" && !this.collapsedEl){
36164             var dh = Roo.DomHelper;
36165             if(c.titlebar !== false){
36166                 this.collapseBtn = this.createTool(this.tools.dom, "roo-layout-collapse-"+this.position);
36167                 this.collapseBtn.on("click", this.collapse, this);
36168                 this.collapseBtn.enableDisplayMode();
36169                 /*
36170                 if(c.showPin === true || this.showPin){
36171                     this.stickBtn = this.createTool(this.tools.dom, "roo-layout-stick");
36172                     this.stickBtn.enableDisplayMode();
36173                     this.stickBtn.on("click", this.expand, this);
36174                     this.stickBtn.hide();
36175                 }
36176                 
36177             }
36178             */
36179             /** This region's collapsed element
36180             * @type Roo.Element */
36181             /*
36182              *
36183             this.collapsedEl = dh.append(this.mgr.el.dom, {cls: "x-layout-collapsed x-layout-collapsed-"+this.position, children:[
36184                 {cls: "x-layout-collapsed-tools", children:[{cls: "x-layout-ctools-inner"}]}
36185             ]}, true);
36186             
36187             if(c.floatable !== false){
36188                this.collapsedEl.addClassOnOver("x-layout-collapsed-over");
36189                this.collapsedEl.on("click", this.collapseClick, this);
36190             }
36191
36192             if(c.collapsedTitle && (this.position == "north" || this.position== "south")) {
36193                 this.collapsedTitleTextEl = dh.append(this.collapsedEl.dom, {tag: "div", cls: "x-unselectable x-layout-panel-hd-text",
36194                    id: "message", unselectable: "on", style:{"float":"left"}});
36195                this.collapsedTitleTextEl.innerHTML = c.collapsedTitle;
36196              }
36197             this.expandBtn = this.createTool(this.collapsedEl.dom.firstChild.firstChild, "x-layout-expand-"+this.position);
36198             this.expandBtn.on("click", this.expand, this);
36199             
36200         }
36201         
36202         if(this.collapseBtn){
36203             this.collapseBtn.setVisible(c.collapsible == true);
36204         }
36205         
36206         this.cmargins = c.cmargins || this.cmargins ||
36207                          (this.position == "west" || this.position == "east" ?
36208                              {top: 0, left: 2, right:2, bottom: 0} :
36209                              {top: 2, left: 0, right:0, bottom: 2});
36210         */
36211         this.margins = c.margins || this.margins || {top: 0, left: 0, right:0, bottom: 0};
36212         
36213         
36214         this.tabPosition = [ 'top','bottom', 'west'].indexOf(c.tabPosition) > -1 ? c.tabPosition : "top";
36215         
36216         this.autoScroll = c.autoScroll || false;
36217         
36218         
36219        
36220         
36221         this.duration = c.duration || .30;
36222         this.slideDuration = c.slideDuration || .45;
36223         this.config = c;
36224        
36225     },
36226     /**
36227      * Returns true if this region is currently visible.
36228      * @return {Boolean}
36229      */
36230     isVisible : function(){
36231         return this.visible;
36232     },
36233
36234     /**
36235      * Updates the title for collapsed north/south regions (used with {@link #collapsedTitle} config option)
36236      * @param {String} title (optional) The title text (accepts HTML markup, defaults to the numeric character reference for a non-breaking space, "&amp;#160;")
36237      */
36238     //setCollapsedTitle : function(title){
36239     //    title = title || "&#160;";
36240      //   if(this.collapsedTitleTextEl){
36241       //      this.collapsedTitleTextEl.innerHTML = title;
36242        // }
36243     //},
36244
36245     getBox : function(){
36246         var b;
36247       //  if(!this.collapsed){
36248             b = this.el.getBox(false, true);
36249        // }else{
36250           //  b = this.collapsedEl.getBox(false, true);
36251         //}
36252         return b;
36253     },
36254
36255     getMargins : function(){
36256         return this.margins;
36257         //return this.collapsed ? this.cmargins : this.margins;
36258     },
36259 /*
36260     highlight : function(){
36261         this.el.addClass("x-layout-panel-dragover");
36262     },
36263
36264     unhighlight : function(){
36265         this.el.removeClass("x-layout-panel-dragover");
36266     },
36267 */
36268     updateBox : function(box)
36269     {
36270         if (!this.bodyEl) {
36271             return; // not rendered yet..
36272         }
36273         
36274         this.box = box;
36275         if(!this.collapsed){
36276             this.el.dom.style.left = box.x + "px";
36277             this.el.dom.style.top = box.y + "px";
36278             this.updateBody(box.width, box.height);
36279         }else{
36280             this.collapsedEl.dom.style.left = box.x + "px";
36281             this.collapsedEl.dom.style.top = box.y + "px";
36282             this.collapsedEl.setSize(box.width, box.height);
36283         }
36284         if(this.tabs){
36285             this.tabs.autoSizeTabs();
36286         }
36287     },
36288
36289     updateBody : function(w, h)
36290     {
36291         if(w !== null){
36292             this.el.setWidth(w);
36293             w -= this.el.getBorderWidth("rl");
36294             if(this.config.adjustments){
36295                 w += this.config.adjustments[0];
36296             }
36297         }
36298         if(h !== null && h > 0){
36299             this.el.setHeight(h);
36300             h = this.titleEl && this.titleEl.isDisplayed() ? h - (this.titleEl.getHeight()||0) : h;
36301             h -= this.el.getBorderWidth("tb");
36302             if(this.config.adjustments){
36303                 h += this.config.adjustments[1];
36304             }
36305             this.bodyEl.setHeight(h);
36306             if(this.tabs){
36307                 h = this.tabs.syncHeight(h);
36308             }
36309         }
36310         if(this.panelSize){
36311             w = w !== null ? w : this.panelSize.width;
36312             h = h !== null ? h : this.panelSize.height;
36313         }
36314         if(this.activePanel){
36315             var el = this.activePanel.getEl();
36316             w = w !== null ? w : el.getWidth();
36317             h = h !== null ? h : el.getHeight();
36318             this.panelSize = {width: w, height: h};
36319             this.activePanel.setSize(w, h);
36320         }
36321         if(Roo.isIE && this.tabs){
36322             this.tabs.el.repaint();
36323         }
36324     },
36325
36326     /**
36327      * Returns the container element for this region.
36328      * @return {Roo.Element}
36329      */
36330     getEl : function(){
36331         return this.el;
36332     },
36333
36334     /**
36335      * Hides this region.
36336      */
36337     hide : function(){
36338         //if(!this.collapsed){
36339             this.el.dom.style.left = "-2000px";
36340             this.el.hide();
36341         //}else{
36342          //   this.collapsedEl.dom.style.left = "-2000px";
36343          //   this.collapsedEl.hide();
36344        // }
36345         this.visible = false;
36346         this.fireEvent("visibilitychange", this, false);
36347     },
36348
36349     /**
36350      * Shows this region if it was previously hidden.
36351      */
36352     show : function(){
36353         //if(!this.collapsed){
36354             this.el.show();
36355         //}else{
36356         //    this.collapsedEl.show();
36357        // }
36358         this.visible = true;
36359         this.fireEvent("visibilitychange", this, true);
36360     },
36361 /*
36362     closeClicked : function(){
36363         if(this.activePanel){
36364             this.remove(this.activePanel);
36365         }
36366     },
36367
36368     collapseClick : function(e){
36369         if(this.isSlid){
36370            e.stopPropagation();
36371            this.slideIn();
36372         }else{
36373            e.stopPropagation();
36374            this.slideOut();
36375         }
36376     },
36377 */
36378     /**
36379      * Collapses this region.
36380      * @param {Boolean} skipAnim (optional) true to collapse the element without animation (if animate is true)
36381      */
36382     /*
36383     collapse : function(skipAnim, skipCheck = false){
36384         if(this.collapsed) {
36385             return;
36386         }
36387         
36388         if(skipCheck || this.fireEvent("beforecollapse", this) != false){
36389             
36390             this.collapsed = true;
36391             if(this.split){
36392                 this.split.el.hide();
36393             }
36394             if(this.config.animate && skipAnim !== true){
36395                 this.fireEvent("invalidated", this);
36396                 this.animateCollapse();
36397             }else{
36398                 this.el.setLocation(-20000,-20000);
36399                 this.el.hide();
36400                 this.collapsedEl.show();
36401                 this.fireEvent("collapsed", this);
36402                 this.fireEvent("invalidated", this);
36403             }
36404         }
36405         
36406     },
36407 */
36408     animateCollapse : function(){
36409         // overridden
36410     },
36411
36412     /**
36413      * Expands this region if it was previously collapsed.
36414      * @param {Roo.EventObject} e The event that triggered the expand (or null if calling manually)
36415      * @param {Boolean} skipAnim (optional) true to expand the element without animation (if animate is true)
36416      */
36417     /*
36418     expand : function(e, skipAnim){
36419         if(e) {
36420             e.stopPropagation();
36421         }
36422         if(!this.collapsed || this.el.hasActiveFx()) {
36423             return;
36424         }
36425         if(this.isSlid){
36426             this.afterSlideIn();
36427             skipAnim = true;
36428         }
36429         this.collapsed = false;
36430         if(this.config.animate && skipAnim !== true){
36431             this.animateExpand();
36432         }else{
36433             this.el.show();
36434             if(this.split){
36435                 this.split.el.show();
36436             }
36437             this.collapsedEl.setLocation(-2000,-2000);
36438             this.collapsedEl.hide();
36439             this.fireEvent("invalidated", this);
36440             this.fireEvent("expanded", this);
36441         }
36442     },
36443 */
36444     animateExpand : function(){
36445         // overridden
36446     },
36447
36448     initTabs : function()
36449     {
36450         //this.bodyEl.setStyle("overflow", "hidden"); -- this is set in render?
36451         
36452         var ts = new Roo.bootstrap.panel.Tabs({
36453             el: this.bodyEl.dom,
36454             region : this,
36455             tabPosition: this.tabPosition ? this.tabPosition  : 'top',
36456             disableTooltips: this.config.disableTabTips,
36457             toolbar : this.config.toolbar
36458         });
36459         
36460         if(this.config.hideTabs){
36461             ts.stripWrap.setDisplayed(false);
36462         }
36463         this.tabs = ts;
36464         ts.resizeTabs = this.config.resizeTabs === true;
36465         ts.minTabWidth = this.config.minTabWidth || 40;
36466         ts.maxTabWidth = this.config.maxTabWidth || 250;
36467         ts.preferredTabWidth = this.config.preferredTabWidth || 150;
36468         ts.monitorResize = false;
36469         //ts.bodyEl.setStyle("overflow", this.config.autoScroll ? "auto" : "hidden"); // this is set in render?
36470         ts.bodyEl.addClass('roo-layout-tabs-body');
36471         this.panels.each(this.initPanelAsTab, this);
36472     },
36473
36474     initPanelAsTab : function(panel){
36475         var ti = this.tabs.addTab(
36476             panel.getEl().id,
36477             panel.getTitle(),
36478             null,
36479             this.config.closeOnTab && panel.isClosable(),
36480             panel.tpl
36481         );
36482         if(panel.tabTip !== undefined){
36483             ti.setTooltip(panel.tabTip);
36484         }
36485         ti.on("activate", function(){
36486               this.setActivePanel(panel);
36487         }, this);
36488         
36489         if(this.config.closeOnTab){
36490             ti.on("beforeclose", function(t, e){
36491                 e.cancel = true;
36492                 this.remove(panel);
36493             }, this);
36494         }
36495         
36496         panel.tabItem = ti;
36497         
36498         return ti;
36499     },
36500
36501     updatePanelTitle : function(panel, title)
36502     {
36503         if(this.activePanel == panel){
36504             this.updateTitle(title);
36505         }
36506         if(this.tabs){
36507             var ti = this.tabs.getTab(panel.getEl().id);
36508             ti.setText(title);
36509             if(panel.tabTip !== undefined){
36510                 ti.setTooltip(panel.tabTip);
36511             }
36512         }
36513     },
36514
36515     updateTitle : function(title){
36516         if(this.titleTextEl && !this.config.title){
36517             this.titleTextEl.innerHTML = (typeof title != "undefined" && title.length > 0 ? title : "&#160;");
36518         }
36519     },
36520
36521     setActivePanel : function(panel)
36522     {
36523         panel = this.getPanel(panel);
36524         if(this.activePanel && this.activePanel != panel){
36525             if(this.activePanel.setActiveState(false) === false){
36526                 return;
36527             }
36528         }
36529         this.activePanel = panel;
36530         panel.setActiveState(true);
36531         if(this.panelSize){
36532             panel.setSize(this.panelSize.width, this.panelSize.height);
36533         }
36534         if(this.closeBtn){
36535             this.closeBtn.setVisible(!this.config.closeOnTab && !this.isSlid && panel.isClosable());
36536         }
36537         this.updateTitle(panel.getTitle());
36538         if(this.tabs){
36539             this.fireEvent("invalidated", this);
36540         }
36541         this.fireEvent("panelactivated", this, panel);
36542     },
36543
36544     /**
36545      * Shows the specified panel.
36546      * @param {Number/String/ContentPanel} panelId The panel's index, id or the panel itself
36547      * @return {Roo.ContentPanel} The shown panel, or null if a panel could not be found from panelId
36548      */
36549     showPanel : function(panel)
36550     {
36551         panel = this.getPanel(panel);
36552         if(panel){
36553             if(this.tabs){
36554                 var tab = this.tabs.getTab(panel.getEl().id);
36555                 if(tab.isHidden()){
36556                     this.tabs.unhideTab(tab.id);
36557                 }
36558                 tab.activate();
36559             }else{
36560                 this.setActivePanel(panel);
36561             }
36562         }
36563         return panel;
36564     },
36565
36566     /**
36567      * Get the active panel for this region.
36568      * @return {Roo.ContentPanel} The active panel or null
36569      */
36570     getActivePanel : function(){
36571         return this.activePanel;
36572     },
36573
36574     validateVisibility : function(){
36575         if(this.panels.getCount() < 1){
36576             this.updateTitle("&#160;");
36577             this.closeBtn.hide();
36578             this.hide();
36579         }else{
36580             if(!this.isVisible()){
36581                 this.show();
36582             }
36583         }
36584     },
36585
36586     /**
36587      * Adds the passed ContentPanel(s) to this region.
36588      * @param {ContentPanel...} panel The ContentPanel(s) to add (you can pass more than one)
36589      * @return {Roo.ContentPanel} The panel added (if only one was added; null otherwise)
36590      */
36591     add : function(panel)
36592     {
36593         if(arguments.length > 1){
36594             for(var i = 0, len = arguments.length; i < len; i++) {
36595                 this.add(arguments[i]);
36596             }
36597             return null;
36598         }
36599         
36600         // if we have not been rendered yet, then we can not really do much of this..
36601         if (!this.bodyEl) {
36602             this.unrendered_panels.push(panel);
36603             return panel;
36604         }
36605         
36606         
36607         
36608         
36609         if(this.hasPanel(panel)){
36610             this.showPanel(panel);
36611             return panel;
36612         }
36613         panel.setRegion(this);
36614         this.panels.add(panel);
36615        /* if(this.panels.getCount() == 1 && !this.config.alwaysShowTabs){
36616             // sinle panel - no tab...?? would it not be better to render it with the tabs,
36617             // and hide them... ???
36618             this.bodyEl.dom.appendChild(panel.getEl().dom);
36619             if(panel.background !== true){
36620                 this.setActivePanel(panel);
36621             }
36622             this.fireEvent("paneladded", this, panel);
36623             return panel;
36624         }
36625         */
36626         if(!this.tabs){
36627             this.initTabs();
36628         }else{
36629             this.initPanelAsTab(panel);
36630         }
36631         
36632         
36633         if(panel.background !== true){
36634             this.tabs.activate(panel.getEl().id);
36635         }
36636         this.fireEvent("paneladded", this, panel);
36637         return panel;
36638     },
36639
36640     /**
36641      * Hides the tab for the specified panel.
36642      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
36643      */
36644     hidePanel : function(panel){
36645         if(this.tabs && (panel = this.getPanel(panel))){
36646             this.tabs.hideTab(panel.getEl().id);
36647         }
36648     },
36649
36650     /**
36651      * Unhides the tab for a previously hidden panel.
36652      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
36653      */
36654     unhidePanel : function(panel){
36655         if(this.tabs && (panel = this.getPanel(panel))){
36656             this.tabs.unhideTab(panel.getEl().id);
36657         }
36658     },
36659
36660     clearPanels : function(){
36661         while(this.panels.getCount() > 0){
36662              this.remove(this.panels.first());
36663         }
36664     },
36665
36666     /**
36667      * Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed.
36668      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
36669      * @param {Boolean} preservePanel Overrides the config preservePanel option
36670      * @return {Roo.ContentPanel} The panel that was removed
36671      */
36672     remove : function(panel, preservePanel)
36673     {
36674         panel = this.getPanel(panel);
36675         if(!panel){
36676             return null;
36677         }
36678         var e = {};
36679         this.fireEvent("beforeremove", this, panel, e);
36680         if(e.cancel === true){
36681             return null;
36682         }
36683         preservePanel = (typeof preservePanel != "undefined" ? preservePanel : (this.config.preservePanels === true || panel.preserve === true));
36684         var panelId = panel.getId();
36685         this.panels.removeKey(panelId);
36686         if(preservePanel){
36687             document.body.appendChild(panel.getEl().dom);
36688         }
36689         if(this.tabs){
36690             this.tabs.removeTab(panel.getEl().id);
36691         }else if (!preservePanel){
36692             this.bodyEl.dom.removeChild(panel.getEl().dom);
36693         }
36694         if(this.panels.getCount() == 1 && this.tabs && !this.config.alwaysShowTabs){
36695             var p = this.panels.first();
36696             var tempEl = document.createElement("div"); // temp holder to keep IE from deleting the node
36697             tempEl.appendChild(p.getEl().dom);
36698             this.bodyEl.update("");
36699             this.bodyEl.dom.appendChild(p.getEl().dom);
36700             tempEl = null;
36701             this.updateTitle(p.getTitle());
36702             this.tabs = null;
36703             this.bodyEl.setStyle("overflow", this.config.autoScroll ? "auto" : "hidden");
36704             this.setActivePanel(p);
36705         }
36706         panel.setRegion(null);
36707         if(this.activePanel == panel){
36708             this.activePanel = null;
36709         }
36710         if(this.config.autoDestroy !== false && preservePanel !== true){
36711             try{panel.destroy();}catch(e){}
36712         }
36713         this.fireEvent("panelremoved", this, panel);
36714         return panel;
36715     },
36716
36717     /**
36718      * Returns the TabPanel component used by this region
36719      * @return {Roo.TabPanel}
36720      */
36721     getTabs : function(){
36722         return this.tabs;
36723     },
36724
36725     createTool : function(parentEl, className){
36726         var btn = Roo.DomHelper.append(parentEl, {
36727             tag: "div",
36728             cls: "x-layout-tools-button",
36729             children: [ {
36730                 tag: "div",
36731                 cls: "roo-layout-tools-button-inner " + className,
36732                 html: "&#160;"
36733             }]
36734         }, true);
36735         btn.addClassOnOver("roo-layout-tools-button-over");
36736         return btn;
36737     }
36738 });/*
36739  * Based on:
36740  * Ext JS Library 1.1.1
36741  * Copyright(c) 2006-2007, Ext JS, LLC.
36742  *
36743  * Originally Released Under LGPL - original licence link has changed is not relivant.
36744  *
36745  * Fork - LGPL
36746  * <script type="text/javascript">
36747  */
36748  
36749
36750
36751 /**
36752  * @class Roo.SplitLayoutRegion
36753  * @extends Roo.LayoutRegion
36754  * Adds a splitbar and other (private) useful functionality to a {@link Roo.LayoutRegion}.
36755  */
36756 Roo.bootstrap.layout.Split = function(config){
36757     this.cursor = config.cursor;
36758     Roo.bootstrap.layout.Split.superclass.constructor.call(this, config);
36759 };
36760
36761 Roo.extend(Roo.bootstrap.layout.Split, Roo.bootstrap.layout.Region,
36762 {
36763     splitTip : "Drag to resize.",
36764     collapsibleSplitTip : "Drag to resize. Double click to hide.",
36765     useSplitTips : false,
36766
36767     applyConfig : function(config){
36768         Roo.bootstrap.layout.Split.superclass.applyConfig.call(this, config);
36769     },
36770     
36771     onRender : function(ctr,pos) {
36772         
36773         Roo.bootstrap.layout.Split.superclass.onRender.call(this, ctr,pos);
36774         if(!this.config.split){
36775             return;
36776         }
36777         if(!this.split){
36778             
36779             var splitEl = Roo.DomHelper.append(ctr.dom,  {
36780                             tag: "div",
36781                             id: this.el.id + "-split",
36782                             cls: "roo-layout-split roo-layout-split-"+this.position,
36783                             html: "&#160;"
36784             });
36785             /** The SplitBar for this region 
36786             * @type Roo.SplitBar */
36787             // does not exist yet...
36788             Roo.log([this.position, this.orientation]);
36789             
36790             this.split = new Roo.bootstrap.SplitBar({
36791                 dragElement : splitEl,
36792                 resizingElement: this.el,
36793                 orientation : this.orientation
36794             });
36795             
36796             this.split.on("moved", this.onSplitMove, this);
36797             this.split.useShim = this.config.useShim === true;
36798             this.split.getMaximumSize = this[this.position == 'north' || this.position == 'south' ? 'getVMaxSize' : 'getHMaxSize'].createDelegate(this);
36799             if(this.useSplitTips){
36800                 this.split.el.dom.title = this.config.collapsible ? this.collapsibleSplitTip : this.splitTip;
36801             }
36802             //if(config.collapsible){
36803             //    this.split.el.on("dblclick", this.collapse,  this);
36804             //}
36805         }
36806         if(typeof this.config.minSize != "undefined"){
36807             this.split.minSize = this.config.minSize;
36808         }
36809         if(typeof this.config.maxSize != "undefined"){
36810             this.split.maxSize = this.config.maxSize;
36811         }
36812         if(this.config.hideWhenEmpty || this.config.hidden || this.config.collapsed){
36813             this.hideSplitter();
36814         }
36815         
36816     },
36817
36818     getHMaxSize : function(){
36819          var cmax = this.config.maxSize || 10000;
36820          var center = this.mgr.getRegion("center");
36821          return Math.min(cmax, (this.el.getWidth()+center.getEl().getWidth())-center.getMinWidth());
36822     },
36823
36824     getVMaxSize : function(){
36825          var cmax = this.config.maxSize || 10000;
36826          var center = this.mgr.getRegion("center");
36827          return Math.min(cmax, (this.el.getHeight()+center.getEl().getHeight())-center.getMinHeight());
36828     },
36829
36830     onSplitMove : function(split, newSize){
36831         this.fireEvent("resized", this, newSize);
36832     },
36833     
36834     /** 
36835      * Returns the {@link Roo.SplitBar} for this region.
36836      * @return {Roo.SplitBar}
36837      */
36838     getSplitBar : function(){
36839         return this.split;
36840     },
36841     
36842     hide : function(){
36843         this.hideSplitter();
36844         Roo.bootstrap.layout.Split.superclass.hide.call(this);
36845     },
36846
36847     hideSplitter : function(){
36848         if(this.split){
36849             this.split.el.setLocation(-2000,-2000);
36850             this.split.el.hide();
36851         }
36852     },
36853
36854     show : function(){
36855         if(this.split){
36856             this.split.el.show();
36857         }
36858         Roo.bootstrap.layout.Split.superclass.show.call(this);
36859     },
36860     
36861     beforeSlide: function(){
36862         if(Roo.isGecko){// firefox overflow auto bug workaround
36863             this.bodyEl.clip();
36864             if(this.tabs) {
36865                 this.tabs.bodyEl.clip();
36866             }
36867             if(this.activePanel){
36868                 this.activePanel.getEl().clip();
36869                 
36870                 if(this.activePanel.beforeSlide){
36871                     this.activePanel.beforeSlide();
36872                 }
36873             }
36874         }
36875     },
36876     
36877     afterSlide : function(){
36878         if(Roo.isGecko){// firefox overflow auto bug workaround
36879             this.bodyEl.unclip();
36880             if(this.tabs) {
36881                 this.tabs.bodyEl.unclip();
36882             }
36883             if(this.activePanel){
36884                 this.activePanel.getEl().unclip();
36885                 if(this.activePanel.afterSlide){
36886                     this.activePanel.afterSlide();
36887                 }
36888             }
36889         }
36890     },
36891
36892     initAutoHide : function(){
36893         if(this.autoHide !== false){
36894             if(!this.autoHideHd){
36895                 var st = new Roo.util.DelayedTask(this.slideIn, this);
36896                 this.autoHideHd = {
36897                     "mouseout": function(e){
36898                         if(!e.within(this.el, true)){
36899                             st.delay(500);
36900                         }
36901                     },
36902                     "mouseover" : function(e){
36903                         st.cancel();
36904                     },
36905                     scope : this
36906                 };
36907             }
36908             this.el.on(this.autoHideHd);
36909         }
36910     },
36911
36912     clearAutoHide : function(){
36913         if(this.autoHide !== false){
36914             this.el.un("mouseout", this.autoHideHd.mouseout);
36915             this.el.un("mouseover", this.autoHideHd.mouseover);
36916         }
36917     },
36918
36919     clearMonitor : function(){
36920         Roo.get(document).un("click", this.slideInIf, this);
36921     },
36922
36923     // these names are backwards but not changed for compat
36924     slideOut : function(){
36925         if(this.isSlid || this.el.hasActiveFx()){
36926             return;
36927         }
36928         this.isSlid = true;
36929         if(this.collapseBtn){
36930             this.collapseBtn.hide();
36931         }
36932         this.closeBtnState = this.closeBtn.getStyle('display');
36933         this.closeBtn.hide();
36934         if(this.stickBtn){
36935             this.stickBtn.show();
36936         }
36937         this.el.show();
36938         this.el.alignTo(this.collapsedEl, this.getCollapseAnchor());
36939         this.beforeSlide();
36940         this.el.setStyle("z-index", 10001);
36941         this.el.slideIn(this.getSlideAnchor(), {
36942             callback: function(){
36943                 this.afterSlide();
36944                 this.initAutoHide();
36945                 Roo.get(document).on("click", this.slideInIf, this);
36946                 this.fireEvent("slideshow", this);
36947             },
36948             scope: this,
36949             block: true
36950         });
36951     },
36952
36953     afterSlideIn : function(){
36954         this.clearAutoHide();
36955         this.isSlid = false;
36956         this.clearMonitor();
36957         this.el.setStyle("z-index", "");
36958         if(this.collapseBtn){
36959             this.collapseBtn.show();
36960         }
36961         this.closeBtn.setStyle('display', this.closeBtnState);
36962         if(this.stickBtn){
36963             this.stickBtn.hide();
36964         }
36965         this.fireEvent("slidehide", this);
36966     },
36967
36968     slideIn : function(cb){
36969         if(!this.isSlid || this.el.hasActiveFx()){
36970             Roo.callback(cb);
36971             return;
36972         }
36973         this.isSlid = false;
36974         this.beforeSlide();
36975         this.el.slideOut(this.getSlideAnchor(), {
36976             callback: function(){
36977                 this.el.setLeftTop(-10000, -10000);
36978                 this.afterSlide();
36979                 this.afterSlideIn();
36980                 Roo.callback(cb);
36981             },
36982             scope: this,
36983             block: true
36984         });
36985     },
36986     
36987     slideInIf : function(e){
36988         if(!e.within(this.el)){
36989             this.slideIn();
36990         }
36991     },
36992
36993     animateCollapse : function(){
36994         this.beforeSlide();
36995         this.el.setStyle("z-index", 20000);
36996         var anchor = this.getSlideAnchor();
36997         this.el.slideOut(anchor, {
36998             callback : function(){
36999                 this.el.setStyle("z-index", "");
37000                 this.collapsedEl.slideIn(anchor, {duration:.3});
37001                 this.afterSlide();
37002                 this.el.setLocation(-10000,-10000);
37003                 this.el.hide();
37004                 this.fireEvent("collapsed", this);
37005             },
37006             scope: this,
37007             block: true
37008         });
37009     },
37010
37011     animateExpand : function(){
37012         this.beforeSlide();
37013         this.el.alignTo(this.collapsedEl, this.getCollapseAnchor(), this.getExpandAdj());
37014         this.el.setStyle("z-index", 20000);
37015         this.collapsedEl.hide({
37016             duration:.1
37017         });
37018         this.el.slideIn(this.getSlideAnchor(), {
37019             callback : function(){
37020                 this.el.setStyle("z-index", "");
37021                 this.afterSlide();
37022                 if(this.split){
37023                     this.split.el.show();
37024                 }
37025                 this.fireEvent("invalidated", this);
37026                 this.fireEvent("expanded", this);
37027             },
37028             scope: this,
37029             block: true
37030         });
37031     },
37032
37033     anchors : {
37034         "west" : "left",
37035         "east" : "right",
37036         "north" : "top",
37037         "south" : "bottom"
37038     },
37039
37040     sanchors : {
37041         "west" : "l",
37042         "east" : "r",
37043         "north" : "t",
37044         "south" : "b"
37045     },
37046
37047     canchors : {
37048         "west" : "tl-tr",
37049         "east" : "tr-tl",
37050         "north" : "tl-bl",
37051         "south" : "bl-tl"
37052     },
37053
37054     getAnchor : function(){
37055         return this.anchors[this.position];
37056     },
37057
37058     getCollapseAnchor : function(){
37059         return this.canchors[this.position];
37060     },
37061
37062     getSlideAnchor : function(){
37063         return this.sanchors[this.position];
37064     },
37065
37066     getAlignAdj : function(){
37067         var cm = this.cmargins;
37068         switch(this.position){
37069             case "west":
37070                 return [0, 0];
37071             break;
37072             case "east":
37073                 return [0, 0];
37074             break;
37075             case "north":
37076                 return [0, 0];
37077             break;
37078             case "south":
37079                 return [0, 0];
37080             break;
37081         }
37082     },
37083
37084     getExpandAdj : function(){
37085         var c = this.collapsedEl, cm = this.cmargins;
37086         switch(this.position){
37087             case "west":
37088                 return [-(cm.right+c.getWidth()+cm.left), 0];
37089             break;
37090             case "east":
37091                 return [cm.right+c.getWidth()+cm.left, 0];
37092             break;
37093             case "north":
37094                 return [0, -(cm.top+cm.bottom+c.getHeight())];
37095             break;
37096             case "south":
37097                 return [0, cm.top+cm.bottom+c.getHeight()];
37098             break;
37099         }
37100     }
37101 });/*
37102  * Based on:
37103  * Ext JS Library 1.1.1
37104  * Copyright(c) 2006-2007, Ext JS, LLC.
37105  *
37106  * Originally Released Under LGPL - original licence link has changed is not relivant.
37107  *
37108  * Fork - LGPL
37109  * <script type="text/javascript">
37110  */
37111 /*
37112  * These classes are private internal classes
37113  */
37114 Roo.bootstrap.layout.Center = function(config){
37115     config.region = "center";
37116     Roo.bootstrap.layout.Region.call(this, config);
37117     this.visible = true;
37118     this.minWidth = config.minWidth || 20;
37119     this.minHeight = config.minHeight || 20;
37120 };
37121
37122 Roo.extend(Roo.bootstrap.layout.Center, Roo.bootstrap.layout.Region, {
37123     hide : function(){
37124         // center panel can't be hidden
37125     },
37126     
37127     show : function(){
37128         // center panel can't be hidden
37129     },
37130     
37131     getMinWidth: function(){
37132         return this.minWidth;
37133     },
37134     
37135     getMinHeight: function(){
37136         return this.minHeight;
37137     }
37138 });
37139
37140
37141
37142
37143  
37144
37145
37146
37147
37148
37149
37150 Roo.bootstrap.layout.North = function(config)
37151 {
37152     config.region = 'north';
37153     config.cursor = 'n-resize';
37154     
37155     Roo.bootstrap.layout.Split.call(this, config);
37156     
37157     
37158     if(this.split){
37159         this.split.placement = Roo.bootstrap.SplitBar.TOP;
37160         this.split.orientation = Roo.bootstrap.SplitBar.VERTICAL;
37161         this.split.el.addClass("roo-layout-split-v");
37162     }
37163     var size = config.initialSize || config.height;
37164     if(typeof size != "undefined"){
37165         this.el.setHeight(size);
37166     }
37167 };
37168 Roo.extend(Roo.bootstrap.layout.North, Roo.bootstrap.layout.Split,
37169 {
37170     orientation: Roo.bootstrap.SplitBar.VERTICAL,
37171     
37172     
37173     
37174     getBox : function(){
37175         if(this.collapsed){
37176             return this.collapsedEl.getBox();
37177         }
37178         var box = this.el.getBox();
37179         if(this.split){
37180             box.height += this.split.el.getHeight();
37181         }
37182         return box;
37183     },
37184     
37185     updateBox : function(box){
37186         if(this.split && !this.collapsed){
37187             box.height -= this.split.el.getHeight();
37188             this.split.el.setLeft(box.x);
37189             this.split.el.setTop(box.y+box.height);
37190             this.split.el.setWidth(box.width);
37191         }
37192         if(this.collapsed){
37193             this.updateBody(box.width, null);
37194         }
37195         Roo.bootstrap.layout.Region.prototype.updateBox.call(this, box);
37196     }
37197 });
37198
37199
37200
37201
37202
37203 Roo.bootstrap.layout.South = function(config){
37204     config.region = 'south';
37205     config.cursor = 's-resize';
37206     Roo.bootstrap.layout.Split.call(this, config);
37207     if(this.split){
37208         this.split.placement = Roo.bootstrap.SplitBar.BOTTOM;
37209         this.split.orientation = Roo.bootstrap.SplitBar.VERTICAL;
37210         this.split.el.addClass("roo-layout-split-v");
37211     }
37212     var size = config.initialSize || config.height;
37213     if(typeof size != "undefined"){
37214         this.el.setHeight(size);
37215     }
37216 };
37217
37218 Roo.extend(Roo.bootstrap.layout.South, Roo.bootstrap.layout.Split, {
37219     orientation: Roo.bootstrap.SplitBar.VERTICAL,
37220     getBox : function(){
37221         if(this.collapsed){
37222             return this.collapsedEl.getBox();
37223         }
37224         var box = this.el.getBox();
37225         if(this.split){
37226             var sh = this.split.el.getHeight();
37227             box.height += sh;
37228             box.y -= sh;
37229         }
37230         return box;
37231     },
37232     
37233     updateBox : function(box){
37234         if(this.split && !this.collapsed){
37235             var sh = this.split.el.getHeight();
37236             box.height -= sh;
37237             box.y += sh;
37238             this.split.el.setLeft(box.x);
37239             this.split.el.setTop(box.y-sh);
37240             this.split.el.setWidth(box.width);
37241         }
37242         if(this.collapsed){
37243             this.updateBody(box.width, null);
37244         }
37245         Roo.bootstrap.layout.Region.prototype.updateBox.call(this, box);
37246     }
37247 });
37248
37249 Roo.bootstrap.layout.East = function(config){
37250     config.region = "east";
37251     config.cursor = "e-resize";
37252     Roo.bootstrap.layout.Split.call(this, config);
37253     if(this.split){
37254         this.split.placement = Roo.bootstrap.SplitBar.RIGHT;
37255         this.split.orientation = Roo.bootstrap.SplitBar.HORIZONTAL;
37256         this.split.el.addClass("roo-layout-split-h");
37257     }
37258     var size = config.initialSize || config.width;
37259     if(typeof size != "undefined"){
37260         this.el.setWidth(size);
37261     }
37262 };
37263 Roo.extend(Roo.bootstrap.layout.East, Roo.bootstrap.layout.Split, {
37264     orientation: Roo.bootstrap.SplitBar.HORIZONTAL,
37265     getBox : function(){
37266         if(this.collapsed){
37267             return this.collapsedEl.getBox();
37268         }
37269         var box = this.el.getBox();
37270         if(this.split){
37271             var sw = this.split.el.getWidth();
37272             box.width += sw;
37273             box.x -= sw;
37274         }
37275         return box;
37276     },
37277
37278     updateBox : function(box){
37279         if(this.split && !this.collapsed){
37280             var sw = this.split.el.getWidth();
37281             box.width -= sw;
37282             this.split.el.setLeft(box.x);
37283             this.split.el.setTop(box.y);
37284             this.split.el.setHeight(box.height);
37285             box.x += sw;
37286         }
37287         if(this.collapsed){
37288             this.updateBody(null, box.height);
37289         }
37290         Roo.bootstrap.layout.Region.prototype.updateBox.call(this, box);
37291     }
37292 });
37293
37294 Roo.bootstrap.layout.West = function(config){
37295     config.region = "west";
37296     config.cursor = "w-resize";
37297     
37298     Roo.bootstrap.layout.Split.call(this, config);
37299     if(this.split){
37300         this.split.placement = Roo.bootstrap.SplitBar.LEFT;
37301         this.split.orientation = Roo.bootstrap.SplitBar.HORIZONTAL;
37302         this.split.el.addClass("roo-layout-split-h");
37303     }
37304     
37305 };
37306 Roo.extend(Roo.bootstrap.layout.West, Roo.bootstrap.layout.Split, {
37307     orientation: Roo.bootstrap.SplitBar.HORIZONTAL,
37308     
37309     onRender: function(ctr, pos)
37310     {
37311         Roo.bootstrap.layout.West.superclass.onRender.call(this, ctr,pos);
37312         var size = this.config.initialSize || this.config.width;
37313         if(typeof size != "undefined"){
37314             this.el.setWidth(size);
37315         }
37316     },
37317     
37318     getBox : function(){
37319         if(this.collapsed){
37320             return this.collapsedEl.getBox();
37321         }
37322         var box = this.el.getBox();
37323         if(this.split){
37324             box.width += this.split.el.getWidth();
37325         }
37326         return box;
37327     },
37328     
37329     updateBox : function(box){
37330         if(this.split && !this.collapsed){
37331             var sw = this.split.el.getWidth();
37332             box.width -= sw;
37333             this.split.el.setLeft(box.x+box.width);
37334             this.split.el.setTop(box.y);
37335             this.split.el.setHeight(box.height);
37336         }
37337         if(this.collapsed){
37338             this.updateBody(null, box.height);
37339         }
37340         Roo.bootstrap.layout.Region.prototype.updateBox.call(this, box);
37341     }
37342 });Roo.namespace("Roo.bootstrap.panel");/*
37343  * Based on:
37344  * Ext JS Library 1.1.1
37345  * Copyright(c) 2006-2007, Ext JS, LLC.
37346  *
37347  * Originally Released Under LGPL - original licence link has changed is not relivant.
37348  *
37349  * Fork - LGPL
37350  * <script type="text/javascript">
37351  */
37352 /**
37353  * @class Roo.ContentPanel
37354  * @extends Roo.util.Observable
37355  * A basic ContentPanel element.
37356  * @cfg {Boolean}   fitToFrame    True for this panel to adjust its size to fit when the region resizes  (defaults to false)
37357  * @cfg {Boolean}   fitContainer   When using {@link #fitToFrame} and {@link #resizeEl}, you can also fit the parent container  (defaults to false)
37358  * @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
37359  * @cfg {Boolean}   closable      True if the panel can be closed/removed
37360  * @cfg {Boolean}   background    True if the panel should not be activated when it is added (defaults to false)
37361  * @cfg {String/HTMLElement/Element} resizeEl An element to resize if {@link #fitToFrame} is true (instead of this panel's element)
37362  * @cfg {Toolbar}   toolbar       A toolbar for this panel
37363  * @cfg {Boolean} autoScroll    True to scroll overflow in this panel (use with {@link #fitToFrame})
37364  * @cfg {String} title          The title for this panel
37365  * @cfg {Array} adjustments     Values to <b>add</b> to the width/height when doing a {@link #fitToFrame} (default is [0, 0])
37366  * @cfg {String} url            Calls {@link #setUrl} with this value
37367  * @cfg {String} region         (center|north|south|east|west) which region to put this panel on (when used with xtype constructors)
37368  * @cfg {String/Object} params  When used with {@link #url}, calls {@link #setUrl} with this value
37369  * @cfg {Boolean} loadOnce      When used with {@link #url}, calls {@link #setUrl} with this value
37370  * @cfg {String}    content        Raw content to fill content panel with (uses setContent on construction.)
37371  * @cfg {Boolean} badges render the badges
37372
37373  * @constructor
37374  * Create a new ContentPanel.
37375  * @param {String/HTMLElement/Roo.Element} el The container element for this panel
37376  * @param {String/Object} config A string to set only the title or a config object
37377  * @param {String} content (optional) Set the HTML content for this panel
37378  * @param {String} region (optional) Used by xtype constructors to add to regions. (values center,east,west,south,north)
37379  */
37380 Roo.bootstrap.panel.Content = function( config){
37381     
37382     this.tpl = config.tpl || false;
37383     
37384     var el = config.el;
37385     var content = config.content;
37386
37387     if(config.autoCreate){ // xtype is available if this is called from factory
37388         el = Roo.id();
37389     }
37390     this.el = Roo.get(el);
37391     if(!this.el && config && config.autoCreate){
37392         if(typeof config.autoCreate == "object"){
37393             if(!config.autoCreate.id){
37394                 config.autoCreate.id = config.id||el;
37395             }
37396             this.el = Roo.DomHelper.append(document.body,
37397                         config.autoCreate, true);
37398         }else{
37399             var elcfg =  {   tag: "div",
37400                             cls: "roo-layout-inactive-content",
37401                             id: config.id||el
37402                             };
37403             if (config.html) {
37404                 elcfg.html = config.html;
37405                 
37406             }
37407                         
37408             this.el = Roo.DomHelper.append(document.body, elcfg , true);
37409         }
37410     } 
37411     this.closable = false;
37412     this.loaded = false;
37413     this.active = false;
37414    
37415       
37416     if (config.toolbar && !config.toolbar.el && config.toolbar.xtype) {
37417         
37418         this.toolbar = new config.toolbar.xns[config.toolbar.xtype](config.toolbar);
37419         
37420         this.wrapEl = this.el; //this.el.wrap();
37421         var ti = [];
37422         if (config.toolbar.items) {
37423             ti = config.toolbar.items ;
37424             delete config.toolbar.items ;
37425         }
37426         
37427         var nitems = [];
37428         this.toolbar.render(this.wrapEl, 'before');
37429         for(var i =0;i < ti.length;i++) {
37430           //  Roo.log(['add child', items[i]]);
37431             nitems.push(this.toolbar.addxtype(Roo.apply({}, ti[i])));
37432         }
37433         this.toolbar.items = nitems;
37434         this.toolbar.el.insertBefore(this.wrapEl.dom.firstChild);
37435         delete config.toolbar;
37436         
37437     }
37438     /*
37439     // xtype created footer. - not sure if will work as we normally have to render first..
37440     if (this.footer && !this.footer.el && this.footer.xtype) {
37441         if (!this.wrapEl) {
37442             this.wrapEl = this.el.wrap();
37443         }
37444     
37445         this.footer.container = this.wrapEl.createChild();
37446          
37447         this.footer = Roo.factory(this.footer, Roo);
37448         
37449     }
37450     */
37451     
37452      if(typeof config == "string"){
37453         this.title = config;
37454     }else{
37455         Roo.apply(this, config);
37456     }
37457     
37458     if(this.resizeEl){
37459         this.resizeEl = Roo.get(this.resizeEl, true);
37460     }else{
37461         this.resizeEl = this.el;
37462     }
37463     // handle view.xtype
37464     
37465  
37466     
37467     
37468     this.addEvents({
37469         /**
37470          * @event activate
37471          * Fires when this panel is activated. 
37472          * @param {Roo.ContentPanel} this
37473          */
37474         "activate" : true,
37475         /**
37476          * @event deactivate
37477          * Fires when this panel is activated. 
37478          * @param {Roo.ContentPanel} this
37479          */
37480         "deactivate" : true,
37481
37482         /**
37483          * @event resize
37484          * Fires when this panel is resized if fitToFrame is true.
37485          * @param {Roo.ContentPanel} this
37486          * @param {Number} width The width after any component adjustments
37487          * @param {Number} height The height after any component adjustments
37488          */
37489         "resize" : true,
37490         
37491          /**
37492          * @event render
37493          * Fires when this tab is created
37494          * @param {Roo.ContentPanel} this
37495          */
37496         "render" : true
37497         
37498         
37499         
37500     });
37501     
37502
37503     
37504     
37505     if(this.autoScroll){
37506         this.resizeEl.setStyle("overflow", "auto");
37507     } else {
37508         // fix randome scrolling
37509         //this.el.on('scroll', function() {
37510         //    Roo.log('fix random scolling');
37511         //    this.scrollTo('top',0); 
37512         //});
37513     }
37514     content = content || this.content;
37515     if(content){
37516         this.setContent(content);
37517     }
37518     if(config && config.url){
37519         this.setUrl(this.url, this.params, this.loadOnce);
37520     }
37521     
37522     
37523     
37524     Roo.bootstrap.panel.Content.superclass.constructor.call(this);
37525     
37526     if (this.view && typeof(this.view.xtype) != 'undefined') {
37527         this.view.el = this.el.appendChild(document.createElement("div"));
37528         this.view = Roo.factory(this.view); 
37529         this.view.render  &&  this.view.render(false, '');  
37530     }
37531     
37532     
37533     this.fireEvent('render', this);
37534 };
37535
37536 Roo.extend(Roo.bootstrap.panel.Content, Roo.bootstrap.Component, {
37537     
37538     tabTip : '',
37539     
37540     setRegion : function(region){
37541         this.region = region;
37542         this.setActiveClass(region && !this.background);
37543     },
37544     
37545     
37546     setActiveClass: function(state)
37547     {
37548         if(state){
37549            this.el.replaceClass("roo-layout-inactive-content", "roo-layout-active-content");
37550            this.el.setStyle('position','relative');
37551         }else{
37552            this.el.replaceClass("roo-layout-active-content", "roo-layout-inactive-content");
37553            this.el.setStyle('position', 'absolute');
37554         } 
37555     },
37556     
37557     /**
37558      * Returns the toolbar for this Panel if one was configured. 
37559      * @return {Roo.Toolbar} 
37560      */
37561     getToolbar : function(){
37562         return this.toolbar;
37563     },
37564     
37565     setActiveState : function(active)
37566     {
37567         this.active = active;
37568         this.setActiveClass(active);
37569         if(!active){
37570             if(this.fireEvent("deactivate", this) === false){
37571                 return false;
37572             }
37573             return true;
37574         }
37575         this.fireEvent("activate", this);
37576         return true;
37577     },
37578     /**
37579      * Updates this panel's element
37580      * @param {String} content The new content
37581      * @param {Boolean} loadScripts (optional) true to look for and process scripts
37582     */
37583     setContent : function(content, loadScripts){
37584         this.el.update(content, loadScripts);
37585     },
37586
37587     ignoreResize : function(w, h){
37588         if(this.lastSize && this.lastSize.width == w && this.lastSize.height == h){
37589             return true;
37590         }else{
37591             this.lastSize = {width: w, height: h};
37592             return false;
37593         }
37594     },
37595     /**
37596      * Get the {@link Roo.UpdateManager} for this panel. Enables you to perform Ajax updates.
37597      * @return {Roo.UpdateManager} The UpdateManager
37598      */
37599     getUpdateManager : function(){
37600         return this.el.getUpdateManager();
37601     },
37602      /**
37603      * Loads this content panel immediately with content from XHR. Note: to delay loading until the panel is activated, use {@link #setUrl}.
37604      * @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:
37605 <pre><code>
37606 panel.load({
37607     url: "your-url.php",
37608     params: {param1: "foo", param2: "bar"}, // or a URL encoded string
37609     callback: yourFunction,
37610     scope: yourObject, //(optional scope)
37611     discardUrl: false,
37612     nocache: false,
37613     text: "Loading...",
37614     timeout: 30,
37615     scripts: false
37616 });
37617 </code></pre>
37618      * The only required property is <i>url</i>. The optional properties <i>nocache</i>, <i>text</i> and <i>scripts</i>
37619      * 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.
37620      * @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}
37621      * @param {Function} callback (optional) Callback when transaction is complete -- called with signature (oElement, bSuccess, oResponse)
37622      * @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.
37623      * @return {Roo.ContentPanel} this
37624      */
37625     load : function(){
37626         var um = this.el.getUpdateManager();
37627         um.update.apply(um, arguments);
37628         return this;
37629     },
37630
37631
37632     /**
37633      * 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.
37634      * @param {String/Function} url The URL to load the content from or a function to call to get the URL
37635      * @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)
37636      * @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)
37637      * @return {Roo.UpdateManager} The UpdateManager
37638      */
37639     setUrl : function(url, params, loadOnce){
37640         if(this.refreshDelegate){
37641             this.removeListener("activate", this.refreshDelegate);
37642         }
37643         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
37644         this.on("activate", this.refreshDelegate);
37645         return this.el.getUpdateManager();
37646     },
37647     
37648     _handleRefresh : function(url, params, loadOnce){
37649         if(!loadOnce || !this.loaded){
37650             var updater = this.el.getUpdateManager();
37651             updater.update(url, params, this._setLoaded.createDelegate(this));
37652         }
37653     },
37654     
37655     _setLoaded : function(){
37656         this.loaded = true;
37657     }, 
37658     
37659     /**
37660      * Returns this panel's id
37661      * @return {String} 
37662      */
37663     getId : function(){
37664         return this.el.id;
37665     },
37666     
37667     /** 
37668      * Returns this panel's element - used by regiosn to add.
37669      * @return {Roo.Element} 
37670      */
37671     getEl : function(){
37672         return this.wrapEl || this.el;
37673     },
37674     
37675    
37676     
37677     adjustForComponents : function(width, height)
37678     {
37679         //Roo.log('adjustForComponents ');
37680         if(this.resizeEl != this.el){
37681             width -= this.el.getFrameWidth('lr');
37682             height -= this.el.getFrameWidth('tb');
37683         }
37684         if(this.toolbar){
37685             var te = this.toolbar.getEl();
37686             te.setWidth(width);
37687             height -= te.getHeight();
37688         }
37689         if(this.footer){
37690             var te = this.footer.getEl();
37691             te.setWidth(width);
37692             height -= te.getHeight();
37693         }
37694         
37695         
37696         if(this.adjustments){
37697             width += this.adjustments[0];
37698             height += this.adjustments[1];
37699         }
37700         return {"width": width, "height": height};
37701     },
37702     
37703     setSize : function(width, height){
37704         if(this.fitToFrame && !this.ignoreResize(width, height)){
37705             if(this.fitContainer && this.resizeEl != this.el){
37706                 this.el.setSize(width, height);
37707             }
37708             var size = this.adjustForComponents(width, height);
37709             this.resizeEl.setSize(this.autoWidth ? "auto" : size.width, this.autoHeight ? "auto" : size.height);
37710             this.fireEvent('resize', this, size.width, size.height);
37711         }
37712     },
37713     
37714     /**
37715      * Returns this panel's title
37716      * @return {String} 
37717      */
37718     getTitle : function(){
37719         
37720         if (typeof(this.title) != 'object') {
37721             return this.title;
37722         }
37723         
37724         var t = '';
37725         for (var k in this.title) {
37726             if (!this.title.hasOwnProperty(k)) {
37727                 continue;
37728             }
37729             
37730             if (k.indexOf('-') >= 0) {
37731                 var s = k.split('-');
37732                 for (var i = 0; i<s.length; i++) {
37733                     t += "<span class='visible-"+s[i]+"'>"+this.title[k]+"</span>";
37734                 }
37735             } else {
37736                 t += "<span class='visible-"+k+"'>"+this.title[k]+"</span>";
37737             }
37738         }
37739         return t;
37740     },
37741     
37742     /**
37743      * Set this panel's title
37744      * @param {String} title
37745      */
37746     setTitle : function(title){
37747         this.title = title;
37748         if(this.region){
37749             this.region.updatePanelTitle(this, title);
37750         }
37751     },
37752     
37753     /**
37754      * Returns true is this panel was configured to be closable
37755      * @return {Boolean} 
37756      */
37757     isClosable : function(){
37758         return this.closable;
37759     },
37760     
37761     beforeSlide : function(){
37762         this.el.clip();
37763         this.resizeEl.clip();
37764     },
37765     
37766     afterSlide : function(){
37767         this.el.unclip();
37768         this.resizeEl.unclip();
37769     },
37770     
37771     /**
37772      *   Force a content refresh from the URL specified in the {@link #setUrl} method.
37773      *   Will fail silently if the {@link #setUrl} method has not been called.
37774      *   This does not activate the panel, just updates its content.
37775      */
37776     refresh : function(){
37777         if(this.refreshDelegate){
37778            this.loaded = false;
37779            this.refreshDelegate();
37780         }
37781     },
37782     
37783     /**
37784      * Destroys this panel
37785      */
37786     destroy : function(){
37787         this.el.removeAllListeners();
37788         var tempEl = document.createElement("span");
37789         tempEl.appendChild(this.el.dom);
37790         tempEl.innerHTML = "";
37791         this.el.remove();
37792         this.el = null;
37793     },
37794     
37795     /**
37796      * form - if the content panel contains a form - this is a reference to it.
37797      * @type {Roo.form.Form}
37798      */
37799     form : false,
37800     /**
37801      * view - if the content panel contains a view (Roo.DatePicker / Roo.View / Roo.JsonView)
37802      *    This contains a reference to it.
37803      * @type {Roo.View}
37804      */
37805     view : false,
37806     
37807       /**
37808      * Adds a xtype elements to the panel - currently only supports Forms, View, JsonView.
37809      * <pre><code>
37810
37811 layout.addxtype({
37812        xtype : 'Form',
37813        items: [ .... ]
37814    }
37815 );
37816
37817 </code></pre>
37818      * @param {Object} cfg Xtype definition of item to add.
37819      */
37820     
37821     
37822     getChildContainer: function () {
37823         return this.getEl();
37824     }
37825     
37826     
37827     /*
37828         var  ret = new Roo.factory(cfg);
37829         return ret;
37830         
37831         
37832         // add form..
37833         if (cfg.xtype.match(/^Form$/)) {
37834             
37835             var el;
37836             //if (this.footer) {
37837             //    el = this.footer.container.insertSibling(false, 'before');
37838             //} else {
37839                 el = this.el.createChild();
37840             //}
37841
37842             this.form = new  Roo.form.Form(cfg);
37843             
37844             
37845             if ( this.form.allItems.length) {
37846                 this.form.render(el.dom);
37847             }
37848             return this.form;
37849         }
37850         // should only have one of theses..
37851         if ([ 'View', 'JsonView', 'DatePicker'].indexOf(cfg.xtype) > -1) {
37852             // views.. should not be just added - used named prop 'view''
37853             
37854             cfg.el = this.el.appendChild(document.createElement("div"));
37855             // factory?
37856             
37857             var ret = new Roo.factory(cfg);
37858              
37859              ret.render && ret.render(false, ''); // render blank..
37860             this.view = ret;
37861             return ret;
37862         }
37863         return false;
37864     }
37865     \*/
37866 });
37867  
37868 /**
37869  * @class Roo.bootstrap.panel.Grid
37870  * @extends Roo.bootstrap.panel.Content
37871  * @constructor
37872  * Create a new GridPanel.
37873  * @cfg {Roo.bootstrap.Table} grid The grid for this panel
37874  * @param {Object} config A the config object
37875   
37876  */
37877
37878
37879
37880 Roo.bootstrap.panel.Grid = function(config)
37881 {
37882     
37883       
37884     this.wrapper = Roo.DomHelper.append(document.body, // wrapper for IE7 strict & safari scroll issue
37885         {tag: "div", cls: "roo-layout-grid-wrapper roo-layout-inactive-content"}, true);
37886
37887     config.el = this.wrapper;
37888     //this.el = this.wrapper;
37889     
37890       if (config.container) {
37891         // ctor'ed from a Border/panel.grid
37892         
37893         
37894         this.wrapper.setStyle("overflow", "hidden");
37895         this.wrapper.addClass('roo-grid-container');
37896
37897     }
37898     
37899     
37900     if(config.toolbar){
37901         var tool_el = this.wrapper.createChild();    
37902         this.toolbar = Roo.factory(config.toolbar);
37903         var ti = [];
37904         if (config.toolbar.items) {
37905             ti = config.toolbar.items ;
37906             delete config.toolbar.items ;
37907         }
37908         
37909         var nitems = [];
37910         this.toolbar.render(tool_el);
37911         for(var i =0;i < ti.length;i++) {
37912           //  Roo.log(['add child', items[i]]);
37913             nitems.push(this.toolbar.addxtype(Roo.apply({}, ti[i])));
37914         }
37915         this.toolbar.items = nitems;
37916         
37917         delete config.toolbar;
37918     }
37919     
37920     Roo.bootstrap.panel.Grid.superclass.constructor.call(this, config);
37921     config.grid.scrollBody = true;;
37922     config.grid.monitorWindowResize = false; // turn off autosizing
37923     config.grid.autoHeight = false;
37924     config.grid.autoWidth = false;
37925     
37926     this.grid = new config.grid.xns[config.grid.xtype](config.grid);
37927     
37928     if (config.background) {
37929         // render grid on panel activation (if panel background)
37930         this.on('activate', function(gp) {
37931             if (!gp.grid.rendered) {
37932                 gp.grid.render(this.wrapper);
37933                 gp.grid.getGridEl().replaceClass("roo-layout-inactive-content", "roo-layout-component-panel");   
37934             }
37935         });
37936             
37937     } else {
37938         this.grid.render(this.wrapper);
37939         this.grid.getGridEl().replaceClass("roo-layout-inactive-content", "roo-layout-component-panel");               
37940
37941     }
37942     //this.wrapper.dom.appendChild(config.grid.getGridEl().dom);
37943     // ??? needed ??? config.el = this.wrapper;
37944     
37945     
37946     
37947   
37948     // xtype created footer. - not sure if will work as we normally have to render first..
37949     if (this.footer && !this.footer.el && this.footer.xtype) {
37950         
37951         var ctr = this.grid.getView().getFooterPanel(true);
37952         this.footer.dataSource = this.grid.dataSource;
37953         this.footer = Roo.factory(this.footer, Roo);
37954         this.footer.render(ctr);
37955         
37956     }
37957     
37958     
37959     
37960     
37961      
37962 };
37963
37964 Roo.extend(Roo.bootstrap.panel.Grid, Roo.bootstrap.panel.Content, {
37965     getId : function(){
37966         return this.grid.id;
37967     },
37968     
37969     /**
37970      * Returns the grid for this panel
37971      * @return {Roo.bootstrap.Table} 
37972      */
37973     getGrid : function(){
37974         return this.grid;    
37975     },
37976     
37977     setSize : function(width, height){
37978         if(!this.ignoreResize(width, height)){
37979             var grid = this.grid;
37980             var size = this.adjustForComponents(width, height);
37981             var gridel = grid.getGridEl();
37982             gridel.setSize(size.width, size.height);
37983             /*
37984             var thd = grid.getGridEl().select('thead',true).first();
37985             var tbd = grid.getGridEl().select('tbody', true).first();
37986             if (tbd) {
37987                 tbd.setSize(width, height - thd.getHeight());
37988             }
37989             */
37990             grid.autoSize();
37991         }
37992     },
37993      
37994     
37995     
37996     beforeSlide : function(){
37997         this.grid.getView().scroller.clip();
37998     },
37999     
38000     afterSlide : function(){
38001         this.grid.getView().scroller.unclip();
38002     },
38003     
38004     destroy : function(){
38005         this.grid.destroy();
38006         delete this.grid;
38007         Roo.bootstrap.panel.Grid.superclass.destroy.call(this); 
38008     }
38009 });
38010
38011 /**
38012  * @class Roo.bootstrap.panel.Nest
38013  * @extends Roo.bootstrap.panel.Content
38014  * @constructor
38015  * Create a new Panel, that can contain a layout.Border.
38016  * 
38017  * 
38018  * @param {Roo.BorderLayout} layout The layout for this panel
38019  * @param {String/Object} config A string to set only the title or a config object
38020  */
38021 Roo.bootstrap.panel.Nest = function(config)
38022 {
38023     // construct with only one argument..
38024     /* FIXME - implement nicer consturctors
38025     if (layout.layout) {
38026         config = layout;
38027         layout = config.layout;
38028         delete config.layout;
38029     }
38030     if (layout.xtype && !layout.getEl) {
38031         // then layout needs constructing..
38032         layout = Roo.factory(layout, Roo);
38033     }
38034     */
38035     
38036     config.el =  config.layout.getEl();
38037     
38038     Roo.bootstrap.panel.Nest.superclass.constructor.call(this, config);
38039     
38040     config.layout.monitorWindowResize = false; // turn off autosizing
38041     this.layout = config.layout;
38042     this.layout.getEl().addClass("roo-layout-nested-layout");
38043     this.layout.parent = this;
38044     
38045     
38046     
38047     
38048 };
38049
38050 Roo.extend(Roo.bootstrap.panel.Nest, Roo.bootstrap.panel.Content, {
38051
38052     setSize : function(width, height){
38053         if(!this.ignoreResize(width, height)){
38054             var size = this.adjustForComponents(width, height);
38055             var el = this.layout.getEl();
38056             if (size.height < 1) {
38057                 el.setWidth(size.width);   
38058             } else {
38059                 el.setSize(size.width, size.height);
38060             }
38061             var touch = el.dom.offsetWidth;
38062             this.layout.layout();
38063             // ie requires a double layout on the first pass
38064             if(Roo.isIE && !this.initialized){
38065                 this.initialized = true;
38066                 this.layout.layout();
38067             }
38068         }
38069     },
38070     
38071     // activate all subpanels if not currently active..
38072     
38073     setActiveState : function(active){
38074         this.active = active;
38075         this.setActiveClass(active);
38076         
38077         if(!active){
38078             this.fireEvent("deactivate", this);
38079             return;
38080         }
38081         
38082         this.fireEvent("activate", this);
38083         // not sure if this should happen before or after..
38084         if (!this.layout) {
38085             return; // should not happen..
38086         }
38087         var reg = false;
38088         for (var r in this.layout.regions) {
38089             reg = this.layout.getRegion(r);
38090             if (reg.getActivePanel()) {
38091                 //reg.showPanel(reg.getActivePanel()); // force it to activate.. 
38092                 reg.setActivePanel(reg.getActivePanel());
38093                 continue;
38094             }
38095             if (!reg.panels.length) {
38096                 continue;
38097             }
38098             reg.showPanel(reg.getPanel(0));
38099         }
38100         
38101         
38102         
38103         
38104     },
38105     
38106     /**
38107      * Returns the nested BorderLayout for this panel
38108      * @return {Roo.BorderLayout} 
38109      */
38110     getLayout : function(){
38111         return this.layout;
38112     },
38113     
38114      /**
38115      * Adds a xtype elements to the layout of the nested panel
38116      * <pre><code>
38117
38118 panel.addxtype({
38119        xtype : 'ContentPanel',
38120        region: 'west',
38121        items: [ .... ]
38122    }
38123 );
38124
38125 panel.addxtype({
38126         xtype : 'NestedLayoutPanel',
38127         region: 'west',
38128         layout: {
38129            center: { },
38130            west: { }   
38131         },
38132         items : [ ... list of content panels or nested layout panels.. ]
38133    }
38134 );
38135 </code></pre>
38136      * @param {Object} cfg Xtype definition of item to add.
38137      */
38138     addxtype : function(cfg) {
38139         return this.layout.addxtype(cfg);
38140     
38141     }
38142 });/*
38143  * Based on:
38144  * Ext JS Library 1.1.1
38145  * Copyright(c) 2006-2007, Ext JS, LLC.
38146  *
38147  * Originally Released Under LGPL - original licence link has changed is not relivant.
38148  *
38149  * Fork - LGPL
38150  * <script type="text/javascript">
38151  */
38152 /**
38153  * @class Roo.TabPanel
38154  * @extends Roo.util.Observable
38155  * A lightweight tab container.
38156  * <br><br>
38157  * Usage:
38158  * <pre><code>
38159 // basic tabs 1, built from existing content
38160 var tabs = new Roo.TabPanel("tabs1");
38161 tabs.addTab("script", "View Script");
38162 tabs.addTab("markup", "View Markup");
38163 tabs.activate("script");
38164
38165 // more advanced tabs, built from javascript
38166 var jtabs = new Roo.TabPanel("jtabs");
38167 jtabs.addTab("jtabs-1", "Normal Tab", "My content was added during construction.");
38168
38169 // set up the UpdateManager
38170 var tab2 = jtabs.addTab("jtabs-2", "Ajax Tab 1");
38171 var updater = tab2.getUpdateManager();
38172 updater.setDefaultUrl("ajax1.htm");
38173 tab2.on('activate', updater.refresh, updater, true);
38174
38175 // Use setUrl for Ajax loading
38176 var tab3 = jtabs.addTab("jtabs-3", "Ajax Tab 2");
38177 tab3.setUrl("ajax2.htm", null, true);
38178
38179 // Disabled tab
38180 var tab4 = jtabs.addTab("tabs1-5", "Disabled Tab", "Can't see me cause I'm disabled");
38181 tab4.disable();
38182
38183 jtabs.activate("jtabs-1");
38184  * </code></pre>
38185  * @constructor
38186  * Create a new TabPanel.
38187  * @param {String/HTMLElement/Roo.Element} container The id, DOM element or Roo.Element container where this TabPanel is to be rendered.
38188  * @param {Object/Boolean} config Config object to set any properties for this TabPanel, or true to render the tabs on the bottom.
38189  */
38190 Roo.bootstrap.panel.Tabs = function(config){
38191     /**
38192     * The container element for this TabPanel.
38193     * @type Roo.Element
38194     */
38195     this.el = Roo.get(config.el);
38196     delete config.el;
38197     if(config){
38198         if(typeof config == "boolean"){
38199             this.tabPosition = config ? "bottom" : "top";
38200         }else{
38201             Roo.apply(this, config);
38202         }
38203     }
38204     
38205     if(this.tabPosition == "bottom"){
38206         // if tabs are at the bottom = create the body first.
38207         this.bodyEl = Roo.get(this.createBody(this.el.dom));
38208         this.el.addClass("roo-tabs-bottom");
38209     }
38210     // next create the tabs holders
38211     
38212     if (this.tabPosition == "west"){
38213         
38214         var reg = this.region; // fake it..
38215         while (reg) {
38216             if (!reg.mgr.parent) {
38217                 break;
38218             }
38219             reg = reg.mgr.parent.region;
38220         }
38221         Roo.log("got nest?");
38222         Roo.log(reg);
38223         if (reg.mgr.getRegion('west')) {
38224             var ctrdom = reg.mgr.getRegion('west').bodyEl.dom;
38225             this.stripWrap = Roo.get(this.createStrip(ctrdom ), true);
38226             this.stripEl = Roo.get(this.createStripList(this.stripWrap.dom), true);
38227             this.stripEl.setVisibilityMode(Roo.Element.DISPLAY);
38228             this.stripBody = Roo.get(this.stripWrap.dom.firstChild.firstChild, true);
38229         
38230             
38231         }
38232         
38233         
38234     } else {
38235      
38236         this.stripWrap = Roo.get(this.createStrip(this.el.dom), true);
38237         this.stripEl = Roo.get(this.createStripList(this.stripWrap.dom), true);
38238         this.stripEl.setVisibilityMode(Roo.Element.DISPLAY);
38239         this.stripBody = Roo.get(this.stripWrap.dom.firstChild.firstChild, true);
38240     }
38241     
38242     
38243     if(Roo.isIE){
38244         Roo.fly(this.stripWrap.dom.firstChild).setStyle("overflow-x", "hidden");
38245     }
38246     
38247     // finally - if tabs are at the top, then create the body last..
38248     if(this.tabPosition != "bottom"){
38249         /** The body element that contains {@link Roo.TabPanelItem} bodies. +
38250          * @type Roo.Element
38251          */
38252         this.bodyEl = Roo.get(this.createBody(this.el.dom));
38253         this.el.addClass("roo-tabs-top");
38254     }
38255     this.items = [];
38256
38257     this.bodyEl.setStyle("position", "relative");
38258
38259     this.active = null;
38260     this.activateDelegate = this.activate.createDelegate(this);
38261
38262     this.addEvents({
38263         /**
38264          * @event tabchange
38265          * Fires when the active tab changes
38266          * @param {Roo.TabPanel} this
38267          * @param {Roo.TabPanelItem} activePanel The new active tab
38268          */
38269         "tabchange": true,
38270         /**
38271          * @event beforetabchange
38272          * Fires before the active tab changes, set cancel to true on the "e" parameter to cancel the change
38273          * @param {Roo.TabPanel} this
38274          * @param {Object} e Set cancel to true on this object to cancel the tab change
38275          * @param {Roo.TabPanelItem} tab The tab being changed to
38276          */
38277         "beforetabchange" : true
38278     });
38279
38280     Roo.EventManager.onWindowResize(this.onResize, this);
38281     this.cpad = this.el.getPadding("lr");
38282     this.hiddenCount = 0;
38283
38284
38285     // toolbar on the tabbar support...
38286     if (this.toolbar) {
38287         alert("no toolbar support yet");
38288         this.toolbar  = false;
38289         /*
38290         var tcfg = this.toolbar;
38291         tcfg.container = this.stripEl.child('td.x-tab-strip-toolbar');  
38292         this.toolbar = new Roo.Toolbar(tcfg);
38293         if (Roo.isSafari) {
38294             var tbl = tcfg.container.child('table', true);
38295             tbl.setAttribute('width', '100%');
38296         }
38297         */
38298         
38299     }
38300    
38301
38302
38303     Roo.bootstrap.panel.Tabs.superclass.constructor.call(this);
38304 };
38305
38306 Roo.extend(Roo.bootstrap.panel.Tabs, Roo.util.Observable, {
38307     /*
38308      *@cfg {String} tabPosition "top" or "bottom" (defaults to "top")
38309      */
38310     tabPosition : "top",
38311     /*
38312      *@cfg {Number} currentTabWidth The width of the current tab (defaults to 0)
38313      */
38314     currentTabWidth : 0,
38315     /*
38316      *@cfg {Number} minTabWidth The minimum width of a tab (defaults to 40) (ignored if {@link #resizeTabs} is not true)
38317      */
38318     minTabWidth : 40,
38319     /*
38320      *@cfg {Number} maxTabWidth The maximum width of a tab (defaults to 250) (ignored if {@link #resizeTabs} is not true)
38321      */
38322     maxTabWidth : 250,
38323     /*
38324      *@cfg {Number} preferredTabWidth The preferred (default) width of a tab (defaults to 175) (ignored if {@link #resizeTabs} is not true)
38325      */
38326     preferredTabWidth : 175,
38327     /*
38328      *@cfg {Boolean} resizeTabs True to enable dynamic tab resizing (defaults to false)
38329      */
38330     resizeTabs : false,
38331     /*
38332      *@cfg {Boolean} monitorResize Set this to true to turn on window resize monitoring (ignored if {@link #resizeTabs} is not true) (defaults to true)
38333      */
38334     monitorResize : true,
38335     /*
38336      *@cfg {Object} toolbar xtype description of toolbar to show at the right of the tab bar. 
38337      */
38338     toolbar : false,  // set by caller..
38339     
38340     region : false, /// set by caller
38341     
38342     disableTooltips : true, // not used yet...
38343
38344     /**
38345      * Creates a new {@link Roo.TabPanelItem} by looking for an existing element with the provided id -- if it's not found it creates one.
38346      * @param {String} id The id of the div to use <b>or create</b>
38347      * @param {String} text The text for the tab
38348      * @param {String} content (optional) Content to put in the TabPanelItem body
38349      * @param {Boolean} closable (optional) True to create a close icon on the tab
38350      * @return {Roo.TabPanelItem} The created TabPanelItem
38351      */
38352     addTab : function(id, text, content, closable, tpl)
38353     {
38354         var item = new Roo.bootstrap.panel.TabItem({
38355             panel: this,
38356             id : id,
38357             text : text,
38358             closable : closable,
38359             tpl : tpl
38360         });
38361         this.addTabItem(item);
38362         if(content){
38363             item.setContent(content);
38364         }
38365         return item;
38366     },
38367
38368     /**
38369      * Returns the {@link Roo.TabPanelItem} with the specified id/index
38370      * @param {String/Number} id The id or index of the TabPanelItem to fetch.
38371      * @return {Roo.TabPanelItem}
38372      */
38373     getTab : function(id){
38374         return this.items[id];
38375     },
38376
38377     /**
38378      * Hides the {@link Roo.TabPanelItem} with the specified id/index
38379      * @param {String/Number} id The id or index of the TabPanelItem to hide.
38380      */
38381     hideTab : function(id){
38382         var t = this.items[id];
38383         if(!t.isHidden()){
38384            t.setHidden(true);
38385            this.hiddenCount++;
38386            this.autoSizeTabs();
38387         }
38388     },
38389
38390     /**
38391      * "Unhides" the {@link Roo.TabPanelItem} with the specified id/index.
38392      * @param {String/Number} id The id or index of the TabPanelItem to unhide.
38393      */
38394     unhideTab : function(id){
38395         var t = this.items[id];
38396         if(t.isHidden()){
38397            t.setHidden(false);
38398            this.hiddenCount--;
38399            this.autoSizeTabs();
38400         }
38401     },
38402
38403     /**
38404      * Adds an existing {@link Roo.TabPanelItem}.
38405      * @param {Roo.TabPanelItem} item The TabPanelItem to add
38406      */
38407     addTabItem : function(item)
38408     {
38409         this.items[item.id] = item;
38410         this.items.push(item);
38411         this.autoSizeTabs();
38412       //  if(this.resizeTabs){
38413     //       item.setWidth(this.currentTabWidth || this.preferredTabWidth);
38414   //         this.autoSizeTabs();
38415 //        }else{
38416 //            item.autoSize();
38417        // }
38418     },
38419
38420     /**
38421      * Removes a {@link Roo.TabPanelItem}.
38422      * @param {String/Number} id The id or index of the TabPanelItem to remove.
38423      */
38424     removeTab : function(id){
38425         var items = this.items;
38426         var tab = items[id];
38427         if(!tab) { return; }
38428         var index = items.indexOf(tab);
38429         if(this.active == tab && items.length > 1){
38430             var newTab = this.getNextAvailable(index);
38431             if(newTab) {
38432                 newTab.activate();
38433             }
38434         }
38435         this.stripEl.dom.removeChild(tab.pnode.dom);
38436         if(tab.bodyEl.dom.parentNode == this.bodyEl.dom){ // if it was moved already prevent error
38437             this.bodyEl.dom.removeChild(tab.bodyEl.dom);
38438         }
38439         items.splice(index, 1);
38440         delete this.items[tab.id];
38441         tab.fireEvent("close", tab);
38442         tab.purgeListeners();
38443         this.autoSizeTabs();
38444     },
38445
38446     getNextAvailable : function(start){
38447         var items = this.items;
38448         var index = start;
38449         // look for a next tab that will slide over to
38450         // replace the one being removed
38451         while(index < items.length){
38452             var item = items[++index];
38453             if(item && !item.isHidden()){
38454                 return item;
38455             }
38456         }
38457         // if one isn't found select the previous tab (on the left)
38458         index = start;
38459         while(index >= 0){
38460             var item = items[--index];
38461             if(item && !item.isHidden()){
38462                 return item;
38463             }
38464         }
38465         return null;
38466     },
38467
38468     /**
38469      * Disables a {@link Roo.TabPanelItem}. It cannot be the active tab, if it is this call is ignored.
38470      * @param {String/Number} id The id or index of the TabPanelItem to disable.
38471      */
38472     disableTab : function(id){
38473         var tab = this.items[id];
38474         if(tab && this.active != tab){
38475             tab.disable();
38476         }
38477     },
38478
38479     /**
38480      * Enables a {@link Roo.TabPanelItem} that is disabled.
38481      * @param {String/Number} id The id or index of the TabPanelItem to enable.
38482      */
38483     enableTab : function(id){
38484         var tab = this.items[id];
38485         tab.enable();
38486     },
38487
38488     /**
38489      * Activates a {@link Roo.TabPanelItem}. The currently active one will be deactivated.
38490      * @param {String/Number} id The id or index of the TabPanelItem to activate.
38491      * @return {Roo.TabPanelItem} The TabPanelItem.
38492      */
38493     activate : function(id)
38494     {
38495         //Roo.log('activite:'  + id);
38496         
38497         var tab = this.items[id];
38498         if(!tab){
38499             return null;
38500         }
38501         if(tab == this.active || tab.disabled){
38502             return tab;
38503         }
38504         var e = {};
38505         this.fireEvent("beforetabchange", this, e, tab);
38506         if(e.cancel !== true && !tab.disabled){
38507             if(this.active){
38508                 this.active.hide();
38509             }
38510             this.active = this.items[id];
38511             this.active.show();
38512             this.fireEvent("tabchange", this, this.active);
38513         }
38514         return tab;
38515     },
38516
38517     /**
38518      * Gets the active {@link Roo.TabPanelItem}.
38519      * @return {Roo.TabPanelItem} The active TabPanelItem or null if none are active.
38520      */
38521     getActiveTab : function(){
38522         return this.active;
38523     },
38524
38525     /**
38526      * Updates the tab body element to fit the height of the container element
38527      * for overflow scrolling
38528      * @param {Number} targetHeight (optional) Override the starting height from the elements height
38529      */
38530     syncHeight : function(targetHeight){
38531         var height = (targetHeight || this.el.getHeight())-this.el.getBorderWidth("tb")-this.el.getPadding("tb");
38532         var bm = this.bodyEl.getMargins();
38533         var newHeight = height-(this.stripWrap.getHeight()||0)-(bm.top+bm.bottom);
38534         this.bodyEl.setHeight(newHeight);
38535         return newHeight;
38536     },
38537
38538     onResize : function(){
38539         if(this.monitorResize){
38540             this.autoSizeTabs();
38541         }
38542     },
38543
38544     /**
38545      * Disables tab resizing while tabs are being added (if {@link #resizeTabs} is false this does nothing)
38546      */
38547     beginUpdate : function(){
38548         this.updating = true;
38549     },
38550
38551     /**
38552      * Stops an update and resizes the tabs (if {@link #resizeTabs} is false this does nothing)
38553      */
38554     endUpdate : function(){
38555         this.updating = false;
38556         this.autoSizeTabs();
38557     },
38558
38559     /**
38560      * Manual call to resize the tabs (if {@link #resizeTabs} is false this does nothing)
38561      */
38562     autoSizeTabs : function()
38563     {
38564         var count = this.items.length;
38565         var vcount = count - this.hiddenCount;
38566         
38567         if (vcount < 2) {
38568             this.stripEl.hide();
38569         } else {
38570             this.stripEl.show();
38571         }
38572         
38573         if(!this.resizeTabs || count < 1 || vcount < 1 || this.updating) {
38574             return;
38575         }
38576         
38577         
38578         var w = Math.max(this.el.getWidth() - this.cpad, 10);
38579         var availWidth = Math.floor(w / vcount);
38580         var b = this.stripBody;
38581         if(b.getWidth() > w){
38582             var tabs = this.items;
38583             this.setTabWidth(Math.max(availWidth, this.minTabWidth)-2);
38584             if(availWidth < this.minTabWidth){
38585                 /*if(!this.sleft){    // incomplete scrolling code
38586                     this.createScrollButtons();
38587                 }
38588                 this.showScroll();
38589                 this.stripClip.setWidth(w - (this.sleft.getWidth()+this.sright.getWidth()));*/
38590             }
38591         }else{
38592             if(this.currentTabWidth < this.preferredTabWidth){
38593                 this.setTabWidth(Math.min(availWidth, this.preferredTabWidth)-2);
38594             }
38595         }
38596     },
38597
38598     /**
38599      * Returns the number of tabs in this TabPanel.
38600      * @return {Number}
38601      */
38602      getCount : function(){
38603          return this.items.length;
38604      },
38605
38606     /**
38607      * Resizes all the tabs to the passed width
38608      * @param {Number} The new width
38609      */
38610     setTabWidth : function(width){
38611         this.currentTabWidth = width;
38612         for(var i = 0, len = this.items.length; i < len; i++) {
38613                 if(!this.items[i].isHidden()) {
38614                 this.items[i].setWidth(width);
38615             }
38616         }
38617     },
38618
38619     /**
38620      * Destroys this TabPanel
38621      * @param {Boolean} removeEl (optional) True to remove the element from the DOM as well (defaults to undefined)
38622      */
38623     destroy : function(removeEl){
38624         Roo.EventManager.removeResizeListener(this.onResize, this);
38625         for(var i = 0, len = this.items.length; i < len; i++){
38626             this.items[i].purgeListeners();
38627         }
38628         if(removeEl === true){
38629             this.el.update("");
38630             this.el.remove();
38631         }
38632     },
38633     
38634     createStrip : function(container)
38635     {
38636         var strip = document.createElement("nav");
38637         strip.className = Roo.bootstrap.version == 4 ?
38638             "navbar-light bg-light" : 
38639             "navbar navbar-default"; //"x-tabs-wrap";
38640         container.appendChild(strip);
38641         return strip;
38642     },
38643     
38644     createStripList : function(strip)
38645     {
38646         // div wrapper for retard IE
38647         // returns the "tr" element.
38648         strip.innerHTML = '<ul class="nav nav-tabs" role="tablist"></ul>';
38649         //'<div class="x-tabs-strip-wrap">'+
38650           //  '<table class="x-tabs-strip" cellspacing="0" cellpadding="0" border="0"><tbody><tr>'+
38651           //  '<td class="x-tab-strip-toolbar"></td></tr></tbody></table></div>';
38652         return strip.firstChild; //.firstChild.firstChild.firstChild;
38653     },
38654     createBody : function(container)
38655     {
38656         var body = document.createElement("div");
38657         Roo.id(body, "tab-body");
38658         //Roo.fly(body).addClass("x-tabs-body");
38659         Roo.fly(body).addClass("tab-content");
38660         container.appendChild(body);
38661         return body;
38662     },
38663     createItemBody :function(bodyEl, id){
38664         var body = Roo.getDom(id);
38665         if(!body){
38666             body = document.createElement("div");
38667             body.id = id;
38668         }
38669         //Roo.fly(body).addClass("x-tabs-item-body");
38670         Roo.fly(body).addClass("tab-pane");
38671          bodyEl.insertBefore(body, bodyEl.firstChild);
38672         return body;
38673     },
38674     /** @private */
38675     createStripElements :  function(stripEl, text, closable, tpl)
38676     {
38677         var td = document.createElement("li"); // was td..
38678         td.className = 'nav-item';
38679         
38680         //stripEl.insertBefore(td, stripEl.childNodes[stripEl.childNodes.length-1]);
38681         
38682         
38683         stripEl.appendChild(td);
38684         /*if(closable){
38685             td.className = "x-tabs-closable";
38686             if(!this.closeTpl){
38687                 this.closeTpl = new Roo.Template(
38688                    '<a href="#" class="x-tabs-right"><span class="x-tabs-left"><em class="x-tabs-inner">' +
38689                    '<span unselectable="on"' + (this.disableTooltips ? '' : ' title="{text}"') +' class="x-tabs-text">{text}</span>' +
38690                    '<div unselectable="on" class="close-icon">&#160;</div></em></span></a>'
38691                 );
38692             }
38693             var el = this.closeTpl.overwrite(td, {"text": text});
38694             var close = el.getElementsByTagName("div")[0];
38695             var inner = el.getElementsByTagName("em")[0];
38696             return {"el": el, "close": close, "inner": inner};
38697         } else {
38698         */
38699         // not sure what this is..
38700 //            if(!this.tabTpl){
38701                 //this.tabTpl = new Roo.Template(
38702                 //   '<a href="#" class="x-tabs-right"><span class="x-tabs-left"><em class="x-tabs-inner">' +
38703                 //   '<span unselectable="on"' + (this.disableTooltips ? '' : ' title="{text}"') +' class="x-tabs-text">{text}</span></em></span></a>'
38704                 //);
38705 //                this.tabTpl = new Roo.Template(
38706 //                   '<a href="#">' +
38707 //                   '<span unselectable="on"' +
38708 //                            (this.disableTooltips ? '' : ' title="{text}"') +
38709 //                            ' >{text}</span></a>'
38710 //                );
38711 //                
38712 //            }
38713
38714
38715             var template = tpl || this.tabTpl || false;
38716             
38717             if(!template){
38718                 template =  new Roo.Template(
38719                         Roo.bootstrap.version == 4 ? 
38720                             (
38721                                 '<a class="nav-link" href="#" unselectable="on"' +
38722                                      (this.disableTooltips ? '' : ' title="{text}"') +
38723                                      ' >{text}</a>'
38724                             ) : (
38725                                 '<a class="nav-link" href="#">' +
38726                                 '<span unselectable="on"' +
38727                                          (this.disableTooltips ? '' : ' title="{text}"') +
38728                                     ' >{text}</span></a>'
38729                             )
38730                 );
38731             }
38732             
38733             switch (typeof(template)) {
38734                 case 'object' :
38735                     break;
38736                 case 'string' :
38737                     template = new Roo.Template(template);
38738                     break;
38739                 default :
38740                     break;
38741             }
38742             
38743             var el = template.overwrite(td, {"text": text});
38744             
38745             var inner = el.getElementsByTagName("span")[0];
38746             
38747             return {"el": el, "inner": inner};
38748             
38749     }
38750         
38751     
38752 });
38753
38754 /**
38755  * @class Roo.TabPanelItem
38756  * @extends Roo.util.Observable
38757  * Represents an individual item (tab plus body) in a TabPanel.
38758  * @param {Roo.TabPanel} tabPanel The {@link Roo.TabPanel} this TabPanelItem belongs to
38759  * @param {String} id The id of this TabPanelItem
38760  * @param {String} text The text for the tab of this TabPanelItem
38761  * @param {Boolean} closable True to allow this TabPanelItem to be closable (defaults to false)
38762  */
38763 Roo.bootstrap.panel.TabItem = function(config){
38764     /**
38765      * The {@link Roo.TabPanel} this TabPanelItem belongs to
38766      * @type Roo.TabPanel
38767      */
38768     this.tabPanel = config.panel;
38769     /**
38770      * The id for this TabPanelItem
38771      * @type String
38772      */
38773     this.id = config.id;
38774     /** @private */
38775     this.disabled = false;
38776     /** @private */
38777     this.text = config.text;
38778     /** @private */
38779     this.loaded = false;
38780     this.closable = config.closable;
38781
38782     /**
38783      * The body element for this TabPanelItem.
38784      * @type Roo.Element
38785      */
38786     this.bodyEl = Roo.get(this.tabPanel.createItemBody(this.tabPanel.bodyEl.dom, config.id));
38787     this.bodyEl.setVisibilityMode(Roo.Element.VISIBILITY);
38788     this.bodyEl.setStyle("display", "block");
38789     this.bodyEl.setStyle("zoom", "1");
38790     //this.hideAction();
38791
38792     var els = this.tabPanel.createStripElements(this.tabPanel.stripEl.dom, config.text, config.closable, config.tpl);
38793     /** @private */
38794     this.el = Roo.get(els.el);
38795     this.inner = Roo.get(els.inner, true);
38796      this.textEl = Roo.bootstrap.version == 4 ?
38797         this.el : Roo.get(this.el.dom.firstChild, true);
38798
38799     this.pnode = this.linode = Roo.get(els.el.parentNode, true);
38800     this.status_node = Roo.bootstrap.version == 4 ? this.el : this.linode;
38801
38802     
38803 //    this.el.on("mousedown", this.onTabMouseDown, this);
38804     this.el.on("click", this.onTabClick, this);
38805     /** @private */
38806     if(config.closable){
38807         var c = Roo.get(els.close, true);
38808         c.dom.title = this.closeText;
38809         c.addClassOnOver("close-over");
38810         c.on("click", this.closeClick, this);
38811      }
38812
38813     this.addEvents({
38814          /**
38815          * @event activate
38816          * Fires when this tab becomes the active tab.
38817          * @param {Roo.TabPanel} tabPanel The parent TabPanel
38818          * @param {Roo.TabPanelItem} this
38819          */
38820         "activate": true,
38821         /**
38822          * @event beforeclose
38823          * Fires before this tab is closed. To cancel the close, set cancel to true on e (e.cancel = true).
38824          * @param {Roo.TabPanelItem} this
38825          * @param {Object} e Set cancel to true on this object to cancel the close.
38826          */
38827         "beforeclose": true,
38828         /**
38829          * @event close
38830          * Fires when this tab is closed.
38831          * @param {Roo.TabPanelItem} this
38832          */
38833          "close": true,
38834         /**
38835          * @event deactivate
38836          * Fires when this tab is no longer the active tab.
38837          * @param {Roo.TabPanel} tabPanel The parent TabPanel
38838          * @param {Roo.TabPanelItem} this
38839          */
38840          "deactivate" : true
38841     });
38842     this.hidden = false;
38843
38844     Roo.bootstrap.panel.TabItem.superclass.constructor.call(this);
38845 };
38846
38847 Roo.extend(Roo.bootstrap.panel.TabItem, Roo.util.Observable,
38848            {
38849     purgeListeners : function(){
38850        Roo.util.Observable.prototype.purgeListeners.call(this);
38851        this.el.removeAllListeners();
38852     },
38853     /**
38854      * Shows this TabPanelItem -- this <b>does not</b> deactivate the currently active TabPanelItem.
38855      */
38856     show : function(){
38857         this.status_node.addClass("active");
38858         this.showAction();
38859         if(Roo.isOpera){
38860             this.tabPanel.stripWrap.repaint();
38861         }
38862         this.fireEvent("activate", this.tabPanel, this);
38863     },
38864
38865     /**
38866      * Returns true if this tab is the active tab.
38867      * @return {Boolean}
38868      */
38869     isActive : function(){
38870         return this.tabPanel.getActiveTab() == this;
38871     },
38872
38873     /**
38874      * Hides this TabPanelItem -- if you don't activate another TabPanelItem this could look odd.
38875      */
38876     hide : function(){
38877         this.status_node.removeClass("active");
38878         this.hideAction();
38879         this.fireEvent("deactivate", this.tabPanel, this);
38880     },
38881
38882     hideAction : function(){
38883         this.bodyEl.hide();
38884         this.bodyEl.setStyle("position", "absolute");
38885         this.bodyEl.setLeft("-20000px");
38886         this.bodyEl.setTop("-20000px");
38887     },
38888
38889     showAction : function(){
38890         this.bodyEl.setStyle("position", "relative");
38891         this.bodyEl.setTop("");
38892         this.bodyEl.setLeft("");
38893         this.bodyEl.show();
38894     },
38895
38896     /**
38897      * Set the tooltip for the tab.
38898      * @param {String} tooltip The tab's tooltip
38899      */
38900     setTooltip : function(text){
38901         if(Roo.QuickTips && Roo.QuickTips.isEnabled()){
38902             this.textEl.dom.qtip = text;
38903             this.textEl.dom.removeAttribute('title');
38904         }else{
38905             this.textEl.dom.title = text;
38906         }
38907     },
38908
38909     onTabClick : function(e){
38910         e.preventDefault();
38911         this.tabPanel.activate(this.id);
38912     },
38913
38914     onTabMouseDown : function(e){
38915         e.preventDefault();
38916         this.tabPanel.activate(this.id);
38917     },
38918 /*
38919     getWidth : function(){
38920         return this.inner.getWidth();
38921     },
38922
38923     setWidth : function(width){
38924         var iwidth = width - this.linode.getPadding("lr");
38925         this.inner.setWidth(iwidth);
38926         this.textEl.setWidth(iwidth-this.inner.getPadding("lr"));
38927         this.linode.setWidth(width);
38928     },
38929 */
38930     /**
38931      * Show or hide the tab
38932      * @param {Boolean} hidden True to hide or false to show.
38933      */
38934     setHidden : function(hidden){
38935         this.hidden = hidden;
38936         this.linode.setStyle("display", hidden ? "none" : "");
38937     },
38938
38939     /**
38940      * Returns true if this tab is "hidden"
38941      * @return {Boolean}
38942      */
38943     isHidden : function(){
38944         return this.hidden;
38945     },
38946
38947     /**
38948      * Returns the text for this tab
38949      * @return {String}
38950      */
38951     getText : function(){
38952         return this.text;
38953     },
38954     /*
38955     autoSize : function(){
38956         //this.el.beginMeasure();
38957         this.textEl.setWidth(1);
38958         /*
38959          *  #2804 [new] Tabs in Roojs
38960          *  increase the width by 2-4 pixels to prevent the ellipssis showing in chrome
38961          */
38962         //this.setWidth(this.textEl.dom.scrollWidth+this.linode.getPadding("lr")+this.inner.getPadding("lr") + 2);
38963         //this.el.endMeasure();
38964     //},
38965
38966     /**
38967      * Sets the text for the tab (Note: this also sets the tooltip text)
38968      * @param {String} text The tab's text and tooltip
38969      */
38970     setText : function(text){
38971         this.text = text;
38972         this.textEl.update(text);
38973         this.setTooltip(text);
38974         //if(!this.tabPanel.resizeTabs){
38975         //    this.autoSize();
38976         //}
38977     },
38978     /**
38979      * Activates this TabPanelItem -- this <b>does</b> deactivate the currently active TabPanelItem.
38980      */
38981     activate : function(){
38982         this.tabPanel.activate(this.id);
38983     },
38984
38985     /**
38986      * Disables this TabPanelItem -- this does nothing if this is the active TabPanelItem.
38987      */
38988     disable : function(){
38989         if(this.tabPanel.active != this){
38990             this.disabled = true;
38991             this.status_node.addClass("disabled");
38992         }
38993     },
38994
38995     /**
38996      * Enables this TabPanelItem if it was previously disabled.
38997      */
38998     enable : function(){
38999         this.disabled = false;
39000         this.status_node.removeClass("disabled");
39001     },
39002
39003     /**
39004      * Sets the content for this TabPanelItem.
39005      * @param {String} content The content
39006      * @param {Boolean} loadScripts true to look for and load scripts
39007      */
39008     setContent : function(content, loadScripts){
39009         this.bodyEl.update(content, loadScripts);
39010     },
39011
39012     /**
39013      * Gets the {@link Roo.UpdateManager} for the body of this TabPanelItem. Enables you to perform Ajax updates.
39014      * @return {Roo.UpdateManager} The UpdateManager
39015      */
39016     getUpdateManager : function(){
39017         return this.bodyEl.getUpdateManager();
39018     },
39019
39020     /**
39021      * Set a URL to be used to load the content for this TabPanelItem.
39022      * @param {String/Function} url The URL to load the content from, or a function to call to get the URL
39023      * @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)
39024      * @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)
39025      * @return {Roo.UpdateManager} The UpdateManager
39026      */
39027     setUrl : function(url, params, loadOnce){
39028         if(this.refreshDelegate){
39029             this.un('activate', this.refreshDelegate);
39030         }
39031         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
39032         this.on("activate", this.refreshDelegate);
39033         return this.bodyEl.getUpdateManager();
39034     },
39035
39036     /** @private */
39037     _handleRefresh : function(url, params, loadOnce){
39038         if(!loadOnce || !this.loaded){
39039             var updater = this.bodyEl.getUpdateManager();
39040             updater.update(url, params, this._setLoaded.createDelegate(this));
39041         }
39042     },
39043
39044     /**
39045      *   Forces a content refresh from the URL specified in the {@link #setUrl} method.
39046      *   Will fail silently if the setUrl method has not been called.
39047      *   This does not activate the panel, just updates its content.
39048      */
39049     refresh : function(){
39050         if(this.refreshDelegate){
39051            this.loaded = false;
39052            this.refreshDelegate();
39053         }
39054     },
39055
39056     /** @private */
39057     _setLoaded : function(){
39058         this.loaded = true;
39059     },
39060
39061     /** @private */
39062     closeClick : function(e){
39063         var o = {};
39064         e.stopEvent();
39065         this.fireEvent("beforeclose", this, o);
39066         if(o.cancel !== true){
39067             this.tabPanel.removeTab(this.id);
39068         }
39069     },
39070     /**
39071      * The text displayed in the tooltip for the close icon.
39072      * @type String
39073      */
39074     closeText : "Close this tab"
39075 });
39076 /**
39077 *    This script refer to:
39078 *    Title: International Telephone Input
39079 *    Author: Jack O'Connor
39080 *    Code version:  v12.1.12
39081 *    Availability: https://github.com/jackocnr/intl-tel-input.git
39082 **/
39083
39084 Roo.bootstrap.PhoneInputData = function() {
39085     var d = [
39086       [
39087         "Afghanistan (‫افغانستان‬‎)",
39088         "af",
39089         "93"
39090       ],
39091       [
39092         "Albania (Shqipëri)",
39093         "al",
39094         "355"
39095       ],
39096       [
39097         "Algeria (‫الجزائر‬‎)",
39098         "dz",
39099         "213"
39100       ],
39101       [
39102         "American Samoa",
39103         "as",
39104         "1684"
39105       ],
39106       [
39107         "Andorra",
39108         "ad",
39109         "376"
39110       ],
39111       [
39112         "Angola",
39113         "ao",
39114         "244"
39115       ],
39116       [
39117         "Anguilla",
39118         "ai",
39119         "1264"
39120       ],
39121       [
39122         "Antigua and Barbuda",
39123         "ag",
39124         "1268"
39125       ],
39126       [
39127         "Argentina",
39128         "ar",
39129         "54"
39130       ],
39131       [
39132         "Armenia (Հայաստան)",
39133         "am",
39134         "374"
39135       ],
39136       [
39137         "Aruba",
39138         "aw",
39139         "297"
39140       ],
39141       [
39142         "Australia",
39143         "au",
39144         "61",
39145         0
39146       ],
39147       [
39148         "Austria (Österreich)",
39149         "at",
39150         "43"
39151       ],
39152       [
39153         "Azerbaijan (Azərbaycan)",
39154         "az",
39155         "994"
39156       ],
39157       [
39158         "Bahamas",
39159         "bs",
39160         "1242"
39161       ],
39162       [
39163         "Bahrain (‫البحرين‬‎)",
39164         "bh",
39165         "973"
39166       ],
39167       [
39168         "Bangladesh (বাংলাদেশ)",
39169         "bd",
39170         "880"
39171       ],
39172       [
39173         "Barbados",
39174         "bb",
39175         "1246"
39176       ],
39177       [
39178         "Belarus (Беларусь)",
39179         "by",
39180         "375"
39181       ],
39182       [
39183         "Belgium (België)",
39184         "be",
39185         "32"
39186       ],
39187       [
39188         "Belize",
39189         "bz",
39190         "501"
39191       ],
39192       [
39193         "Benin (Bénin)",
39194         "bj",
39195         "229"
39196       ],
39197       [
39198         "Bermuda",
39199         "bm",
39200         "1441"
39201       ],
39202       [
39203         "Bhutan (འབྲུག)",
39204         "bt",
39205         "975"
39206       ],
39207       [
39208         "Bolivia",
39209         "bo",
39210         "591"
39211       ],
39212       [
39213         "Bosnia and Herzegovina (Босна и Херцеговина)",
39214         "ba",
39215         "387"
39216       ],
39217       [
39218         "Botswana",
39219         "bw",
39220         "267"
39221       ],
39222       [
39223         "Brazil (Brasil)",
39224         "br",
39225         "55"
39226       ],
39227       [
39228         "British Indian Ocean Territory",
39229         "io",
39230         "246"
39231       ],
39232       [
39233         "British Virgin Islands",
39234         "vg",
39235         "1284"
39236       ],
39237       [
39238         "Brunei",
39239         "bn",
39240         "673"
39241       ],
39242       [
39243         "Bulgaria (България)",
39244         "bg",
39245         "359"
39246       ],
39247       [
39248         "Burkina Faso",
39249         "bf",
39250         "226"
39251       ],
39252       [
39253         "Burundi (Uburundi)",
39254         "bi",
39255         "257"
39256       ],
39257       [
39258         "Cambodia (កម្ពុជា)",
39259         "kh",
39260         "855"
39261       ],
39262       [
39263         "Cameroon (Cameroun)",
39264         "cm",
39265         "237"
39266       ],
39267       [
39268         "Canada",
39269         "ca",
39270         "1",
39271         1,
39272         ["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"]
39273       ],
39274       [
39275         "Cape Verde (Kabu Verdi)",
39276         "cv",
39277         "238"
39278       ],
39279       [
39280         "Caribbean Netherlands",
39281         "bq",
39282         "599",
39283         1
39284       ],
39285       [
39286         "Cayman Islands",
39287         "ky",
39288         "1345"
39289       ],
39290       [
39291         "Central African Republic (République centrafricaine)",
39292         "cf",
39293         "236"
39294       ],
39295       [
39296         "Chad (Tchad)",
39297         "td",
39298         "235"
39299       ],
39300       [
39301         "Chile",
39302         "cl",
39303         "56"
39304       ],
39305       [
39306         "China (中国)",
39307         "cn",
39308         "86"
39309       ],
39310       [
39311         "Christmas Island",
39312         "cx",
39313         "61",
39314         2
39315       ],
39316       [
39317         "Cocos (Keeling) Islands",
39318         "cc",
39319         "61",
39320         1
39321       ],
39322       [
39323         "Colombia",
39324         "co",
39325         "57"
39326       ],
39327       [
39328         "Comoros (‫جزر القمر‬‎)",
39329         "km",
39330         "269"
39331       ],
39332       [
39333         "Congo (DRC) (Jamhuri ya Kidemokrasia ya Kongo)",
39334         "cd",
39335         "243"
39336       ],
39337       [
39338         "Congo (Republic) (Congo-Brazzaville)",
39339         "cg",
39340         "242"
39341       ],
39342       [
39343         "Cook Islands",
39344         "ck",
39345         "682"
39346       ],
39347       [
39348         "Costa Rica",
39349         "cr",
39350         "506"
39351       ],
39352       [
39353         "Côte d’Ivoire",
39354         "ci",
39355         "225"
39356       ],
39357       [
39358         "Croatia (Hrvatska)",
39359         "hr",
39360         "385"
39361       ],
39362       [
39363         "Cuba",
39364         "cu",
39365         "53"
39366       ],
39367       [
39368         "Curaçao",
39369         "cw",
39370         "599",
39371         0
39372       ],
39373       [
39374         "Cyprus (Κύπρος)",
39375         "cy",
39376         "357"
39377       ],
39378       [
39379         "Czech Republic (Česká republika)",
39380         "cz",
39381         "420"
39382       ],
39383       [
39384         "Denmark (Danmark)",
39385         "dk",
39386         "45"
39387       ],
39388       [
39389         "Djibouti",
39390         "dj",
39391         "253"
39392       ],
39393       [
39394         "Dominica",
39395         "dm",
39396         "1767"
39397       ],
39398       [
39399         "Dominican Republic (República Dominicana)",
39400         "do",
39401         "1",
39402         2,
39403         ["809", "829", "849"]
39404       ],
39405       [
39406         "Ecuador",
39407         "ec",
39408         "593"
39409       ],
39410       [
39411         "Egypt (‫مصر‬‎)",
39412         "eg",
39413         "20"
39414       ],
39415       [
39416         "El Salvador",
39417         "sv",
39418         "503"
39419       ],
39420       [
39421         "Equatorial Guinea (Guinea Ecuatorial)",
39422         "gq",
39423         "240"
39424       ],
39425       [
39426         "Eritrea",
39427         "er",
39428         "291"
39429       ],
39430       [
39431         "Estonia (Eesti)",
39432         "ee",
39433         "372"
39434       ],
39435       [
39436         "Ethiopia",
39437         "et",
39438         "251"
39439       ],
39440       [
39441         "Falkland Islands (Islas Malvinas)",
39442         "fk",
39443         "500"
39444       ],
39445       [
39446         "Faroe Islands (Føroyar)",
39447         "fo",
39448         "298"
39449       ],
39450       [
39451         "Fiji",
39452         "fj",
39453         "679"
39454       ],
39455       [
39456         "Finland (Suomi)",
39457         "fi",
39458         "358",
39459         0
39460       ],
39461       [
39462         "France",
39463         "fr",
39464         "33"
39465       ],
39466       [
39467         "French Guiana (Guyane française)",
39468         "gf",
39469         "594"
39470       ],
39471       [
39472         "French Polynesia (Polynésie française)",
39473         "pf",
39474         "689"
39475       ],
39476       [
39477         "Gabon",
39478         "ga",
39479         "241"
39480       ],
39481       [
39482         "Gambia",
39483         "gm",
39484         "220"
39485       ],
39486       [
39487         "Georgia (საქართველო)",
39488         "ge",
39489         "995"
39490       ],
39491       [
39492         "Germany (Deutschland)",
39493         "de",
39494         "49"
39495       ],
39496       [
39497         "Ghana (Gaana)",
39498         "gh",
39499         "233"
39500       ],
39501       [
39502         "Gibraltar",
39503         "gi",
39504         "350"
39505       ],
39506       [
39507         "Greece (Ελλάδα)",
39508         "gr",
39509         "30"
39510       ],
39511       [
39512         "Greenland (Kalaallit Nunaat)",
39513         "gl",
39514         "299"
39515       ],
39516       [
39517         "Grenada",
39518         "gd",
39519         "1473"
39520       ],
39521       [
39522         "Guadeloupe",
39523         "gp",
39524         "590",
39525         0
39526       ],
39527       [
39528         "Guam",
39529         "gu",
39530         "1671"
39531       ],
39532       [
39533         "Guatemala",
39534         "gt",
39535         "502"
39536       ],
39537       [
39538         "Guernsey",
39539         "gg",
39540         "44",
39541         1
39542       ],
39543       [
39544         "Guinea (Guinée)",
39545         "gn",
39546         "224"
39547       ],
39548       [
39549         "Guinea-Bissau (Guiné Bissau)",
39550         "gw",
39551         "245"
39552       ],
39553       [
39554         "Guyana",
39555         "gy",
39556         "592"
39557       ],
39558       [
39559         "Haiti",
39560         "ht",
39561         "509"
39562       ],
39563       [
39564         "Honduras",
39565         "hn",
39566         "504"
39567       ],
39568       [
39569         "Hong Kong (香港)",
39570         "hk",
39571         "852"
39572       ],
39573       [
39574         "Hungary (Magyarország)",
39575         "hu",
39576         "36"
39577       ],
39578       [
39579         "Iceland (Ísland)",
39580         "is",
39581         "354"
39582       ],
39583       [
39584         "India (भारत)",
39585         "in",
39586         "91"
39587       ],
39588       [
39589         "Indonesia",
39590         "id",
39591         "62"
39592       ],
39593       [
39594         "Iran (‫ایران‬‎)",
39595         "ir",
39596         "98"
39597       ],
39598       [
39599         "Iraq (‫العراق‬‎)",
39600         "iq",
39601         "964"
39602       ],
39603       [
39604         "Ireland",
39605         "ie",
39606         "353"
39607       ],
39608       [
39609         "Isle of Man",
39610         "im",
39611         "44",
39612         2
39613       ],
39614       [
39615         "Israel (‫ישראל‬‎)",
39616         "il",
39617         "972"
39618       ],
39619       [
39620         "Italy (Italia)",
39621         "it",
39622         "39",
39623         0
39624       ],
39625       [
39626         "Jamaica",
39627         "jm",
39628         "1876"
39629       ],
39630       [
39631         "Japan (日本)",
39632         "jp",
39633         "81"
39634       ],
39635       [
39636         "Jersey",
39637         "je",
39638         "44",
39639         3
39640       ],
39641       [
39642         "Jordan (‫الأردن‬‎)",
39643         "jo",
39644         "962"
39645       ],
39646       [
39647         "Kazakhstan (Казахстан)",
39648         "kz",
39649         "7",
39650         1
39651       ],
39652       [
39653         "Kenya",
39654         "ke",
39655         "254"
39656       ],
39657       [
39658         "Kiribati",
39659         "ki",
39660         "686"
39661       ],
39662       [
39663         "Kosovo",
39664         "xk",
39665         "383"
39666       ],
39667       [
39668         "Kuwait (‫الكويت‬‎)",
39669         "kw",
39670         "965"
39671       ],
39672       [
39673         "Kyrgyzstan (Кыргызстан)",
39674         "kg",
39675         "996"
39676       ],
39677       [
39678         "Laos (ລາວ)",
39679         "la",
39680         "856"
39681       ],
39682       [
39683         "Latvia (Latvija)",
39684         "lv",
39685         "371"
39686       ],
39687       [
39688         "Lebanon (‫لبنان‬‎)",
39689         "lb",
39690         "961"
39691       ],
39692       [
39693         "Lesotho",
39694         "ls",
39695         "266"
39696       ],
39697       [
39698         "Liberia",
39699         "lr",
39700         "231"
39701       ],
39702       [
39703         "Libya (‫ليبيا‬‎)",
39704         "ly",
39705         "218"
39706       ],
39707       [
39708         "Liechtenstein",
39709         "li",
39710         "423"
39711       ],
39712       [
39713         "Lithuania (Lietuva)",
39714         "lt",
39715         "370"
39716       ],
39717       [
39718         "Luxembourg",
39719         "lu",
39720         "352"
39721       ],
39722       [
39723         "Macau (澳門)",
39724         "mo",
39725         "853"
39726       ],
39727       [
39728         "Macedonia (FYROM) (Македонија)",
39729         "mk",
39730         "389"
39731       ],
39732       [
39733         "Madagascar (Madagasikara)",
39734         "mg",
39735         "261"
39736       ],
39737       [
39738         "Malawi",
39739         "mw",
39740         "265"
39741       ],
39742       [
39743         "Malaysia",
39744         "my",
39745         "60"
39746       ],
39747       [
39748         "Maldives",
39749         "mv",
39750         "960"
39751       ],
39752       [
39753         "Mali",
39754         "ml",
39755         "223"
39756       ],
39757       [
39758         "Malta",
39759         "mt",
39760         "356"
39761       ],
39762       [
39763         "Marshall Islands",
39764         "mh",
39765         "692"
39766       ],
39767       [
39768         "Martinique",
39769         "mq",
39770         "596"
39771       ],
39772       [
39773         "Mauritania (‫موريتانيا‬‎)",
39774         "mr",
39775         "222"
39776       ],
39777       [
39778         "Mauritius (Moris)",
39779         "mu",
39780         "230"
39781       ],
39782       [
39783         "Mayotte",
39784         "yt",
39785         "262",
39786         1
39787       ],
39788       [
39789         "Mexico (México)",
39790         "mx",
39791         "52"
39792       ],
39793       [
39794         "Micronesia",
39795         "fm",
39796         "691"
39797       ],
39798       [
39799         "Moldova (Republica Moldova)",
39800         "md",
39801         "373"
39802       ],
39803       [
39804         "Monaco",
39805         "mc",
39806         "377"
39807       ],
39808       [
39809         "Mongolia (Монгол)",
39810         "mn",
39811         "976"
39812       ],
39813       [
39814         "Montenegro (Crna Gora)",
39815         "me",
39816         "382"
39817       ],
39818       [
39819         "Montserrat",
39820         "ms",
39821         "1664"
39822       ],
39823       [
39824         "Morocco (‫المغرب‬‎)",
39825         "ma",
39826         "212",
39827         0
39828       ],
39829       [
39830         "Mozambique (Moçambique)",
39831         "mz",
39832         "258"
39833       ],
39834       [
39835         "Myanmar (Burma) (မြန်မာ)",
39836         "mm",
39837         "95"
39838       ],
39839       [
39840         "Namibia (Namibië)",
39841         "na",
39842         "264"
39843       ],
39844       [
39845         "Nauru",
39846         "nr",
39847         "674"
39848       ],
39849       [
39850         "Nepal (नेपाल)",
39851         "np",
39852         "977"
39853       ],
39854       [
39855         "Netherlands (Nederland)",
39856         "nl",
39857         "31"
39858       ],
39859       [
39860         "New Caledonia (Nouvelle-Calédonie)",
39861         "nc",
39862         "687"
39863       ],
39864       [
39865         "New Zealand",
39866         "nz",
39867         "64"
39868       ],
39869       [
39870         "Nicaragua",
39871         "ni",
39872         "505"
39873       ],
39874       [
39875         "Niger (Nijar)",
39876         "ne",
39877         "227"
39878       ],
39879       [
39880         "Nigeria",
39881         "ng",
39882         "234"
39883       ],
39884       [
39885         "Niue",
39886         "nu",
39887         "683"
39888       ],
39889       [
39890         "Norfolk Island",
39891         "nf",
39892         "672"
39893       ],
39894       [
39895         "North Korea (조선 민주주의 인민 공화국)",
39896         "kp",
39897         "850"
39898       ],
39899       [
39900         "Northern Mariana Islands",
39901         "mp",
39902         "1670"
39903       ],
39904       [
39905         "Norway (Norge)",
39906         "no",
39907         "47",
39908         0
39909       ],
39910       [
39911         "Oman (‫عُمان‬‎)",
39912         "om",
39913         "968"
39914       ],
39915       [
39916         "Pakistan (‫پاکستان‬‎)",
39917         "pk",
39918         "92"
39919       ],
39920       [
39921         "Palau",
39922         "pw",
39923         "680"
39924       ],
39925       [
39926         "Palestine (‫فلسطين‬‎)",
39927         "ps",
39928         "970"
39929       ],
39930       [
39931         "Panama (Panamá)",
39932         "pa",
39933         "507"
39934       ],
39935       [
39936         "Papua New Guinea",
39937         "pg",
39938         "675"
39939       ],
39940       [
39941         "Paraguay",
39942         "py",
39943         "595"
39944       ],
39945       [
39946         "Peru (Perú)",
39947         "pe",
39948         "51"
39949       ],
39950       [
39951         "Philippines",
39952         "ph",
39953         "63"
39954       ],
39955       [
39956         "Poland (Polska)",
39957         "pl",
39958         "48"
39959       ],
39960       [
39961         "Portugal",
39962         "pt",
39963         "351"
39964       ],
39965       [
39966         "Puerto Rico",
39967         "pr",
39968         "1",
39969         3,
39970         ["787", "939"]
39971       ],
39972       [
39973         "Qatar (‫قطر‬‎)",
39974         "qa",
39975         "974"
39976       ],
39977       [
39978         "Réunion (La Réunion)",
39979         "re",
39980         "262",
39981         0
39982       ],
39983       [
39984         "Romania (România)",
39985         "ro",
39986         "40"
39987       ],
39988       [
39989         "Russia (Россия)",
39990         "ru",
39991         "7",
39992         0
39993       ],
39994       [
39995         "Rwanda",
39996         "rw",
39997         "250"
39998       ],
39999       [
40000         "Saint Barthélemy",
40001         "bl",
40002         "590",
40003         1
40004       ],
40005       [
40006         "Saint Helena",
40007         "sh",
40008         "290"
40009       ],
40010       [
40011         "Saint Kitts and Nevis",
40012         "kn",
40013         "1869"
40014       ],
40015       [
40016         "Saint Lucia",
40017         "lc",
40018         "1758"
40019       ],
40020       [
40021         "Saint Martin (Saint-Martin (partie française))",
40022         "mf",
40023         "590",
40024         2
40025       ],
40026       [
40027         "Saint Pierre and Miquelon (Saint-Pierre-et-Miquelon)",
40028         "pm",
40029         "508"
40030       ],
40031       [
40032         "Saint Vincent and the Grenadines",
40033         "vc",
40034         "1784"
40035       ],
40036       [
40037         "Samoa",
40038         "ws",
40039         "685"
40040       ],
40041       [
40042         "San Marino",
40043         "sm",
40044         "378"
40045       ],
40046       [
40047         "São Tomé and Príncipe (São Tomé e Príncipe)",
40048         "st",
40049         "239"
40050       ],
40051       [
40052         "Saudi Arabia (‫المملكة العربية السعودية‬‎)",
40053         "sa",
40054         "966"
40055       ],
40056       [
40057         "Senegal (Sénégal)",
40058         "sn",
40059         "221"
40060       ],
40061       [
40062         "Serbia (Србија)",
40063         "rs",
40064         "381"
40065       ],
40066       [
40067         "Seychelles",
40068         "sc",
40069         "248"
40070       ],
40071       [
40072         "Sierra Leone",
40073         "sl",
40074         "232"
40075       ],
40076       [
40077         "Singapore",
40078         "sg",
40079         "65"
40080       ],
40081       [
40082         "Sint Maarten",
40083         "sx",
40084         "1721"
40085       ],
40086       [
40087         "Slovakia (Slovensko)",
40088         "sk",
40089         "421"
40090       ],
40091       [
40092         "Slovenia (Slovenija)",
40093         "si",
40094         "386"
40095       ],
40096       [
40097         "Solomon Islands",
40098         "sb",
40099         "677"
40100       ],
40101       [
40102         "Somalia (Soomaaliya)",
40103         "so",
40104         "252"
40105       ],
40106       [
40107         "South Africa",
40108         "za",
40109         "27"
40110       ],
40111       [
40112         "South Korea (대한민국)",
40113         "kr",
40114         "82"
40115       ],
40116       [
40117         "South Sudan (‫جنوب السودان‬‎)",
40118         "ss",
40119         "211"
40120       ],
40121       [
40122         "Spain (España)",
40123         "es",
40124         "34"
40125       ],
40126       [
40127         "Sri Lanka (ශ්‍රී ලංකාව)",
40128         "lk",
40129         "94"
40130       ],
40131       [
40132         "Sudan (‫السودان‬‎)",
40133         "sd",
40134         "249"
40135       ],
40136       [
40137         "Suriname",
40138         "sr",
40139         "597"
40140       ],
40141       [
40142         "Svalbard and Jan Mayen",
40143         "sj",
40144         "47",
40145         1
40146       ],
40147       [
40148         "Swaziland",
40149         "sz",
40150         "268"
40151       ],
40152       [
40153         "Sweden (Sverige)",
40154         "se",
40155         "46"
40156       ],
40157       [
40158         "Switzerland (Schweiz)",
40159         "ch",
40160         "41"
40161       ],
40162       [
40163         "Syria (‫سوريا‬‎)",
40164         "sy",
40165         "963"
40166       ],
40167       [
40168         "Taiwan (台灣)",
40169         "tw",
40170         "886"
40171       ],
40172       [
40173         "Tajikistan",
40174         "tj",
40175         "992"
40176       ],
40177       [
40178         "Tanzania",
40179         "tz",
40180         "255"
40181       ],
40182       [
40183         "Thailand (ไทย)",
40184         "th",
40185         "66"
40186       ],
40187       [
40188         "Timor-Leste",
40189         "tl",
40190         "670"
40191       ],
40192       [
40193         "Togo",
40194         "tg",
40195         "228"
40196       ],
40197       [
40198         "Tokelau",
40199         "tk",
40200         "690"
40201       ],
40202       [
40203         "Tonga",
40204         "to",
40205         "676"
40206       ],
40207       [
40208         "Trinidad and Tobago",
40209         "tt",
40210         "1868"
40211       ],
40212       [
40213         "Tunisia (‫تونس‬‎)",
40214         "tn",
40215         "216"
40216       ],
40217       [
40218         "Turkey (Türkiye)",
40219         "tr",
40220         "90"
40221       ],
40222       [
40223         "Turkmenistan",
40224         "tm",
40225         "993"
40226       ],
40227       [
40228         "Turks and Caicos Islands",
40229         "tc",
40230         "1649"
40231       ],
40232       [
40233         "Tuvalu",
40234         "tv",
40235         "688"
40236       ],
40237       [
40238         "U.S. Virgin Islands",
40239         "vi",
40240         "1340"
40241       ],
40242       [
40243         "Uganda",
40244         "ug",
40245         "256"
40246       ],
40247       [
40248         "Ukraine (Україна)",
40249         "ua",
40250         "380"
40251       ],
40252       [
40253         "United Arab Emirates (‫الإمارات العربية المتحدة‬‎)",
40254         "ae",
40255         "971"
40256       ],
40257       [
40258         "United Kingdom",
40259         "gb",
40260         "44",
40261         0
40262       ],
40263       [
40264         "United States",
40265         "us",
40266         "1",
40267         0
40268       ],
40269       [
40270         "Uruguay",
40271         "uy",
40272         "598"
40273       ],
40274       [
40275         "Uzbekistan (Oʻzbekiston)",
40276         "uz",
40277         "998"
40278       ],
40279       [
40280         "Vanuatu",
40281         "vu",
40282         "678"
40283       ],
40284       [
40285         "Vatican City (Città del Vaticano)",
40286         "va",
40287         "39",
40288         1
40289       ],
40290       [
40291         "Venezuela",
40292         "ve",
40293         "58"
40294       ],
40295       [
40296         "Vietnam (Việt Nam)",
40297         "vn",
40298         "84"
40299       ],
40300       [
40301         "Wallis and Futuna (Wallis-et-Futuna)",
40302         "wf",
40303         "681"
40304       ],
40305       [
40306         "Western Sahara (‫الصحراء الغربية‬‎)",
40307         "eh",
40308         "212",
40309         1
40310       ],
40311       [
40312         "Yemen (‫اليمن‬‎)",
40313         "ye",
40314         "967"
40315       ],
40316       [
40317         "Zambia",
40318         "zm",
40319         "260"
40320       ],
40321       [
40322         "Zimbabwe",
40323         "zw",
40324         "263"
40325       ],
40326       [
40327         "Åland Islands",
40328         "ax",
40329         "358",
40330         1
40331       ]
40332   ];
40333   
40334   return d;
40335 }/**
40336 *    This script refer to:
40337 *    Title: International Telephone Input
40338 *    Author: Jack O'Connor
40339 *    Code version:  v12.1.12
40340 *    Availability: https://github.com/jackocnr/intl-tel-input.git
40341 **/
40342
40343 /**
40344  * @class Roo.bootstrap.PhoneInput
40345  * @extends Roo.bootstrap.TriggerField
40346  * An input with International dial-code selection
40347  
40348  * @cfg {String} defaultDialCode default '+852'
40349  * @cfg {Array} preferedCountries default []
40350   
40351  * @constructor
40352  * Create a new PhoneInput.
40353  * @param {Object} config Configuration options
40354  */
40355
40356 Roo.bootstrap.PhoneInput = function(config) {
40357     Roo.bootstrap.PhoneInput.superclass.constructor.call(this, config);
40358 };
40359
40360 Roo.extend(Roo.bootstrap.PhoneInput, Roo.bootstrap.TriggerField, {
40361         
40362         listWidth: undefined,
40363         
40364         selectedClass: 'active',
40365         
40366         invalidClass : "has-warning",
40367         
40368         validClass: 'has-success',
40369         
40370         allowed: '0123456789',
40371         
40372         max_length: 15,
40373         
40374         /**
40375          * @cfg {String} defaultDialCode The default dial code when initializing the input
40376          */
40377         defaultDialCode: '+852',
40378         
40379         /**
40380          * @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
40381          */
40382         preferedCountries: false,
40383         
40384         getAutoCreate : function()
40385         {
40386             var data = Roo.bootstrap.PhoneInputData();
40387             var align = this.labelAlign || this.parentLabelAlign();
40388             var id = Roo.id();
40389             
40390             this.allCountries = [];
40391             this.dialCodeMapping = [];
40392             
40393             for (var i = 0; i < data.length; i++) {
40394               var c = data[i];
40395               this.allCountries[i] = {
40396                 name: c[0],
40397                 iso2: c[1],
40398                 dialCode: c[2],
40399                 priority: c[3] || 0,
40400                 areaCodes: c[4] || null
40401               };
40402               this.dialCodeMapping[c[2]] = {
40403                   name: c[0],
40404                   iso2: c[1],
40405                   priority: c[3] || 0,
40406                   areaCodes: c[4] || null
40407               };
40408             }
40409             
40410             var cfg = {
40411                 cls: 'form-group',
40412                 cn: []
40413             };
40414             
40415             var input =  {
40416                 tag: 'input',
40417                 id : id,
40418                 // type: 'number', -- do not use number - we get the flaky up/down arrows.
40419                 maxlength: this.max_length,
40420                 cls : 'form-control tel-input',
40421                 autocomplete: 'new-password'
40422             };
40423             
40424             var hiddenInput = {
40425                 tag: 'input',
40426                 type: 'hidden',
40427                 cls: 'hidden-tel-input'
40428             };
40429             
40430             if (this.name) {
40431                 hiddenInput.name = this.name;
40432             }
40433             
40434             if (this.disabled) {
40435                 input.disabled = true;
40436             }
40437             
40438             var flag_container = {
40439                 tag: 'div',
40440                 cls: 'flag-box',
40441                 cn: [
40442                     {
40443                         tag: 'div',
40444                         cls: 'flag'
40445                     },
40446                     {
40447                         tag: 'div',
40448                         cls: 'caret'
40449                     }
40450                 ]
40451             };
40452             
40453             var box = {
40454                 tag: 'div',
40455                 cls: this.hasFeedback ? 'has-feedback' : '',
40456                 cn: [
40457                     hiddenInput,
40458                     input,
40459                     {
40460                         tag: 'input',
40461                         cls: 'dial-code-holder',
40462                         disabled: true
40463                     }
40464                 ]
40465             };
40466             
40467             var container = {
40468                 cls: 'roo-select2-container input-group',
40469                 cn: [
40470                     flag_container,
40471                     box
40472                 ]
40473             };
40474             
40475             if (this.fieldLabel.length) {
40476                 var indicator = {
40477                     tag: 'i',
40478                     tooltip: 'This field is required'
40479                 };
40480                 
40481                 var label = {
40482                     tag: 'label',
40483                     'for':  id,
40484                     cls: 'control-label',
40485                     cn: []
40486                 };
40487                 
40488                 var label_text = {
40489                     tag: 'span',
40490                     html: this.fieldLabel
40491                 };
40492                 
40493                 indicator.cls = 'roo-required-indicator text-danger fa fa-lg fa-star left-indicator';
40494                 label.cn = [
40495                     indicator,
40496                     label_text
40497                 ];
40498                 
40499                 if(this.indicatorpos == 'right') {
40500                     indicator.cls = 'roo-required-indicator text-danger fa fa-lg fa-star right-indicator';
40501                     label.cn = [
40502                         label_text,
40503                         indicator
40504                     ];
40505                 }
40506                 
40507                 if(align == 'left') {
40508                     container = {
40509                         tag: 'div',
40510                         cn: [
40511                             container
40512                         ]
40513                     };
40514                     
40515                     if(this.labelWidth > 12){
40516                         label.style = "width: " + this.labelWidth + 'px';
40517                     }
40518                     if(this.labelWidth < 13 && this.labelmd == 0){
40519                         this.labelmd = this.labelWidth;
40520                     }
40521                     if(this.labellg > 0){
40522                         label.cls += ' col-lg-' + this.labellg;
40523                         input.cls += ' col-lg-' + (12 - this.labellg);
40524                     }
40525                     if(this.labelmd > 0){
40526                         label.cls += ' col-md-' + this.labelmd;
40527                         container.cls += ' col-md-' + (12 - this.labelmd);
40528                     }
40529                     if(this.labelsm > 0){
40530                         label.cls += ' col-sm-' + this.labelsm;
40531                         container.cls += ' col-sm-' + (12 - this.labelsm);
40532                     }
40533                     if(this.labelxs > 0){
40534                         label.cls += ' col-xs-' + this.labelxs;
40535                         container.cls += ' col-xs-' + (12 - this.labelxs);
40536                     }
40537                 }
40538             }
40539             
40540             cfg.cn = [
40541                 label,
40542                 container
40543             ];
40544             
40545             var settings = this;
40546             
40547             ['xs','sm','md','lg'].map(function(size){
40548                 if (settings[size]) {
40549                     cfg.cls += ' col-' + size + '-' + settings[size];
40550                 }
40551             });
40552             
40553             this.store = new Roo.data.Store({
40554                 proxy : new Roo.data.MemoryProxy({}),
40555                 reader : new Roo.data.JsonReader({
40556                     fields : [
40557                         {
40558                             'name' : 'name',
40559                             'type' : 'string'
40560                         },
40561                         {
40562                             'name' : 'iso2',
40563                             'type' : 'string'
40564                         },
40565                         {
40566                             'name' : 'dialCode',
40567                             'type' : 'string'
40568                         },
40569                         {
40570                             'name' : 'priority',
40571                             'type' : 'string'
40572                         },
40573                         {
40574                             'name' : 'areaCodes',
40575                             'type' : 'string'
40576                         }
40577                     ]
40578                 })
40579             });
40580             
40581             if(!this.preferedCountries) {
40582                 this.preferedCountries = [
40583                     'hk',
40584                     'gb',
40585                     'us'
40586                 ];
40587             }
40588             
40589             var p = this.preferedCountries.reverse();
40590             
40591             if(p) {
40592                 for (var i = 0; i < p.length; i++) {
40593                     for (var j = 0; j < this.allCountries.length; j++) {
40594                         if(this.allCountries[j].iso2 == p[i]) {
40595                             var t = this.allCountries[j];
40596                             this.allCountries.splice(j,1);
40597                             this.allCountries.unshift(t);
40598                         }
40599                     } 
40600                 }
40601             }
40602             
40603             this.store.proxy.data = {
40604                 success: true,
40605                 data: this.allCountries
40606             };
40607             
40608             return cfg;
40609         },
40610         
40611         initEvents : function()
40612         {
40613             this.createList();
40614             Roo.bootstrap.PhoneInput.superclass.initEvents.call(this);
40615             
40616             this.indicator = this.indicatorEl();
40617             this.flag = this.flagEl();
40618             this.dialCodeHolder = this.dialCodeHolderEl();
40619             
40620             this.trigger = this.el.select('div.flag-box',true).first();
40621             this.trigger.on("click", this.onTriggerClick, this, {preventDefault:true});
40622             
40623             var _this = this;
40624             
40625             (function(){
40626                 var lw = _this.listWidth || Math.max(_this.inputEl().getWidth(), _this.minListWidth);
40627                 _this.list.setWidth(lw);
40628             }).defer(100);
40629             
40630             this.list.on('mouseover', this.onViewOver, this);
40631             this.list.on('mousemove', this.onViewMove, this);
40632             this.inputEl().on("keyup", this.onKeyUp, this);
40633             this.inputEl().on("keypress", this.onKeyPress, this);
40634             
40635             this.tpl = '<li><a href="#"><div class="flag {iso2}"></div>{name} <span class="dial-code">+{dialCode}</span></a></li>';
40636
40637             this.view = new Roo.View(this.list, this.tpl, {
40638                 singleSelect:true, store: this.store, selectedClass: this.selectedClass
40639             });
40640             
40641             this.view.on('click', this.onViewClick, this);
40642             this.setValue(this.defaultDialCode);
40643         },
40644         
40645         onTriggerClick : function(e)
40646         {
40647             Roo.log('trigger click');
40648             if(this.disabled){
40649                 return;
40650             }
40651             
40652             if(this.isExpanded()){
40653                 this.collapse();
40654                 this.hasFocus = false;
40655             }else {
40656                 this.store.load({});
40657                 this.hasFocus = true;
40658                 this.expand();
40659             }
40660         },
40661         
40662         isExpanded : function()
40663         {
40664             return this.list.isVisible();
40665         },
40666         
40667         collapse : function()
40668         {
40669             if(!this.isExpanded()){
40670                 return;
40671             }
40672             this.list.hide();
40673             Roo.get(document).un('mousedown', this.collapseIf, this);
40674             Roo.get(document).un('mousewheel', this.collapseIf, this);
40675             this.fireEvent('collapse', this);
40676             this.validate();
40677         },
40678         
40679         expand : function()
40680         {
40681             Roo.log('expand');
40682
40683             if(this.isExpanded() || !this.hasFocus){
40684                 return;
40685             }
40686             
40687             var lw = this.listWidth || Math.max(this.inputEl().getWidth(), this.minListWidth);
40688             this.list.setWidth(lw);
40689             
40690             this.list.show();
40691             this.restrictHeight();
40692             
40693             Roo.get(document).on('mousedown', this.collapseIf, this);
40694             Roo.get(document).on('mousewheel', this.collapseIf, this);
40695             
40696             this.fireEvent('expand', this);
40697         },
40698         
40699         restrictHeight : function()
40700         {
40701             this.list.alignTo(this.inputEl(), this.listAlign);
40702             this.list.alignTo(this.inputEl(), this.listAlign);
40703         },
40704         
40705         onViewOver : function(e, t)
40706         {
40707             if(this.inKeyMode){
40708                 return;
40709             }
40710             var item = this.view.findItemFromChild(t);
40711             
40712             if(item){
40713                 var index = this.view.indexOf(item);
40714                 this.select(index, false);
40715             }
40716         },
40717
40718         // private
40719         onViewClick : function(view, doFocus, el, e)
40720         {
40721             var index = this.view.getSelectedIndexes()[0];
40722             
40723             var r = this.store.getAt(index);
40724             
40725             if(r){
40726                 this.onSelect(r, index);
40727             }
40728             if(doFocus !== false && !this.blockFocus){
40729                 this.inputEl().focus();
40730             }
40731         },
40732         
40733         onViewMove : function(e, t)
40734         {
40735             this.inKeyMode = false;
40736         },
40737         
40738         select : function(index, scrollIntoView)
40739         {
40740             this.selectedIndex = index;
40741             this.view.select(index);
40742             if(scrollIntoView !== false){
40743                 var el = this.view.getNode(index);
40744                 if(el){
40745                     this.list.scrollChildIntoView(el, false);
40746                 }
40747             }
40748         },
40749         
40750         createList : function()
40751         {
40752             this.list = Roo.get(document.body).createChild({
40753                 tag: 'ul',
40754                 cls: 'typeahead typeahead-long dropdown-menu tel-list',
40755                 style: 'display:none'
40756             });
40757             
40758             this.list.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
40759         },
40760         
40761         collapseIf : function(e)
40762         {
40763             var in_combo  = e.within(this.el);
40764             var in_list =  e.within(this.list);
40765             var is_list = (Roo.get(e.getTarget()).id == this.list.id) ? true : false;
40766             
40767             if (in_combo || in_list || is_list) {
40768                 return;
40769             }
40770             this.collapse();
40771         },
40772         
40773         onSelect : function(record, index)
40774         {
40775             if(this.fireEvent('beforeselect', this, record, index) !== false){
40776                 
40777                 this.setFlagClass(record.data.iso2);
40778                 this.setDialCode(record.data.dialCode);
40779                 this.hasFocus = false;
40780                 this.collapse();
40781                 this.fireEvent('select', this, record, index);
40782             }
40783         },
40784         
40785         flagEl : function()
40786         {
40787             var flag = this.el.select('div.flag',true).first();
40788             if(!flag){
40789                 return false;
40790             }
40791             return flag;
40792         },
40793         
40794         dialCodeHolderEl : function()
40795         {
40796             var d = this.el.select('input.dial-code-holder',true).first();
40797             if(!d){
40798                 return false;
40799             }
40800             return d;
40801         },
40802         
40803         setDialCode : function(v)
40804         {
40805             this.dialCodeHolder.dom.value = '+'+v;
40806         },
40807         
40808         setFlagClass : function(n)
40809         {
40810             this.flag.dom.className = 'flag '+n;
40811         },
40812         
40813         getValue : function()
40814         {
40815             var v = this.inputEl().getValue();
40816             if(this.dialCodeHolder) {
40817                 v = this.dialCodeHolder.dom.value+this.inputEl().getValue();
40818             }
40819             return v;
40820         },
40821         
40822         setValue : function(v)
40823         {
40824             var d = this.getDialCode(v);
40825             
40826             //invalid dial code
40827             if(v.length == 0 || !d || d.length == 0) {
40828                 if(this.rendered){
40829                     this.inputEl().dom.value = (v === null || v === undefined ? '' : v);
40830                     this.hiddenEl().dom.value = (v === null || v === undefined ? '' : v);
40831                 }
40832                 return;
40833             }
40834             
40835             //valid dial code
40836             this.setFlagClass(this.dialCodeMapping[d].iso2);
40837             this.setDialCode(d);
40838             this.inputEl().dom.value = v.replace('+'+d,'');
40839             this.hiddenEl().dom.value = this.getValue();
40840             
40841             this.validate();
40842         },
40843         
40844         getDialCode : function(v)
40845         {
40846             v = v ||  '';
40847             
40848             if (v.length == 0) {
40849                 return this.dialCodeHolder.dom.value;
40850             }
40851             
40852             var dialCode = "";
40853             if (v.charAt(0) != "+") {
40854                 return false;
40855             }
40856             var numericChars = "";
40857             for (var i = 1; i < v.length; i++) {
40858               var c = v.charAt(i);
40859               if (!isNaN(c)) {
40860                 numericChars += c;
40861                 if (this.dialCodeMapping[numericChars]) {
40862                   dialCode = v.substr(1, i);
40863                 }
40864                 if (numericChars.length == 4) {
40865                   break;
40866                 }
40867               }
40868             }
40869             return dialCode;
40870         },
40871         
40872         reset : function()
40873         {
40874             this.setValue(this.defaultDialCode);
40875             this.validate();
40876         },
40877         
40878         hiddenEl : function()
40879         {
40880             return this.el.select('input.hidden-tel-input',true).first();
40881         },
40882         
40883         // after setting val
40884         onKeyUp : function(e){
40885             this.setValue(this.getValue());
40886         },
40887         
40888         onKeyPress : function(e){
40889             if(this.allowed.indexOf(String.fromCharCode(e.getCharCode())) === -1){
40890                 e.stopEvent();
40891             }
40892         }
40893         
40894 });
40895 /**
40896  * @class Roo.bootstrap.MoneyField
40897  * @extends Roo.bootstrap.ComboBox
40898  * Bootstrap MoneyField class
40899  * 
40900  * @constructor
40901  * Create a new MoneyField.
40902  * @param {Object} config Configuration options
40903  */
40904
40905 Roo.bootstrap.MoneyField = function(config) {
40906     
40907     Roo.bootstrap.MoneyField.superclass.constructor.call(this, config);
40908     
40909 };
40910
40911 Roo.extend(Roo.bootstrap.MoneyField, Roo.bootstrap.ComboBox, {
40912     
40913     /**
40914      * @cfg {Boolean} allowDecimals False to disallow decimal values (defaults to true)
40915      */
40916     allowDecimals : true,
40917     /**
40918      * @cfg {String} decimalSeparator Character(s) to allow as the decimal separator (defaults to '.')
40919      */
40920     decimalSeparator : ".",
40921     /**
40922      * @cfg {Number} decimalPrecision The maximum precision to display after the decimal separator (defaults to 2)
40923      */
40924     decimalPrecision : 0,
40925     /**
40926      * @cfg {Boolean} allowNegative False to prevent entering a negative sign (defaults to true)
40927      */
40928     allowNegative : true,
40929     /**
40930      * @cfg {Boolean} allowZero False to blank out if the user enters '0' (defaults to true)
40931      */
40932     allowZero: true,
40933     /**
40934      * @cfg {Number} minValue The minimum allowed value (defaults to Number.NEGATIVE_INFINITY)
40935      */
40936     minValue : Number.NEGATIVE_INFINITY,
40937     /**
40938      * @cfg {Number} maxValue The maximum allowed value (defaults to Number.MAX_VALUE)
40939      */
40940     maxValue : Number.MAX_VALUE,
40941     /**
40942      * @cfg {String} minText Error text to display if the minimum value validation fails (defaults to "The minimum value for this field is {minValue}")
40943      */
40944     minText : "The minimum value for this field is {0}",
40945     /**
40946      * @cfg {String} maxText Error text to display if the maximum value validation fails (defaults to "The maximum value for this field is {maxValue}")
40947      */
40948     maxText : "The maximum value for this field is {0}",
40949     /**
40950      * @cfg {String} nanText Error text to display if the value is not a valid number.  For example, this can happen
40951      * if a valid character like '.' or '-' is left in the field with no number (defaults to "{value} is not a valid number")
40952      */
40953     nanText : "{0} is not a valid number",
40954     /**
40955      * @cfg {Boolean} castInt (true|false) cast int if true (defalut true)
40956      */
40957     castInt : true,
40958     /**
40959      * @cfg {String} defaults currency of the MoneyField
40960      * value should be in lkey
40961      */
40962     defaultCurrency : false,
40963     /**
40964      * @cfg {String} thousandsDelimiter Symbol of thousandsDelimiter
40965      */
40966     thousandsDelimiter : false,
40967     /**
40968      * @cfg {Number} max_length Maximum input field length allowed (defaults to Number.MAX_VALUE)
40969      */
40970     max_length: false,
40971     
40972     inputlg : 9,
40973     inputmd : 9,
40974     inputsm : 9,
40975     inputxs : 6,
40976     
40977     store : false,
40978     
40979     getAutoCreate : function()
40980     {
40981         var align = this.labelAlign || this.parentLabelAlign();
40982         
40983         var id = Roo.id();
40984
40985         var cfg = {
40986             cls: 'form-group',
40987             cn: []
40988         };
40989
40990         var input =  {
40991             tag: 'input',
40992             id : id,
40993             cls : 'form-control roo-money-amount-input',
40994             autocomplete: 'new-password'
40995         };
40996         
40997         var hiddenInput = {
40998             tag: 'input',
40999             type: 'hidden',
41000             id: Roo.id(),
41001             cls: 'hidden-number-input'
41002         };
41003         
41004         if(this.max_length) {
41005             input.maxlength = this.max_length; 
41006         }
41007         
41008         if (this.name) {
41009             hiddenInput.name = this.name;
41010         }
41011
41012         if (this.disabled) {
41013             input.disabled = true;
41014         }
41015
41016         var clg = 12 - this.inputlg;
41017         var cmd = 12 - this.inputmd;
41018         var csm = 12 - this.inputsm;
41019         var cxs = 12 - this.inputxs;
41020         
41021         var container = {
41022             tag : 'div',
41023             cls : 'row roo-money-field',
41024             cn : [
41025                 {
41026                     tag : 'div',
41027                     cls : 'roo-money-currency column col-lg-' + clg + ' col-md-' + cmd + ' col-sm-' + csm + ' col-xs-' + cxs,
41028                     cn : [
41029                         {
41030                             tag : 'div',
41031                             cls: 'roo-select2-container input-group',
41032                             cn: [
41033                                 {
41034                                     tag : 'input',
41035                                     cls : 'form-control roo-money-currency-input',
41036                                     autocomplete: 'new-password',
41037                                     readOnly : 1,
41038                                     name : this.currencyName
41039                                 },
41040                                 {
41041                                     tag :'span',
41042                                     cls : 'input-group-addon',
41043                                     cn : [
41044                                         {
41045                                             tag: 'span',
41046                                             cls: 'caret'
41047                                         }
41048                                     ]
41049                                 }
41050                             ]
41051                         }
41052                     ]
41053                 },
41054                 {
41055                     tag : 'div',
41056                     cls : 'roo-money-amount column col-lg-' + this.inputlg + ' col-md-' + this.inputmd + ' col-sm-' + this.inputsm + ' col-xs-' + this.inputxs,
41057                     cn : [
41058                         {
41059                             tag: 'div',
41060                             cls: this.hasFeedback ? 'has-feedback' : '',
41061                             cn: [
41062                                 input
41063                             ]
41064                         }
41065                     ]
41066                 }
41067             ]
41068             
41069         };
41070         
41071         if (this.fieldLabel.length) {
41072             var indicator = {
41073                 tag: 'i',
41074                 tooltip: 'This field is required'
41075             };
41076
41077             var label = {
41078                 tag: 'label',
41079                 'for':  id,
41080                 cls: 'control-label',
41081                 cn: []
41082             };
41083
41084             var label_text = {
41085                 tag: 'span',
41086                 html: this.fieldLabel
41087             };
41088
41089             indicator.cls = 'roo-required-indicator text-danger fa fa-lg fa-star left-indicator';
41090             label.cn = [
41091                 indicator,
41092                 label_text
41093             ];
41094
41095             if(this.indicatorpos == 'right') {
41096                 indicator.cls = 'roo-required-indicator text-danger fa fa-lg fa-star right-indicator';
41097                 label.cn = [
41098                     label_text,
41099                     indicator
41100                 ];
41101             }
41102
41103             if(align == 'left') {
41104                 container = {
41105                     tag: 'div',
41106                     cn: [
41107                         container
41108                     ]
41109                 };
41110
41111                 if(this.labelWidth > 12){
41112                     label.style = "width: " + this.labelWidth + 'px';
41113                 }
41114                 if(this.labelWidth < 13 && this.labelmd == 0){
41115                     this.labelmd = this.labelWidth;
41116                 }
41117                 if(this.labellg > 0){
41118                     label.cls += ' col-lg-' + this.labellg;
41119                     input.cls += ' col-lg-' + (12 - this.labellg);
41120                 }
41121                 if(this.labelmd > 0){
41122                     label.cls += ' col-md-' + this.labelmd;
41123                     container.cls += ' col-md-' + (12 - this.labelmd);
41124                 }
41125                 if(this.labelsm > 0){
41126                     label.cls += ' col-sm-' + this.labelsm;
41127                     container.cls += ' col-sm-' + (12 - this.labelsm);
41128                 }
41129                 if(this.labelxs > 0){
41130                     label.cls += ' col-xs-' + this.labelxs;
41131                     container.cls += ' col-xs-' + (12 - this.labelxs);
41132                 }
41133             }
41134         }
41135
41136         cfg.cn = [
41137             label,
41138             container,
41139             hiddenInput
41140         ];
41141         
41142         var settings = this;
41143
41144         ['xs','sm','md','lg'].map(function(size){
41145             if (settings[size]) {
41146                 cfg.cls += ' col-' + size + '-' + settings[size];
41147             }
41148         });
41149         
41150         return cfg;
41151     },
41152     
41153     initEvents : function()
41154     {
41155         this.indicator = this.indicatorEl();
41156         
41157         this.initCurrencyEvent();
41158         
41159         this.initNumberEvent();
41160     },
41161     
41162     initCurrencyEvent : function()
41163     {
41164         if (!this.store) {
41165             throw "can not find store for combo";
41166         }
41167         
41168         this.store = Roo.factory(this.store, Roo.data);
41169         this.store.parent = this;
41170         
41171         this.createList();
41172         
41173         this.triggerEl = this.el.select('.input-group-addon', true).first();
41174         
41175         this.triggerEl.on("click", this.onTriggerClick, this, { preventDefault : true });
41176         
41177         var _this = this;
41178         
41179         (function(){
41180             var lw = _this.listWidth || Math.max(_this.inputEl().getWidth(), _this.minListWidth);
41181             _this.list.setWidth(lw);
41182         }).defer(100);
41183         
41184         this.list.on('mouseover', this.onViewOver, this);
41185         this.list.on('mousemove', this.onViewMove, this);
41186         this.list.on('scroll', this.onViewScroll, this);
41187         
41188         if(!this.tpl){
41189             this.tpl = '<li><a href="#">{' + this.currencyField + '}</a></li>';
41190         }
41191         
41192         this.view = new Roo.View(this.list, this.tpl, {
41193             singleSelect:true, store: this.store, selectedClass: this.selectedClass
41194         });
41195         
41196         this.view.on('click', this.onViewClick, this);
41197         
41198         this.store.on('beforeload', this.onBeforeLoad, this);
41199         this.store.on('load', this.onLoad, this);
41200         this.store.on('loadexception', this.onLoadException, this);
41201         
41202         this.keyNav = new Roo.KeyNav(this.currencyEl(), {
41203             "up" : function(e){
41204                 this.inKeyMode = true;
41205                 this.selectPrev();
41206             },
41207
41208             "down" : function(e){
41209                 if(!this.isExpanded()){
41210                     this.onTriggerClick();
41211                 }else{
41212                     this.inKeyMode = true;
41213                     this.selectNext();
41214                 }
41215             },
41216
41217             "enter" : function(e){
41218                 this.collapse();
41219                 
41220                 if(this.fireEvent("specialkey", this, e)){
41221                     this.onViewClick(false);
41222                 }
41223                 
41224                 return true;
41225             },
41226
41227             "esc" : function(e){
41228                 this.collapse();
41229             },
41230
41231             "tab" : function(e){
41232                 this.collapse();
41233                 
41234                 if(this.fireEvent("specialkey", this, e)){
41235                     this.onViewClick(false);
41236                 }
41237                 
41238                 return true;
41239             },
41240
41241             scope : this,
41242
41243             doRelay : function(foo, bar, hname){
41244                 if(hname == 'down' || this.scope.isExpanded()){
41245                    return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
41246                 }
41247                 return true;
41248             },
41249
41250             forceKeyDown: true
41251         });
41252         
41253         this.currencyEl().on("click", this.onTriggerClick, this, { preventDefault : true });
41254         
41255     },
41256     
41257     initNumberEvent : function(e)
41258     {
41259         this.inputEl().on("keydown" , this.fireKey,  this);
41260         this.inputEl().on("focus", this.onFocus,  this);
41261         this.inputEl().on("blur", this.onBlur,  this);
41262         
41263         this.inputEl().relayEvent('keyup', this);
41264         
41265         if(this.indicator){
41266             this.indicator.addClass('invisible');
41267         }
41268  
41269         this.originalValue = this.getValue();
41270         
41271         if(this.validationEvent == 'keyup'){
41272             this.validationTask = new Roo.util.DelayedTask(this.validate, this);
41273             this.inputEl().on('keyup', this.filterValidation, this);
41274         }
41275         else if(this.validationEvent !== false){
41276             this.inputEl().on(this.validationEvent, this.validate, this, {buffer: this.validationDelay});
41277         }
41278         
41279         if(this.selectOnFocus){
41280             this.on("focus", this.preFocus, this);
41281             
41282         }
41283         if(this.maskRe || (this.vtype && this.disableKeyFilter !== true && (this.maskRe = Roo.form.VTypes[this.vtype+'Mask']))){
41284             this.inputEl().on("keypress", this.filterKeys, this);
41285         } else {
41286             this.inputEl().relayEvent('keypress', this);
41287         }
41288         
41289         var allowed = "0123456789";
41290         
41291         if(this.allowDecimals){
41292             allowed += this.decimalSeparator;
41293         }
41294         
41295         if(this.allowNegative){
41296             allowed += "-";
41297         }
41298         
41299         if(this.thousandsDelimiter) {
41300             allowed += ",";
41301         }
41302         
41303         this.stripCharsRe = new RegExp('[^'+allowed+']', 'gi');
41304         
41305         var keyPress = function(e){
41306             
41307             var k = e.getKey();
41308             
41309             var c = e.getCharCode();
41310             
41311             if(
41312                     (String.fromCharCode(c) == '.' || String.fromCharCode(c) == '-') &&
41313                     allowed.indexOf(String.fromCharCode(c)) === -1
41314             ){
41315                 e.stopEvent();
41316                 return;
41317             }
41318             
41319             if(!Roo.isIE && (e.isSpecialKey() || k == e.BACKSPACE || k == e.DELETE)){
41320                 return;
41321             }
41322             
41323             if(allowed.indexOf(String.fromCharCode(c)) === -1){
41324                 e.stopEvent();
41325             }
41326         };
41327         
41328         this.inputEl().on("keypress", keyPress, this);
41329         
41330     },
41331     
41332     onTriggerClick : function(e)
41333     {   
41334         if(this.disabled){
41335             return;
41336         }
41337         
41338         this.page = 0;
41339         this.loadNext = false;
41340         
41341         if(this.isExpanded()){
41342             this.collapse();
41343             return;
41344         }
41345         
41346         this.hasFocus = true;
41347         
41348         if(this.triggerAction == 'all') {
41349             this.doQuery(this.allQuery, true);
41350             return;
41351         }
41352         
41353         this.doQuery(this.getRawValue());
41354     },
41355     
41356     getCurrency : function()
41357     {   
41358         var v = this.currencyEl().getValue();
41359         
41360         return v;
41361     },
41362     
41363     restrictHeight : function()
41364     {
41365         this.list.alignTo(this.currencyEl(), this.listAlign);
41366         this.list.alignTo(this.currencyEl(), this.listAlign);
41367     },
41368     
41369     onViewClick : function(view, doFocus, el, e)
41370     {
41371         var index = this.view.getSelectedIndexes()[0];
41372         
41373         var r = this.store.getAt(index);
41374         
41375         if(r){
41376             this.onSelect(r, index);
41377         }
41378     },
41379     
41380     onSelect : function(record, index){
41381         
41382         if(this.fireEvent('beforeselect', this, record, index) !== false){
41383         
41384             this.setFromCurrencyData(index > -1 ? record.data : false);
41385             
41386             this.collapse();
41387             
41388             this.fireEvent('select', this, record, index);
41389         }
41390     },
41391     
41392     setFromCurrencyData : function(o)
41393     {
41394         var currency = '';
41395         
41396         this.lastCurrency = o;
41397         
41398         if (this.currencyField) {
41399             currency = !o || typeof(o[this.currencyField]) == 'undefined' ? '' : o[this.currencyField];
41400         } else {
41401             Roo.log('no  currencyField value set for '+ (this.name ? this.name : this.id));
41402         }
41403         
41404         this.lastSelectionText = currency;
41405         
41406         //setting default currency
41407         if(o[this.currencyField] * 1 == 0 && this.defaultCurrency) {
41408             this.setCurrency(this.defaultCurrency);
41409             return;
41410         }
41411         
41412         this.setCurrency(currency);
41413     },
41414     
41415     setFromData : function(o)
41416     {
41417         var c = {};
41418         
41419         c[this.currencyField] = !o || typeof(o[this.currencyName]) == 'undefined' ? '' : o[this.currencyName];
41420         
41421         this.setFromCurrencyData(c);
41422         
41423         var value = '';
41424         
41425         if (this.name) {
41426             value = !o || typeof(o[this.name]) == 'undefined' ? '' : o[this.name];
41427         } else {
41428             Roo.log('no value set for '+ (this.name ? this.name : this.id));
41429         }
41430         
41431         this.setValue(value);
41432         
41433     },
41434     
41435     setCurrency : function(v)
41436     {   
41437         this.currencyValue = v;
41438         
41439         if(this.rendered){
41440             this.currencyEl().dom.value = (v === null || v === undefined ? '' : v);
41441             this.validate();
41442         }
41443     },
41444     
41445     setValue : function(v)
41446     {
41447         v = String(this.fixPrecision(v)).replace(".", this.decimalSeparator);
41448         
41449         this.value = v;
41450         
41451         if(this.rendered){
41452             
41453             this.hiddenEl().dom.value = (v === null || v === undefined ? '' : v);
41454             
41455             this.inputEl().dom.value = (v == '') ? '' :
41456                 Roo.util.Format.number(v, this.decimalPrecision, this.thousandsDelimiter || '');
41457             
41458             if(!this.allowZero && v === '0') {
41459                 this.hiddenEl().dom.value = '';
41460                 this.inputEl().dom.value = '';
41461             }
41462             
41463             this.validate();
41464         }
41465     },
41466     
41467     getRawValue : function()
41468     {
41469         var v = this.inputEl().getValue();
41470         
41471         return v;
41472     },
41473     
41474     getValue : function()
41475     {
41476         return this.fixPrecision(this.parseValue(this.getRawValue()));
41477     },
41478     
41479     parseValue : function(value)
41480     {
41481         if(this.thousandsDelimiter) {
41482             value += "";
41483             r = new RegExp(",", "g");
41484             value = value.replace(r, "");
41485         }
41486         
41487         value = parseFloat(String(value).replace(this.decimalSeparator, "."));
41488         return isNaN(value) ? '' : value;
41489         
41490     },
41491     
41492     fixPrecision : function(value)
41493     {
41494         if(this.thousandsDelimiter) {
41495             value += "";
41496             r = new RegExp(",", "g");
41497             value = value.replace(r, "");
41498         }
41499         
41500         var nan = isNaN(value);
41501         
41502         if(!this.allowDecimals || this.decimalPrecision == -1 || nan || !value){
41503             return nan ? '' : value;
41504         }
41505         return parseFloat(value).toFixed(this.decimalPrecision);
41506     },
41507     
41508     decimalPrecisionFcn : function(v)
41509     {
41510         return Math.floor(v);
41511     },
41512     
41513     validateValue : function(value)
41514     {
41515         if(!Roo.bootstrap.MoneyField.superclass.validateValue.call(this, value)){
41516             return false;
41517         }
41518         
41519         var num = this.parseValue(value);
41520         
41521         if(isNaN(num)){
41522             this.markInvalid(String.format(this.nanText, value));
41523             return false;
41524         }
41525         
41526         if(num < this.minValue){
41527             this.markInvalid(String.format(this.minText, this.minValue));
41528             return false;
41529         }
41530         
41531         if(num > this.maxValue){
41532             this.markInvalid(String.format(this.maxText, this.maxValue));
41533             return false;
41534         }
41535         
41536         return true;
41537     },
41538     
41539     validate : function()
41540     {
41541         if(this.disabled || this.allowBlank){
41542             this.markValid();
41543             return true;
41544         }
41545         
41546         var currency = this.getCurrency();
41547         
41548         if(this.validateValue(this.getRawValue()) && currency.length){
41549             this.markValid();
41550             return true;
41551         }
41552         
41553         this.markInvalid();
41554         return false;
41555     },
41556     
41557     getName: function()
41558     {
41559         return this.name;
41560     },
41561     
41562     beforeBlur : function()
41563     {
41564         if(!this.castInt){
41565             return;
41566         }
41567         
41568         var v = this.parseValue(this.getRawValue());
41569         
41570         if(v || v == 0){
41571             this.setValue(v);
41572         }
41573     },
41574     
41575     onBlur : function()
41576     {
41577         this.beforeBlur();
41578         
41579         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
41580             //this.el.removeClass(this.focusClass);
41581         }
41582         
41583         this.hasFocus = false;
41584         
41585         if(this.validationEvent !== false && this.validateOnBlur && this.validationEvent != "blur"){
41586             this.validate();
41587         }
41588         
41589         var v = this.getValue();
41590         
41591         if(String(v) !== String(this.startValue)){
41592             this.fireEvent('change', this, v, this.startValue);
41593         }
41594         
41595         this.fireEvent("blur", this);
41596     },
41597     
41598     inputEl : function()
41599     {
41600         return this.el.select('.roo-money-amount-input', true).first();
41601     },
41602     
41603     currencyEl : function()
41604     {
41605         return this.el.select('.roo-money-currency-input', true).first();
41606     },
41607     
41608     hiddenEl : function()
41609     {
41610         return this.el.select('input.hidden-number-input',true).first();
41611     }
41612     
41613 });/**
41614  * @class Roo.bootstrap.BezierSignature
41615  * @extends Roo.bootstrap.Component
41616  * Bootstrap BezierSignature class
41617  * This script refer to:
41618  *    Title: Signature Pad
41619  *    Author: szimek
41620  *    Availability: https://github.com/szimek/signature_pad
41621  *
41622  * @constructor
41623  * Create a new BezierSignature
41624  * @param {Object} config The config object
41625  */
41626
41627 Roo.bootstrap.BezierSignature = function(config){
41628     Roo.bootstrap.BezierSignature.superclass.constructor.call(this, config);
41629     this.addEvents({
41630         "resize" : true
41631     });
41632 };
41633
41634 Roo.extend(Roo.bootstrap.BezierSignature, Roo.bootstrap.Component,
41635 {
41636      
41637     curve_data: [],
41638     
41639     is_empty: true,
41640     
41641     mouse_btn_down: true,
41642     
41643     /**
41644      * @cfg {int} canvas height
41645      */
41646     canvas_height: '200px',
41647     
41648     /**
41649      * @cfg {float|function} Radius of a single dot.
41650      */ 
41651     dot_size: false,
41652     
41653     /**
41654      * @cfg {float} Minimum width of a line. Defaults to 0.5.
41655      */
41656     min_width: 0.5,
41657     
41658     /**
41659      * @cfg {float} Maximum width of a line. Defaults to 2.5.
41660      */
41661     max_width: 2.5,
41662     
41663     /**
41664      * @cfg {integer} Draw the next point at most once per every x milliseconds. Set it to 0 to turn off throttling. Defaults to 16.
41665      */
41666     throttle: 16,
41667     
41668     /**
41669      * @cfg {integer} Add the next point only if the previous one is farther than x pixels. Defaults to 5.
41670      */
41671     min_distance: 5,
41672     
41673     /**
41674      * @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.
41675      */
41676     bg_color: 'rgba(0, 0, 0, 0)',
41677     
41678     /**
41679      * @cfg {string} Color used to draw the lines. Can be any color format accepted by context.fillStyle. Defaults to "black".
41680      */
41681     dot_color: 'black',
41682     
41683     /**
41684      * @cfg {float} Weight used to modify new velocity based on the previous velocity. Defaults to 0.7.
41685      */ 
41686     velocity_filter_weight: 0.7,
41687     
41688     /**
41689      * @cfg {function} Callback when stroke begin. 
41690      */
41691     onBegin: false,
41692     
41693     /**
41694      * @cfg {function} Callback when stroke end.
41695      */
41696     onEnd: false,
41697     
41698     getAutoCreate : function()
41699     {
41700         var cls = 'roo-signature column';
41701         
41702         if(this.cls){
41703             cls += ' ' + this.cls;
41704         }
41705         
41706         var col_sizes = [
41707             'lg',
41708             'md',
41709             'sm',
41710             'xs'
41711         ];
41712         
41713         for(var i = 0; i < col_sizes.length; i++) {
41714             if(this[col_sizes[i]]) {
41715                 cls += " col-"+col_sizes[i]+"-"+this[col_sizes[i]];
41716             }
41717         }
41718         
41719         var cfg = {
41720             tag: 'div',
41721             cls: cls,
41722             cn: [
41723                 {
41724                     tag: 'div',
41725                     cls: 'roo-signature-body',
41726                     cn: [
41727                         {
41728                             tag: 'canvas',
41729                             cls: 'roo-signature-body-canvas',
41730                             height: this.canvas_height,
41731                             width: this.canvas_width
41732                         }
41733                     ]
41734                 },
41735                 {
41736                     tag: 'input',
41737                     type: 'file',
41738                     style: 'display: none'
41739                 }
41740             ]
41741         };
41742         
41743         return cfg;
41744     },
41745     
41746     initEvents: function() 
41747     {
41748         Roo.bootstrap.BezierSignature.superclass.initEvents.call(this);
41749         
41750         var canvas = this.canvasEl();
41751         
41752         // mouse && touch event swapping...
41753         canvas.dom.style.touchAction = 'none';
41754         canvas.dom.style.msTouchAction = 'none';
41755         
41756         this.mouse_btn_down = false;
41757         canvas.on('mousedown', this._handleMouseDown, this);
41758         canvas.on('mousemove', this._handleMouseMove, this);
41759         Roo.select('html').first().on('mouseup', this._handleMouseUp, this);
41760         
41761         if (window.PointerEvent) {
41762             canvas.on('pointerdown', this._handleMouseDown, this);
41763             canvas.on('pointermove', this._handleMouseMove, this);
41764             Roo.select('html').first().on('pointerup', this._handleMouseUp, this);
41765         }
41766         
41767         if ('ontouchstart' in window) {
41768             canvas.on('touchstart', this._handleTouchStart, this);
41769             canvas.on('touchmove', this._handleTouchMove, this);
41770             canvas.on('touchend', this._handleTouchEnd, this);
41771         }
41772         
41773         Roo.EventManager.onWindowResize(this.resize, this, true);
41774         
41775         // file input event
41776         this.fileEl().on('change', this.uploadImage, this);
41777         
41778         this.clear();
41779         
41780         this.resize();
41781     },
41782     
41783     resize: function(){
41784         
41785         var canvas = this.canvasEl().dom;
41786         var ctx = this.canvasElCtx();
41787         var img_data = false;
41788         
41789         if(canvas.width > 0) {
41790             var img_data = ctx.getImageData(0, 0, canvas.width, canvas.height);
41791         }
41792         // setting canvas width will clean img data
41793         canvas.width = 0;
41794         
41795         var style = window.getComputedStyle ? 
41796             getComputedStyle(this.el.dom, null) : this.el.dom.currentStyle;
41797             
41798         var padding_left = parseInt(style.paddingLeft) || 0;
41799         var padding_right = parseInt(style.paddingRight) || 0;
41800         
41801         canvas.width = this.el.dom.clientWidth - padding_left - padding_right;
41802         
41803         if(img_data) {
41804             ctx.putImageData(img_data, 0, 0);
41805         }
41806     },
41807     
41808     _handleMouseDown: function(e)
41809     {
41810         if (e.browserEvent.which === 1) {
41811             this.mouse_btn_down = true;
41812             this.strokeBegin(e);
41813         }
41814     },
41815     
41816     _handleMouseMove: function (e)
41817     {
41818         if (this.mouse_btn_down) {
41819             this.strokeMoveUpdate(e);
41820         }
41821     },
41822     
41823     _handleMouseUp: function (e)
41824     {
41825         if (e.browserEvent.which === 1 && this.mouse_btn_down) {
41826             this.mouse_btn_down = false;
41827             this.strokeEnd(e);
41828         }
41829     },
41830     
41831     _handleTouchStart: function (e) {
41832         
41833         e.preventDefault();
41834         if (e.browserEvent.targetTouches.length === 1) {
41835             // var touch = e.browserEvent.changedTouches[0];
41836             // this.strokeBegin(touch);
41837             
41838              this.strokeBegin(e); // assume e catching the correct xy...
41839         }
41840     },
41841     
41842     _handleTouchMove: function (e) {
41843         e.preventDefault();
41844         // var touch = event.targetTouches[0];
41845         // _this._strokeMoveUpdate(touch);
41846         this.strokeMoveUpdate(e);
41847     },
41848     
41849     _handleTouchEnd: function (e) {
41850         var wasCanvasTouched = e.target === this.canvasEl().dom;
41851         if (wasCanvasTouched) {
41852             e.preventDefault();
41853             // var touch = event.changedTouches[0];
41854             // _this._strokeEnd(touch);
41855             this.strokeEnd(e);
41856         }
41857     },
41858     
41859     reset: function () {
41860         this._lastPoints = [];
41861         this._lastVelocity = 0;
41862         this._lastWidth = (this.min_width + this.max_width) / 2;
41863         this.canvasElCtx().fillStyle = this.dot_color;
41864     },
41865     
41866     strokeMoveUpdate: function(e)
41867     {
41868         this.strokeUpdate(e);
41869         
41870         if (this.throttle) {
41871             this.throttleStroke(this.strokeUpdate, this.throttle);
41872         }
41873         else {
41874             this.strokeUpdate(e);
41875         }
41876     },
41877     
41878     strokeBegin: function(e)
41879     {
41880         var newPointGroup = {
41881             color: this.dot_color,
41882             points: []
41883         };
41884         
41885         if (typeof this.onBegin === 'function') {
41886             this.onBegin(e);
41887         }
41888         
41889         this.curve_data.push(newPointGroup);
41890         this.reset();
41891         this.strokeUpdate(e);
41892     },
41893     
41894     strokeUpdate: function(e)
41895     {
41896         var rect = this.canvasEl().dom.getBoundingClientRect();
41897         var point = new this.Point(e.xy[0] - rect.left, e.xy[1] - rect.top, new Date().getTime());
41898         var lastPointGroup = this.curve_data[this.curve_data.length - 1];
41899         var lastPoints = lastPointGroup.points;
41900         var lastPoint = lastPoints.length > 0 && lastPoints[lastPoints.length - 1];
41901         var isLastPointTooClose = lastPoint
41902             ? point.distanceTo(lastPoint) <= this.min_distance
41903             : false;
41904         var color = lastPointGroup.color;
41905         if (!lastPoint || !(lastPoint && isLastPointTooClose)) {
41906             var curve = this.addPoint(point);
41907             if (!lastPoint) {
41908                 this.drawDot({color: color, point: point});
41909             }
41910             else if (curve) {
41911                 this.drawCurve({color: color, curve: curve});
41912             }
41913             lastPoints.push({
41914                 time: point.time,
41915                 x: point.x,
41916                 y: point.y
41917             });
41918         }
41919     },
41920     
41921     strokeEnd: function(e)
41922     {
41923         this.strokeUpdate(e);
41924         if (typeof this.onEnd === 'function') {
41925             this.onEnd(e);
41926         }
41927     },
41928     
41929     addPoint:  function (point) {
41930         var _lastPoints = this._lastPoints;
41931         _lastPoints.push(point);
41932         if (_lastPoints.length > 2) {
41933             if (_lastPoints.length === 3) {
41934                 _lastPoints.unshift(_lastPoints[0]);
41935             }
41936             var widths = this.calculateCurveWidths(_lastPoints[1], _lastPoints[2]);
41937             var curve = this.Bezier.fromPoints(_lastPoints, widths, this);
41938             _lastPoints.shift();
41939             return curve;
41940         }
41941         return null;
41942     },
41943     
41944     calculateCurveWidths: function (startPoint, endPoint) {
41945         var velocity = this.velocity_filter_weight * endPoint.velocityFrom(startPoint) +
41946             (1 - this.velocity_filter_weight) * this._lastVelocity;
41947
41948         var newWidth = Math.max(this.max_width / (velocity + 1), this.min_width);
41949         var widths = {
41950             end: newWidth,
41951             start: this._lastWidth
41952         };
41953         
41954         this._lastVelocity = velocity;
41955         this._lastWidth = newWidth;
41956         return widths;
41957     },
41958     
41959     drawDot: function (_a) {
41960         var color = _a.color, point = _a.point;
41961         var ctx = this.canvasElCtx();
41962         var width = typeof this.dot_size === 'function' ? this.dot_size() : this.dot_size;
41963         ctx.beginPath();
41964         this.drawCurveSegment(point.x, point.y, width);
41965         ctx.closePath();
41966         ctx.fillStyle = color;
41967         ctx.fill();
41968     },
41969     
41970     drawCurve: function (_a) {
41971         var color = _a.color, curve = _a.curve;
41972         var ctx = this.canvasElCtx();
41973         var widthDelta = curve.endWidth - curve.startWidth;
41974         var drawSteps = Math.floor(curve.length()) * 2;
41975         ctx.beginPath();
41976         ctx.fillStyle = color;
41977         for (var i = 0; i < drawSteps; i += 1) {
41978         var t = i / drawSteps;
41979         var tt = t * t;
41980         var ttt = tt * t;
41981         var u = 1 - t;
41982         var uu = u * u;
41983         var uuu = uu * u;
41984         var x = uuu * curve.startPoint.x;
41985         x += 3 * uu * t * curve.control1.x;
41986         x += 3 * u * tt * curve.control2.x;
41987         x += ttt * curve.endPoint.x;
41988         var y = uuu * curve.startPoint.y;
41989         y += 3 * uu * t * curve.control1.y;
41990         y += 3 * u * tt * curve.control2.y;
41991         y += ttt * curve.endPoint.y;
41992         var width = curve.startWidth + ttt * widthDelta;
41993         this.drawCurveSegment(x, y, width);
41994         }
41995         ctx.closePath();
41996         ctx.fill();
41997     },
41998     
41999     drawCurveSegment: function (x, y, width) {
42000         var ctx = this.canvasElCtx();
42001         ctx.moveTo(x, y);
42002         ctx.arc(x, y, width, 0, 2 * Math.PI, false);
42003         this.is_empty = false;
42004     },
42005     
42006     clear: function()
42007     {
42008         var ctx = this.canvasElCtx();
42009         var canvas = this.canvasEl().dom;
42010         ctx.fillStyle = this.bg_color;
42011         ctx.clearRect(0, 0, canvas.width, canvas.height);
42012         ctx.fillRect(0, 0, canvas.width, canvas.height);
42013         this.curve_data = [];
42014         this.reset();
42015         this.is_empty = true;
42016     },
42017     
42018     fileEl: function()
42019     {
42020         return  this.el.select('input',true).first();
42021     },
42022     
42023     canvasEl: function()
42024     {
42025         return this.el.select('canvas',true).first();
42026     },
42027     
42028     canvasElCtx: function()
42029     {
42030         return this.el.select('canvas',true).first().dom.getContext('2d');
42031     },
42032     
42033     getImage: function(type)
42034     {
42035         if(this.is_empty) {
42036             return false;
42037         }
42038         
42039         // encryption ?
42040         return this.canvasEl().dom.toDataURL('image/'+type, 1);
42041     },
42042     
42043     drawFromImage: function(img_src)
42044     {
42045         var img = new Image();
42046         
42047         img.onload = function(){
42048             this.canvasElCtx().drawImage(img, 0, 0);
42049         }.bind(this);
42050         
42051         img.src = img_src;
42052         
42053         this.is_empty = false;
42054     },
42055     
42056     selectImage: function()
42057     {
42058         this.fileEl().dom.click();
42059     },
42060     
42061     uploadImage: function(e)
42062     {
42063         var reader = new FileReader();
42064         
42065         reader.onload = function(e){
42066             var img = new Image();
42067             img.onload = function(){
42068                 this.reset();
42069                 this.canvasElCtx().drawImage(img, 0, 0);
42070             }.bind(this);
42071             img.src = e.target.result;
42072         }.bind(this);
42073         
42074         reader.readAsDataURL(e.target.files[0]);
42075     },
42076     
42077     // Bezier Point Constructor
42078     Point: (function () {
42079         function Point(x, y, time) {
42080             this.x = x;
42081             this.y = y;
42082             this.time = time || Date.now();
42083         }
42084         Point.prototype.distanceTo = function (start) {
42085             return Math.sqrt(Math.pow(this.x - start.x, 2) + Math.pow(this.y - start.y, 2));
42086         };
42087         Point.prototype.equals = function (other) {
42088             return this.x === other.x && this.y === other.y && this.time === other.time;
42089         };
42090         Point.prototype.velocityFrom = function (start) {
42091             return this.time !== start.time
42092             ? this.distanceTo(start) / (this.time - start.time)
42093             : 0;
42094         };
42095         return Point;
42096     }()),
42097     
42098     
42099     // Bezier Constructor
42100     Bezier: (function () {
42101         function Bezier(startPoint, control2, control1, endPoint, startWidth, endWidth) {
42102             this.startPoint = startPoint;
42103             this.control2 = control2;
42104             this.control1 = control1;
42105             this.endPoint = endPoint;
42106             this.startWidth = startWidth;
42107             this.endWidth = endWidth;
42108         }
42109         Bezier.fromPoints = function (points, widths, scope) {
42110             var c2 = this.calculateControlPoints(points[0], points[1], points[2], scope).c2;
42111             var c3 = this.calculateControlPoints(points[1], points[2], points[3], scope).c1;
42112             return new Bezier(points[1], c2, c3, points[2], widths.start, widths.end);
42113         };
42114         Bezier.calculateControlPoints = function (s1, s2, s3, scope) {
42115             var dx1 = s1.x - s2.x;
42116             var dy1 = s1.y - s2.y;
42117             var dx2 = s2.x - s3.x;
42118             var dy2 = s2.y - s3.y;
42119             var m1 = { x: (s1.x + s2.x) / 2.0, y: (s1.y + s2.y) / 2.0 };
42120             var m2 = { x: (s2.x + s3.x) / 2.0, y: (s2.y + s3.y) / 2.0 };
42121             var l1 = Math.sqrt(dx1 * dx1 + dy1 * dy1);
42122             var l2 = Math.sqrt(dx2 * dx2 + dy2 * dy2);
42123             var dxm = m1.x - m2.x;
42124             var dym = m1.y - m2.y;
42125             var k = l2 / (l1 + l2);
42126             var cm = { x: m2.x + dxm * k, y: m2.y + dym * k };
42127             var tx = s2.x - cm.x;
42128             var ty = s2.y - cm.y;
42129             return {
42130                 c1: new scope.Point(m1.x + tx, m1.y + ty),
42131                 c2: new scope.Point(m2.x + tx, m2.y + ty)
42132             };
42133         };
42134         Bezier.prototype.length = function () {
42135             var steps = 10;
42136             var length = 0;
42137             var px;
42138             var py;
42139             for (var i = 0; i <= steps; i += 1) {
42140                 var t = i / steps;
42141                 var cx = this.point(t, this.startPoint.x, this.control1.x, this.control2.x, this.endPoint.x);
42142                 var cy = this.point(t, this.startPoint.y, this.control1.y, this.control2.y, this.endPoint.y);
42143                 if (i > 0) {
42144                     var xdiff = cx - px;
42145                     var ydiff = cy - py;
42146                     length += Math.sqrt(xdiff * xdiff + ydiff * ydiff);
42147                 }
42148                 px = cx;
42149                 py = cy;
42150             }
42151             return length;
42152         };
42153         Bezier.prototype.point = function (t, start, c1, c2, end) {
42154             return (start * (1.0 - t) * (1.0 - t) * (1.0 - t))
42155             + (3.0 * c1 * (1.0 - t) * (1.0 - t) * t)
42156             + (3.0 * c2 * (1.0 - t) * t * t)
42157             + (end * t * t * t);
42158         };
42159         return Bezier;
42160     }()),
42161     
42162     throttleStroke: function(fn, wait) {
42163       if (wait === void 0) { wait = 250; }
42164       var previous = 0;
42165       var timeout = null;
42166       var result;
42167       var storedContext;
42168       var storedArgs;
42169       var later = function () {
42170           previous = Date.now();
42171           timeout = null;
42172           result = fn.apply(storedContext, storedArgs);
42173           if (!timeout) {
42174               storedContext = null;
42175               storedArgs = [];
42176           }
42177       };
42178       return function wrapper() {
42179           var args = [];
42180           for (var _i = 0; _i < arguments.length; _i++) {
42181               args[_i] = arguments[_i];
42182           }
42183           var now = Date.now();
42184           var remaining = wait - (now - previous);
42185           storedContext = this;
42186           storedArgs = args;
42187           if (remaining <= 0 || remaining > wait) {
42188               if (timeout) {
42189                   clearTimeout(timeout);
42190                   timeout = null;
42191               }
42192               previous = now;
42193               result = fn.apply(storedContext, storedArgs);
42194               if (!timeout) {
42195                   storedContext = null;
42196                   storedArgs = [];
42197               }
42198           }
42199           else if (!timeout) {
42200               timeout = window.setTimeout(later, remaining);
42201           }
42202           return result;
42203       };
42204   }
42205   
42206 });
42207
42208  
42209
42210