e81543e8790c5cf1bea32623fc25f03d0cdec26b
[roojs1] / roojs-bootstrap-debug.js
1 Roo.bootstrap = {};/**
2  * set the version of bootstrap based on the stylesheet...
3  *
4  */
5
6 Roo.bootstrap.version = ( function() {
7     var ret=3;
8     Roo.each(document.styleSheets, function(s) {
9         if ( s.href  && s.href.match(/css-bootstrap4/)) {
10             ret=4;
11         }
12     });
13     if (ret > 3) {
14          Roo.Element.prototype.visibilityMode = Roo.Element.DISPLAY;
15     }
16     return ret;
17 })(); Roo.bootstrap.menu = Roo.bootstrap.menu || {};
18 Roo.bootstrap.nav = {};
19
20 Roo.bootstrap.form = {};Roo.bootstrap.panel = {};Roo.bootstrap.layout = {};/*
21  * Based on:
22  * Ext JS Library 1.1.1
23  * Copyright(c) 2006-2007, Ext JS, LLC.
24  *
25  * Originally Released Under LGPL - original licence link has changed is not relivant.
26  *
27  * Fork - LGPL
28  * <script type="text/javascript">
29  */
30
31
32 /**
33  * @class Roo.Shadow
34  * Simple class that can provide a shadow effect for any element.  Note that the element MUST be absolutely positioned,
35  * and the shadow does not provide any shimming.  This should be used only in simple cases -- for more advanced
36  * functionality that can also provide the same shadow effect, see the {@link Roo.Layer} class.
37  * @constructor
38  * Create a new Shadow
39  * @param {Object} config The config object
40  */
41 Roo.Shadow = function(config){
42     Roo.apply(this, config);
43     if(typeof this.mode != "string"){
44         this.mode = this.defaultMode;
45     }
46     var o = this.offset, a = {h: 0};
47     var rad = Math.floor(this.offset/2);
48     switch(this.mode.toLowerCase()){ // all this hideous nonsense calculates the various offsets for shadows
49         case "drop":
50             a.w = 0;
51             a.l = a.t = o;
52             a.t -= 1;
53             if(Roo.isIE){
54                 a.l -= this.offset + rad;
55                 a.t -= this.offset + rad;
56                 a.w -= rad;
57                 a.h -= rad;
58                 a.t += 1;
59             }
60         break;
61         case "sides":
62             a.w = (o*2);
63             a.l = -o;
64             a.t = o-1;
65             if(Roo.isIE){
66                 a.l -= (this.offset - rad);
67                 a.t -= this.offset + rad;
68                 a.l += 1;
69                 a.w -= (this.offset - rad)*2;
70                 a.w -= rad + 1;
71                 a.h -= 1;
72             }
73         break;
74         case "frame":
75             a.w = a.h = (o*2);
76             a.l = a.t = -o;
77             a.t += 1;
78             a.h -= 2;
79             if(Roo.isIE){
80                 a.l -= (this.offset - rad);
81                 a.t -= (this.offset - rad);
82                 a.l += 1;
83                 a.w -= (this.offset + rad + 1);
84                 a.h -= (this.offset + rad);
85                 a.h += 1;
86             }
87         break;
88     };
89
90     this.adjusts = a;
91 };
92
93 Roo.Shadow.prototype = {
94     /**
95      * @cfg {String} mode
96      * The shadow display mode.  Supports the following options:<br />
97      * sides: Shadow displays on both sides and bottom only<br />
98      * frame: Shadow displays equally on all four sides<br />
99      * drop: Traditional bottom-right drop shadow (default)
100      */
101     mode: false,
102     /**
103      * @cfg {String} offset
104      * The number of pixels to offset the shadow from the element (defaults to 4)
105      */
106     offset: 4,
107
108     // private
109     defaultMode: "drop",
110
111     /**
112      * Displays the shadow under the target element
113      * @param {String/HTMLElement/Element} targetEl The id or element under which the shadow should display
114      */
115     show : function(target){
116         target = Roo.get(target);
117         if(!this.el){
118             this.el = Roo.Shadow.Pool.pull();
119             if(this.el.dom.nextSibling != target.dom){
120                 this.el.insertBefore(target);
121             }
122         }
123         this.el.setStyle("z-index", this.zIndex || parseInt(target.getStyle("z-index"), 10)-1);
124         if(Roo.isIE){
125             this.el.dom.style.filter="progid:DXImageTransform.Microsoft.alpha(opacity=50) progid:DXImageTransform.Microsoft.Blur(pixelradius="+(this.offset)+")";
126         }
127         this.realign(
128             target.getLeft(true),
129             target.getTop(true),
130             target.getWidth(),
131             target.getHeight()
132         );
133         this.el.dom.style.display = "block";
134     },
135
136     /**
137      * Returns true if the shadow is visible, else false
138      */
139     isVisible : function(){
140         return this.el ? true : false;  
141     },
142
143     /**
144      * Direct alignment when values are already available. Show must be called at least once before
145      * calling this method to ensure it is initialized.
146      * @param {Number} left The target element left position
147      * @param {Number} top The target element top position
148      * @param {Number} width The target element width
149      * @param {Number} height The target element height
150      */
151     realign : function(l, t, w, h){
152         if(!this.el){
153             return;
154         }
155         var a = this.adjusts, d = this.el.dom, s = d.style;
156         var iea = 0;
157         s.left = (l+a.l)+"px";
158         s.top = (t+a.t)+"px";
159         var sw = (w+a.w), sh = (h+a.h), sws = sw +"px", shs = sh + "px";
160  
161         if(s.width != sws || s.height != shs){
162             s.width = sws;
163             s.height = shs;
164             if(!Roo.isIE){
165                 var cn = d.childNodes;
166                 var sww = Math.max(0, (sw-12))+"px";
167                 cn[0].childNodes[1].style.width = sww;
168                 cn[1].childNodes[1].style.width = sww;
169                 cn[2].childNodes[1].style.width = sww;
170                 cn[1].style.height = Math.max(0, (sh-12))+"px";
171             }
172         }
173     },
174
175     /**
176      * Hides this shadow
177      */
178     hide : function(){
179         if(this.el){
180             this.el.dom.style.display = "none";
181             Roo.Shadow.Pool.push(this.el);
182             delete this.el;
183         }
184     },
185
186     /**
187      * Adjust the z-index of this shadow
188      * @param {Number} zindex The new z-index
189      */
190     setZIndex : function(z){
191         this.zIndex = z;
192         if(this.el){
193             this.el.setStyle("z-index", z);
194         }
195     }
196 };
197
198 // Private utility class that manages the internal Shadow cache
199 Roo.Shadow.Pool = function(){
200     var p = [];
201     var markup = Roo.isIE ?
202                  '<div class="x-ie-shadow"></div>' :
203                  '<div class="x-shadow"><div class="xst"><div class="xstl"></div><div class="xstc"></div><div class="xstr"></div></div><div class="xsc"><div class="xsml"></div><div class="xsmc"></div><div class="xsmr"></div></div><div class="xsb"><div class="xsbl"></div><div class="xsbc"></div><div class="xsbr"></div></div></div>';
204     return {
205         pull : function(){
206             var sh = p.shift();
207             if(!sh){
208                 sh = Roo.get(Roo.DomHelper.insertHtml("beforeBegin", document.body.firstChild, markup));
209                 sh.autoBoxAdjust = false;
210             }
211             return sh;
212         },
213
214         push : function(sh){
215             p.push(sh);
216         }
217     };
218 }();/*
219  * - LGPL
220  *
221  * base class for bootstrap elements.
222  * 
223  */
224
225 Roo.bootstrap = Roo.bootstrap || {};
226 /**
227  * @class Roo.bootstrap.Component
228  * @extends Roo.Component
229  * @abstract
230  * @children Roo.bootstrap.Component
231  * Bootstrap Component base class
232  * @cfg {String} cls css class
233  * @cfg {String} style any extra css
234  * @cfg {Object} xattr extra attributes to add to 'element' (used by builder to store stuff.)
235  * @cfg {Boolean} can_build_overlaid  True if element can be rebuild from a HTML page
236  * @cfg {string} dataId cutomer id
237  * @cfg {string} name Specifies name attribute
238  * @cfg {string} tooltip  Text for the tooltip
239  * @cfg {string} container_method method to fetch parents container element (used by NavHeaderbar -  getHeaderChildContainer)
240  * @cfg {string|object} visibilityEl (el|parent) What element to use for visibility (@see getVisibilityEl())
241  
242  * @constructor
243  * Do not use directly - it does not do anything..
244  * @param {Object} config The config object
245  */
246
247
248
249 Roo.bootstrap.Component = function(config){
250     Roo.bootstrap.Component.superclass.constructor.call(this, config);
251        
252     this.addEvents({
253         /**
254          * @event childrenrendered
255          * Fires when the children have been rendered..
256          * @param {Roo.bootstrap.Component} this
257          */
258         "childrenrendered" : true
259         
260         
261         
262     });
263     
264     
265 };
266
267 Roo.extend(Roo.bootstrap.Component, Roo.BoxComponent,  {
268     
269     
270     allowDomMove : false, // to stop relocations in parent onRender...
271     
272     cls : false,
273     
274     style : false,
275     
276     autoCreate : false,
277     
278     tooltip : null,
279     /**
280      * Initialize Events for the element
281      */
282     initEvents : function() { },
283     
284     xattr : false,
285     
286     parentId : false,
287     
288     can_build_overlaid : true,
289     
290     container_method : false,
291     
292     dataId : false,
293     
294     name : false,
295     
296     parent: function() {
297         // returns the parent component..
298         return Roo.ComponentMgr.get(this.parentId)
299         
300         
301     },
302     
303     // private
304     onRender : function(ct, position)
305     {
306        // Roo.log("Call onRender: " + this.xtype);
307         
308         Roo.bootstrap.Component.superclass.onRender.call(this, ct, position);
309         
310         if(this.el){
311             if (this.el.attr('xtype')) {
312                 this.el.attr('xtypex', this.el.attr('xtype'));
313                 this.el.dom.removeAttribute('xtype');
314                 
315                 this.initEvents();
316             }
317             
318             return;
319         }
320         
321          
322         
323         var cfg = Roo.apply({},  this.getAutoCreate());
324         
325         cfg.id = this.id || Roo.id();
326         
327         // fill in the extra attributes 
328         if (this.xattr && typeof(this.xattr) =='object') {
329             for (var i in this.xattr) {
330                 cfg[i] = this.xattr[i];
331             }
332         }
333         
334         if(this.dataId){
335             cfg.dataId = this.dataId;
336         }
337         
338         if (this.cls) {
339             cfg.cls = (typeof(cfg.cls) == 'undefined' ? this.cls : cfg.cls) + ' ' + this.cls;
340         }
341         
342         if (this.style) { // fixme needs to support more complex style data.
343             cfg.style = (typeof(cfg.style) == 'undefined' ? this.style : cfg.style) + '; ' + this.style;
344         }
345         
346         if(this.name){
347             cfg.name = this.name;
348         }
349         
350         this.el = ct.createChild(cfg, position);
351         
352         if (this.tooltip) {
353             this.tooltipEl().attr('tooltip', this.tooltip);
354         }
355         
356         if(this.tabIndex !== undefined){
357             this.el.dom.setAttribute('tabIndex', this.tabIndex);
358         }
359         
360         this.initEvents();
361         
362     },
363     /**
364      * Fetch the element to add children to
365      * @return {Roo.Element} defaults to this.el
366      */
367     getChildContainer : function()
368     {
369         return this.el;
370     },
371     getDocumentBody : function() // used by menus - as they are attached to the body so zIndexes work
372     {
373         return Roo.get(document.body);
374     },
375     
376     /**
377      * Fetch the element to display the tooltip on.
378      * @return {Roo.Element} defaults to this.el
379      */
380     tooltipEl : function()
381     {
382         return this.el;
383     },
384         
385     addxtype  : function(tree,cntr)
386     {
387         var cn = this;
388         
389         cn = Roo.factory(tree);
390         //Roo.log(['addxtype', cn]);
391            
392         cn.parentType = this.xtype; //??
393         cn.parentId = this.id;
394         
395         cntr = (typeof(cntr) == 'undefined' ) ? 'getChildContainer' : cntr;
396         if (typeof(cn.container_method) == 'string') {
397             cntr = cn.container_method;
398         }
399         
400         
401         var has_flexy_each =  (typeof(tree['flexy:foreach']) != 'undefined');
402         
403         var has_flexy_if =  (typeof(tree['flexy:if']) != 'undefined');
404         
405         var build_from_html =  Roo.XComponent.build_from_html;
406           
407         var is_body  = (tree.xtype == 'Body') ;
408           
409         var page_has_body = (Roo.get(document.body).attr('xtype') == 'Roo.bootstrap.Body');
410           
411         var self_cntr_el = Roo.get(this[cntr](false));
412         
413         // do not try and build conditional elements 
414         if ((has_flexy_each || has_flexy_if || this.can_build_overlaid == false ) && build_from_html) {
415             return false;
416         }
417         
418         if (!has_flexy_each || !build_from_html || is_body || !page_has_body) {
419             if(!has_flexy_if || typeof(tree.name) == 'undefined' || !build_from_html || is_body || !page_has_body){
420                 return this.addxtypeChild(tree,cntr, is_body);
421             }
422             
423             var echild =self_cntr_el ? self_cntr_el.child('>*[name=' + tree.name + ']') : false;
424                 
425             if(echild){
426                 return this.addxtypeChild(Roo.apply({}, tree),cntr);
427             }
428             
429             Roo.log('skipping render');
430             return cn;
431             
432         }
433         
434         var ret = false;
435         if (!build_from_html) {
436             return false;
437         }
438         
439         // this i think handles overlaying multiple children of the same type
440         // with the sam eelement.. - which might be buggy..
441         while (true) {
442             var echild =self_cntr_el ? self_cntr_el.child('>*[xtype]') : false;
443             
444             if (!echild) {
445                 break;
446             }
447             
448             if (echild && echild.attr('xtype').split('.').pop() != cn.xtype) {
449                 break;
450             }
451             
452             ret = this.addxtypeChild(Roo.apply({}, tree),cntr);
453         }
454        
455         return ret;
456     },
457     
458     
459     addxtypeChild : function (tree, cntr, is_body)
460     {
461         Roo.debug && Roo.log('addxtypeChild:' + cntr);
462         var cn = this;
463         cntr = (typeof(cntr) == 'undefined' ) ? 'getChildContainer' : cntr;
464         
465         
466         var has_flexy = (typeof(tree['flexy:if']) != 'undefined') ||
467                     (typeof(tree['flexy:foreach']) != 'undefined');
468           
469     
470         
471         skip_children = false;
472         // render the element if it's not BODY.
473         if (!is_body) {
474             
475             // if parent was disabled, then do not try and create the children..
476             if(!this[cntr](true)){
477                 tree.items = [];
478                 return tree;
479             }
480            
481             cn = Roo.factory(tree);
482            
483             cn.parentType = this.xtype; //??
484             cn.parentId = this.id;
485             
486             var build_from_html =  Roo.XComponent.build_from_html;
487             
488             
489             // does the container contain child eleemnts with 'xtype' attributes.
490             // that match this xtype..
491             // note - when we render we create these as well..
492             // so we should check to see if body has xtype set.
493             if (build_from_html && Roo.get(document.body).attr('xtype') == 'Roo.bootstrap.Body') {
494                
495                 var self_cntr_el = Roo.get(this[cntr](false));
496                 var echild =self_cntr_el ? self_cntr_el.child('>*[xtype]') : false;
497                 if (echild) { 
498                     //Roo.log(Roo.XComponent.build_from_html);
499                     //Roo.log("got echild:");
500                     //Roo.log(echild);
501                 }
502                 // there is a scenario where some of the child elements are flexy:if (and all of the same type)
503                 // and are not displayed -this causes this to use up the wrong element when matching.
504                 // at present the only work around for this is to nest flexy:if elements in another element that is always rendered.
505                 
506                 
507                 if (echild && echild.attr('xtype').split('.').pop() == cn.xtype) {
508                   //  Roo.log("found child for " + this.xtype +": " + echild.attr('xtype') );
509                   
510                   
511                   
512                     cn.el = echild;
513                   //  Roo.log("GOT");
514                     //echild.dom.removeAttribute('xtype');
515                 } else {
516                     Roo.debug && Roo.log("MISSING " + cn.xtype + " on child of " + (this.el ? this.el.attr('xbuilderid') : 'no parent'));
517                     Roo.debug && Roo.log(self_cntr_el);
518                     Roo.debug && Roo.log(echild);
519                     Roo.debug && Roo.log(cn);
520                 }
521             }
522            
523             
524            
525             // if object has flexy:if - then it may or may not be rendered.
526             if (build_from_html && has_flexy && !cn.el &&  cn.can_build_overlaid) {
527                 // skip a flexy if element.
528                 Roo.debug && Roo.log('skipping render');
529                 Roo.debug && Roo.log(tree);
530                 if (!cn.el) {
531                     Roo.debug && Roo.log('skipping all children');
532                     skip_children = true;
533                 }
534                 
535              } else {
536                  
537                 // actually if flexy:foreach is found, we really want to create 
538                 // multiple copies here...
539                 //Roo.log('render');
540                 //Roo.log(this[cntr]());
541                 // some elements do not have render methods.. like the layouts...
542                 /*
543                 if(this[cntr](true) === false){
544                     cn.items = [];
545                     return cn;
546                 }
547                 */
548                 cn.render && cn.render(this[cntr](true));
549                 
550              }
551             // then add the element..
552         }
553          
554         // handle the kids..
555         
556         var nitems = [];
557         /*
558         if (typeof (tree.menu) != 'undefined') {
559             tree.menu.parentType = cn.xtype;
560             tree.menu.triggerEl = cn.el;
561             nitems.push(cn.addxtype(Roo.apply({}, tree.menu)));
562             
563         }
564         */
565         if (!tree.items || !tree.items.length) {
566             cn.items = nitems;
567             //Roo.log(["no children", this]);
568             
569             return cn;
570         }
571          
572         var items = tree.items;
573         delete tree.items;
574         
575         //Roo.log(items.length);
576             // add the items..
577         if (!skip_children) {    
578             for(var i =0;i < items.length;i++) {
579               //  Roo.log(['add child', items[i]]);
580                 nitems.push(cn.addxtype(Roo.apply({}, items[i])));
581             }
582         }
583         
584         cn.items = nitems;
585         
586         //Roo.log("fire childrenrendered");
587         
588         cn.fireEvent('childrenrendered', this);
589         
590         return cn;
591     },
592     
593     /**
594      * Set the element that will be used to show or hide
595      */
596     setVisibilityEl : function(el)
597     {
598         this.visibilityEl = el;
599     },
600     
601      /**
602      * Get the element that will be used to show or hide
603      */
604     getVisibilityEl : function()
605     {
606         if (typeof(this.visibilityEl) == 'object') {
607             return this.visibilityEl;
608         }
609         
610         if (typeof(this.visibilityEl) == 'string') {
611             return this.visibilityEl == 'parent' ? this.parent().getEl() : this.getEl();
612         }
613         
614         return this.getEl();
615     },
616     
617     /**
618      * Show a component - removes 'hidden' class
619      */
620     show : function()
621     {
622         if(!this.getVisibilityEl()){
623             return;
624         }
625          
626         this.getVisibilityEl().removeClass(['hidden','d-none']);
627         
628         this.fireEvent('show', this);
629         
630         
631     },
632     /**
633      * Hide a component - adds 'hidden' class
634      */
635     hide: function()
636     {
637         if(!this.getVisibilityEl()){
638             return;
639         }
640         
641         this.getVisibilityEl().addClass(['hidden','d-none']);
642         
643         this.fireEvent('hide', this);
644         
645     }
646 });
647
648  /*
649  * - LGPL
650  *
651  * element
652  * 
653  */
654
655 /**
656  * @class Roo.bootstrap.Element
657  * @extends Roo.bootstrap.Component
658  * @children Roo.bootstrap.Component
659  * Bootstrap Element class (basically a DIV used to make random stuff )
660  * 
661  * @cfg {String} html contents of the element
662  * @cfg {String} tag tag of the element
663  * @cfg {String} cls class of the element
664  * @cfg {Boolean} preventDefault (true|false) default false
665  * @cfg {Boolean} clickable (true|false) default false
666  * @cfg {String} role default blank - set to button to force cursor pointer
667  
668  * 
669  * @constructor
670  * Create a new Element
671  * @param {Object} config The config object
672  */
673
674 Roo.bootstrap.Element = function(config){
675     Roo.bootstrap.Element.superclass.constructor.call(this, config);
676     
677     this.addEvents({
678         // raw events
679         /**
680          * @event click
681          * When a element is chick
682          * @param {Roo.bootstrap.Element} this
683          * @param {Roo.EventObject} e
684          */
685         "click" : true 
686         
687       
688     });
689 };
690
691 Roo.extend(Roo.bootstrap.Element, Roo.bootstrap.Component,  {
692     
693     tag: 'div',
694     cls: '',
695     html: '',
696     preventDefault: false, 
697     clickable: false,
698     tapedTwice : false,
699     role : false,
700     
701     getAutoCreate : function(){
702         
703         var cfg = {
704             tag: this.tag,
705             // cls: this.cls, double assign in parent class Component.js :: onRender
706             html: this.html
707         };
708         if (this.role !== false) {
709             cfg.role = this.role;
710         }
711         
712         return cfg;
713     },
714     
715     initEvents: function() 
716     {
717         Roo.bootstrap.Element.superclass.initEvents.call(this);
718         
719         if(this.clickable){
720             this.el.on('click', this.onClick, this);
721         }
722         
723         
724     },
725     
726     onClick : function(e)
727     {
728         if(this.preventDefault){
729             e.preventDefault();
730         }
731         
732         this.fireEvent('click', this, e); // why was this double click before?
733     },
734     
735     
736     
737
738     
739     
740     getValue : function()
741     {
742         return this.el.dom.innerHTML;
743     },
744     
745     setValue : function(value)
746     {
747         this.el.dom.innerHTML = value;
748     }
749    
750 });
751
752  
753
754  /*
755  * - LGPL
756  *
757  * dropable area
758  * 
759  */
760
761 /**
762  * @class Roo.bootstrap.DropTarget
763  * @extends Roo.bootstrap.Element
764  * Bootstrap DropTarget class
765  
766  * @cfg {string} name dropable name
767  * 
768  * @constructor
769  * Create a new Dropable Area
770  * @param {Object} config The config object
771  */
772
773 Roo.bootstrap.DropTarget = function(config){
774     Roo.bootstrap.DropTarget.superclass.constructor.call(this, config);
775     
776     this.addEvents({
777         // raw events
778         /**
779          * @event click
780          * When a element is chick
781          * @param {Roo.bootstrap.Element} this
782          * @param {Roo.EventObject} e
783          */
784         "drop" : true
785     });
786 };
787
788 Roo.extend(Roo.bootstrap.DropTarget, Roo.bootstrap.Element,  {
789     
790     
791     getAutoCreate : function(){
792         
793          
794     },
795     
796     initEvents: function() 
797     {
798         Roo.bootstrap.DropTarget.superclass.initEvents.call(this);
799         this.dropZone = new Roo.dd.DropTarget(this.getEl(), {
800             ddGroup: this.name,
801             listeners : {
802                 drop : this.dragDrop.createDelegate(this),
803                 enter : this.dragEnter.createDelegate(this),
804                 out : this.dragOut.createDelegate(this),
805                 over : this.dragOver.createDelegate(this)
806             }
807             
808         });
809         this.dropZone.DDM.useCache = false // so data gets refreshed when we resize stuff
810     },
811     
812     dragDrop : function(source,e,data)
813     {
814         // user has to decide how to impliment this.
815         Roo.log('drop');
816         Roo.log(this);
817         //this.fireEvent('drop', this, source, e ,data);
818         return false;
819     },
820     
821     dragEnter : function(n, dd, e, data)
822     {
823         // probably want to resize the element to match the dropped element..
824         Roo.log("enter");
825         this.originalSize = this.el.getSize();
826         this.el.setSize( n.el.getSize());
827         this.dropZone.DDM.refreshCache(this.name);
828         Roo.log([n, dd, e, data]);
829     },
830     
831     dragOut : function(value)
832     {
833         // resize back to normal
834         Roo.log("out");
835         this.el.setSize(this.originalSize);
836         this.dropZone.resetConstraints();
837     },
838     
839     dragOver : function()
840     {
841         // ??? do nothing?
842     }
843    
844 });
845
846  
847
848  /*
849  * - LGPL
850  *
851  * Body
852  *
853  */
854
855 /**
856  * @class Roo.bootstrap.Body
857  * @extends Roo.bootstrap.Component
858  * @children Roo.bootstrap.Component 
859  * @parent none builder
860  * Bootstrap Body class
861  *
862  * @constructor
863  * Create a new body
864  * @param {Object} config The config object
865  */
866
867 Roo.bootstrap.Body = function(config){
868
869     config = config || {};
870
871     Roo.bootstrap.Body.superclass.constructor.call(this, config);
872     this.el = Roo.get(config.el ? config.el : document.body );
873     if (this.cls && this.cls.length) {
874         Roo.get(document.body).addClass(this.cls);
875     }
876 };
877
878 Roo.extend(Roo.bootstrap.Body, Roo.bootstrap.Component,  {
879
880     is_body : true,// just to make sure it's constructed?
881
882         autoCreate : {
883         cls: 'container'
884     },
885     onRender : function(ct, position)
886     {
887        /* Roo.log("Roo.bootstrap.Body - onRender");
888         if (this.cls && this.cls.length) {
889             Roo.get(document.body).addClass(this.cls);
890         }
891         // style??? xttr???
892         */
893     }
894
895
896
897
898 });
899 /*
900  * - LGPL
901  *
902  * button group
903  * 
904  */
905
906
907 /**
908  * @class Roo.bootstrap.ButtonGroup
909  * @extends Roo.bootstrap.Component
910  * Bootstrap ButtonGroup class
911  * @children Roo.bootstrap.Button Roo.bootstrap.form.Form
912  * 
913  * @cfg {String} size lg | sm | xs (default empty normal)
914  * @cfg {String} align vertical | justified  (default none)
915  * @cfg {String} direction up | down (default down)
916  * @cfg {Boolean} toolbar false | true
917  * @cfg {Boolean} btn true | false
918  * 
919  * 
920  * @constructor
921  * Create a new Input
922  * @param {Object} config The config object
923  */
924
925 Roo.bootstrap.ButtonGroup = function(config){
926     Roo.bootstrap.ButtonGroup.superclass.constructor.call(this, config);
927 };
928
929 Roo.extend(Roo.bootstrap.ButtonGroup, Roo.bootstrap.Component,  {
930     
931     size: '',
932     align: '',
933     direction: '',
934     toolbar: false,
935     btn: true,
936
937     getAutoCreate : function(){
938         var cfg = {
939             cls: 'btn-group',
940             html : null
941         };
942         
943         cfg.html = this.html || cfg.html;
944         
945         if (this.toolbar) {
946             cfg = {
947                 cls: 'btn-toolbar',
948                 html: null
949             };
950             
951             return cfg;
952         }
953         
954         if (['vertical','justified'].indexOf(this.align)!==-1) {
955             cfg.cls = 'btn-group-' + this.align;
956             
957             if (this.align == 'justified') {
958                 console.log(this.items);
959             }
960         }
961         
962         if (['lg','sm','xs'].indexOf(this.size)!==-1) {
963             cfg.cls += ' btn-group-' + this.size;
964         }
965         
966         if (this.direction == 'up') {
967             cfg.cls += ' dropup' ;
968         }
969         
970         return cfg;
971     },
972     /**
973      * Add a button to the group (similar to NavItem API.)
974      */
975     addItem : function(cfg)
976     {
977         var cn = new Roo.bootstrap.Button(cfg);
978         //this.register(cn);
979         cn.parentId = this.id;
980         cn.onRender(this.el, null);
981         return cn;
982     }
983    
984 });
985
986  /*
987  * - LGPL
988  *
989  * button
990  * 
991  */
992
993 /**
994  * @class Roo.bootstrap.Button
995  * @extends Roo.bootstrap.Component
996  * Bootstrap Button class
997  * @cfg {String} html The button content
998  * @cfg {String} weight (default|primary|secondary|success|info|warning|danger|link|light|dark) default
999  * @cfg {String} badge_weight (default|primary|secondary|success|info|warning|danger|link|light|dark) default (same as button)
1000  * @cfg {Boolean} outline default false (except for weight=default which emulates old behaveiour with an outline)
1001  * @cfg {String} size (lg|sm|xs)
1002  * @cfg {String} tag (a|input|submit)
1003  * @cfg {String} href empty or href
1004  * @cfg {Boolean} disabled default false;
1005  * @cfg {Boolean} isClose default false;
1006  * @cfg {String} glyphicon depricated - use fa
1007  * @cfg {String} fa fontawesome icon - eg. 'comment' - without the fa/fas etc..
1008  * @cfg {String} badge text for badge
1009  * @cfg {String} theme (default|glow)  
1010  * @cfg {Boolean} inverse dark themed version
1011  * @cfg {Boolean} toggle is it a slidy toggle button
1012  * @cfg {Boolean} pressed   default null - if the button ahs active state
1013  * @cfg {String} ontext text for on slidy toggle state
1014  * @cfg {String} offtext text for off slidy toggle state
1015  * @cfg {Boolean} preventDefault  default true (stop click event triggering the URL if it's a link.)
1016  * @cfg {Boolean} removeClass remove the standard class..
1017  * @cfg {String} target (_self|_blank|_parent|_top|other) target for a href. 
1018  * @cfg {Boolean} grpup if parent is a btn group - then it turns it into a toogleGroup.
1019  * @cfg {Roo.bootstrap.menu.Menu} menu a Menu 
1020
1021  * @constructor
1022  * Create a new button
1023  * @param {Object} config The config object
1024  */
1025
1026
1027 Roo.bootstrap.Button = function(config){
1028     Roo.bootstrap.Button.superclass.constructor.call(this, config);
1029     
1030     this.addEvents({
1031         // raw events
1032         /**
1033          * @event click
1034          * When a button is pressed
1035          * @param {Roo.bootstrap.Button} btn
1036          * @param {Roo.EventObject} e
1037          */
1038         "click" : true,
1039         /**
1040          * @event dblclick
1041          * When a button is double clicked
1042          * @param {Roo.bootstrap.Button} btn
1043          * @param {Roo.EventObject} e
1044          */
1045         "dblclick" : true,
1046          /**
1047          * @event toggle
1048          * After the button has been toggles
1049          * @param {Roo.bootstrap.Button} btn
1050          * @param {Roo.EventObject} e
1051          * @param {boolean} pressed (also available as button.pressed)
1052          */
1053         "toggle" : true
1054     });
1055 };
1056
1057 Roo.extend(Roo.bootstrap.Button, Roo.bootstrap.Component,  {
1058     html: false,
1059     active: false,
1060     weight: '',
1061     badge_weight: '',
1062     outline : false,
1063     size: '',
1064     tag: 'button',
1065     href: '',
1066     disabled: false,
1067     isClose: false,
1068     glyphicon: '',
1069     fa: '',
1070     badge: '',
1071     theme: 'default',
1072     inverse: false,
1073     
1074     toggle: false,
1075     ontext: 'ON',
1076     offtext: 'OFF',
1077     defaulton: true,
1078     preventDefault: true,
1079     removeClass: false,
1080     name: false,
1081     target: false,
1082     group : false,
1083      
1084     pressed : null,
1085      
1086     
1087     getAutoCreate : function(){
1088         
1089         var cfg = {
1090             tag : 'button',
1091             cls : 'roo-button',
1092             html: ''
1093         };
1094         
1095         if (['a', 'button', 'input', 'submit'].indexOf(this.tag) < 0) {
1096             throw "Invalid value for tag: " + this.tag + ". must be a, button, input or submit.";
1097             this.tag = 'button';
1098         } else {
1099             cfg.tag = this.tag;
1100         }
1101         cfg.html = '<span class="roo-button-text">' + (this.html || cfg.html) + '</span>';
1102         
1103         if (this.toggle == true) {
1104             cfg={
1105                 tag: 'div',
1106                 cls: 'slider-frame roo-button',
1107                 cn: [
1108                     {
1109                         tag: 'span',
1110                         'data-on-text':'ON',
1111                         'data-off-text':'OFF',
1112                         cls: 'slider-button',
1113                         html: this.offtext
1114                     }
1115                 ]
1116             };
1117             // why are we validating the weights?
1118             if (Roo.bootstrap.Button.weights.indexOf(this.weight) > -1) {
1119                 cfg.cls +=  ' ' + this.weight;
1120             }
1121             
1122             return cfg;
1123         }
1124         
1125         if (this.isClose) {
1126             cfg.cls += ' close';
1127             
1128             cfg["aria-hidden"] = true;
1129             
1130             cfg.html = "&times;";
1131             
1132             return cfg;
1133         }
1134              
1135         
1136         if (this.theme==='default') {
1137             cfg.cls = 'btn roo-button';
1138             
1139             //if (this.parentType != 'Navbar') {
1140             this.weight = this.weight.length ?  this.weight : 'default';
1141             //}
1142             if (Roo.bootstrap.Button.weights.indexOf(this.weight) > -1) {
1143                 
1144                 var outline = this.outline || this.weight == 'default' ? 'outline-' : '';
1145                 var weight = this.weight == 'default' ? 'secondary' : this.weight;
1146                 cfg.cls += ' btn-' + outline + weight;
1147                 if (this.weight == 'default') {
1148                     // BC
1149                     cfg.cls += ' btn-' + this.weight;
1150                 }
1151             }
1152         } else if (this.theme==='glow') {
1153             
1154             cfg.tag = 'a';
1155             cfg.cls = 'btn-glow roo-button';
1156             
1157             if (Roo.bootstrap.Button.weights.indexOf(this.weight) > -1) {
1158                 
1159                 cfg.cls += ' ' + this.weight;
1160             }
1161         }
1162    
1163         
1164         if (this.inverse) {
1165             this.cls += ' inverse';
1166         }
1167         
1168         
1169         if (this.active || this.pressed === true) {
1170             cfg.cls += ' active';
1171         }
1172         
1173         if (this.disabled) {
1174             cfg.disabled = 'disabled';
1175         }
1176         
1177         if (this.items) {
1178             Roo.log('changing to ul' );
1179             cfg.tag = 'ul';
1180             this.glyphicon = 'caret';
1181             if (Roo.bootstrap.version == 4) {
1182                 this.fa = 'caret-down';
1183             }
1184             
1185         }
1186         
1187         cfg.cls += this.size.length ? (' btn-' + this.size) : '';
1188          
1189         //gsRoo.log(this.parentType);
1190         if (this.parentType === 'Navbar' && !this.parent().bar) {
1191             Roo.log('changing to li?');
1192             
1193             cfg.tag = 'li';
1194             
1195             cfg.cls = '';
1196             cfg.cn =  [{
1197                 tag : 'a',
1198                 cls : 'roo-button',
1199                 html : this.html,
1200                 href : this.href || '#'
1201             }];
1202             if (this.menu) {
1203                 cfg.cn[0].html = this.html  + ' <span class="caret"></span>';
1204                 cfg.cls += ' dropdown';
1205             }   
1206             
1207             delete cfg.html;
1208             
1209         }
1210         
1211        cfg.cls += this.parentType === 'Navbar' ?  ' navbar-btn' : '';
1212         
1213         if (this.glyphicon) {
1214             cfg.html = ' ' + cfg.html;
1215             
1216             cfg.cn = [
1217                 {
1218                     tag: 'span',
1219                     cls: 'glyphicon glyphicon-' + this.glyphicon
1220                 }
1221             ];
1222         }
1223         if (this.fa) {
1224             cfg.html = ' ' + cfg.html;
1225             
1226             cfg.cn = [
1227                 {
1228                     tag: 'i',
1229                     cls: 'fa fas fa-' + this.fa
1230                 }
1231             ];
1232         }
1233         
1234         if (this.badge) {
1235             cfg.html += ' ';
1236             
1237             cfg.tag = 'a';
1238             
1239 //            cfg.cls='btn roo-button';
1240             
1241             cfg.href=this.href;
1242             
1243             var value = cfg.html;
1244             
1245             if(this.glyphicon){
1246                 value = {
1247                     tag: 'span',
1248                     cls: 'glyphicon glyphicon-' + this.glyphicon,
1249                     html: this.html
1250                 };
1251             }
1252             if(this.fa){
1253                 value = {
1254                     tag: 'i',
1255                     cls: 'fa fas fa-' + this.fa,
1256                     html: this.html
1257                 };
1258             }
1259             
1260             var bw = this.badge_weight.length ? this.badge_weight :
1261                 (this.weight.length ? this.weight : 'secondary');
1262             bw = bw == 'default' ? 'secondary' : bw;
1263             
1264             cfg.cn = [
1265                 value,
1266                 {
1267                     tag: 'span',
1268                     cls: 'badge badge-' + bw,
1269                     html: this.badge
1270                 }
1271             ];
1272             
1273             cfg.html='';
1274         }
1275         
1276         if (this.menu) {
1277             cfg.cls += ' dropdown';
1278             cfg.html = typeof(cfg.html) != 'undefined' ?
1279                     cfg.html + ' <span class="caret"></span>' : '<span class="caret"></span>';
1280         }
1281         
1282         if (cfg.tag !== 'a' && this.href !== '') {
1283             throw "Tag must be a to set href.";
1284         } else if (this.href.length > 0) {
1285             cfg.href = this.href;
1286         }
1287         
1288         if(this.removeClass){
1289             cfg.cls = '';
1290         }
1291         
1292         if(this.target){
1293             cfg.target = this.target;
1294         }
1295         
1296         return cfg;
1297     },
1298     initEvents: function() {
1299        // Roo.log('init events?');
1300 //        Roo.log(this.el.dom);
1301         // add the menu...
1302         
1303         if (typeof (this.menu) != 'undefined') {
1304             this.menu.parentType = this.xtype;
1305             this.menu.triggerEl = this.el;
1306             this.addxtype(Roo.apply({}, this.menu));
1307         }
1308
1309
1310         if (this.el.hasClass('roo-button')) {
1311              this.el.on('click', this.onClick, this);
1312              this.el.on('dblclick', this.onDblClick, this);
1313         } else {
1314              this.el.select('.roo-button').on('click', this.onClick, this);
1315              this.el.select('.roo-button').on('dblclick', this.onDblClick, this);
1316              
1317         }
1318         // why?
1319         if(this.removeClass){
1320             this.el.on('click', this.onClick, this);
1321         }
1322         
1323         if (this.group === true) {
1324              if (this.pressed === false || this.pressed === true) {
1325                 // nothing
1326             } else {
1327                 this.pressed = false;
1328                 this.setActive(this.pressed);
1329             }
1330             
1331         }
1332         
1333         this.el.enableDisplayMode();
1334         
1335     },
1336     onClick : function(e)
1337     {
1338         if (this.disabled) {
1339             return;
1340         }
1341         
1342         Roo.log('button on click ');
1343         if(this.href === '' || this.preventDefault){
1344             e.preventDefault();
1345         }
1346         
1347         if (this.group) {
1348             if (this.pressed) {
1349                 // do nothing -
1350                 return;
1351             }
1352             this.setActive(true);
1353             var pi = this.parent().items;
1354             for (var i = 0;i < pi.length;i++) {
1355                 if (this == pi[i]) {
1356                     continue;
1357                 }
1358                 if (pi[i].el.hasClass('roo-button')) {
1359                     pi[i].setActive(false);
1360                 }
1361             }
1362             this.fireEvent('click', this, e);            
1363             return;
1364         }
1365         
1366         if (this.pressed === true || this.pressed === false) {
1367             this.toggleActive(e);
1368         }
1369         
1370         
1371         this.fireEvent('click', this, e);
1372     },
1373     onDblClick: function(e)
1374     {
1375         if (this.disabled) {
1376             return;
1377         }
1378         if(this.preventDefault){
1379             e.preventDefault();
1380         }
1381         this.fireEvent('dblclick', this, e);
1382     },
1383     /**
1384      * Enables this button
1385      */
1386     enable : function()
1387     {
1388         this.disabled = false;
1389         this.el.removeClass('disabled');
1390         this.el.dom.removeAttribute("disabled");
1391     },
1392     
1393     /**
1394      * Disable this button
1395      */
1396     disable : function()
1397     {
1398         this.disabled = true;
1399         this.el.addClass('disabled');
1400         this.el.attr("disabled", "disabled")
1401     },
1402      /**
1403      * sets the active state on/off, 
1404      * @param {Boolean} state (optional) Force a particular state
1405      */
1406     setActive : function(v) {
1407         
1408         this.el[v ? 'addClass' : 'removeClass']('active');
1409         this.pressed = v;
1410     },
1411      /**
1412      * toggles the current active state 
1413      */
1414     toggleActive : function(e)
1415     {
1416         this.setActive(!this.pressed); // this modifies pressed...
1417         this.fireEvent('toggle', this, e, this.pressed);
1418     },
1419      /**
1420      * get the current active state
1421      * @return {boolean} true if it's active
1422      */
1423     isActive : function()
1424     {
1425         return this.el.hasClass('active');
1426     },
1427     /**
1428      * set the text of the first selected button
1429      */
1430     setText : function(str)
1431     {
1432         this.el.select('.roo-button-text',true).first().dom.innerHTML = str;
1433     },
1434     /**
1435      * get the text of the first selected button
1436      */
1437     getText : function()
1438     {
1439         return this.el.select('.roo-button-text',true).first().dom.innerHTML;
1440     },
1441     
1442     setWeight : function(str)
1443     {
1444         this.el.removeClass(Roo.bootstrap.Button.weights.map(function(w) { return 'btn-' + w; } ) );
1445         this.el.removeClass(Roo.bootstrap.Button.weights.map(function(w) { return 'btn-outline-' + w; } ) );
1446         this.weight = str;
1447         var outline = this.outline ? 'outline-' : '';
1448         if (str == 'default') {
1449             this.el.addClass('btn-default btn-outline-secondary');        
1450             return;
1451         }
1452         this.el.addClass('btn-' + outline + str);        
1453     }
1454     
1455     
1456 });
1457 // fixme - this is probably generic bootstrap - should go in some kind of enum file.. - like sizes.
1458
1459 Roo.bootstrap.Button.weights = [
1460     'default',
1461     'secondary' ,
1462     'primary',
1463     'success',
1464     'info',
1465     'warning',
1466     'danger',
1467     'link',
1468     'light',
1469     'dark'              
1470    
1471 ];/*
1472  * - LGPL
1473  *
1474  * column
1475  * 
1476  */
1477
1478 /**
1479  * @class Roo.bootstrap.Column
1480  * @extends Roo.bootstrap.Component
1481  * @children Roo.bootstrap.Component
1482  * Bootstrap Column class
1483  * @cfg {Number} xs colspan out of 12 for mobile-sized screens or 0 for hidden
1484  * @cfg {Number} sm colspan out of 12 for tablet-sized screens or 0 for hidden
1485  * @cfg {Number} md colspan out of 12 for computer-sized screens or 0 for hidden
1486  * @cfg {Number} lg colspan out of 12 for large computer-sized screens or 0 for hidden
1487  * @cfg {Number} xsoff colspan offset out of 12 for mobile-sized screens or 0 for hidden
1488  * @cfg {Number} smoff colspan offset out of 12 for tablet-sized screens or 0 for hidden
1489  * @cfg {Number} mdoff colspan offset out of 12 for computer-sized screens or 0 for hidden
1490  * @cfg {Number} lgoff colspan offset out of 12 for large computer-sized screens or 0 for hidden
1491  *
1492  * 
1493  * @cfg {Boolean} hidden (true|false) hide the element
1494  * @cfg {String} alert (success|info|warning|danger) type alert (changes background / border...)
1495  * @cfg {String} fa (ban|check|...) font awesome icon
1496  * @cfg {Number} fasize (1|2|....) font awsome size
1497
1498  * @cfg {String} icon (info-sign|check|...) glyphicon name
1499
1500  * @cfg {String} html content of column.
1501  * 
1502  * @constructor
1503  * Create a new Column
1504  * @param {Object} config The config object
1505  */
1506
1507 Roo.bootstrap.Column = function(config){
1508     Roo.bootstrap.Column.superclass.constructor.call(this, config);
1509 };
1510
1511 Roo.extend(Roo.bootstrap.Column, Roo.bootstrap.Component,  {
1512     
1513     xs: false,
1514     sm: false,
1515     md: false,
1516     lg: false,
1517     xsoff: false,
1518     smoff: false,
1519     mdoff: false,
1520     lgoff: false,
1521     html: '',
1522     offset: 0,
1523     alert: false,
1524     fa: false,
1525     icon : false,
1526     hidden : false,
1527     fasize : 1,
1528     
1529     getAutoCreate : function(){
1530         var cfg = Roo.apply({}, Roo.bootstrap.Column.superclass.getAutoCreate.call(this));
1531         
1532         cfg = {
1533             tag: 'div',
1534             cls: 'column'
1535         };
1536         
1537         var settings=this;
1538         var sizes =   ['xs','sm','md','lg'];
1539         sizes.map(function(size ,ix){
1540             //Roo.log( size + ':' + settings[size]);
1541             
1542             if (settings[size+'off'] !== false) {
1543                 cfg.cls += ' col-' + size + '-offset-' + settings[size+'off'] ;
1544             }
1545             
1546             if (settings[size] === false) {
1547                 return;
1548             }
1549             
1550             if (!settings[size]) { // 0 = hidden
1551                 cfg.cls += ' hidden-' + size + ' hidden-' + size + '-down';
1552                 // bootsrap4
1553                 for (var i = ix; i > -1; i--) {
1554                     cfg.cls +=  ' d-' + sizes[i] + '-none'; 
1555                 }
1556                 
1557                 
1558                 return;
1559             }
1560             cfg.cls += ' col-' + size + '-' + settings[size] + (
1561                 size == 'xs' ? (' col-' + settings[size] ) : '' // bs4 col-{num} replaces col-xs
1562             );
1563             
1564         });
1565         
1566         if (this.hidden) {
1567             cfg.cls += ' hidden';
1568         }
1569         
1570         if (this.alert && ["success","info","warning", "danger"].indexOf(this.alert) > -1) {
1571             cfg.cls +=' alert alert-' + this.alert;
1572         }
1573         
1574         
1575         if (this.html.length) {
1576             cfg.html = this.html;
1577         }
1578         if (this.fa) {
1579             var fasize = '';
1580             if (this.fasize > 1) {
1581                 fasize = ' fa-' + this.fasize + 'x';
1582             }
1583             cfg.html = '<i class="fa fa-'+this.fa + fasize + '"></i>' + (cfg.html || '');
1584             
1585             
1586         }
1587         if (this.icon) {
1588             cfg.html = '<i class="glyphicon glyphicon-'+this.icon + '"></i>' +  (cfg.html || '');
1589         }
1590         
1591         return cfg;
1592     }
1593    
1594 });
1595
1596  
1597
1598  /*
1599  * - LGPL
1600  *
1601  * page container.
1602  * 
1603  */
1604
1605
1606 /**
1607  * @class Roo.bootstrap.Container
1608  * @extends Roo.bootstrap.Component
1609  * @children Roo.bootstrap.Component
1610  * @parent builder
1611  * Bootstrap Container class
1612  * @cfg {Boolean} jumbotron is it a jumbotron element
1613  * @cfg {String} html content of element
1614  * @cfg {String} well (lg|sm|md) a well, large, small or medium.
1615  * @cfg {String} panel (default|primary|success|info|warning|danger) render as panel  - type - primary/success.....
1616  * @cfg {String} header content of header (for panel)
1617  * @cfg {String} footer content of footer (for panel)
1618  * @cfg {String} sticky (footer|wrap|push) block to use as footer or body- needs css-bootstrap/sticky-footer.css
1619  * @cfg {String} tag (header|aside|section) type of HTML tag.
1620  * @cfg {String} alert (success|info|warning|danger) type alert (changes background / border...)
1621  * @cfg {String} fa font awesome icon
1622  * @cfg {String} icon (info-sign|check|...) glyphicon name
1623  * @cfg {Boolean} hidden (true|false) hide the element
1624  * @cfg {Boolean} expandable (true|false) default false
1625  * @cfg {Boolean} expanded (true|false) default true
1626  * @cfg {String} rheader contet on the right of header
1627  * @cfg {Boolean} clickable (true|false) default false
1628
1629  *     
1630  * @constructor
1631  * Create a new Container
1632  * @param {Object} config The config object
1633  */
1634
1635 Roo.bootstrap.Container = function(config){
1636     Roo.bootstrap.Container.superclass.constructor.call(this, config);
1637     
1638     this.addEvents({
1639         // raw events
1640          /**
1641          * @event expand
1642          * After the panel has been expand
1643          * 
1644          * @param {Roo.bootstrap.Container} this
1645          */
1646         "expand" : true,
1647         /**
1648          * @event collapse
1649          * After the panel has been collapsed
1650          * 
1651          * @param {Roo.bootstrap.Container} this
1652          */
1653         "collapse" : true,
1654         /**
1655          * @event click
1656          * When a element is chick
1657          * @param {Roo.bootstrap.Container} this
1658          * @param {Roo.EventObject} e
1659          */
1660         "click" : true
1661     });
1662 };
1663
1664 Roo.extend(Roo.bootstrap.Container, Roo.bootstrap.Component,  {
1665     
1666     jumbotron : false,
1667     well: '',
1668     panel : '',
1669     header: '',
1670     footer : '',
1671     sticky: '',
1672     tag : false,
1673     alert : false,
1674     fa: false,
1675     icon : false,
1676     expandable : false,
1677     rheader : '',
1678     expanded : true,
1679     clickable: false,
1680   
1681      
1682     getChildContainer : function() {
1683         
1684         if(!this.el){
1685             return false;
1686         }
1687         
1688         if (this.panel.length) {
1689             return this.el.select('.panel-body',true).first();
1690         }
1691         
1692         return this.el;
1693     },
1694     
1695     
1696     getAutoCreate : function(){
1697         
1698         var cfg = {
1699             tag : this.tag || 'div',
1700             html : '',
1701             cls : ''
1702         };
1703         if (this.jumbotron) {
1704             cfg.cls = 'jumbotron';
1705         }
1706         
1707         
1708         
1709         // - this is applied by the parent..
1710         //if (this.cls) {
1711         //    cfg.cls = this.cls + '';
1712         //}
1713         
1714         if (this.sticky.length) {
1715             
1716             var bd = Roo.get(document.body);
1717             if (!bd.hasClass('bootstrap-sticky')) {
1718                 bd.addClass('bootstrap-sticky');
1719                 Roo.select('html',true).setStyle('height', '100%');
1720             }
1721              
1722             cfg.cls += 'bootstrap-sticky-' + this.sticky;
1723         }
1724         
1725         
1726         if (this.well.length) {
1727             switch (this.well) {
1728                 case 'lg':
1729                 case 'sm':
1730                     cfg.cls +=' well well-' +this.well;
1731                     break;
1732                 default:
1733                     cfg.cls +=' well';
1734                     break;
1735             }
1736         }
1737         
1738         if (this.hidden) {
1739             cfg.cls += ' hidden';
1740         }
1741         
1742         
1743         if (this.alert && ["success","info","warning", "danger"].indexOf(this.alert) > -1) {
1744             cfg.cls +=' alert alert-' + this.alert;
1745         }
1746         
1747         var body = cfg;
1748         
1749         if (this.panel.length) {
1750             cfg.cls += ' panel panel-' + this.panel;
1751             cfg.cn = [];
1752             if (this.header.length) {
1753                 
1754                 var h = [];
1755                 
1756                 if(this.expandable){
1757                     
1758                     cfg.cls = cfg.cls + ' expandable';
1759                     
1760                     h.push({
1761                         tag: 'i',
1762                         cls: (this.expanded ? 'fa fa-minus' : 'fa fa-plus') 
1763                     });
1764                     
1765                 }
1766                 
1767                 h.push(
1768                     {
1769                         tag: 'span',
1770                         cls : 'panel-title',
1771                         html : (this.expandable ? '&nbsp;' : '') + this.header
1772                     },
1773                     {
1774                         tag: 'span',
1775                         cls: 'panel-header-right',
1776                         html: this.rheader
1777                     }
1778                 );
1779                 
1780                 cfg.cn.push({
1781                     cls : 'panel-heading',
1782                     style : this.expandable ? 'cursor: pointer' : '',
1783                     cn : h
1784                 });
1785                 
1786             }
1787             
1788             body = false;
1789             cfg.cn.push({
1790                 cls : 'panel-body' + (this.expanded ? '' : ' hide'),
1791                 html : this.html
1792             });
1793             
1794             
1795             if (this.footer.length) {
1796                 cfg.cn.push({
1797                     cls : 'panel-footer',
1798                     html : this.footer
1799                     
1800                 });
1801             }
1802             
1803         }
1804         
1805         if (body) {
1806             body.html = this.html || cfg.html;
1807             // prefix with the icons..
1808             if (this.fa) {
1809                 body.html = '<i class="fa fa-'+this.fa + '"></i>' + body.html ;
1810             }
1811             if (this.icon) {
1812                 body.html = '<i class="glyphicon glyphicon-'+this.icon + '"></i>' + body.html ;
1813             }
1814             
1815             
1816         }
1817         if ((!this.cls || !this.cls.length) && (!cfg.cls || !cfg.cls.length)) {
1818             cfg.cls =  'container';
1819         }
1820         
1821         return cfg;
1822     },
1823     
1824     initEvents: function() 
1825     {
1826         if(this.expandable){
1827             var headerEl = this.headerEl();
1828         
1829             if(headerEl){
1830                 headerEl.on('click', this.onToggleClick, this);
1831             }
1832         }
1833         
1834         if(this.clickable){
1835             this.el.on('click', this.onClick, this);
1836         }
1837         
1838     },
1839     
1840     onToggleClick : function()
1841     {
1842         var headerEl = this.headerEl();
1843         
1844         if(!headerEl){
1845             return;
1846         }
1847         
1848         if(this.expanded){
1849             this.collapse();
1850             return;
1851         }
1852         
1853         this.expand();
1854     },
1855     
1856     expand : function()
1857     {
1858         if(this.fireEvent('expand', this)) {
1859             
1860             this.expanded = true;
1861             
1862             //this.el.select('.panel-body',true).first().setVisibilityMode(Roo.Element.DISPLAY).show();
1863             
1864             this.el.select('.panel-body',true).first().removeClass('hide');
1865             
1866             var toggleEl = this.toggleEl();
1867
1868             if(!toggleEl){
1869                 return;
1870             }
1871
1872             toggleEl.removeClass(['fa-minus', 'fa-plus']).addClass(['fa-minus']);
1873         }
1874         
1875     },
1876     
1877     collapse : function()
1878     {
1879         if(this.fireEvent('collapse', this)) {
1880             
1881             this.expanded = false;
1882             
1883             //this.el.select('.panel-body',true).first().setVisibilityMode(Roo.Element.DISPLAY).hide();
1884             this.el.select('.panel-body',true).first().addClass('hide');
1885         
1886             var toggleEl = this.toggleEl();
1887
1888             if(!toggleEl){
1889                 return;
1890             }
1891
1892             toggleEl.removeClass(['fa-minus', 'fa-plus']).addClass(['fa-plus']);
1893         }
1894     },
1895     
1896     toggleEl : function()
1897     {
1898         if(!this.el || !this.panel.length || !this.header.length || !this.expandable){
1899             return;
1900         }
1901         
1902         return this.el.select('.panel-heading .fa',true).first();
1903     },
1904     
1905     headerEl : function()
1906     {
1907         if(!this.el || !this.panel.length || !this.header.length){
1908             return;
1909         }
1910         
1911         return this.el.select('.panel-heading',true).first()
1912     },
1913     
1914     bodyEl : function()
1915     {
1916         if(!this.el || !this.panel.length){
1917             return;
1918         }
1919         
1920         return this.el.select('.panel-body',true).first()
1921     },
1922     
1923     titleEl : function()
1924     {
1925         if(!this.el || !this.panel.length || !this.header.length){
1926             return;
1927         }
1928         
1929         return this.el.select('.panel-title',true).first();
1930     },
1931     
1932     setTitle : function(v)
1933     {
1934         var titleEl = this.titleEl();
1935         
1936         if(!titleEl){
1937             return;
1938         }
1939         
1940         titleEl.dom.innerHTML = v;
1941     },
1942     
1943     getTitle : function()
1944     {
1945         
1946         var titleEl = this.titleEl();
1947         
1948         if(!titleEl){
1949             return '';
1950         }
1951         
1952         return titleEl.dom.innerHTML;
1953     },
1954     
1955     setRightTitle : function(v)
1956     {
1957         var t = this.el.select('.panel-header-right',true).first();
1958         
1959         if(!t){
1960             return;
1961         }
1962         
1963         t.dom.innerHTML = v;
1964     },
1965     
1966     onClick : function(e)
1967     {
1968         e.preventDefault();
1969         
1970         this.fireEvent('click', this, e);
1971     }
1972 });
1973
1974  /**
1975  * @class Roo.bootstrap.Card
1976  * @extends Roo.bootstrap.Component
1977  * @children Roo.bootstrap.Component
1978  * @licence LGPL
1979  * Bootstrap Card class - note this has children as CardHeader/ImageTop/Footer.. - which should really be listed properties?
1980  *
1981  *
1982  * possible... may not be implemented..
1983  * @cfg {String} header_image  src url of image.
1984  * @cfg {String|Object} header
1985  * @cfg {Number} header_size (0|1|2|3|4|5) H1 or H2 etc.. 0 indicates default
1986  * @cfg {Number} header_weight  (primary|secondary|success|info|warning|danger|light|dark)
1987  * 
1988  * @cfg {String} title
1989  * @cfg {String} subtitle
1990  * @cfg {String|Boolean} html -- html contents - or just use children.. use false to hide it..
1991  * @cfg {String} footer
1992  
1993  * @cfg {String} weight (primary|warning|info|danger|secondary|success|light|dark)
1994  * 
1995  * @cfg {String} margin (0|1|2|3|4|5|auto)
1996  * @cfg {String} margin_top (0|1|2|3|4|5|auto)
1997  * @cfg {String} margin_bottom (0|1|2|3|4|5|auto)
1998  * @cfg {String} margin_left (0|1|2|3|4|5|auto)
1999  * @cfg {String} margin_right (0|1|2|3|4|5|auto)
2000  * @cfg {String} margin_x (0|1|2|3|4|5|auto)
2001  * @cfg {String} margin_y (0|1|2|3|4|5|auto)
2002  *
2003  * @cfg {String} padding (0|1|2|3|4|5)
2004  * @cfg {String} padding_top (0|1|2|3|4|5)next_to_card
2005  * @cfg {String} padding_bottom (0|1|2|3|4|5)
2006  * @cfg {String} padding_left (0|1|2|3|4|5)
2007  * @cfg {String} padding_right (0|1|2|3|4|5)
2008  * @cfg {String} padding_x (0|1|2|3|4|5)
2009  * @cfg {String} padding_y (0|1|2|3|4|5)
2010  *
2011  * @cfg {String} display (none|inline|inline-block|block|table|table-cell|table-row|flex|inline-flex)
2012  * @cfg {String} display_xs (none|inline|inline-block|block|table|table-cell|table-row|flex|inline-flex)
2013  * @cfg {String} display_sm (none|inline|inline-block|block|table|table-cell|table-row|flex|inline-flex)
2014  * @cfg {String} display_lg (none|inline|inline-block|block|table|table-cell|table-row|flex|inline-flex)
2015  * @cfg {String} display_xl (none|inline|inline-block|block|table|table-cell|table-row|flex|inline-flex)
2016  
2017  * @config {Boolean} dragable  if this card can be dragged.
2018  * @config {String} drag_group  group for drag
2019  * @config {Boolean} dropable  if this card can recieve other cards being dropped onto it..
2020  * @config {String} drop_group  group for drag
2021  * 
2022  * @config {Boolean} collapsable can the body be collapsed.
2023  * @config {Boolean} collapsed is the body collapsed when rendered...
2024  * @config {Boolean} rotateable can the body be rotated by clicking on it..
2025  * @config {Boolean} rotated is the body rotated when rendered...
2026  * 
2027  * @constructor
2028  * Create a new Container
2029  * @param {Object} config The config object
2030  */
2031
2032 Roo.bootstrap.Card = function(config){
2033     Roo.bootstrap.Card.superclass.constructor.call(this, config);
2034     
2035     this.addEvents({
2036          // raw events
2037         /**
2038          * @event drop
2039          * When a element a card is dropped
2040          * @param {Roo.bootstrap.Card} this
2041          *
2042          * 
2043          * @param {Roo.bootstrap.Card} move_card the card being dropped?
2044          * @param {String} position 'above' or 'below'
2045          * @param {Roo.bootstrap.Card} next_to_card What card position is relative to of 'false' for empty list.
2046         
2047          */
2048         'drop' : true,
2049          /**
2050          * @event rotate
2051          * When a element a card is rotate
2052          * @param {Roo.bootstrap.Card} this
2053          * @param {Roo.Element} n the node being dropped?
2054          * @param {Boolean} rotate status
2055          */
2056         'rotate' : true,
2057         /**
2058          * @event cardover
2059          * When a card element is dragged over ready to drop (return false to block dropable)
2060          * @param {Roo.bootstrap.Card} this
2061          * @param {Object} data from dragdrop 
2062          */
2063          'cardover' : true
2064          
2065     });
2066 };
2067
2068
2069 Roo.extend(Roo.bootstrap.Card, Roo.bootstrap.Component,  {
2070     
2071     
2072     weight : '',
2073     
2074     margin: '', /// may be better in component?
2075     margin_top: '', 
2076     margin_bottom: '', 
2077     margin_left: '',
2078     margin_right: '',
2079     margin_x: '',
2080     margin_y: '',
2081     
2082     padding : '',
2083     padding_top: '', 
2084     padding_bottom: '', 
2085     padding_left: '',
2086     padding_right: '',
2087     padding_x: '',
2088     padding_y: '',
2089     
2090     display: '', 
2091     display_xs: '', 
2092     display_sm: '', 
2093     display_lg: '',
2094     display_xl: '',
2095  
2096     header_image  : '',
2097     header : '',
2098     header_size : 0,
2099     title : '',
2100     subtitle : '',
2101     html : '',
2102     footer: '',
2103
2104     collapsable : false,
2105     collapsed : false,
2106     rotateable : false,
2107     rotated : false,
2108     
2109     dragable : false,
2110     drag_group : false,
2111     dropable : false,
2112     drop_group : false,
2113     childContainer : false,
2114     dropEl : false, /// the dom placeholde element that indicates drop location.
2115     containerEl: false, // body container
2116     bodyEl: false, // card-body
2117     headerContainerEl : false, //
2118     headerEl : false,
2119     header_imageEl : false,
2120     
2121     
2122     layoutCls : function()
2123     {
2124         var cls = '';
2125         var t = this;
2126         Roo.log(this.margin_bottom.length);
2127         ['', 'top', 'bottom', 'left', 'right', 'x', 'y' ].forEach(function(v) {
2128             // in theory these can do margin_top : ml-xs-3 ??? but we don't support that yet
2129             
2130             if (('' + t['margin' + (v.length ? '_' : '') + v]).length) {
2131                 cls += ' m' +  (v.length ? v[0]  : '') + '-' +  t['margin' + (v.length ? '_' : '') + v];
2132             }
2133             if (('' + t['padding' + (v.length ? '_' : '') + v]).length) {
2134                 cls += ' p' +  (v.length ? v[0]  : '') + '-' +  t['padding' + (v.length ? '_' : '') + v];
2135             }
2136         });
2137         
2138         ['', 'xs', 'sm', 'lg', 'xl'].forEach(function(v) {
2139             if (('' + t['display' + (v.length ? '_' : '') + v]).length) {
2140                 cls += ' d' +  (v.length ? '-' : '') + v + '-' + t['display' + (v.length ? '_' : '') + v]
2141             }
2142         });
2143         
2144         // more generic support?
2145         if (this.hidden) {
2146             cls += ' d-none';
2147         }
2148         
2149         return cls;
2150     },
2151  
2152        // Roo.log("Call onRender: " + this.xtype);
2153         /*  We are looking at something like this.
2154 <div class="card">
2155     <img src="..." class="card-img-top" alt="...">
2156     <div class="card-body">
2157         <h5 class="card-title">Card title</h5>
2158          <h6 class="card-subtitle mb-2 text-muted">Card subtitle</h6>
2159
2160         >> this bit is really the body...
2161         <div> << we will ad dthis in hopefully it will not break shit.
2162         
2163         ** card text does not actually have any styling...
2164         
2165             <p class="card-text">This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</p>
2166         
2167         </div> <<
2168           <a href="#" class="card-link">Card link</a>
2169           
2170     </div>
2171     <div class="card-footer">
2172         <small class="text-muted">Last updated 3 mins ago</small>
2173     </div>
2174 </div>
2175          */
2176     getAutoCreate : function(){
2177         
2178         var cfg = {
2179             tag : 'div',
2180             cls : 'card',
2181             cn : [ ]
2182         };
2183         
2184         if (this.weight.length && this.weight != 'light') {
2185             cfg.cls += ' text-white';
2186         } else {
2187             cfg.cls += ' text-dark'; // need as it's nested..
2188         }
2189         if (this.weight.length) {
2190             cfg.cls += ' bg-' + this.weight;
2191         }
2192         
2193         cfg.cls += ' ' + this.layoutCls(); 
2194         
2195         var hdr = false;
2196         var hdr_ctr = false;
2197         if (this.header.length) {
2198             hdr = {
2199                 tag : this.header_size > 0 ? 'h' + this.header_size : 'div',
2200                 cls : 'card-header ' + (this.header_weight ? 'bg-' + this.header_weight : ''),
2201                 cn : []
2202             };
2203             cfg.cn.push(hdr);
2204             hdr_ctr = hdr;
2205         } else {
2206             hdr = {
2207                 tag : 'div',
2208                 cls : 'card-header d-none ' + (this.header_weight ? 'bg-' + this.header_weight : ''),
2209                 cn : []
2210             };
2211             cfg.cn.push(hdr);
2212             hdr_ctr = hdr;
2213         }
2214         if (this.collapsable) {
2215             hdr_ctr = {
2216             tag : 'a',
2217             cls : 'd-block user-select-none',
2218             cn: [
2219                     {
2220                         tag: 'i',
2221                         cls : 'roo-collapse-toggle fa fa-chevron-down float-right ' + (this.collapsed ? 'collapsed' : '')
2222                     }
2223                    
2224                 ]
2225             };
2226             hdr.cn.push(hdr_ctr);
2227         }
2228         
2229         hdr_ctr.cn.push(        {
2230             tag: 'span',
2231             cls: 'roo-card-header-ctr' + ( this.header.length ? '' : ' d-none'),
2232             html : this.header
2233         });
2234         
2235         
2236         if (this.header_image.length) {
2237             cfg.cn.push({
2238                 tag : 'img',
2239                 cls : 'card-img-top',
2240                 src: this.header_image // escape?
2241             });
2242         } else {
2243             cfg.cn.push({
2244                     tag : 'div',
2245                     cls : 'card-img-top d-none' 
2246                 });
2247         }
2248             
2249         var body = {
2250             tag : 'div',
2251             cls : 'card-body' + (this.html === false  ? ' d-none' : ''),
2252             cn : []
2253         };
2254         var obody = body;
2255         if (this.collapsable || this.rotateable) {
2256             obody = {
2257                 tag: 'div',
2258                 cls : 'roo-collapsable collapse ' + (this.collapsed || this.rotated ? '' : 'show'),
2259                 cn : [  body ]
2260             };
2261         }
2262         
2263         cfg.cn.push(obody);
2264         
2265         if (this.title.length) {
2266             body.cn.push({
2267                 tag : 'div',
2268                 cls : 'card-title',
2269                 src: this.title // escape?
2270             });
2271         }  
2272         
2273         if (this.subtitle.length) {
2274             body.cn.push({
2275                 tag : 'div',
2276                 cls : 'card-title',
2277                 src: this.subtitle // escape?
2278             });
2279         }
2280         
2281         body.cn.push({
2282             tag : 'div',
2283             cls : 'roo-card-body-ctr'
2284         });
2285         
2286         if (this.html.length) {
2287             body.cn.push({
2288                 tag: 'div',
2289                 html : this.html
2290             });
2291         }
2292         // fixme ? handle objects?
2293         
2294         if (this.footer.length) {
2295            
2296             cfg.cn.push({
2297                 cls : 'card-footer ' + (this.rotated ? 'd-none' : ''),
2298                 html : this.footer
2299             });
2300             
2301         } else {
2302             cfg.cn.push({cls : 'card-footer d-none'});
2303         }
2304         
2305         // footer...
2306         
2307         return cfg;
2308     },
2309     
2310     
2311     getCardHeader : function()
2312     {
2313         var  ret = this.el.select('.card-header',true).first();
2314         if (ret.hasClass('d-none')) {
2315             ret.removeClass('d-none');
2316         }
2317         
2318         return ret;
2319     },
2320     getCardFooter : function()
2321     {
2322         var  ret = this.el.select('.card-footer',true).first();
2323         if (ret.hasClass('d-none')) {
2324             ret.removeClass('d-none');
2325         }
2326         
2327         return ret;
2328     },
2329     getCardImageTop : function()
2330     {
2331         var  ret = this.header_imageEl;
2332         if (ret.hasClass('d-none')) {
2333             ret.removeClass('d-none');
2334         }
2335             
2336         return ret;
2337     },
2338     
2339     getChildContainer : function()
2340     {
2341         
2342         if(!this.el){
2343             return false;
2344         }
2345         return this.el.select('.roo-card-body-ctr',true).first();    
2346     },
2347     
2348     initEvents: function() 
2349     {
2350         this.bodyEl = this.el.select('.card-body',true).first(); 
2351         this.containerEl = this.getChildContainer();
2352         if(this.dragable){
2353             this.dragZone = new Roo.dd.DragZone(this.getEl(), {
2354                     containerScroll: true,
2355                     ddGroup: this.drag_group || 'default_card_drag_group'
2356             });
2357             this.dragZone.getDragData = this.getDragData.createDelegate(this);
2358         }
2359         if (this.dropable) {
2360             this.dropZone = new Roo.dd.DropZone(this.el.select('.card-body',true).first() , {
2361                 containerScroll: true,
2362                 ddGroup: this.drop_group || 'default_card_drag_group'
2363             });
2364             this.dropZone.getTargetFromEvent = this.getTargetFromEvent.createDelegate(this);
2365             this.dropZone.onNodeEnter = this.onNodeEnter.createDelegate(this);
2366             this.dropZone.onNodeOver = this.onNodeOver.createDelegate(this);
2367             this.dropZone.onNodeOut = this.onNodeOut.createDelegate(this);
2368             this.dropZone.onNodeDrop = this.onNodeDrop.createDelegate(this);
2369         }
2370         
2371         if (this.collapsable) {
2372             this.el.select('.card-header',true).on('click', this.onToggleCollapse, this);
2373         }
2374         if (this.rotateable) {
2375             this.el.select('.card-header',true).on('click', this.onToggleRotate, this);
2376         }
2377         this.collapsableEl = this.el.select('.roo-collapsable',true).first();
2378          
2379         this.footerEl = this.el.select('.card-footer',true).first();
2380         this.collapsableToggleEl = this.el.select('.roo-collapse-toggle',true).first();
2381         this.headerContainerEl = this.el.select('.roo-card-header-ctr',true).first();
2382         this.headerEl = this.el.select('.card-header',true).first();
2383         
2384         if (this.rotated) {
2385             this.el.addClass('roo-card-rotated');
2386             this.fireEvent('rotate', this, true);
2387         }
2388         this.header_imageEl = this.el.select('.card-img-top',true).first(); 
2389         this.header_imageEl.on('load', this.onHeaderImageLoad, this );
2390         
2391     },
2392     getDragData : function(e)
2393     {
2394         var target = this.getEl();
2395         if (target) {
2396             //this.handleSelection(e);
2397             
2398             var dragData = {
2399                 source: this,
2400                 copy: false,
2401                 nodes: this.getEl(),
2402                 records: []
2403             };
2404             
2405             
2406             dragData.ddel = target.dom ;    // the div element
2407             Roo.log(target.getWidth( ));
2408             dragData.ddel.style.width = target.getWidth() + 'px';
2409             
2410             return dragData;
2411         }
2412         return false;
2413     },
2414     /**
2415     *    Part of the Roo.dd.DropZone interface. If no target node is found, the
2416     *    whole Element becomes the target, and this causes the drop gesture to append.
2417     *
2418     *    Returns an object:
2419     *     {
2420            
2421            position : 'below' or 'above'
2422            card  : relateive to card OBJECT (or true for no cards listed)
2423            items_n : relative to nth item in list
2424            card_n : relative to  nth card in list
2425     }
2426     *
2427     *    
2428     */
2429     getTargetFromEvent : function(e, dragged_card_el)
2430     {
2431         var target = e.getTarget();
2432         while ((target !== null) && (target.parentNode != this.containerEl.dom)) {
2433             target = target.parentNode;
2434         }
2435         
2436         var ret = {
2437             position: '',
2438             cards : [],
2439             card_n : -1,
2440             items_n : -1,
2441             card : false 
2442         };
2443         
2444         //Roo.log([ 'target' , target ? target.id : '--nothing--']);
2445         // see if target is one of the 'cards'...
2446         
2447         
2448         //Roo.log(this.items.length);
2449         var pos = false;
2450         
2451         var last_card_n = 0;
2452         var cards_len  = 0;
2453         for (var i = 0;i< this.items.length;i++) {
2454             
2455             if (!this.items[i].el.hasClass('card')) {
2456                  continue;
2457             }
2458             pos = this.getDropPoint(e, this.items[i].el.dom);
2459             
2460             cards_len = ret.cards.length;
2461             //Roo.log(this.items[i].el.dom.id);
2462             ret.cards.push(this.items[i]);
2463             last_card_n  = i;
2464             if (ret.card_n < 0 && pos == 'above') {
2465                 ret.position = cards_len > 0 ? 'below' : pos;
2466                 ret.items_n = i > 0 ? i - 1 : 0;
2467                 ret.card_n  = cards_len  > 0 ? cards_len - 1 : 0;
2468                 ret.card = ret.cards[ret.card_n];
2469             }
2470         }
2471         if (!ret.cards.length) {
2472             ret.card = true;
2473             ret.position = 'below';
2474             ret.items_n;
2475             return ret;
2476         }
2477         // could not find a card.. stick it at the end..
2478         if (ret.card_n < 0) {
2479             ret.card_n = last_card_n;
2480             ret.card = ret.cards[last_card_n];
2481             ret.items_n = this.items.indexOf(ret.cards[last_card_n]);
2482             ret.position = 'below';
2483         }
2484         
2485         if (this.items[ret.items_n].el == dragged_card_el) {
2486             return false;
2487         }
2488         
2489         if (ret.position == 'below') {
2490             var card_after = ret.card_n+1 == ret.cards.length ? false : ret.cards[ret.card_n+1];
2491             
2492             if (card_after  && card_after.el == dragged_card_el) {
2493                 return false;
2494             }
2495             return ret;
2496         }
2497         
2498         // its's after ..
2499         var card_before = ret.card_n > 0 ? ret.cards[ret.card_n-1] : false;
2500         
2501         if (card_before  && card_before.el == dragged_card_el) {
2502             return false;
2503         }
2504         
2505         return ret;
2506     },
2507     
2508     onNodeEnter : function(n, dd, e, data){
2509         return false;
2510     },
2511     onNodeOver : function(n, dd, e, data)
2512     {
2513        
2514         var target_info = this.getTargetFromEvent(e,data.source.el);
2515         if (target_info === false) {
2516             this.dropPlaceHolder('hide');
2517             return false;
2518         }
2519         Roo.log(['getTargetFromEvent', target_info ]);
2520         
2521         
2522         if (this.fireEvent('cardover', this, [ data ]) === false) {
2523             return false;
2524         }
2525         
2526         this.dropPlaceHolder('show', target_info,data);
2527         
2528         return false; 
2529     },
2530     onNodeOut : function(n, dd, e, data){
2531         this.dropPlaceHolder('hide');
2532      
2533     },
2534     onNodeDrop : function(n, dd, e, data)
2535     {
2536         
2537         // call drop - return false if
2538         
2539         // this could actually fail - if the Network drops..
2540         // we will ignore this at present..- client should probably reload
2541         // the whole set of cards if stuff like that fails.
2542         
2543         
2544         var info = this.getTargetFromEvent(e,data.source.el);
2545         if (info === false) {
2546             return false;
2547         }
2548         this.dropPlaceHolder('hide');
2549   
2550           
2551     
2552         this.acceptCard(data.source, info.position, info.card, info.items_n);
2553         return true;
2554          
2555     },
2556     firstChildCard : function()
2557     {
2558         for (var i = 0;i< this.items.length;i++) {
2559             
2560             if (!this.items[i].el.hasClass('card')) {
2561                  continue;
2562             }
2563             return this.items[i];
2564         }
2565         return this.items.length ? this.items[this.items.length-1] : false; // don't try and put stuff after the cards...
2566     },
2567     /**
2568      * accept card
2569      *
2570      * -        card.acceptCard(move_card, info.position, info.card, info.items_n);
2571      */
2572     acceptCard : function(move_card,  position, next_to_card )
2573     {
2574         if (this.fireEvent("drop", this, move_card, position, next_to_card) === false) {
2575             return false;
2576         }
2577         
2578         var to_items_n = next_to_card ? this.items.indexOf(next_to_card) : 0;
2579         
2580         move_card.parent().removeCard(move_card);
2581         
2582         
2583         var dom = move_card.el.dom;
2584         dom.style.width = ''; // clear with - which is set by drag.
2585         
2586         if (next_to_card !== false && next_to_card !== true && next_to_card.el.dom.parentNode) {
2587             var cardel = next_to_card.el.dom;
2588             
2589             if (position == 'above' ) {
2590                 cardel.parentNode.insertBefore(dom, cardel);
2591             } else if (cardel.nextSibling) {
2592                 cardel.parentNode.insertBefore(dom,cardel.nextSibling);
2593             } else {
2594                 cardel.parentNode.append(dom);
2595             }
2596         } else {
2597             // card container???
2598             this.containerEl.dom.append(dom);
2599         }
2600         
2601         //FIXME HANDLE card = true 
2602         
2603         // add this to the correct place in items.
2604         
2605         // remove Card from items.
2606         
2607        
2608         if (this.items.length) {
2609             var nitems = [];
2610             //Roo.log([info.items_n, info.position, this.items.length]);
2611             for (var i =0; i < this.items.length; i++) {
2612                 if (i == to_items_n && position == 'above') {
2613                     nitems.push(move_card);
2614                 }
2615                 nitems.push(this.items[i]);
2616                 if (i == to_items_n && position == 'below') {
2617                     nitems.push(move_card);
2618                 }
2619             }
2620             this.items = nitems;
2621             Roo.log(this.items);
2622         } else {
2623             this.items.push(move_card);
2624         }
2625         
2626         move_card.parentId = this.id;
2627         
2628         return true;
2629         
2630         
2631     },
2632     removeCard : function(c)
2633     {
2634         this.items = this.items.filter(function(e) { return e != c });
2635  
2636         var dom = c.el.dom;
2637         dom.parentNode.removeChild(dom);
2638         dom.style.width = ''; // clear with - which is set by drag.
2639         c.parentId = false;
2640         
2641     },
2642     
2643     /**    Decide whether to drop above or below a View node. */
2644     getDropPoint : function(e, n, dd)
2645     {
2646         if (dd) {
2647              return false;
2648         }
2649         if (n == this.containerEl.dom) {
2650             return "above";
2651         }
2652         var t = Roo.lib.Dom.getY(n), b = t + n.offsetHeight;
2653         var c = t + (b - t) / 2;
2654         var y = Roo.lib.Event.getPageY(e);
2655         if(y <= c) {
2656             return "above";
2657         }else{
2658             return "below";
2659         }
2660     },
2661     onToggleCollapse : function(e)
2662         {
2663         if (this.collapsed) {
2664             this.el.select('.roo-collapse-toggle').removeClass('collapsed');
2665             this.collapsableEl.addClass('show');
2666             this.collapsed = false;
2667             return;
2668         }
2669         this.el.select('.roo-collapse-toggle').addClass('collapsed');
2670         this.collapsableEl.removeClass('show');
2671         this.collapsed = true;
2672         
2673     
2674     },
2675     
2676     onToggleRotate : function(e)
2677     {
2678         this.collapsableEl.removeClass('show');
2679         this.footerEl.removeClass('d-none');
2680         this.el.removeClass('roo-card-rotated');
2681         this.el.removeClass('d-none');
2682         if (this.rotated) {
2683             
2684             this.collapsableEl.addClass('show');
2685             this.rotated = false;
2686             this.fireEvent('rotate', this, this.rotated);
2687             return;
2688         }
2689         this.el.addClass('roo-card-rotated');
2690         this.footerEl.addClass('d-none');
2691         this.el.select('.roo-collapsable').removeClass('show');
2692         
2693         this.rotated = true;
2694         this.fireEvent('rotate', this, this.rotated);
2695     
2696     },
2697     
2698     dropPlaceHolder: function (action, info, data)
2699     {
2700         if (this.dropEl === false) {
2701             this.dropEl = Roo.DomHelper.append(this.containerEl, {
2702             cls : 'd-none'
2703             },true);
2704         }
2705         this.dropEl.removeClass(['d-none', 'd-block']);        
2706         if (action == 'hide') {
2707             
2708             this.dropEl.addClass('d-none');
2709             return;
2710         }
2711         // FIXME - info.card == true!!!
2712         this.dropEl.dom.parentNode.removeChild(this.dropEl.dom);
2713         
2714         if (info.card !== true) {
2715             var cardel = info.card.el.dom;
2716             
2717             if (info.position == 'above') {
2718                 cardel.parentNode.insertBefore(this.dropEl.dom, cardel);
2719             } else if (cardel.nextSibling) {
2720                 cardel.parentNode.insertBefore(this.dropEl.dom,cardel.nextSibling);
2721             } else {
2722                 cardel.parentNode.append(this.dropEl.dom);
2723             }
2724         } else {
2725             // card container???
2726             this.containerEl.dom.append(this.dropEl.dom);
2727         }
2728         
2729         this.dropEl.addClass('d-block roo-card-dropzone');
2730         
2731         this.dropEl.setHeight( Roo.get(data.ddel).getHeight() );
2732         
2733         
2734     
2735     
2736     
2737     },
2738     setHeaderText: function(html)
2739     {
2740         this.header = html;
2741         if (this.headerContainerEl) {
2742             this.headerContainerEl.dom.innerHTML = html;
2743         }
2744     },
2745     onHeaderImageLoad : function(ev, he)
2746     {
2747         if (!this.header_image_fit_square) {
2748             return;
2749         }
2750         
2751         var hw = he.naturalHeight / he.naturalWidth;
2752         // wide image = < 0
2753         // tall image = > 1
2754         //var w = he.dom.naturalWidth;
2755         var ww = he.width;
2756         he.style.left =  0;
2757         he.style.position =  'relative';
2758         if (hw > 1) {
2759             var nw = (ww * (1/hw));
2760             Roo.get(he).setSize( ww * (1/hw),  ww);
2761             he.style.left =  ((ww - nw)/ 2) + 'px';
2762             he.style.position =  'relative';
2763         }
2764
2765     }
2766
2767     
2768 });
2769
2770 /*
2771  * - LGPL
2772  *
2773  * Card header - holder for the card header elements.
2774  * 
2775  */
2776
2777 /**
2778  * @class Roo.bootstrap.CardHeader
2779  * @extends Roo.bootstrap.Element
2780  * @parent Roo.bootstrap.Card
2781  * @children Roo.bootstrap.Component
2782  * Bootstrap CardHeader class
2783  * @constructor
2784  * Create a new Card Header - that you can embed children into
2785  * @param {Object} config The config object
2786  */
2787
2788 Roo.bootstrap.CardHeader = function(config){
2789     Roo.bootstrap.CardHeader.superclass.constructor.call(this, config);
2790 };
2791
2792 Roo.extend(Roo.bootstrap.CardHeader, Roo.bootstrap.Element,  {
2793     
2794     
2795     container_method : 'getCardHeader' 
2796     
2797      
2798     
2799     
2800    
2801 });
2802
2803  
2804
2805  /*
2806  * - LGPL
2807  *
2808  * Card footer - holder for the card footer elements.
2809  * 
2810  */
2811
2812 /**
2813  * @class Roo.bootstrap.CardFooter
2814  * @extends Roo.bootstrap.Element
2815  * @parent Roo.bootstrap.Card
2816  * @children Roo.bootstrap.Component
2817  * Bootstrap CardFooter class
2818  * 
2819  * @constructor
2820  * Create a new Card Footer - that you can embed children into
2821  * @param {Object} config The config object
2822  */
2823
2824 Roo.bootstrap.CardFooter = function(config){
2825     Roo.bootstrap.CardFooter.superclass.constructor.call(this, config);
2826 };
2827
2828 Roo.extend(Roo.bootstrap.CardFooter, Roo.bootstrap.Element,  {
2829     
2830     
2831     container_method : 'getCardFooter' 
2832     
2833      
2834     
2835     
2836    
2837 });
2838
2839  
2840
2841  /*
2842  * - LGPL
2843  *
2844  * Card header - holder for the card header elements.
2845  * 
2846  */
2847
2848 /**
2849  * @class Roo.bootstrap.CardImageTop
2850  * @extends Roo.bootstrap.Element
2851  * @parent Roo.bootstrap.Card
2852  * @children Roo.bootstrap.Component
2853  * Bootstrap CardImageTop class
2854  * 
2855  * @constructor
2856  * Create a new Card Image Top container
2857  * @param {Object} config The config object
2858  */
2859
2860 Roo.bootstrap.CardImageTop = function(config){
2861     Roo.bootstrap.CardImageTop.superclass.constructor.call(this, config);
2862 };
2863
2864 Roo.extend(Roo.bootstrap.CardImageTop, Roo.bootstrap.Element,  {
2865     
2866    
2867     container_method : 'getCardImageTop' 
2868     
2869      
2870     
2871    
2872 });
2873
2874  
2875
2876  
2877 /*
2878 * Licence: LGPL
2879 */
2880
2881 /**
2882  * @class Roo.bootstrap.ButtonUploader
2883  * @extends Roo.bootstrap.Button
2884  * Bootstrap Button Uploader class - it's a button which when you add files to it
2885  *
2886  * 
2887  * @cfg {Number} errorTimeout default 3000
2888  * @cfg {Array}  images  an array of ?? Img objects ??? when loading existing files..
2889  * @cfg {Array}  html The button text.
2890  * @cfg {Boolean}  multiple (default true) Should the upload allow multiple files to be uploaded.
2891  *
2892  * @constructor
2893  * Create a new CardUploader
2894  * @param {Object} config The config object
2895  */
2896
2897 Roo.bootstrap.ButtonUploader = function(config){
2898     
2899  
2900     
2901     Roo.bootstrap.ButtonUploader.superclass.constructor.call(this, config);
2902     
2903      
2904      this.addEvents({
2905          // raw events
2906         /**
2907          * @event beforeselect
2908          * When button is pressed, before show upload files dialog is shown
2909          * @param {Roo.bootstrap.UploaderButton} this
2910          *
2911          */
2912         'beforeselect' : true,
2913          /**
2914          * @event fired when files have been selected, 
2915          * When a the download link is clicked
2916          * @param {Roo.bootstrap.UploaderButton} this
2917          * @param {Array} Array of files that have been uploaded
2918          */
2919         'uploaded' : true
2920         
2921     });
2922 };
2923  
2924 Roo.extend(Roo.bootstrap.ButtonUploader, Roo.bootstrap.Button,  {
2925     
2926      
2927     errorTimeout : 3000,
2928      
2929     images : false,
2930    
2931     fileCollection : false,
2932     allowBlank : true,
2933     
2934     multiple : true,
2935     
2936     getAutoCreate : function()
2937     {
2938        
2939         
2940         return  {
2941             cls :'div' ,
2942             cn : [
2943                 Roo.bootstrap.Button.prototype.getAutoCreate.call(this) 
2944             ]
2945         };
2946            
2947          
2948     },
2949      
2950    
2951     initEvents : function()
2952     {
2953         
2954         Roo.bootstrap.Button.prototype.initEvents.call(this);
2955         
2956         
2957         
2958         
2959         
2960         this.urlAPI = (window.createObjectURL && window) || 
2961                                 (window.URL && URL.revokeObjectURL && URL) || 
2962                                 (window.webkitURL && webkitURL);
2963                         
2964         var im = {
2965             tag: 'input',
2966             type : 'file',
2967             cls : 'd-none  roo-card-upload-selector' 
2968           
2969         };
2970         if (this.multiple) {
2971             im.multiple = 'multiple';
2972         }
2973         this.selectorEl = Roo.get(document.body).createChild(im); // so it does not capture click event for navitem.
2974        
2975         //this.selectorEl = this.el.select('.roo-card-upload-selector', true).first();
2976         
2977         this.selectorEl.on('change', this.onFileSelected, this);
2978          
2979          
2980        
2981     },
2982     
2983    
2984     onClick : function(e)
2985     {
2986         e.preventDefault();
2987         
2988         if ( this.fireEvent('beforeselect', this) === false) {
2989             return;
2990         }
2991          
2992         this.selectorEl.dom.click();
2993          
2994     },
2995     
2996     onFileSelected : function(e)
2997     {
2998         e.preventDefault();
2999         
3000         if(typeof(this.selectorEl.dom.files) == 'undefined' || !this.selectorEl.dom.files.length){
3001             return;
3002         }
3003         var files = Array.prototype.slice.call(this.selectorEl.dom.files);
3004         this.selectorEl.dom.value  = '';// hopefully reset..
3005         
3006         this.fireEvent('uploaded', this,  files );
3007         
3008     },
3009     
3010        
3011    
3012     
3013     /**
3014      * addCard - add an Attachment to the uploader
3015      * @param data - the data about the image to upload
3016      *
3017      * {
3018           id : 123
3019           title : "Title of file",
3020           is_uploaded : false,
3021           src : "http://.....",
3022           srcfile : { the File upload object },
3023           mimetype : file.type,
3024           preview : false,
3025           is_deleted : 0
3026           .. any other data...
3027         }
3028      *
3029      * 
3030     */
3031      
3032     reset: function()
3033     {
3034          
3035          this.selectorEl
3036     } 
3037     
3038     
3039     
3040     
3041 });
3042  /*
3043  * - LGPL
3044  *
3045  * image
3046  * 
3047  */
3048
3049
3050 /**
3051  * @class Roo.bootstrap.Img
3052  * @extends Roo.bootstrap.Component
3053  * Bootstrap Img class
3054  * @cfg {Boolean} imgResponsive false | true
3055  * @cfg {String} border rounded | circle | thumbnail
3056  * @cfg {String} src image source
3057  * @cfg {String} alt image alternative text
3058  * @cfg {String} href a tag href
3059  * @cfg {String} target (_self|_blank|_parent|_top)target for a href.
3060  * @cfg {String} xsUrl xs image source
3061  * @cfg {String} smUrl sm image source
3062  * @cfg {String} mdUrl md image source
3063  * @cfg {String} lgUrl lg image source
3064  * @cfg {Boolean} backgroundContain (use style background and contain image in content)
3065  * 
3066  * @constructor
3067  * Create a new Input
3068  * @param {Object} config The config object
3069  */
3070
3071 Roo.bootstrap.Img = function(config){
3072     Roo.bootstrap.Img.superclass.constructor.call(this, config);
3073     
3074     this.addEvents({
3075         // img events
3076         /**
3077          * @event click
3078          * The img click event for the img.
3079          * @param {Roo.EventObject} e
3080          */
3081         "click" : true,
3082         /**
3083          * @event load
3084          * The when any image loads
3085          * @param {Roo.EventObject} e
3086          */
3087         "load" : true
3088     });
3089 };
3090
3091 Roo.extend(Roo.bootstrap.Img, Roo.bootstrap.Component,  {
3092     
3093     imgResponsive: true,
3094     border: '',
3095     src: 'about:blank',
3096     href: false,
3097     target: false,
3098     xsUrl: '',
3099     smUrl: '',
3100     mdUrl: '',
3101     lgUrl: '',
3102     backgroundContain : false,
3103
3104     getAutoCreate : function()
3105     {   
3106         if(this.src || (!this.xsUrl && !this.smUrl && !this.mdUrl && !this.lgUrl)){
3107             return this.createSingleImg();
3108         }
3109         
3110         var cfg = {
3111             tag: 'div',
3112             cls: 'roo-image-responsive-group',
3113             cn: []
3114         };
3115         var _this = this;
3116         
3117         Roo.each(['xs', 'sm', 'md', 'lg'], function(size){
3118             
3119             if(!_this[size + 'Url']){
3120                 return;
3121             }
3122             
3123             var img = {
3124                 tag: 'img',
3125                 cls: (_this.imgResponsive) ? 'img-responsive' : '',
3126                 html: _this.html || cfg.html,
3127                 src: _this[size + 'Url']
3128             };
3129             
3130             img.cls += ' roo-image-responsive-' + size;
3131             
3132             var s = ['xs', 'sm', 'md', 'lg'];
3133             
3134             s.splice(s.indexOf(size), 1);
3135             
3136             Roo.each(s, function(ss){
3137                 img.cls += ' hidden-' + ss;
3138             });
3139             
3140             if (['rounded','circle','thumbnail'].indexOf(_this.border)>-1) {
3141                 cfg.cls += ' img-' + _this.border;
3142             }
3143             
3144             if(_this.alt){
3145                 cfg.alt = _this.alt;
3146             }
3147             
3148             if(_this.href){
3149                 var a = {
3150                     tag: 'a',
3151                     href: _this.href,
3152                     cn: [
3153                         img
3154                     ]
3155                 };
3156
3157                 if(this.target){
3158                     a.target = _this.target;
3159                 }
3160             }
3161             
3162             cfg.cn.push((_this.href) ? a : img);
3163             
3164         });
3165         
3166         return cfg;
3167     },
3168     
3169     createSingleImg : function()
3170     {
3171         var cfg = {
3172             tag: 'img',
3173             cls: (this.imgResponsive) ? 'img-responsive' : '',
3174             html : null,
3175             src : Roo.BLANK_IMAGE_URL  // just incase src get's set to undefined?!?
3176         };
3177         
3178         if (this.backgroundContain) {
3179             cfg.cls += ' background-contain';
3180         }
3181         
3182         cfg.html = this.html || cfg.html;
3183         
3184         if (this.backgroundContain) {
3185             cfg.style="background-image: url(" + this.src + ')';
3186         } else {
3187             cfg.src = this.src || cfg.src;
3188         }
3189         
3190         if (['rounded','circle','thumbnail'].indexOf(this.border)>-1) {
3191             cfg.cls += ' img-' + this.border;
3192         }
3193         
3194         if(this.alt){
3195             cfg.alt = this.alt;
3196         }
3197         
3198         if(this.href){
3199             var a = {
3200                 tag: 'a',
3201                 href: this.href,
3202                 cn: [
3203                     cfg
3204                 ]
3205             };
3206             
3207             if(this.target){
3208                 a.target = this.target;
3209             }
3210             
3211         }
3212         
3213         return (this.href) ? a : cfg;
3214     },
3215     
3216     initEvents: function() 
3217     {
3218         if(!this.href){
3219             this.el.on('click', this.onClick, this);
3220         }
3221         if(this.src || (!this.xsUrl && !this.smUrl && !this.mdUrl && !this.lgUrl)){
3222             this.el.on('load', this.onImageLoad, this);
3223         } else {
3224             // not sure if this works.. not tested
3225             this.el.select('img', true).on('load', this.onImageLoad, this);
3226         }
3227         
3228     },
3229     
3230     onClick : function(e)
3231     {
3232         Roo.log('img onclick');
3233         this.fireEvent('click', this, e);
3234     },
3235     onImageLoad: function(e)
3236     {
3237         Roo.log('img load');
3238         this.fireEvent('load', this, e);
3239     },
3240     
3241     /**
3242      * Sets the url of the image - used to update it
3243      * @param {String} url the url of the image
3244      */
3245     
3246     setSrc : function(url)
3247     {
3248         this.src =  url;
3249         
3250         if(this.src || (!this.xsUrl && !this.smUrl && !this.mdUrl && !this.lgUrl)){
3251             if (this.backgroundContain) {
3252                 this.el.dom.style.backgroundImage =  'url(' + url + ')';
3253             } else {
3254                 this.el.dom.src =  url;
3255             }
3256             return;
3257         }
3258         
3259         this.el.select('img', true).first().dom.src =  url;
3260     }
3261     
3262     
3263    
3264 });
3265
3266  /*
3267  * - LGPL
3268  *
3269  * image
3270  * 
3271  */
3272
3273
3274 /**
3275  * @class Roo.bootstrap.Link
3276  * @extends Roo.bootstrap.Component
3277  * @children Roo.bootstrap.Component
3278  * Bootstrap Link Class (eg. '<a href>')
3279  
3280  * @cfg {String} alt image alternative text
3281  * @cfg {String} href a tag href
3282  * @cfg {String} target (_self|_blank|_parent|_top) target for a href.
3283  * @cfg {String} html the content of the link.
3284  * @cfg {String} anchor name for the anchor link
3285  * @cfg {String} fa - favicon
3286
3287  * @cfg {Boolean} preventDefault (true | false) default false
3288
3289  * 
3290  * @constructor
3291  * Create a new Input
3292  * @param {Object} config The config object
3293  */
3294
3295 Roo.bootstrap.Link = function(config){
3296     Roo.bootstrap.Link.superclass.constructor.call(this, config);
3297     
3298     this.addEvents({
3299         // img events
3300         /**
3301          * @event click
3302          * The img click event for the img.
3303          * @param {Roo.EventObject} e
3304          */
3305         "click" : true
3306     });
3307 };
3308
3309 Roo.extend(Roo.bootstrap.Link, Roo.bootstrap.Component,  {
3310     
3311     href: false,
3312     target: false,
3313     preventDefault: false,
3314     anchor : false,
3315     alt : false,
3316     fa: false,
3317
3318
3319     getAutoCreate : function()
3320     {
3321         var html = this.html || '';
3322         
3323         if (this.fa !== false) {
3324             html = '<i class="fa fa-' + this.fa + '"></i>';
3325         }
3326         var cfg = {
3327             tag: 'a'
3328         };
3329         // anchor's do not require html/href...
3330         if (this.anchor === false) {
3331             cfg.html = html;
3332             cfg.href = this.href || '#';
3333         } else {
3334             cfg.name = this.anchor;
3335             if (this.html !== false || this.fa !== false) {
3336                 cfg.html = html;
3337             }
3338             if (this.href !== false) {
3339                 cfg.href = this.href;
3340             }
3341         }
3342         
3343         if(this.alt !== false){
3344             cfg.alt = this.alt;
3345         }
3346         
3347         
3348         if(this.target !== false) {
3349             cfg.target = this.target;
3350         }
3351         
3352         return cfg;
3353     },
3354     
3355     initEvents: function() {
3356         
3357         if(!this.href || this.preventDefault){
3358             this.el.on('click', this.onClick, this);
3359         }
3360     },
3361     
3362     onClick : function(e)
3363     {
3364         if(this.preventDefault){
3365             e.preventDefault();
3366         }
3367         //Roo.log('img onclick');
3368         this.fireEvent('click', this, e);
3369     }
3370    
3371 });
3372
3373  /*
3374  * - LGPL
3375  *
3376  * header
3377  * 
3378  */
3379
3380 /**
3381  * @class Roo.bootstrap.Header
3382  * @extends Roo.bootstrap.Component
3383  * @children Roo.bootstrap.Component
3384  * Bootstrap Header class
3385  *
3386  * 
3387  * @cfg {String} html content of header
3388  * @cfg {Number} level (1|2|3|4|5|6) default 1
3389  * 
3390  * @constructor
3391  * Create a new Header
3392  * @param {Object} config The config object
3393  */
3394
3395
3396 Roo.bootstrap.Header  = function(config){
3397     Roo.bootstrap.Header.superclass.constructor.call(this, config);
3398 };
3399
3400 Roo.extend(Roo.bootstrap.Header, Roo.bootstrap.Component,  {
3401     
3402     //href : false,
3403     html : false,
3404     level : 1,
3405     
3406     
3407     
3408     getAutoCreate : function(){
3409         
3410         
3411         
3412         var cfg = {
3413             tag: 'h' + (1 *this.level),
3414             html: this.html || ''
3415         } ;
3416         
3417         return cfg;
3418     }
3419    
3420 });
3421
3422  
3423
3424  /**
3425  * @class Roo.bootstrap.MenuMgr
3426  * @licence LGPL
3427  * Provides a common registry of all menu items on a page so that they can be easily accessed by id.
3428  * @static
3429  */
3430 Roo.bootstrap.menu.Manager = function(){
3431    var menus, active, groups = {}, attached = false, lastShow = new Date();
3432
3433    // private - called when first menu is created
3434    function init(){
3435        menus = {};
3436        active = new Roo.util.MixedCollection();
3437        Roo.get(document).addKeyListener(27, function(){
3438            if(active.length > 0){
3439                hideAll();
3440            }
3441        });
3442    }
3443
3444    // private
3445    function hideAll(){
3446        if(active && active.length > 0){
3447            var c = active.clone();
3448            c.each(function(m){
3449                m.hide();
3450            });
3451        }
3452    }
3453
3454    // private
3455    function onHide(m){
3456        active.remove(m);
3457        if(active.length < 1){
3458            Roo.get(document).un("mouseup", onMouseDown);
3459             
3460            attached = false;
3461        }
3462    }
3463
3464    // private
3465    function onShow(m){
3466        var last = active.last();
3467        lastShow = new Date();
3468        active.add(m);
3469        if(!attached){
3470           Roo.get(document).on("mouseup", onMouseDown);
3471            
3472            attached = true;
3473        }
3474        if(m.parentMenu){
3475           //m.getEl().setZIndex(parseInt(m.parentMenu.getEl().getStyle("z-index"), 10) + 3);
3476           m.parentMenu.activeChild = m;
3477        }else if(last && last.isVisible()){
3478           //m.getEl().setZIndex(parseInt(last.getEl().getStyle("z-index"), 10) + 3);
3479        }
3480    }
3481
3482    // private
3483    function onBeforeHide(m){
3484        if(m.activeChild){
3485            m.activeChild.hide();
3486        }
3487        if(m.autoHideTimer){
3488            clearTimeout(m.autoHideTimer);
3489            delete m.autoHideTimer;
3490        }
3491    }
3492
3493    // private
3494    function onBeforeShow(m){
3495        var pm = m.parentMenu;
3496        if(!pm && !m.allowOtherMenus){
3497            hideAll();
3498        }else if(pm && pm.activeChild && active != m){
3499            pm.activeChild.hide();
3500        }
3501    }
3502
3503    // private this should really trigger on mouseup..
3504    function onMouseDown(e){
3505         Roo.log("on Mouse Up");
3506         
3507         if(lastShow.getElapsed() > 50 && active.length > 0 && !e.getTarget(".dropdown-menu") && !e.getTarget('.user-menu')){
3508             Roo.log("MenuManager hideAll");
3509             hideAll();
3510             e.stopEvent();
3511         }
3512         
3513         
3514    }
3515
3516    // private
3517    function onBeforeCheck(mi, state){
3518        if(state){
3519            var g = groups[mi.group];
3520            for(var i = 0, l = g.length; i < l; i++){
3521                if(g[i] != mi){
3522                    g[i].setChecked(false);
3523                }
3524            }
3525        }
3526    }
3527
3528    return {
3529
3530        /**
3531         * Hides all menus that are currently visible
3532         */
3533        hideAll : function(){
3534             hideAll();  
3535        },
3536
3537        // private
3538        register : function(menu){
3539            if(!menus){
3540                init();
3541            }
3542            menus[menu.id] = menu;
3543            menu.on("beforehide", onBeforeHide);
3544            menu.on("hide", onHide);
3545            menu.on("beforeshow", onBeforeShow);
3546            menu.on("show", onShow);
3547            var g = menu.group;
3548            if(g && menu.events["checkchange"]){
3549                if(!groups[g]){
3550                    groups[g] = [];
3551                }
3552                groups[g].push(menu);
3553                menu.on("checkchange", onCheck);
3554            }
3555        },
3556
3557         /**
3558          * Returns a {@link Roo.menu.Menu} object
3559          * @param {String/Object} menu The string menu id, an existing menu object reference, or a Menu config that will
3560          * be used to generate and return a new Menu instance.
3561          */
3562        get : function(menu){
3563            if(typeof menu == "string"){ // menu id
3564                return menus[menu];
3565            }else if(menu.events){  // menu instance
3566                return menu;
3567            }
3568            /*else if(typeof menu.length == 'number'){ // array of menu items?
3569                return new Roo.bootstrap.Menu({items:menu});
3570            }else{ // otherwise, must be a config
3571                return new Roo.bootstrap.Menu(menu);
3572            }
3573            */
3574            return false;
3575        },
3576
3577        // private
3578        unregister : function(menu){
3579            delete menus[menu.id];
3580            menu.un("beforehide", onBeforeHide);
3581            menu.un("hide", onHide);
3582            menu.un("beforeshow", onBeforeShow);
3583            menu.un("show", onShow);
3584            var g = menu.group;
3585            if(g && menu.events["checkchange"]){
3586                groups[g].remove(menu);
3587                menu.un("checkchange", onCheck);
3588            }
3589        },
3590
3591        // private
3592        registerCheckable : function(menuItem){
3593            var g = menuItem.group;
3594            if(g){
3595                if(!groups[g]){
3596                    groups[g] = [];
3597                }
3598                groups[g].push(menuItem);
3599                menuItem.on("beforecheckchange", onBeforeCheck);
3600            }
3601        },
3602
3603        // private
3604        unregisterCheckable : function(menuItem){
3605            var g = menuItem.group;
3606            if(g){
3607                groups[g].remove(menuItem);
3608                menuItem.un("beforecheckchange", onBeforeCheck);
3609            }
3610        }
3611    };
3612 }(); 
3613 /**
3614  * @class Roo.bootstrap.menu.Menu
3615  * @extends Roo.bootstrap.Component
3616  * @licence LGPL
3617  * @children Roo.bootstrap.menu.Item Roo.bootstrap.menu.Separator
3618  * @parent none
3619  * Bootstrap Menu class - container for MenuItems - normally has to be added to a object that supports the menu property
3620  * 
3621  * @cfg {String} type (dropdown|treeview|submenu) type of menu
3622  * @cfg {bool} hidden  if the menu should be hidden when rendered.
3623  * @cfg {bool} stopEvent (true|false)  Stop event after trigger press (default true)
3624  * @cfg {bool} isLink (true|false)  the menu has link disable auto expand and collaspe (default false)
3625 * @cfg {bool} hideTrigger (true|false)  default false - hide the carret for trigger.
3626 * @cfg {String} align  default tl-bl? == below  - how the menu should be aligned. 
3627  
3628  * @constructor
3629  * Create a new Menu
3630  * @param {Object} config The config objectQ
3631  */
3632
3633
3634 Roo.bootstrap.menu.Menu = function(config){
3635     
3636     if (config.type == 'treeview') {
3637         // normally menu's are drawn attached to the document to handle layering etc..
3638         // however treeview (used by the docs menu is drawn into the parent element)
3639         this.container_method = 'getChildContainer'; 
3640     }
3641     
3642     Roo.bootstrap.menu.Menu.superclass.constructor.call(this, config);
3643     if (this.registerMenu && this.type != 'treeview')  {
3644         Roo.bootstrap.menu.Manager.register(this);
3645     }
3646     
3647     
3648     this.addEvents({
3649         /**
3650          * @event beforeshow
3651          * Fires before this menu is displayed (return false to block)
3652          * @param {Roo.menu.Menu} this
3653          */
3654         beforeshow : true,
3655         /**
3656          * @event beforehide
3657          * Fires before this menu is hidden (return false to block)
3658          * @param {Roo.menu.Menu} this
3659          */
3660         beforehide : true,
3661         /**
3662          * @event show
3663          * Fires after this menu is displayed
3664          * @param {Roo.menu.Menu} this
3665          */
3666         show : true,
3667         /**
3668          * @event hide
3669          * Fires after this menu is hidden
3670          * @param {Roo.menu.Menu} this
3671          */
3672         hide : true,
3673         /**
3674          * @event click
3675          * Fires when this menu is clicked (or when the enter key is pressed while it is active)
3676          * @param {Roo.menu.Menu} this
3677          * @param {Roo.menu.Item} menuItem The menu item that was clicked
3678          * @param {Roo.EventObject} e
3679          */
3680         click : true,
3681         /**
3682          * @event mouseover
3683          * Fires when the mouse is hovering over this menu
3684          * @param {Roo.menu.Menu} this
3685          * @param {Roo.EventObject} e
3686          * @param {Roo.menu.Item} menuItem The menu item that was clicked
3687          */
3688         mouseover : true,
3689         /**
3690          * @event mouseout
3691          * Fires when the mouse exits this menu
3692          * @param {Roo.menu.Menu} this
3693          * @param {Roo.EventObject} e
3694          * @param {Roo.menu.Item} menuItem The menu item that was clicked
3695          */
3696         mouseout : true,
3697         /**
3698          * @event itemclick
3699          * Fires when a menu item contained in this menu is clicked
3700          * @param {Roo.menu.BaseItem} baseItem The BaseItem that was clicked
3701          * @param {Roo.EventObject} e
3702          */
3703         itemclick: true
3704     });
3705     this.menuitems = new Roo.util.MixedCollection(false, function(o) { return o.el.id; });
3706 };
3707
3708 Roo.extend(Roo.bootstrap.menu.Menu, Roo.bootstrap.Component,  {
3709     
3710    /// html : false,
3711    
3712     triggerEl : false,  // is this set by component builder? -- it should really be fetched from parent()???
3713     type: false,
3714     /**
3715      * @cfg {Boolean} registerMenu True (default) - means that clicking on screen etc. hides it.
3716      */
3717     registerMenu : true,
3718     
3719     menuItems :false, // stores the menu items..
3720     
3721     hidden:true,
3722         
3723     parentMenu : false,
3724     
3725     stopEvent : true,
3726     
3727     isLink : false,
3728     
3729     container_method : 'getDocumentBody', // so the menu is rendered on the body and zIndex works.
3730     
3731     hideTrigger : false,
3732     
3733     align : 'tl-bl?',
3734     
3735     
3736     getChildContainer : function() {
3737         return this.el;  
3738     },
3739     
3740     getAutoCreate : function(){
3741          
3742         //if (['right'].indexOf(this.align)!==-1) {
3743         //    cfg.cn[1].cls += ' pull-right'
3744         //}
3745          
3746         var cfg = {
3747             tag : 'ul',
3748             cls : 'dropdown-menu shadow' ,
3749             style : 'z-index:1000'
3750             
3751         };
3752         
3753         if (this.type === 'submenu') {
3754             cfg.cls = 'submenu active';
3755         }
3756         if (this.type === 'treeview') {
3757             cfg.cls = 'treeview-menu';
3758         }
3759         
3760         return cfg;
3761     },
3762     initEvents : function() {
3763         
3764        // Roo.log("ADD event");
3765        // Roo.log(this.triggerEl.dom);
3766         if (this.triggerEl) {
3767             
3768             this.triggerEl.on('click', this.onTriggerClick, this);
3769             
3770             this.triggerEl.on(Roo.isTouch ? 'touchstart' : 'mouseup', this.onTriggerPress, this);
3771             
3772             if (!this.hideTrigger) {
3773                 if (this.triggerEl.hasClass('nav-item') && this.triggerEl.select('.nav-link',true).length) {
3774                     // dropdown toggle on the 'a' in BS4?
3775                     this.triggerEl.select('.nav-link',true).first().addClass('dropdown-toggle');
3776                 } else {
3777                     this.triggerEl.addClass('dropdown-toggle');
3778                 }
3779             }
3780         }
3781         
3782         if (Roo.isTouch) {
3783             this.el.on('touchstart'  , this.onTouch, this);
3784         }
3785         this.el.on('click' , this.onClick, this);
3786
3787         this.el.on("mouseover", this.onMouseOver, this);
3788         this.el.on("mouseout", this.onMouseOut, this);
3789         
3790     },
3791     
3792     findTargetItem : function(e)
3793     {
3794         var t = e.getTarget(".dropdown-menu-item", this.el,  true);
3795         if(!t){
3796             return false;
3797         }
3798         //Roo.log(t);         Roo.log(t.id);
3799         if(t && t.id){
3800             //Roo.log(this.menuitems);
3801             return this.menuitems.get(t.id);
3802             
3803             //return this.items.get(t.menuItemId);
3804         }
3805         
3806         return false;
3807     },
3808     
3809     onTouch : function(e) 
3810     {
3811         Roo.log("menu.onTouch");
3812         //e.stopEvent(); this make the user popdown broken
3813         this.onClick(e);
3814     },
3815     
3816     onClick : function(e)
3817     {
3818         Roo.log("menu.onClick");
3819         
3820         var t = this.findTargetItem(e);
3821         if(!t || t.isContainer){
3822             return;
3823         }
3824         Roo.log(e);
3825         /*
3826         if (Roo.isTouch && e.type == 'touchstart' && t.menu  && !t.disabled) {
3827             if(t == this.activeItem && t.shouldDeactivate(e)){
3828                 this.activeItem.deactivate();
3829                 delete this.activeItem;
3830                 return;
3831             }
3832             if(t.canActivate){
3833                 this.setActiveItem(t, true);
3834             }
3835             return;
3836             
3837             
3838         }
3839         */
3840        
3841         Roo.log('pass click event');
3842         
3843         t.onClick(e);
3844         
3845         this.fireEvent("click", this, t, e);
3846         
3847         var _this = this;
3848         
3849         if(!t.href.length || t.href == '#'){
3850             (function() { _this.hide(); }).defer(100);
3851         }
3852         
3853     },
3854     
3855     onMouseOver : function(e){
3856         var t  = this.findTargetItem(e);
3857         //Roo.log(t);
3858         //if(t){
3859         //    if(t.canActivate && !t.disabled){
3860         //        this.setActiveItem(t, true);
3861         //    }
3862         //}
3863         
3864         this.fireEvent("mouseover", this, e, t);
3865     },
3866     isVisible : function(){
3867         return !this.hidden;
3868     },
3869     onMouseOut : function(e){
3870         var t  = this.findTargetItem(e);
3871         
3872         //if(t ){
3873         //    if(t == this.activeItem && t.shouldDeactivate(e)){
3874         //        this.activeItem.deactivate();
3875         //        delete this.activeItem;
3876         //    }
3877         //}
3878         this.fireEvent("mouseout", this, e, t);
3879     },
3880     
3881     
3882     /**
3883      * Displays this menu relative to another element
3884      * @param {String/HTMLElement/Roo.Element} element The element to align to
3885      * @param {String} position (optional) The {@link Roo.Element#alignTo} anchor position to use in aligning to
3886      * the element (defaults to this.defaultAlign)
3887      * @param {Roo.menu.Menu} parentMenu (optional) This menu's parent menu, if applicable (defaults to undefined)
3888      */
3889     show : function(el, pos, parentMenu)
3890     {
3891         if (false === this.fireEvent("beforeshow", this)) {
3892             Roo.log("show canceled");
3893             return;
3894         }
3895         this.parentMenu = parentMenu;
3896         if(!this.el){
3897             this.render();
3898         }
3899         this.el.addClass('show'); // show otherwise we do not know how big we are..
3900          
3901         var xy = this.el.getAlignToXY(el, pos);
3902         
3903         // bl-tl << left align  below
3904         // tl-bl << left align 
3905         
3906         if(this.el.getWidth() + xy[0] >= Roo.lib.Dom.getViewWidth()){
3907             // if it goes to far to the right.. -> align left.
3908             xy = this.el.getAlignToXY(el, this.align.replace('/l/g', 'r'))
3909         }
3910         if(xy[0] < 0){
3911             // was left align - go right?
3912             xy = this.el.getAlignToXY(el, this.align.replace('/r/g', 'l'))
3913         }
3914         
3915         // goes down the bottom
3916         if(this.el.getHeight() + xy[1] >= Roo.lib.Dom.getViewHeight() ||
3917            xy[1]  < 0 ){
3918             var a = this.align.replace('?', '').split('-');
3919             xy = this.el.getAlignToXY(el, a[1]  + '-' + a[0] + '?')
3920             
3921         }
3922         
3923         this.showAt(  xy , parentMenu, false);
3924     },
3925      /**
3926      * Displays this menu at a specific xy position
3927      * @param {Array} xyPosition Contains X & Y [x, y] values for the position at which to show the menu (coordinates are page-based)
3928      * @param {Roo.menu.Menu} parentMenu (optional) This menu's parent menu, if applicable (defaults to undefined)
3929      */
3930     showAt : function(xy, parentMenu, /* private: */_e){
3931         this.parentMenu = parentMenu;
3932         if(!this.el){
3933             this.render();
3934         }
3935         if(_e !== false){
3936             this.fireEvent("beforeshow", this);
3937             //xy = this.el.adjustForConstraints(xy);
3938         }
3939         
3940         //this.el.show();
3941         this.hideMenuItems();
3942         this.hidden = false;
3943         if (this.triggerEl) {
3944             this.triggerEl.addClass('open');
3945         }
3946         
3947         this.el.addClass('show');
3948         
3949         
3950         
3951         // reassign x when hitting right
3952         
3953         // reassign y when hitting bottom
3954         
3955         // but the list may align on trigger left or trigger top... should it be a properity?
3956         
3957         if(this.el.getStyle('top') != 'auto' && this.el.getStyle('top').slice(-1) != "%"){
3958             this.el.setXY(xy);
3959         }
3960         
3961         this.focus();
3962         this.fireEvent("show", this);
3963     },
3964     
3965     focus : function(){
3966         return;
3967         if(!this.hidden){
3968             this.doFocus.defer(50, this);
3969         }
3970     },
3971
3972     doFocus : function(){
3973         if(!this.hidden){
3974             this.focusEl.focus();
3975         }
3976     },
3977
3978     /**
3979      * Hides this menu and optionally all parent menus
3980      * @param {Boolean} deep (optional) True to hide all parent menus recursively, if any (defaults to false)
3981      */
3982     hide : function(deep)
3983     {
3984         if (false === this.fireEvent("beforehide", this)) {
3985             Roo.log("hide canceled");
3986             return;
3987         }
3988         this.hideMenuItems();
3989         if(this.el && this.isVisible()){
3990            
3991             if(this.activeItem){
3992                 this.activeItem.deactivate();
3993                 this.activeItem = null;
3994             }
3995             if (this.triggerEl) {
3996                 this.triggerEl.removeClass('open');
3997             }
3998             
3999             this.el.removeClass('show');
4000             this.hidden = true;
4001             this.fireEvent("hide", this);
4002         }
4003         if(deep === true && this.parentMenu){
4004             this.parentMenu.hide(true);
4005         }
4006     },
4007     
4008     onTriggerClick : function(e)
4009     {
4010         Roo.log('trigger click');
4011         
4012         var target = e.getTarget();
4013         
4014         Roo.log(target.nodeName.toLowerCase());
4015         
4016         if(target.nodeName.toLowerCase() === 'i'){
4017             e.preventDefault();
4018         }
4019         
4020     },
4021     
4022     onTriggerPress  : function(e)
4023     {
4024         Roo.log('trigger press');
4025         //Roo.log(e.getTarget());
4026        // Roo.log(this.triggerEl.dom);
4027        
4028         // trigger only occurs on normal menu's -- if it's a treeview or dropdown... do not hide/show..
4029         var pel = Roo.get(e.getTarget());
4030         if (pel.findParent('.dropdown-menu') || pel.findParent('.treeview-menu') ) {
4031             Roo.log('is treeview or dropdown?');
4032             return;
4033         }
4034         
4035         if(e.getTarget().nodeName.toLowerCase() !== 'i' && this.isLink){
4036             return;
4037         }
4038         
4039         if (this.isVisible()) {
4040             Roo.log('hide');
4041             this.hide();
4042         } else {
4043             Roo.log('show');
4044             
4045             this.show(this.triggerEl, this.align, false);
4046         }
4047         
4048         if(this.stopEvent || e.getTarget().nodeName.toLowerCase() === 'i'){
4049             e.stopEvent();
4050         }
4051         
4052     },
4053        
4054     
4055     hideMenuItems : function()
4056     {
4057         Roo.log("hide Menu Items");
4058         if (!this.el) { 
4059             return;
4060         }
4061         
4062         this.el.select('.open',true).each(function(aa) {
4063             
4064             aa.removeClass('open');
4065          
4066         });
4067     },
4068     addxtypeChild : function (tree, cntr) {
4069         var comp= Roo.bootstrap.menu.Menu.superclass.addxtypeChild.call(this, tree, cntr);
4070           
4071         this.menuitems.add(comp);
4072         return comp;
4073
4074     },
4075     getEl : function()
4076     {
4077         Roo.log(this.el);
4078         return this.el;
4079     },
4080     
4081     clear : function()
4082     {
4083         this.getEl().dom.innerHTML = '';
4084         this.menuitems.clear();
4085     }
4086 });
4087
4088  
4089  /**
4090  * @class Roo.bootstrap.menu.Item
4091  * @extends Roo.bootstrap.Component
4092  * @children  Roo.bootstrap.Button Roo.bootstrap.ButtonUploader Roo.bootstrap.Row Roo.bootstrap.Column Roo.bootstrap.Container
4093  * @parent Roo.bootstrap.menu.Menu
4094  * @licence LGPL
4095  * Bootstrap MenuItem class
4096  * 
4097  * @cfg {String} html the menu label
4098  * @cfg {String} href the link
4099  * @cfg {Boolean} preventDefault do not trigger A href on clicks (default false).
4100  * @cfg {Boolean} isContainer is it a container - just returns a drop down item..
4101  * @cfg {Boolean} active  used on sidebars to highlight active itesm
4102  * @cfg {String} fa favicon to show on left of menu item.
4103  * @cfg {Roo.bootsrap.Menu} menu the child menu.
4104  * 
4105  * 
4106  * @constructor
4107  * Create a new MenuItem
4108  * @param {Object} config The config object
4109  */
4110
4111
4112 Roo.bootstrap.menu.Item = function(config){
4113     Roo.bootstrap.menu.Item.superclass.constructor.call(this, config);
4114     this.addEvents({
4115         // raw events
4116         /**
4117          * @event click
4118          * The raw click event for the entire grid.
4119          * @param {Roo.bootstrap.menu.Item} this
4120          * @param {Roo.EventObject} e
4121          */
4122         "click" : true
4123     });
4124 };
4125
4126 Roo.extend(Roo.bootstrap.menu.Item, Roo.bootstrap.Component,  {
4127     
4128     href : false,
4129     html : false,
4130     preventDefault: false,
4131     isContainer : false,
4132     active : false,
4133     fa: false,
4134     
4135     getAutoCreate : function(){
4136         
4137         if(this.isContainer){
4138             return {
4139                 tag: 'li',
4140                 cls: 'dropdown-menu-item '
4141             };
4142         }
4143         var ctag = {
4144             tag: 'span',
4145             html: 'Link'
4146         };
4147         
4148         var anc = {
4149             tag : 'a',
4150             cls : 'dropdown-item',
4151             href : '#',
4152             cn : [  ]
4153         };
4154         
4155         if (this.fa !== false) {
4156             anc.cn.push({
4157                 tag : 'i',
4158                 cls : 'fa fa-' + this.fa
4159             });
4160         }
4161         
4162         anc.cn.push(ctag);
4163         
4164         
4165         var cfg= {
4166             tag: 'li',
4167             cls: 'dropdown-menu-item',
4168             cn: [ anc ]
4169         };
4170         if (this.parent().type == 'treeview') {
4171             cfg.cls = 'treeview-menu';
4172         }
4173         if (this.active) {
4174             cfg.cls += ' active';
4175         }
4176         
4177         
4178         
4179         anc.href = this.href || cfg.cn[0].href ;
4180         ctag.html = this.html || cfg.cn[0].html ;
4181         return cfg;
4182     },
4183     
4184     initEvents: function()
4185     {
4186         if (this.parent().type == 'treeview') {
4187             this.el.select('a').on('click', this.onClick, this);
4188         }
4189         
4190         if (this.menu) {
4191             this.menu.parentType = this.xtype;
4192             this.menu.triggerEl = this.el;
4193             this.menu = this.addxtype(Roo.apply({}, this.menu));
4194         }
4195         
4196     },
4197     onClick : function(e)
4198     {
4199         //Roo.log('item on click ');
4200         
4201         if(this.href === false || this.preventDefault){
4202             e.preventDefault();
4203         }
4204         //this.parent().hideMenuItems();
4205         
4206         this.fireEvent('click', this, e);
4207     },
4208     getEl : function()
4209     {
4210         return this.el;
4211     } 
4212 });
4213
4214  
4215
4216  
4217
4218   
4219 /**
4220  * @class Roo.bootstrap.menu.Separator
4221  * @extends Roo.bootstrap.Component
4222  * @licence LGPL
4223  * @parent Roo.bootstrap.menu.Menu
4224  * Bootstrap Separator class
4225  * 
4226  * @constructor
4227  * Create a new Separator
4228  * @param {Object} config The config object
4229  */
4230
4231
4232 Roo.bootstrap.menu.Separator = function(config){
4233     Roo.bootstrap.menu.Separator.superclass.constructor.call(this, config);
4234 };
4235
4236 Roo.extend(Roo.bootstrap.menu.Separator, Roo.bootstrap.Component,  {
4237     
4238     getAutoCreate : function(){
4239         var cfg = {
4240             tag : 'li',
4241             cls: 'dropdown-divider divider'
4242         };
4243         
4244         return cfg;
4245     }
4246    
4247 });
4248
4249  
4250
4251  
4252 /*
4253 * Licence: LGPL
4254 */
4255
4256 /**
4257  * @class Roo.bootstrap.Modal
4258  * @extends Roo.bootstrap.Component
4259  * @parent none builder
4260  * @children Roo.bootstrap.Component
4261  * Bootstrap Modal class
4262  * @cfg {String} title Title of dialog
4263  * @cfg {String} html - the body of the dialog (for simple ones) - you can also use template..
4264  * @cfg {Roo.Template} tmpl - a template with variables. to use it, add a handler in show:method  adn
4265  * @cfg {Boolean} specificTitle default false
4266  * @cfg {Roo.bootstrap.Button} buttons[] Array of buttons or standard button set..
4267  * @cfg {String} buttonPosition (left|right|center) default right (DEPRICATED) - use mr-auto on buttons to put them on the left
4268  * @cfg {Boolean} animate default true
4269  * @cfg {Boolean} allow_close default true
4270  * @cfg {Boolean} fitwindow default false
4271  * @cfg {Boolean} bodyOverflow should the body element have overflow auto added default false
4272  * @cfg {Number} width fixed width - usefull for chrome extension only really.
4273  * @cfg {Number} height fixed height - usefull for chrome extension only really.
4274  * @cfg {String} size (sm|lg|xl) default empty
4275  * @cfg {Number} max_width set the max width of modal
4276  * @cfg {Boolean} editableTitle can the title be edited
4277
4278  *
4279  *
4280  * @constructor
4281  * Create a new Modal Dialog
4282  * @param {Object} config The config object
4283  */
4284
4285 Roo.bootstrap.Modal = function(config){
4286     Roo.bootstrap.Modal.superclass.constructor.call(this, config);
4287     this.addEvents({
4288         // raw events
4289         /**
4290          * @event btnclick
4291          * The raw btnclick event for the button
4292          * @param {Roo.EventObject} e
4293          */
4294         "btnclick" : true,
4295         /**
4296          * @event resize
4297          * Fire when dialog resize
4298          * @param {Roo.bootstrap.Modal} this
4299          * @param {Roo.EventObject} e
4300          */
4301         "resize" : true,
4302         /**
4303          * @event titlechanged
4304          * Fire when the editable title has been changed
4305          * @param {Roo.bootstrap.Modal} this
4306          * @param {Roo.EventObject} value
4307          */
4308         "titlechanged" : true 
4309         
4310     });
4311     this.buttons = this.buttons || [];
4312
4313     if (this.tmpl) {
4314         this.tmpl = Roo.factory(this.tmpl);
4315     }
4316
4317 };
4318
4319 Roo.extend(Roo.bootstrap.Modal, Roo.bootstrap.Component,  {
4320
4321     title : 'test dialog',
4322
4323     buttons : false,
4324
4325     // set on load...
4326
4327     html: false,
4328
4329     tmp: false,
4330
4331     specificTitle: false,
4332
4333     buttonPosition: 'right',
4334
4335     allow_close : true,
4336
4337     animate : true,
4338
4339     fitwindow: false,
4340     
4341      // private
4342     dialogEl: false,
4343     bodyEl:  false,
4344     footerEl:  false,
4345     titleEl:  false,
4346     closeEl:  false,
4347
4348     size: '',
4349     
4350     max_width: 0,
4351     
4352     max_height: 0,
4353     
4354     fit_content: false,
4355     editableTitle  : false,
4356
4357     onRender : function(ct, position)
4358     {
4359         Roo.bootstrap.Component.superclass.onRender.call(this, ct, position);
4360
4361         if(!this.el){
4362             var cfg = Roo.apply({},  this.getAutoCreate());
4363             cfg.id = Roo.id();
4364             //if(!cfg.name){
4365             //    cfg.name = typeof(this.name) == 'undefined' ? this.id : this.name;
4366             //}
4367             //if (!cfg.name.length) {
4368             //    delete cfg.name;
4369            // }
4370             if (this.cls) {
4371                 cfg.cls += ' ' + this.cls;
4372             }
4373             if (this.style) {
4374                 cfg.style = this.style;
4375             }
4376             this.el = Roo.get(document.body).createChild(cfg, position);
4377         }
4378         //var type = this.el.dom.type;
4379
4380
4381         if(this.tabIndex !== undefined){
4382             this.el.dom.setAttribute('tabIndex', this.tabIndex);
4383         }
4384
4385         this.dialogEl = this.el.select('.modal-dialog',true).first();
4386         this.bodyEl = this.el.select('.modal-body',true).first();
4387         this.closeEl = this.el.select('.modal-header .close', true).first();
4388         this.headerEl = this.el.select('.modal-header',true).first();
4389         this.titleEl = this.el.select('.modal-title',true).first();
4390         this.footerEl = this.el.select('.modal-footer',true).first();
4391
4392         this.maskEl = Roo.DomHelper.append(document.body, {tag: "div", cls:"x-dlg-mask"}, true);
4393         
4394         //this.el.addClass("x-dlg-modal");
4395
4396         if (this.buttons.length) {
4397             Roo.each(this.buttons, function(bb) {
4398                 var b = Roo.apply({}, bb);
4399                 b.xns = b.xns || Roo.bootstrap;
4400                 b.xtype = b.xtype || 'Button';
4401                 if (typeof(b.listeners) == 'undefined') {
4402                     b.listeners = { click : this.onButtonClick.createDelegate(this)  };
4403                 }
4404
4405                 var btn = Roo.factory(b);
4406
4407                 btn.render(this.getButtonContainer());
4408
4409             },this);
4410         }
4411         // render the children.
4412         var nitems = [];
4413
4414         if(typeof(this.items) != 'undefined'){
4415             var items = this.items;
4416             delete this.items;
4417
4418             for(var i =0;i < items.length;i++) {
4419                 // we force children not to montor widnow resize  - as we do that for them.
4420                 items[i].monitorWindowResize = false;
4421                 nitems.push(this.addxtype(Roo.apply({}, items[i])));
4422             }
4423         }
4424
4425         this.items = nitems;
4426
4427         // where are these used - they used to be body/close/footer
4428
4429
4430         this.initEvents();
4431         //this.el.addClass([this.fieldClass, this.cls]);
4432
4433     },
4434
4435     getAutoCreate : function()
4436     {
4437         // we will default to modal-body-overflow - might need to remove or make optional later.
4438         var bdy = {
4439                 cls : 'modal-body ' + (this.bodyOverflow ? 'overflow-auto' : ''), 
4440                 html : this.html || ''
4441         };
4442
4443         var title = {
4444             tag: 'h5',
4445             cls : 'modal-title',
4446             html : this.title
4447         };
4448
4449         if(this.specificTitle){ // WTF is this?
4450             title = this.title;
4451         }
4452
4453         var header = [];
4454         if (this.allow_close && Roo.bootstrap.version == 3) {
4455             header.push({
4456                 tag: 'button',
4457                 cls : 'close',
4458                 html : '&times'
4459             });
4460         }
4461
4462         header.push(title);
4463
4464         if (this.editableTitle) {
4465             header.push({
4466                 cls: 'form-control roo-editable-title d-none',
4467                 tag: 'input',
4468                 type: 'text'
4469             });
4470         }
4471         
4472         if (this.allow_close && Roo.bootstrap.version == 4) {
4473             header.push({
4474                 tag: 'button',
4475                 cls : 'close',
4476                 html : '&times'
4477             });
4478         }
4479         
4480         var size = '';
4481
4482         if(this.size.length){
4483             size = 'modal-' + this.size;
4484         }
4485         
4486         var footer = Roo.bootstrap.version == 3 ?
4487             {
4488                 cls : 'modal-footer',
4489                 cn : [
4490                     {
4491                         tag: 'div',
4492                         cls: 'btn-' + this.buttonPosition
4493                     }
4494                 ]
4495
4496             } :
4497             {  // BS4 uses mr-auto on left buttons....
4498                 cls : 'modal-footer'
4499             };
4500
4501             
4502
4503         
4504         
4505         var modal = {
4506             cls: "modal",
4507              cn : [
4508                 {
4509                     cls: "modal-dialog " + size,
4510                     cn : [
4511                         {
4512                             cls : "modal-content",
4513                             cn : [
4514                                 {
4515                                     cls : 'modal-header',
4516                                     cn : header
4517                                 },
4518                                 bdy,
4519                                 footer
4520                             ]
4521
4522                         }
4523                     ]
4524
4525                 }
4526             ]
4527         };
4528
4529         if(this.animate){
4530             modal.cls += ' fade';
4531         }
4532
4533         return modal;
4534
4535     },
4536     getChildContainer : function() {
4537
4538          return this.bodyEl;
4539
4540     },
4541     getButtonContainer : function() {
4542         
4543          return Roo.bootstrap.version == 4 ?
4544             this.el.select('.modal-footer',true).first()
4545             : this.el.select('.modal-footer div',true).first();
4546
4547     },
4548     
4549     closeClick : function()
4550     {
4551         this.hide();
4552     },
4553     
4554     initEvents : function()
4555     {
4556         if (this.allow_close) {
4557             this.closeEl.on('click', this.closeClick, this);
4558         }
4559         Roo.EventManager.onWindowResize(this.resize, this, true);
4560         if (this.editableTitle) {
4561             this.headerEditEl =  this.headerEl.select('.form-control',true).first();
4562             this.headerEl.on('click', function() { this.toggleHeaderInput(true) } , this);
4563             this.headerEditEl.on('keyup', function(e) {
4564                     if([  e.RETURN , e.TAB , e.ESC ].indexOf(e.keyCode) > -1) {
4565                         this.toggleHeaderInput(false)
4566                     }
4567                 }, this);
4568             this.headerEditEl.on('blur', function(e) {
4569                 this.toggleHeaderInput(false)
4570             },this);
4571         }
4572
4573     },
4574   
4575
4576     resize : function()
4577     {
4578         this.maskEl.setSize(
4579             Roo.lib.Dom.getViewWidth(true),
4580             Roo.lib.Dom.getViewHeight(true)
4581         );
4582         
4583         if (this.fitwindow) {
4584             
4585            this.dialogEl.setStyle( { 'max-width' : '100%' });
4586             this.setSize(
4587                 this.width || Roo.lib.Dom.getViewportWidth(true) - 30,
4588                 this.height || Roo.lib.Dom.getViewportHeight(true) // catering margin-top 30 margin-bottom 30
4589             );
4590             return;
4591         }
4592         
4593         if(this.max_width !== 0) {
4594             
4595             var w = Math.min(this.max_width, Roo.lib.Dom.getViewportWidth(true) - 30);
4596             
4597             if(this.height) {
4598                 this.setSize(w, this.height);
4599                 return;
4600             }
4601             
4602             if(this.max_height) {
4603                 this.setSize(w,Math.min(
4604                     this.max_height,
4605                     Roo.lib.Dom.getViewportHeight(true) - 60
4606                 ));
4607                 
4608                 return;
4609             }
4610             
4611             if(!this.fit_content) {
4612                 this.setSize(w, Roo.lib.Dom.getViewportHeight(true) - 60);
4613                 return;
4614             }
4615             
4616             this.setSize(w, Math.min(
4617                 60 +
4618                 this.headerEl.getHeight() + 
4619                 this.footerEl.getHeight() + 
4620                 this.getChildHeight(this.bodyEl.dom.childNodes),
4621                 Roo.lib.Dom.getViewportHeight(true) - 60)
4622             );
4623         }
4624         
4625     },
4626
4627     setSize : function(w,h)
4628     {
4629         if (!w && !h) {
4630             return;
4631         }
4632         
4633         this.resizeTo(w,h);
4634         // any layout/border etc.. resize..
4635         (function () {
4636             this.items.forEach( function(e) {
4637                 e.layout ? e.layout() : false;
4638
4639             });
4640         }).defer(100,this);
4641         
4642     },
4643
4644     show : function() {
4645
4646         if (!this.rendered) {
4647             this.render();
4648         }
4649         this.toggleHeaderInput(false);
4650         //this.el.setStyle('display', 'block');
4651         this.el.removeClass('hideing');
4652         this.el.dom.style.display='block';
4653         
4654         Roo.get(document.body).addClass('modal-open');
4655  
4656         if(this.animate){  // element has 'fade'  - so stuff happens after .3s ?- not sure why the delay?
4657             
4658             (function(){
4659                 this.el.addClass('show');
4660                 this.el.addClass('in');
4661             }).defer(50, this);
4662         }else{
4663             this.el.addClass('show');
4664             this.el.addClass('in');
4665         }
4666
4667         // not sure how we can show data in here..
4668         //if (this.tmpl) {
4669         //    this.getChildContainer().dom.innerHTML = this.tmpl.applyTemplate(this);
4670         //}
4671
4672         Roo.get(document.body).addClass("x-body-masked");
4673         
4674         this.maskEl.setSize(Roo.lib.Dom.getViewWidth(true),   Roo.lib.Dom.getViewHeight(true));
4675         this.maskEl.setStyle('z-index', Roo.bootstrap.Modal.zIndex++);
4676         this.maskEl.dom.style.display = 'block';
4677         this.maskEl.addClass('show');
4678         
4679         
4680         this.resize();
4681         
4682         this.fireEvent('show', this);
4683
4684         // set zindex here - otherwise it appears to be ignored...
4685         this.el.setStyle('z-index', Roo.bootstrap.Modal.zIndex++);
4686         
4687         
4688         // this is for children that are... layout.Border 
4689         (function () {
4690             this.items.forEach( function(e) {
4691                 e.layout ? e.layout() : false;
4692
4693             });
4694         }).defer(100,this);
4695
4696     },
4697     hide : function()
4698     {
4699         if(this.fireEvent("beforehide", this) !== false){
4700             
4701             this.maskEl.removeClass('show');
4702             
4703             this.maskEl.dom.style.display = '';
4704             Roo.get(document.body).removeClass("x-body-masked");
4705             this.el.removeClass('in');
4706             this.el.select('.modal-dialog', true).first().setStyle('transform','');
4707
4708             if(this.animate){ // why
4709                 this.el.addClass('hideing');
4710                 this.el.removeClass('show');
4711                 (function(){
4712                     if (!this.el.hasClass('hideing')) {
4713                         return; // it's been shown again...
4714                     }
4715                     
4716                     this.el.dom.style.display='';
4717
4718                     Roo.get(document.body).removeClass('modal-open');
4719                     this.el.removeClass('hideing');
4720                 }).defer(150,this);
4721                 
4722             }else{
4723                 this.el.removeClass('show');
4724                 this.el.dom.style.display='';
4725                 Roo.get(document.body).removeClass('modal-open');
4726
4727             }
4728             this.fireEvent('hide', this);
4729         }
4730     },
4731     isVisible : function()
4732     {
4733         
4734         return this.el.hasClass('show') && !this.el.hasClass('hideing');
4735         
4736     },
4737
4738     addButton : function(str, cb)
4739     {
4740
4741
4742         var b = Roo.apply({}, { html : str } );
4743         b.xns = b.xns || Roo.bootstrap;
4744         b.xtype = b.xtype || 'Button';
4745         if (typeof(b.listeners) == 'undefined') {
4746             b.listeners = { click : cb.createDelegate(this)  };
4747         }
4748
4749         var btn = Roo.factory(b);
4750
4751         btn.render(this.getButtonContainer());
4752
4753         return btn;
4754
4755     },
4756
4757     setDefaultButton : function(btn)
4758     {
4759         //this.el.select('.modal-footer').()
4760     },
4761
4762     resizeTo: function(w,h)
4763     {
4764         this.dialogEl.setWidth(w);
4765         
4766         var diff = this.headerEl.getHeight() + this.footerEl.getHeight() + 60; // dialog margin-bottom: 30  
4767
4768         this.bodyEl.setHeight(h - diff);
4769         
4770         this.fireEvent('resize', this);
4771     },
4772     
4773     setContentSize  : function(w, h)
4774     {
4775
4776     },
4777     onButtonClick: function(btn,e)
4778     {
4779         //Roo.log([a,b,c]);
4780         this.fireEvent('btnclick', btn.name, e);
4781     },
4782      /**
4783      * Set the title of the Dialog
4784      * @param {String} str new Title
4785      */
4786     setTitle: function(str) {
4787         this.titleEl.dom.innerHTML = str;
4788         this.title = str;
4789     },
4790     /**
4791      * Set the body of the Dialog
4792      * @param {String} str new Title
4793      */
4794     setBody: function(str) {
4795         this.bodyEl.dom.innerHTML = str;
4796     },
4797     /**
4798      * Set the body of the Dialog using the template
4799      * @param {Obj} data - apply this data to the template and replace the body contents.
4800      */
4801     applyBody: function(obj)
4802     {
4803         if (!this.tmpl) {
4804             Roo.log("Error - using apply Body without a template");
4805             //code
4806         }
4807         this.tmpl.overwrite(this.bodyEl, obj);
4808     },
4809     
4810     getChildHeight : function(child_nodes)
4811     {
4812         if(
4813             !child_nodes ||
4814             child_nodes.length == 0
4815         ) {
4816             return 0;
4817         }
4818         
4819         var child_height = 0;
4820         
4821         for(var i = 0; i < child_nodes.length; i++) {
4822             
4823             /*
4824             * for modal with tabs...
4825             if(child_nodes[i].classList.contains('roo-layout-panel')) {
4826                 
4827                 var layout_childs = child_nodes[i].childNodes;
4828                 
4829                 for(var j = 0; j < layout_childs.length; j++) {
4830                     
4831                     if(layout_childs[j].classList.contains('roo-layout-panel-body')) {
4832                         
4833                         var layout_body_childs = layout_childs[j].childNodes;
4834                         
4835                         for(var k = 0; k < layout_body_childs.length; k++) {
4836                             
4837                             if(layout_body_childs[k].classList.contains('navbar')) {
4838                                 child_height += layout_body_childs[k].offsetHeight;
4839                                 continue;
4840                             }
4841                             
4842                             if(layout_body_childs[k].classList.contains('roo-layout-tabs-body')) {
4843                                 
4844                                 var layout_body_tab_childs = layout_body_childs[k].childNodes;
4845                                 
4846                                 for(var m = 0; m < layout_body_tab_childs.length; m++) {
4847                                     
4848                                     if(layout_body_tab_childs[m].classList.contains('roo-layout-active-content')) {
4849                                         child_height += this.getChildHeight(layout_body_tab_childs[m].childNodes);
4850                                         continue;
4851                                     }
4852                                     
4853                                 }
4854                                 
4855                             }
4856                             
4857                         }
4858                     }
4859                 }
4860                 continue;
4861             }
4862             */
4863             
4864             child_height += child_nodes[i].offsetHeight;
4865             // Roo.log(child_nodes[i].offsetHeight);
4866         }
4867         
4868         return child_height;
4869     },
4870     toggleHeaderInput : function(is_edit)
4871     {
4872         if (!this.editableTitle) {
4873             return; // not editable.
4874         }
4875         if (is_edit && this.is_header_editing) {
4876             return; // already editing..
4877         }
4878         if (is_edit) {
4879     
4880             this.headerEditEl.dom.value = this.title;
4881             this.headerEditEl.removeClass('d-none');
4882             this.headerEditEl.dom.focus();
4883             this.titleEl.addClass('d-none');
4884             
4885             this.is_header_editing = true;
4886             return
4887         }
4888         // flip back to not editing.
4889         this.title = this.headerEditEl.dom.value;
4890         this.headerEditEl.addClass('d-none');
4891         this.titleEl.removeClass('d-none');
4892         this.titleEl.dom.innerHTML = String.format('{0}', this.title);
4893         this.is_header_editing = false;
4894         this.fireEvent('titlechanged', this, this.title);
4895     
4896             
4897         
4898     }
4899
4900 });
4901
4902
4903 Roo.apply(Roo.bootstrap.Modal,  {
4904     /**
4905          * Button config that displays a single OK button
4906          * @type Object
4907          */
4908         OK :  [{
4909             name : 'ok',
4910             weight : 'primary',
4911             html : 'OK'
4912         }],
4913         /**
4914          * Button config that displays Yes and No buttons
4915          * @type Object
4916          */
4917         YESNO : [
4918             {
4919                 name  : 'no',
4920                 html : 'No'
4921             },
4922             {
4923                 name  :'yes',
4924                 weight : 'primary',
4925                 html : 'Yes'
4926             }
4927         ],
4928
4929         /**
4930          * Button config that displays OK and Cancel buttons
4931          * @type Object
4932          */
4933         OKCANCEL : [
4934             {
4935                name : 'cancel',
4936                 html : 'Cancel'
4937             },
4938             {
4939                 name : 'ok',
4940                 weight : 'primary',
4941                 html : 'OK'
4942             }
4943         ],
4944         /**
4945          * Button config that displays Yes, No and Cancel buttons
4946          * @type Object
4947          */
4948         YESNOCANCEL : [
4949             {
4950                 name : 'yes',
4951                 weight : 'primary',
4952                 html : 'Yes'
4953             },
4954             {
4955                 name : 'no',
4956                 html : 'No'
4957             },
4958             {
4959                 name : 'cancel',
4960                 html : 'Cancel'
4961             }
4962         ],
4963         
4964         zIndex : 10001
4965 });
4966
4967 /*
4968  * - LGPL
4969  *
4970  * messagebox - can be used as a replace
4971  * 
4972  */
4973 /**
4974  * @class Roo.MessageBox
4975  * Utility class for generating different styles of message boxes.  The alias Roo.Msg can also be used.
4976  * Example usage:
4977  *<pre><code>
4978 // Basic alert:
4979 Roo.Msg.alert('Status', 'Changes saved successfully.');
4980
4981 // Prompt for user data:
4982 Roo.Msg.prompt('Name', 'Please enter your name:', function(btn, text){
4983     if (btn == 'ok'){
4984         // process text value...
4985     }
4986 });
4987
4988 // Show a dialog using config options:
4989 Roo.Msg.show({
4990    title:'Save Changes?',
4991    msg: 'Your are closing a tab that has unsaved changes. Would you like to save your changes?',
4992    buttons: Roo.Msg.YESNOCANCEL,
4993    fn: processResult,
4994    animEl: 'elId'
4995 });
4996 </code></pre>
4997  * @static
4998  */
4999 Roo.bootstrap.MessageBox = function(){
5000     var dlg, opt, mask, waitTimer;
5001     var bodyEl, msgEl, textboxEl, textareaEl, progressEl, pp;
5002     var buttons, activeTextEl, bwidth;
5003
5004     
5005     // private
5006     var handleButton = function(button){
5007         dlg.hide();
5008         Roo.callback(opt.fn, opt.scope||window, [button, activeTextEl.dom.value], 1);
5009     };
5010
5011     // private
5012     var handleHide = function(){
5013         if(opt && opt.cls){
5014             dlg.el.removeClass(opt.cls);
5015         }
5016         //if(waitTimer){
5017         //    Roo.TaskMgr.stop(waitTimer);
5018         //    waitTimer = null;
5019         //}
5020     };
5021
5022     // private
5023     var updateButtons = function(b){
5024         var width = 0;
5025         if(!b){
5026             buttons["ok"].hide();
5027             buttons["cancel"].hide();
5028             buttons["yes"].hide();
5029             buttons["no"].hide();
5030             dlg.footerEl.hide();
5031             
5032             return width;
5033         }
5034         dlg.footerEl.show();
5035         for(var k in buttons){
5036             if(typeof buttons[k] != "function"){
5037                 if(b[k]){
5038                     buttons[k].show();
5039                     buttons[k].setText(typeof b[k] == "string" ? b[k] : Roo.bootstrap.MessageBox.buttonText[k]);
5040                     width += buttons[k].el.getWidth()+15;
5041                 }else{
5042                     buttons[k].hide();
5043                 }
5044             }
5045         }
5046         return width;
5047     };
5048
5049     // private
5050     var handleEsc = function(d, k, e){
5051         if(opt && opt.closable !== false){
5052             dlg.hide();
5053         }
5054         if(e){
5055             e.stopEvent();
5056         }
5057     };
5058
5059     return {
5060         /**
5061          * Returns a reference to the underlying {@link Roo.BasicDialog} element
5062          * @return {Roo.BasicDialog} The BasicDialog element
5063          */
5064         getDialog : function(){
5065            if(!dlg){
5066                 dlg = new Roo.bootstrap.Modal( {
5067                     //draggable: true,
5068                     //resizable:false,
5069                     //constraintoviewport:false,
5070                     //fixedcenter:true,
5071                     //collapsible : false,
5072                     //shim:true,
5073                     //modal: true,
5074                 //    width: 'auto',
5075                   //  height:100,
5076                     //buttonAlign:"center",
5077                     closeClick : function(){
5078                         if(opt && opt.buttons && opt.buttons.no && !opt.buttons.cancel){
5079                             handleButton("no");
5080                         }else{
5081                             handleButton("cancel");
5082                         }
5083                     }
5084                 });
5085                 dlg.render();
5086                 dlg.on("hide", handleHide);
5087                 mask = dlg.mask;
5088                 //dlg.addKeyListener(27, handleEsc);
5089                 buttons = {};
5090                 this.buttons = buttons;
5091                 var bt = this.buttonText;
5092                 buttons["ok"] = dlg.addButton(bt["ok"], handleButton.createCallback("ok"));
5093                 buttons["yes"] = dlg.addButton(bt["yes"], handleButton.createCallback("yes"));
5094                 buttons["no"] = dlg.addButton(bt["no"], handleButton.createCallback("no"));
5095                 buttons["cancel"] = dlg.addButton(bt["cancel"], handleButton.createCallback("cancel"));
5096                 //Roo.log(buttons);
5097                 bodyEl = dlg.bodyEl.createChild({
5098
5099                     html:'<span class="roo-mb-text"></span><br /><input type="text" class="roo-mb-input" />' +
5100                         '<textarea class="roo-mb-textarea"></textarea>' +
5101                         '<div class="roo-mb-progress-wrap"><div class="roo-mb-progress"><div class="roo-mb-progress-bar">&#160;</div></div></div>'
5102                 });
5103                 msgEl = bodyEl.dom.firstChild;
5104                 textboxEl = Roo.get(bodyEl.dom.childNodes[2]);
5105                 textboxEl.enableDisplayMode();
5106                 textboxEl.addKeyListener([10,13], function(){
5107                     if(dlg.isVisible() && opt && opt.buttons){
5108                         if(opt.buttons.ok){
5109                             handleButton("ok");
5110                         }else if(opt.buttons.yes){
5111                             handleButton("yes");
5112                         }
5113                     }
5114                 });
5115                 textareaEl = Roo.get(bodyEl.dom.childNodes[3]);
5116                 textareaEl.enableDisplayMode();
5117                 progressEl = Roo.get(bodyEl.dom.childNodes[4]);
5118                 progressEl.enableDisplayMode();
5119                 
5120                 // This is supposed to be the progessElement.. but I think it's controlling the height of everything..
5121                 var pf = progressEl.dom.firstChild;
5122                 if (pf) {
5123                     pp = Roo.get(pf.firstChild);
5124                     pp.setHeight(pf.offsetHeight);
5125                 }
5126                 
5127             }
5128             return dlg;
5129         },
5130
5131         /**
5132          * Updates the message box body text
5133          * @param {String} text (optional) Replaces the message box element's innerHTML with the specified string (defaults to
5134          * the XHTML-compliant non-breaking space character '&amp;#160;')
5135          * @return {Roo.MessageBox} This message box
5136          */
5137         updateText : function(text)
5138         {
5139             if(!dlg.isVisible() && !opt.width){
5140                 dlg.dialogEl.setStyle({ 'max-width' : this.maxWidth});
5141                 // dlg.resizeTo(this.maxWidth, 100); // forcing the height breaks long alerts()
5142             }
5143             msgEl.innerHTML = text || '&#160;';
5144       
5145             var cw =  Math.max(msgEl.offsetWidth, msgEl.parentNode.scrollWidth);
5146             //Roo.log("guesed size: " + JSON.stringify([cw,msgEl.offsetWidth, msgEl.parentNode.scrollWidth]));
5147             var w = Math.max(
5148                     Math.min(opt.width || cw , this.maxWidth), 
5149                     Math.max(opt.minWidth || this.minWidth, bwidth)
5150             );
5151             if(opt.prompt){
5152                 activeTextEl.setWidth(w);
5153             }
5154             if(dlg.isVisible()){
5155                 dlg.fixedcenter = false;
5156             }
5157             // to big, make it scroll. = But as usual stupid IE does not support
5158             // !important..
5159             
5160             if ( bodyEl.getHeight() > (Roo.lib.Dom.getViewHeight() - 100)) {
5161                 bodyEl.setHeight ( Roo.lib.Dom.getViewHeight() - 100 );
5162                 bodyEl.dom.style.overflowY = 'auto' + ( Roo.isIE ? '' : ' !important');
5163             } else {
5164                 bodyEl.dom.style.height = '';
5165                 bodyEl.dom.style.overflowY = '';
5166             }
5167             if (cw > w) {
5168                 bodyEl.dom.style.get = 'auto' + ( Roo.isIE ? '' : ' !important');
5169             } else {
5170                 bodyEl.dom.style.overflowX = '';
5171             }
5172             
5173             dlg.setContentSize(w, bodyEl.getHeight());
5174             if(dlg.isVisible()){
5175                 dlg.fixedcenter = true;
5176             }
5177             return this;
5178         },
5179
5180         /**
5181          * Updates a progress-style message box's text and progress bar.  Only relevant on message boxes
5182          * initiated via {@link Roo.MessageBox#progress} or by calling {@link Roo.MessageBox#show} with progress: true.
5183          * @param {Number} value Any number between 0 and 1 (e.g., .5)
5184          * @param {String} text (optional) If defined, the message box's body text is replaced with the specified string (defaults to undefined)
5185          * @return {Roo.MessageBox} This message box
5186          */
5187         updateProgress : function(value, text){
5188             if(text){
5189                 this.updateText(text);
5190             }
5191             
5192             if (pp) { // weird bug on my firefox - for some reason this is not defined
5193                 pp.setWidth(Math.floor(value*progressEl.dom.firstChild.offsetWidth));
5194                 pp.setHeight(Math.floor(progressEl.dom.firstChild.offsetHeight));
5195             }
5196             return this;
5197         },        
5198
5199         /**
5200          * Returns true if the message box is currently displayed
5201          * @return {Boolean} True if the message box is visible, else false
5202          */
5203         isVisible : function(){
5204             return dlg && dlg.isVisible();  
5205         },
5206
5207         /**
5208          * Hides the message box if it is displayed
5209          */
5210         hide : function(){
5211             if(this.isVisible()){
5212                 dlg.hide();
5213             }  
5214         },
5215
5216         /**
5217          * Displays a new message box, or reinitializes an existing message box, based on the config options
5218          * passed in. All functions (e.g. prompt, alert, etc) on MessageBox call this function internally.
5219          * The following config object properties are supported:
5220          * <pre>
5221 Property    Type             Description
5222 ----------  ---------------  ------------------------------------------------------------------------------------
5223 animEl            String/Element   An id or Element from which the message box should animate as it opens and
5224                                    closes (defaults to undefined)
5225 buttons           Object/Boolean   A button config object (e.g., Roo.MessageBox.OKCANCEL or {ok:'Foo',
5226                                    cancel:'Bar'}), or false to not show any buttons (defaults to false)
5227 closable          Boolean          False to hide the top-right close button (defaults to true).  Note that
5228                                    progress and wait dialogs will ignore this property and always hide the
5229                                    close button as they can only be closed programmatically.
5230 cls               String           A custom CSS class to apply to the message box element
5231 defaultTextHeight Number           The default height in pixels of the message box's multiline textarea if
5232                                    displayed (defaults to 75)
5233 fn                Function         A callback function to execute after closing the dialog.  The arguments to the
5234                                    function will be btn (the name of the button that was clicked, if applicable,
5235                                    e.g. "ok"), and text (the value of the active text field, if applicable).
5236                                    Progress and wait dialogs will ignore this option since they do not respond to
5237                                    user actions and can only be closed programmatically, so any required function
5238                                    should be called by the same code after it closes the dialog.
5239 icon              String           A CSS class that provides a background image to be used as an icon for
5240                                    the dialog (e.g., Roo.MessageBox.WARNING or 'custom-class', defaults to '')
5241 maxWidth          Number           The maximum width in pixels of the message box (defaults to 600)
5242 minWidth          Number           The minimum width in pixels of the message box (defaults to 100)
5243 modal             Boolean          False to allow user interaction with the page while the message box is
5244                                    displayed (defaults to true)
5245 msg               String           A string that will replace the existing message box body text (defaults
5246                                    to the XHTML-compliant non-breaking space character '&#160;')
5247 multiline         Boolean          True to prompt the user to enter multi-line text (defaults to false)
5248 progress          Boolean          True to display a progress bar (defaults to false)
5249 progressText      String           The text to display inside the progress bar if progress = true (defaults to '')
5250 prompt            Boolean          True to prompt the user to enter single-line text (defaults to false)
5251 proxyDrag         Boolean          True to display a lightweight proxy while dragging (defaults to false)
5252 title             String           The title text
5253 value             String           The string value to set into the active textbox element if displayed
5254 wait              Boolean          True to display a progress bar (defaults to false)
5255 width             Number           The width of the dialog in pixels
5256 </pre>
5257          *
5258          * Example usage:
5259          * <pre><code>
5260 Roo.Msg.show({
5261    title: 'Address',
5262    msg: 'Please enter your address:',
5263    width: 300,
5264    buttons: Roo.MessageBox.OKCANCEL,
5265    multiline: true,
5266    fn: saveAddress,
5267    animEl: 'addAddressBtn'
5268 });
5269 </code></pre>
5270          * @param {Object} config Configuration options
5271          * @return {Roo.MessageBox} This message box
5272          */
5273         show : function(options)
5274         {
5275             
5276             // this causes nightmares if you show one dialog after another
5277             // especially on callbacks..
5278              
5279             if(this.isVisible()){
5280                 
5281                 this.hide();
5282                 Roo.log("[Roo.Messagebox] Show called while message displayed:" );
5283                 Roo.log("Old Dialog Message:" +  msgEl.innerHTML );
5284                 Roo.log("New Dialog Message:" +  options.msg )
5285                 //this.alert("ERROR", "Multiple dialogs where displayed at the same time");
5286                 //throw "Roo.MessageBox ERROR : Multiple dialogs where displayed at the same time";
5287                 
5288             }
5289             var d = this.getDialog();
5290             opt = options;
5291             d.setTitle(opt.title || "&#160;");
5292             d.closeEl.setDisplayed(opt.closable !== false);
5293             activeTextEl = textboxEl;
5294             opt.prompt = opt.prompt || (opt.multiline ? true : false);
5295             if(opt.prompt){
5296                 if(opt.multiline){
5297                     textboxEl.hide();
5298                     textareaEl.show();
5299                     textareaEl.setHeight(typeof opt.multiline == "number" ?
5300                         opt.multiline : this.defaultTextHeight);
5301                     activeTextEl = textareaEl;
5302                 }else{
5303                     textboxEl.show();
5304                     textareaEl.hide();
5305                 }
5306             }else{
5307                 textboxEl.hide();
5308                 textareaEl.hide();
5309             }
5310             progressEl.setDisplayed(opt.progress === true);
5311             if (opt.progress) {
5312                 d.animate = false; // do not animate progress, as it may not have finished animating before we close it..
5313             }
5314             this.updateProgress(0);
5315             activeTextEl.dom.value = opt.value || "";
5316             if(opt.prompt){
5317                 dlg.setDefaultButton(activeTextEl);
5318             }else{
5319                 var bs = opt.buttons;
5320                 var db = null;
5321                 if(bs && bs.ok){
5322                     db = buttons["ok"];
5323                 }else if(bs && bs.yes){
5324                     db = buttons["yes"];
5325                 }
5326                 dlg.setDefaultButton(db);
5327             }
5328             bwidth = updateButtons(opt.buttons);
5329             this.updateText(opt.msg);
5330             if(opt.cls){
5331                 d.el.addClass(opt.cls);
5332             }
5333             d.proxyDrag = opt.proxyDrag === true;
5334             d.modal = opt.modal !== false;
5335             d.mask = opt.modal !== false ? mask : false;
5336             if(!d.isVisible()){
5337                 // force it to the end of the z-index stack so it gets a cursor in FF
5338                 document.body.appendChild(dlg.el.dom);
5339                 d.animateTarget = null;
5340                 d.show(options.animEl);
5341             }
5342             return this;
5343         },
5344
5345         /**
5346          * Displays a message box with a progress bar.  This message box has no buttons and is not closeable by
5347          * the user.  You are responsible for updating the progress bar as needed via {@link Roo.MessageBox#updateProgress}
5348          * and closing the message box when the process is complete.
5349          * @param {String} title The title bar text
5350          * @param {String} msg The message box body text
5351          * @return {Roo.MessageBox} This message box
5352          */
5353         progress : function(title, msg){
5354             this.show({
5355                 title : title,
5356                 msg : msg,
5357                 buttons: false,
5358                 progress:true,
5359                 closable:false,
5360                 minWidth: this.minProgressWidth,
5361                 modal : true
5362             });
5363             return this;
5364         },
5365
5366         /**
5367          * Displays a standard read-only message box with an OK button (comparable to the basic JavaScript Window.alert).
5368          * If a callback function is passed it will be called after the user clicks the button, and the
5369          * id of the button that was clicked will be passed as the only parameter to the callback
5370          * (could also be the top-right close button).
5371          * @param {String} title The title bar text
5372          * @param {String} msg The message box body text
5373          * @param {Function} fn (optional) The callback function invoked after the message box is closed
5374          * @param {Object} scope (optional) The scope of the callback function
5375          * @return {Roo.MessageBox} This message box
5376          */
5377         alert : function(title, msg, fn, scope)
5378         {
5379             this.show({
5380                 title : title,
5381                 msg : msg,
5382                 buttons: this.OK,
5383                 fn: fn,
5384                 closable : false,
5385                 scope : scope,
5386                 modal : true
5387             });
5388             return this;
5389         },
5390
5391         /**
5392          * Displays a message box with an infinitely auto-updating progress bar.  This can be used to block user
5393          * interaction while waiting for a long-running process to complete that does not have defined intervals.
5394          * You are responsible for closing the message box when the process is complete.
5395          * @param {String} msg The message box body text
5396          * @param {String} title (optional) The title bar text
5397          * @return {Roo.MessageBox} This message box
5398          */
5399         wait : function(msg, title){
5400             this.show({
5401                 title : title,
5402                 msg : msg,
5403                 buttons: false,
5404                 closable:false,
5405                 progress:true,
5406                 modal:true,
5407                 width:300,
5408                 wait:true
5409             });
5410             waitTimer = Roo.TaskMgr.start({
5411                 run: function(i){
5412                     Roo.MessageBox.updateProgress(((((i+20)%20)+1)*5)*.01);
5413                 },
5414                 interval: 1000
5415             });
5416             return this;
5417         },
5418
5419         /**
5420          * Displays a confirmation message box with Yes and No buttons (comparable to JavaScript's Window.confirm).
5421          * If a callback function is passed it will be called after the user clicks either button, and the id of the
5422          * button that was clicked will be passed as the only parameter to the callback (could also be the top-right close button).
5423          * @param {String} title The title bar text
5424          * @param {String} msg The message box body text
5425          * @param {Function} fn (optional) The callback function invoked after the message box is closed
5426          * @param {Object} scope (optional) The scope of the callback function
5427          * @return {Roo.MessageBox} This message box
5428          */
5429         confirm : function(title, msg, fn, scope){
5430             this.show({
5431                 title : title,
5432                 msg : msg,
5433                 buttons: this.YESNO,
5434                 fn: fn,
5435                 scope : scope,
5436                 modal : true
5437             });
5438             return this;
5439         },
5440
5441         /**
5442          * Displays a message box with OK and Cancel buttons prompting the user to enter some text (comparable to
5443          * JavaScript's Window.prompt).  The prompt can be a single-line or multi-line textbox.  If a callback function
5444          * is passed it will be called after the user clicks either button, and the id of the button that was clicked
5445          * (could also be the top-right close button) and the text that was entered will be passed as the two
5446          * parameters to the callback.
5447          * @param {String} title The title bar text
5448          * @param {String} msg The message box body text
5449          * @param {Function} fn (optional) The callback function invoked after the message box is closed
5450          * @param {Object} scope (optional) The scope of the callback function
5451          * @param {Boolean/Number} multiline (optional) True to create a multiline textbox using the defaultTextHeight
5452          * property, or the height in pixels to create the textbox (defaults to false / single-line)
5453          * @return {Roo.MessageBox} This message box
5454          */
5455         prompt : function(title, msg, fn, scope, multiline){
5456             this.show({
5457                 title : title,
5458                 msg : msg,
5459                 buttons: this.OKCANCEL,
5460                 fn: fn,
5461                 minWidth:250,
5462                 scope : scope,
5463                 prompt:true,
5464                 multiline: multiline,
5465                 modal : true
5466             });
5467             return this;
5468         },
5469
5470         /**
5471          * Button config that displays a single OK button
5472          * @type Object
5473          */
5474         OK : {ok:true},
5475         /**
5476          * Button config that displays Yes and No buttons
5477          * @type Object
5478          */
5479         YESNO : {yes:true, no:true},
5480         /**
5481          * Button config that displays OK and Cancel buttons
5482          * @type Object
5483          */
5484         OKCANCEL : {ok:true, cancel:true},
5485         /**
5486          * Button config that displays Yes, No and Cancel buttons
5487          * @type Object
5488          */
5489         YESNOCANCEL : {yes:true, no:true, cancel:true},
5490
5491         /**
5492          * The default height in pixels of the message box's multiline textarea if displayed (defaults to 75)
5493          * @type Number
5494          */
5495         defaultTextHeight : 75,
5496         /**
5497          * The maximum width in pixels of the message box (defaults to 600)
5498          * @type Number
5499          */
5500         maxWidth : 600,
5501         /**
5502          * The minimum width in pixels of the message box (defaults to 100)
5503          * @type Number
5504          */
5505         minWidth : 100,
5506         /**
5507          * The minimum width in pixels of the message box if it is a progress-style dialog.  This is useful
5508          * for setting a different minimum width than text-only dialogs may need (defaults to 250)
5509          * @type Number
5510          */
5511         minProgressWidth : 250,
5512         /**
5513          * An object containing the default button text strings that can be overriden for localized language support.
5514          * Supported properties are: ok, cancel, yes and no.
5515          * Customize the default text like so: Roo.MessageBox.buttonText.yes = "S?";
5516          * @type Object
5517          */
5518         buttonText : {
5519             ok : "OK",
5520             cancel : "Cancel",
5521             yes : "Yes",
5522             no : "No"
5523         }
5524     };
5525 }();
5526
5527 /**
5528  * Shorthand for {@link Roo.MessageBox}
5529  */
5530 Roo.MessageBox = Roo.MessageBox || Roo.bootstrap.MessageBox;
5531 Roo.Msg = Roo.Msg || Roo.MessageBox;
5532 /*
5533  * - LGPL
5534  *
5535  * navbar
5536  * 
5537  */
5538
5539 /**
5540  * @class Roo.bootstrap.nav.Bar
5541  * @extends Roo.bootstrap.Component
5542  * @abstract
5543  * Bootstrap Navbar class
5544
5545  * @constructor
5546  * Create a new Navbar
5547  * @param {Object} config The config object
5548  */
5549
5550
5551 Roo.bootstrap.nav.Bar = function(config){
5552     Roo.bootstrap.nav.Bar.superclass.constructor.call(this, config);
5553     this.addEvents({
5554         // raw events
5555         /**
5556          * @event beforetoggle
5557          * Fire before toggle the menu
5558          * @param {Roo.EventObject} e
5559          */
5560         "beforetoggle" : true
5561     });
5562 };
5563
5564 Roo.extend(Roo.bootstrap.nav.Bar, Roo.bootstrap.Component,  {
5565     
5566     
5567    
5568     // private
5569     navItems : false,
5570     loadMask : false,
5571     
5572     
5573     getAutoCreate : function(){
5574         
5575         
5576         throw { message : "nav bar is now a abstract base class - use NavSimplebar / NavHeaderbar / NavSidebar etc..."};
5577         
5578     },
5579     
5580     initEvents :function ()
5581     {
5582         //Roo.log(this.el.select('.navbar-toggle',true));
5583         this.el.select('.navbar-toggle',true).on('click', this.onToggle , this);
5584         
5585         var mark = {
5586             tag: "div",
5587             cls:"x-dlg-mask"
5588         };
5589         
5590         this.maskEl = Roo.DomHelper.append(this.el, mark, true);
5591         
5592         var size = this.el.getSize();
5593         this.maskEl.setSize(size.width, size.height);
5594         this.maskEl.enableDisplayMode("block");
5595         this.maskEl.hide();
5596         
5597         if(this.loadMask){
5598             this.maskEl.show();
5599         }
5600     },
5601     
5602     
5603     getChildContainer : function()
5604     {
5605         if (this.el && this.el.select('.collapse').getCount()) {
5606             return this.el.select('.collapse',true).first();
5607         }
5608         
5609         return this.el;
5610     },
5611     
5612     mask : function()
5613     {
5614         this.maskEl.show();
5615     },
5616     
5617     unmask : function()
5618     {
5619         this.maskEl.hide();
5620     },
5621     onToggle : function()
5622     {
5623         
5624         if(this.fireEvent('beforetoggle', this) === false){
5625             return;
5626         }
5627         var ce = this.el.select('.navbar-collapse',true).first();
5628       
5629         if (!ce.hasClass('show')) {
5630            this.expand();
5631         } else {
5632             this.collapse();
5633         }
5634         
5635         
5636     
5637     },
5638     /**
5639      * Expand the navbar pulldown 
5640      */
5641     expand : function ()
5642     {
5643        
5644         var ce = this.el.select('.navbar-collapse',true).first();
5645         if (ce.hasClass('collapsing')) {
5646             return;
5647         }
5648         ce.dom.style.height = '';
5649                // show it...
5650         ce.addClass('in'); // old...
5651         ce.removeClass('collapse');
5652         ce.addClass('show');
5653         var h = ce.getHeight();
5654         Roo.log(h);
5655         ce.removeClass('show');
5656         // at this point we should be able to see it..
5657         ce.addClass('collapsing');
5658         
5659         ce.setHeight(0); // resize it ...
5660         ce.on('transitionend', function() {
5661             //Roo.log('done transition');
5662             ce.removeClass('collapsing');
5663             ce.addClass('show');
5664             ce.removeClass('collapse');
5665
5666             ce.dom.style.height = '';
5667         }, this, { single: true} );
5668         ce.setHeight(h);
5669         ce.dom.scrollTop = 0;
5670     },
5671     /**
5672      * Collapse the navbar pulldown 
5673      */
5674     collapse : function()
5675     {
5676          var ce = this.el.select('.navbar-collapse',true).first();
5677        
5678         if (ce.hasClass('collapsing') || ce.hasClass('collapse') ) {
5679             // it's collapsed or collapsing..
5680             return;
5681         }
5682         ce.removeClass('in'); // old...
5683         ce.setHeight(ce.getHeight());
5684         ce.removeClass('show');
5685         ce.addClass('collapsing');
5686         
5687         ce.on('transitionend', function() {
5688             ce.dom.style.height = '';
5689             ce.removeClass('collapsing');
5690             ce.addClass('collapse');
5691         }, this, { single: true} );
5692         ce.setHeight(0);
5693     }
5694     
5695     
5696     
5697 });
5698
5699
5700
5701  
5702
5703  /*
5704  * - LGPL
5705  *
5706  * navbar
5707  * 
5708  */
5709
5710 /**
5711  * @class Roo.bootstrap.nav.Simplebar
5712  * @extends Roo.bootstrap.nav.Bar
5713  * @children Roo.bootstrap.nav.Group Roo.bootstrap.Container Roo.bootstrap.form.Form Roo.bootstrap.Row Roo.bootstrap.Column Roo.bootstrap.Link
5714  * Bootstrap Sidebar class
5715  *
5716  * @cfg {Boolean} inverse is inverted color
5717  * 
5718  * @cfg {String} type (nav | pills | tabs)
5719  * @cfg {Boolean} arrangement stacked | justified
5720  * @cfg {String} align (left | right) alignment
5721  * 
5722  * @cfg {Boolean} main (true|false) main nav bar? default false
5723  * @cfg {Boolean} loadMask (true|false) loadMask on the bar
5724  * 
5725  * @cfg {String} tag (header|footer|nav|div) default is nav 
5726
5727  * @cfg {String} weight (light|primary|secondary|success|danger|warning|info|dark|white) default is light.
5728  * 
5729  * 
5730  * @constructor
5731  * Create a new Sidebar
5732  * @param {Object} config The config object
5733  */
5734
5735
5736 Roo.bootstrap.nav.Simplebar = function(config){
5737     Roo.bootstrap.nav.Simplebar.superclass.constructor.call(this, config);
5738 };
5739
5740 Roo.extend(Roo.bootstrap.nav.Simplebar, Roo.bootstrap.nav.Bar,  {
5741     
5742     inverse: false,
5743     
5744     type: false,
5745     arrangement: '',
5746     align : false,
5747     
5748     weight : 'light',
5749     
5750     main : false,
5751     
5752     
5753     tag : false,
5754     
5755     
5756     getAutoCreate : function(){
5757         
5758         
5759         var cfg = {
5760             tag : this.tag || 'div',
5761             cls : 'navbar roo-navbar-simple' //navbar-expand-lg ??
5762         };
5763         if (['light','white'].indexOf(this.weight) > -1) {
5764             cfg.cls += ['light','white'].indexOf(this.weight) > -1 ? ' navbar-light' : ' navbar-dark';
5765         }
5766         cfg.cls += ' bg-' + this.weight;
5767         
5768         if (this.inverse) {
5769             cfg.cls += ' navbar-inverse';
5770             
5771         }
5772         
5773         // i'm not actually sure these are really used - normally we add a navGroup to a navbar
5774         
5775         if (Roo.bootstrap.version == 4 && this.xtype == 'NavSimplebar') {
5776             return cfg;
5777         }
5778         
5779         
5780     
5781         
5782         cfg.cn = [
5783             {
5784                 cls: 'nav nav-' + this.xtype,
5785                 tag : 'ul'
5786             }
5787         ];
5788         
5789          
5790         this.type = this.type || 'nav';
5791         if (['tabs','pills'].indexOf(this.type) != -1) {
5792             cfg.cn[0].cls += ' nav-' + this.type
5793         
5794         
5795         } else {
5796             if (this.type!=='nav') {
5797                 Roo.log('nav type must be nav/tabs/pills')
5798             }
5799             cfg.cn[0].cls += ' navbar-nav'
5800         }
5801         
5802         
5803         
5804         
5805         if (['stacked','justified'].indexOf(this.arrangement) != -1) {
5806             cfg.cn[0].cls += ' nav-' + this.arrangement;
5807         }
5808         
5809         
5810         if (this.align === 'right') {
5811             cfg.cn[0].cls += ' navbar-right';
5812         }
5813         
5814         
5815         
5816         
5817         return cfg;
5818     
5819         
5820     }
5821     
5822     
5823     
5824 });
5825
5826
5827
5828  
5829
5830  
5831        /*
5832  * - LGPL
5833  *
5834  * navbar
5835  * navbar-fixed-top
5836  * navbar-expand-md  fixed-top 
5837  */
5838
5839 /**
5840  * @class Roo.bootstrap.nav.Headerbar
5841  * @extends Roo.bootstrap.nav.Simplebar
5842  * @children Roo.bootstrap.nav.Group Roo.bootstrap.Container Roo.bootstrap.form.Form Roo.bootstrap.Row Roo.bootstrap.Column Roo.bootstrap.Link
5843  * Bootstrap Sidebar class
5844  *
5845  * @cfg {String} brand what is brand
5846  * @cfg {String} position (fixed-top|fixed-bottom|static-top) position
5847  * @cfg {String} brand_href href of the brand
5848  * @cfg {Boolean} srButton generate the (screen reader / mobile) sr-only button   default true
5849  * @cfg {Boolean} autohide a top nav bar header that hides on scroll.
5850  * @cfg {Boolean} desktopCenter should the header be centered on desktop using a container class
5851  * @cfg {Roo.bootstrap.Row} mobilerow - a row to display on mobile only..
5852  * 
5853  * @constructor
5854  * Create a new Sidebar
5855  * @param {Object} config The config object
5856  */
5857
5858
5859 Roo.bootstrap.nav.Headerbar = function(config){
5860     Roo.bootstrap.nav.Headerbar.superclass.constructor.call(this, config);
5861       
5862 };
5863
5864 Roo.extend(Roo.bootstrap.nav.Headerbar, Roo.bootstrap.nav.Simplebar,  {
5865     
5866     position: '',
5867     brand: '',
5868     brand_href: false,
5869     srButton : true,
5870     autohide : false,
5871     desktopCenter : false,
5872    
5873     
5874     getAutoCreate : function(){
5875         
5876         var   cfg = {
5877             tag: this.nav || 'nav',
5878             cls: 'navbar navbar-expand-md',
5879             role: 'navigation',
5880             cn: []
5881         };
5882         
5883         var cn = cfg.cn;
5884         if (this.desktopCenter) {
5885             cn.push({cls : 'container', cn : []});
5886             cn = cn[0].cn;
5887         }
5888         
5889         if(this.srButton){
5890             var btn = {
5891                 tag: 'button',
5892                 type: 'button',
5893                 cls: 'navbar-toggle navbar-toggler',
5894                 'data-toggle': 'collapse',
5895                 cn: [
5896                     {
5897                         tag: 'span',
5898                         cls: 'sr-only',
5899                         html: 'Toggle navigation'
5900                     },
5901                     {
5902                         tag: 'span',
5903                         cls: 'icon-bar navbar-toggler-icon'
5904                     },
5905                     {
5906                         tag: 'span',
5907                         cls: 'icon-bar'
5908                     },
5909                     {
5910                         tag: 'span',
5911                         cls: 'icon-bar'
5912                     }
5913                 ]
5914             };
5915             
5916             cn.push( Roo.bootstrap.version == 4 ? btn : {
5917                 tag: 'div',
5918                 cls: 'navbar-header',
5919                 cn: [
5920                     btn
5921                 ]
5922             });
5923         }
5924         
5925         cn.push({
5926             tag: 'div',
5927             cls: Roo.bootstrap.version == 4  ? 'nav flex-row roo-navbar-collapse collapse navbar-collapse' : 'collapse navbar-collapse roo-navbar-collapse',
5928             cn : []
5929         });
5930         
5931         cfg.cls += this.inverse ? ' navbar-inverse navbar-dark bg-dark' : ' navbar-default';
5932         
5933         if (['light','white'].indexOf(this.weight) > -1) {
5934             cfg.cls += ['light','white'].indexOf(this.weight) > -1 ? ' navbar-light' : ' navbar-dark';
5935         }
5936         cfg.cls += ' bg-' + this.weight;
5937         
5938         
5939         if (['fixed-top','fixed-bottom','static-top'].indexOf(this.position)>-1) {
5940             cfg.cls += ' navbar-' + this.position + ' ' + this.position ;
5941             
5942             // tag can override this..
5943             
5944             cfg.tag = this.tag || (this.position  == 'fixed-bottom' ? 'footer' : 'header');
5945         }
5946         
5947         if (this.brand !== '') {
5948             var cp =  Roo.bootstrap.version == 4 ? cn : cn[0].cn;
5949             cp.unshift({ // changed from push ?? BS4 needs it at the start? - does this break or exsiting?
5950                 tag: 'a',
5951                 href: this.brand_href ? this.brand_href : '#',
5952                 cls: 'navbar-brand',
5953                 cn: [
5954                 this.brand
5955                 ]
5956             });
5957         }
5958         
5959         if(this.main){
5960             cfg.cls += ' main-nav';
5961         }
5962         
5963         
5964         return cfg;
5965
5966         
5967     },
5968     getHeaderChildContainer : function()
5969     {
5970         if (this.srButton && this.el.select('.navbar-header').getCount()) {
5971             return this.el.select('.navbar-header',true).first();
5972         }
5973         
5974         return this.getChildContainer();
5975     },
5976     
5977     getChildContainer : function()
5978     {
5979          
5980         return this.el.select('.roo-navbar-collapse',true).first();
5981          
5982         
5983     },
5984     
5985     initEvents : function()
5986     {
5987         Roo.bootstrap.nav.Headerbar.superclass.initEvents.call(this);
5988         
5989         if (this.autohide) {
5990             
5991             var prevScroll = 0;
5992             var ft = this.el;
5993             
5994             Roo.get(document).on('scroll',function(e) {
5995                 var ns = Roo.get(document).getScroll().top;
5996                 var os = prevScroll;
5997                 prevScroll = ns;
5998                 
5999                 if(ns > os){
6000                     ft.removeClass('slideDown');
6001                     ft.addClass('slideUp');
6002                     return;
6003                 }
6004                 ft.removeClass('slideUp');
6005                 ft.addClass('slideDown');
6006                  
6007               
6008           },this);
6009         }
6010     }    
6011     
6012 });
6013
6014
6015
6016  
6017
6018  /*
6019  * - LGPL
6020  *
6021  * navbar
6022  * 
6023  */
6024
6025 /**
6026  * @class Roo.bootstrap.nav.Sidebar
6027  * @extends Roo.bootstrap.nav.Bar
6028  * @children Roo.bootstrap.nav.Group Roo.bootstrap.Container Roo.bootstrap.form.Form Roo.bootstrap.Row Roo.bootstrap.Column Roo.bootstrap.Link
6029  * Bootstrap Sidebar class
6030  * 
6031  * @constructor
6032  * Create a new Sidebar
6033  * @param {Object} config The config object
6034  */
6035
6036
6037 Roo.bootstrap.nav.Sidebar = function(config){
6038     Roo.bootstrap.nav.Sidebar.superclass.constructor.call(this, config);
6039 };
6040
6041 Roo.extend(Roo.bootstrap.nav.Sidebar, Roo.bootstrap.nav.Bar,  {
6042     
6043     sidebar : true, // used by Navbar Item and NavbarGroup at present...
6044     
6045     getAutoCreate : function(){
6046         
6047         
6048         return  {
6049             tag: 'div',
6050             cls: 'sidebar sidebar-nav'
6051         };
6052     
6053         
6054     }
6055     
6056     
6057     
6058 });
6059
6060
6061
6062  
6063
6064  /*
6065  * - LGPL
6066  *
6067  * nav group
6068  * 
6069  */
6070
6071 /**
6072  * @class Roo.bootstrap.nav.Group
6073  * @extends Roo.bootstrap.Component
6074  * @children Roo.bootstrap.nav.Item
6075  * Bootstrap NavGroup class
6076  * @cfg {String} align (left|right)
6077  * @cfg {Boolean} inverse
6078  * @cfg {String} type (nav|pills|tab) default nav
6079  * @cfg {String} navId - reference Id for navbar.
6080  * @cfg {Boolean} pilltype default true (turn to off to disable active toggle)
6081  * 
6082  * @constructor
6083  * Create a new nav group
6084  * @param {Object} config The config object
6085  */
6086
6087 Roo.bootstrap.nav.Group = function(config){
6088     Roo.bootstrap.nav.Group.superclass.constructor.call(this, config);
6089     this.navItems = [];
6090    
6091     Roo.bootstrap.nav.Group.register(this);
6092      this.addEvents({
6093         /**
6094              * @event changed
6095              * Fires when the active item changes
6096              * @param {Roo.bootstrap.nav.Group} this
6097              * @param {Roo.bootstrap.Navbar.Item} selected The item selected
6098              * @param {Roo.bootstrap.Navbar.Item} prev The previously selected item 
6099          */
6100         'changed': true
6101      });
6102     
6103 };
6104
6105 Roo.extend(Roo.bootstrap.nav.Group, Roo.bootstrap.Component,  {
6106     
6107     align: '',
6108     inverse: false,
6109     form: false,
6110     type: 'nav',
6111     navId : '',
6112     // private
6113     pilltype : true,
6114     
6115     navItems : false, 
6116     
6117     getAutoCreate : function()
6118     {
6119         var cfg = Roo.apply({}, Roo.bootstrap.nav.Group.superclass.getAutoCreate.call(this));
6120         
6121         cfg = {
6122             tag : 'ul',
6123             cls: 'nav' 
6124         };
6125         if (Roo.bootstrap.version == 4) {
6126             if (['tabs','pills'].indexOf(this.type) != -1) {
6127                 cfg.cls += ' nav-' + this.type; 
6128             } else {
6129                 // trying to remove so header bar can right align top?
6130                 if (this.parent() && this.parent().xtype != 'NavHeaderbar') {
6131                     // do not use on header bar... 
6132                     cfg.cls += ' navbar-nav';
6133                 }
6134             }
6135             
6136         } else {
6137             if (['tabs','pills'].indexOf(this.type) != -1) {
6138                 cfg.cls += ' nav-' + this.type
6139             } else {
6140                 if (this.type !== 'nav') {
6141                     Roo.log('nav type must be nav/tabs/pills')
6142                 }
6143                 cfg.cls += ' navbar-nav'
6144             }
6145         }
6146         
6147         if (this.parent() && this.parent().sidebar) {
6148             cfg = {
6149                 tag: 'ul',
6150                 cls: 'dashboard-menu sidebar-menu'
6151             };
6152             
6153             return cfg;
6154         }
6155         
6156         if (this.form === true) {
6157             cfg = {
6158                 tag: 'form',
6159                 cls: 'navbar-form form-inline'
6160             };
6161             //nav navbar-right ml-md-auto
6162             if (this.align === 'right') {
6163                 cfg.cls += ' navbar-right ml-md-auto';
6164             } else {
6165                 cfg.cls += ' navbar-left';
6166             }
6167         }
6168         
6169         if (this.align === 'right') {
6170             cfg.cls += ' navbar-right ml-md-auto';
6171         } else {
6172             cfg.cls += ' mr-auto';
6173         }
6174         
6175         if (this.inverse) {
6176             cfg.cls += ' navbar-inverse';
6177             
6178         }
6179         
6180         
6181         return cfg;
6182     },
6183     /**
6184     * sets the active Navigation item
6185     * @param {Roo.bootstrap.nav.Item} the new current navitem
6186     */
6187     setActiveItem : function(item)
6188     {
6189         var prev = false;
6190         Roo.each(this.navItems, function(v){
6191             if (v == item) {
6192                 return ;
6193             }
6194             if (v.isActive()) {
6195                 v.setActive(false, true);
6196                 prev = v;
6197                 
6198             }
6199             
6200         });
6201
6202         item.setActive(true, true);
6203         this.fireEvent('changed', this, item, prev);
6204         
6205         
6206     },
6207     /**
6208     * gets the active Navigation item
6209     * @return {Roo.bootstrap.nav.Item} the current navitem
6210     */
6211     getActive : function()
6212     {
6213         
6214         var prev = false;
6215         Roo.each(this.navItems, function(v){
6216             
6217             if (v.isActive()) {
6218                 prev = v;
6219                 
6220             }
6221             
6222         });
6223         return prev;
6224     },
6225     
6226     indexOfNav : function()
6227     {
6228         
6229         var prev = false;
6230         Roo.each(this.navItems, function(v,i){
6231             
6232             if (v.isActive()) {
6233                 prev = i;
6234                 
6235             }
6236             
6237         });
6238         return prev;
6239     },
6240     /**
6241     * adds a Navigation item
6242     * @param {Roo.bootstrap.nav.Item} the navitem to add
6243     */
6244     addItem : function(cfg)
6245     {
6246         if (this.form && Roo.bootstrap.version == 4) {
6247             cfg.tag = 'div';
6248         }
6249         var cn = new Roo.bootstrap.nav.Item(cfg);
6250         this.register(cn);
6251         cn.parentId = this.id;
6252         cn.onRender(this.el, null);
6253         return cn;
6254     },
6255     /**
6256     * register a Navigation item
6257     * @param {Roo.bootstrap.nav.Item} the navitem to add
6258     */
6259     register : function(item)
6260     {
6261         this.navItems.push( item);
6262         item.navId = this.navId;
6263     
6264     },
6265     
6266     /**
6267     * clear all the Navigation item
6268     */
6269    
6270     clearAll : function()
6271     {
6272         this.navItems = [];
6273         this.el.dom.innerHTML = '';
6274     },
6275     
6276     getNavItem: function(tabId)
6277     {
6278         var ret = false;
6279         Roo.each(this.navItems, function(e) {
6280             if (e.tabId == tabId) {
6281                ret =  e;
6282                return false;
6283             }
6284             return true;
6285             
6286         });
6287         return ret;
6288     },
6289     
6290     setActiveNext : function()
6291     {
6292         var i = this.indexOfNav(this.getActive());
6293         if (i > this.navItems.length) {
6294             return;
6295         }
6296         this.setActiveItem(this.navItems[i+1]);
6297     },
6298     setActivePrev : function()
6299     {
6300         var i = this.indexOfNav(this.getActive());
6301         if (i  < 1) {
6302             return;
6303         }
6304         this.setActiveItem(this.navItems[i-1]);
6305     },
6306     clearWasActive : function(except) {
6307         Roo.each(this.navItems, function(e) {
6308             if (e.tabId != except.tabId && e.was_active) {
6309                e.was_active = false;
6310                return false;
6311             }
6312             return true;
6313             
6314         });
6315     },
6316     getWasActive : function ()
6317     {
6318         var r = false;
6319         Roo.each(this.navItems, function(e) {
6320             if (e.was_active) {
6321                r = e;
6322                return false;
6323             }
6324             return true;
6325             
6326         });
6327         return r;
6328     }
6329     
6330     
6331 });
6332
6333  
6334 Roo.apply(Roo.bootstrap.nav.Group, {
6335     
6336     groups: {},
6337      /**
6338     * register a Navigation Group
6339     * @param {Roo.bootstrap.nav.Group} the navgroup to add
6340     */
6341     register : function(navgrp)
6342     {
6343         this.groups[navgrp.navId] = navgrp;
6344         
6345     },
6346     /**
6347     * fetch a Navigation Group based on the navigation ID
6348     * @param {string} the navgroup to add
6349     * @returns {Roo.bootstrap.nav.Group} the navgroup 
6350     */
6351     get: function(navId) {
6352         if (typeof(this.groups[navId]) == 'undefined') {
6353             return false;
6354             //this.register(new Roo.bootstrap.nav.Group({ navId : navId }));
6355         }
6356         return this.groups[navId] ;
6357     }
6358     
6359     
6360     
6361 });
6362
6363  /**
6364  * @class Roo.bootstrap.nav.Item
6365  * @extends Roo.bootstrap.Component
6366  * @children Roo.bootstrap.Container Roo.bootstrap.Button
6367  * @parent Roo.bootstrap.nav.Group
6368  * @licence LGPL
6369  * Bootstrap Navbar.NavItem class
6370  * 
6371  * @cfg {String} href  link to
6372  * @cfg {String} button_weight (default|primary|secondary|success|info|warning|danger|link|light|dark) default none
6373  * @cfg {Boolean} button_outline show and outlined button
6374  * @cfg {String} html content of button
6375  * @cfg {String} badge text inside badge
6376  * @cfg {String} badgecls (bg-green|bg-red|bg-yellow)the extra classes for the badge
6377  * @cfg {String} glyphicon DEPRICATED - use fa
6378  * @cfg {String} icon DEPRICATED - use fa
6379  * @cfg {String} fa - Fontawsome icon name (can add stuff to it like fa-2x)
6380  * @cfg {Boolean} active Is item active
6381  * @cfg {Boolean} disabled Is item disabled
6382  * @cfg {String} linkcls  Link Class
6383  * @cfg {Boolean} preventDefault (true | false) default false
6384  * @cfg {String} tabId the tab that this item activates.
6385  * @cfg {String} tagtype (a|span) render as a href or span?
6386  * @cfg {Boolean} animateRef (true|false) link to element default false  
6387  * @cfg {Roo.bootstrap.menu.Menu} menu a Menu 
6388   
6389  * @constructor
6390  * Create a new Navbar Item
6391  * @param {Object} config The config object
6392  */
6393 Roo.bootstrap.nav.Item = function(config){
6394     Roo.bootstrap.nav.Item.superclass.constructor.call(this, config);
6395     this.addEvents({
6396         // raw events
6397         /**
6398          * @event click
6399          * The raw click event for the entire grid.
6400          * @param {Roo.EventObject} e
6401          */
6402         "click" : true,
6403          /**
6404             * @event changed
6405             * Fires when the active item active state changes
6406             * @param {Roo.bootstrap.nav.Item} this
6407             * @param {boolean} state the new state
6408              
6409          */
6410         'changed': true,
6411         /**
6412             * @event scrollto
6413             * Fires when scroll to element
6414             * @param {Roo.bootstrap.nav.Item} this
6415             * @param {Object} options
6416             * @param {Roo.EventObject} e
6417              
6418          */
6419         'scrollto': true
6420     });
6421    
6422 };
6423
6424 Roo.extend(Roo.bootstrap.nav.Item, Roo.bootstrap.Component,  {
6425     
6426     href: false,
6427     html: '',
6428     badge: '',
6429     icon: false,
6430     fa : false,
6431     glyphicon: false,
6432     active: false,
6433     preventDefault : false,
6434     tabId : false,
6435     tagtype : 'a',
6436     tag: 'li',
6437     disabled : false,
6438     animateRef : false,
6439     was_active : false,
6440     button_weight : '',
6441     button_outline : false,
6442     linkcls : '',
6443     navLink: false,
6444     
6445     getAutoCreate : function(){
6446          
6447         var cfg = {
6448             tag: this.tag,
6449             cls: 'nav-item'
6450         };
6451         
6452         cfg.cls =  typeof(cfg.cls) == 'undefined'  ? '' : cfg.cls;
6453         
6454         if (this.active) {
6455             cfg.cls +=  ' active' ;
6456         }
6457         if (this.disabled) {
6458             cfg.cls += ' disabled';
6459         }
6460         
6461         // BS4 only?
6462         if (this.button_weight.length) {
6463             cfg.tag = this.href ? 'a' : 'button';
6464             cfg.html = this.html || '';
6465             cfg.cls += ' btn btn' + (this.button_outline ? '-outline' : '') + '-' + this.button_weight;
6466             if (this.href) {
6467                 cfg.href = this.href;
6468             }
6469             if (this.fa) {
6470                 cfg.html = '<i class="fa fas fa-'+this.fa+'"></i> <span class="nav-html">' + this.html + '</span>';
6471             } else {
6472                 cfg.cls += " nav-html";
6473             }
6474             
6475             // menu .. should add dropdown-menu class - so no need for carat..
6476             
6477             if (this.badge !== '') {
6478                  
6479                 cfg.html += ' <span class="badge badge-secondary">' + this.badge + '</span>';
6480             }
6481             return cfg;
6482         }
6483         
6484         if (this.href || this.html || this.glyphicon || this.icon || this.fa) {
6485             cfg.cn = [
6486                 {
6487                     tag: this.tagtype,
6488                     href : this.href || "#",
6489                     html: this.html || '',
6490                     cls : ''
6491                 }
6492             ];
6493             if (this.tagtype == 'a') {
6494                 cfg.cn[0].cls = 'nav-link' +  (this.active ?  ' active'  : '') + ' ' + this.linkcls;
6495         
6496             }
6497             if (this.icon) {
6498                 cfg.cn[0].html = '<i class="'+this.icon+'"></i> <span class="nav-html">' + cfg.cn[0].html + '</span>';
6499             } else  if (this.fa) {
6500                 cfg.cn[0].html = '<i class="fa fas fa-'+this.fa+'"></i> <span class="nav-html">' + cfg.cn[0].html + '</span>';
6501             } else if(this.glyphicon) {
6502                 cfg.cn[0].html = '<span class="glyphicon glyphicon-' + this.glyphicon + '"></span> '  + cfg.cn[0].html;
6503             } else {
6504                 cfg.cn[0].cls += " nav-html";
6505             }
6506             
6507             if (this.menu) {
6508                 cfg.cn[0].html += " <span class='caret'></span>";
6509              
6510             }
6511             
6512             if (this.badge !== '') {
6513                 cfg.cn[0].html += ' <span class="badge badge-secondary">' + this.badge + '</span>';
6514             }
6515         }
6516         
6517         
6518         
6519         return cfg;
6520     },
6521     onRender : function(ct, position)
6522     {
6523        // Roo.log("Call onRender: " + this.xtype);
6524         if (Roo.bootstrap.version == 4 && ct.dom.type != 'ul') {
6525             this.tag = 'div';
6526         }
6527         
6528         var ret = Roo.bootstrap.nav.Item.superclass.onRender.call(this, ct, position);
6529         this.navLink = this.el.select('.nav-link',true).first();
6530         this.htmlEl = this.el.hasClass('nav-html') ? this.el : this.el.select('.nav-html',true).first();
6531         return ret;
6532     },
6533       
6534     
6535     initEvents: function() 
6536     {
6537         if (typeof (this.menu) != 'undefined') {
6538             this.menu.parentType = this.xtype;
6539             this.menu.triggerEl = this.el;
6540             this.menu = this.addxtype(Roo.apply({}, this.menu));
6541         }
6542         
6543         this.el.on('click', this.onClick, this);
6544         
6545         //if(this.tagtype == 'span'){
6546         //    this.el.select('span',true).on('click', this.onClick, this);
6547         //}
6548        
6549         // at this point parent should be available..
6550         this.parent().register(this);
6551     },
6552     
6553     onClick : function(e)
6554     {
6555         if (e.getTarget('.dropdown-menu-item')) {
6556             // did you click on a menu itemm.... - then don't trigger onclick..
6557             return;
6558         }
6559         
6560         if(
6561                 this.preventDefault ||
6562                                 this.href === false ||
6563                 this.href === '#' 
6564         ){
6565             //Roo.log("NavItem - prevent Default?");
6566             e.preventDefault();
6567         }
6568         
6569         if (this.disabled) {
6570             return;
6571         }
6572         
6573         var tg = Roo.bootstrap.TabGroup.get(this.navId);
6574         if (tg && tg.transition) {
6575             Roo.log("waiting for the transitionend");
6576             return;
6577         }
6578         
6579         
6580         
6581         //Roo.log("fire event clicked");
6582         if(this.fireEvent('click', this, e) === false){
6583             return;
6584         };
6585         
6586         if(this.tagtype == 'span'){
6587             return;
6588         }
6589         
6590         //Roo.log(this.href);
6591         var ael = this.el.select('a',true).first();
6592         //Roo.log(ael);
6593         
6594         if(ael && this.animateRef && this.href.indexOf('#') > -1){
6595             //Roo.log(["test:",ael.dom.href.split("#")[0], document.location.toString().split("#")[0]]);
6596             if (ael.dom.href.split("#")[0] != document.location.toString().split("#")[0]) {
6597                 return; // ignore... - it's a 'hash' to another page.
6598             }
6599             Roo.log("NavItem - prevent Default?");
6600             e.preventDefault();
6601             this.scrollToElement(e);
6602         }
6603         
6604         
6605         var p =  this.parent();
6606    
6607         if (['tabs','pills'].indexOf(p.type)!==-1 && p.pilltype) {
6608             if (typeof(p.setActiveItem) !== 'undefined') {
6609                 p.setActiveItem(this);
6610             }
6611         }
6612         
6613         // if parent is a navbarheader....- and link is probably a '#' page ref.. then remove the expanded menu.
6614         if (p.parentType == 'NavHeaderbar' && !this.menu) {
6615             // remove the collapsed menu expand...
6616             p.parent().el.select('.roo-navbar-collapse',true).removeClass('in');  
6617         }
6618     },
6619     
6620     isActive: function () {
6621         return this.active
6622     },
6623     setActive : function(state, fire, is_was_active)
6624     {
6625         if (this.active && !state && this.navId) {
6626             this.was_active = true;
6627             var nv = Roo.bootstrap.nav.Group.get(this.navId);
6628             if (nv) {
6629                 nv.clearWasActive(this);
6630             }
6631             
6632         }
6633         this.active = state;
6634         
6635         if (!state ) {
6636             this.el.removeClass('active');
6637             this.navLink ? this.navLink.removeClass('active') : false;
6638         } else if (!this.el.hasClass('active')) {
6639             
6640             this.el.addClass('active');
6641             if (Roo.bootstrap.version == 4 && this.navLink ) {
6642                 this.navLink.addClass('active');
6643             }
6644             
6645         }
6646         if (fire) {
6647             this.fireEvent('changed', this, state);
6648         }
6649         
6650         // show a panel if it's registered and related..
6651         
6652         if (!this.navId || !this.tabId || !state || is_was_active) {
6653             return;
6654         }
6655         
6656         var tg = Roo.bootstrap.TabGroup.get(this.navId);
6657         if (!tg) {
6658             return;
6659         }
6660         var pan = tg.getPanelByName(this.tabId);
6661         if (!pan) {
6662             return;
6663         }
6664         // if we can not flip to new panel - go back to old nav highlight..
6665         if (false == tg.showPanel(pan)) {
6666             var nv = Roo.bootstrap.nav.Group.get(this.navId);
6667             if (nv) {
6668                 var onav = nv.getWasActive();
6669                 if (onav) {
6670                     onav.setActive(true, false, true);
6671                 }
6672             }
6673             
6674         }
6675         
6676         
6677         
6678     },
6679      // this should not be here...
6680     setDisabled : function(state)
6681     {
6682         this.disabled = state;
6683         if (!state ) {
6684             this.el.removeClass('disabled');
6685         } else if (!this.el.hasClass('disabled')) {
6686             this.el.addClass('disabled');
6687         }
6688         
6689     },
6690     
6691     /**
6692      * Fetch the element to display the tooltip on.
6693      * @return {Roo.Element} defaults to this.el
6694      */
6695     tooltipEl : function()
6696     {
6697         return this.el; //this.tagtype  == 'a' ? this.el  : this.el.select('' + this.tagtype + '', true).first();
6698     },
6699     
6700     scrollToElement : function(e)
6701     {
6702         var c = document.body;
6703         
6704         /*
6705          * Firefox / IE places the overflow at the html level, unless specifically styled to behave differently.
6706          */
6707         if(Roo.isFirefox || Roo.isIE || Roo.isIE11){
6708             c = document.documentElement;
6709         }
6710         
6711         var target = Roo.get(c).select('a[name=' + this.href.split('#')[1] +']', true).first();
6712         
6713         if(!target){
6714             return;
6715         }
6716
6717         var o = target.calcOffsetsTo(c);
6718         
6719         var options = {
6720             target : target,
6721             value : o[1]
6722         };
6723         
6724         this.fireEvent('scrollto', this, options, e);
6725         
6726         Roo.get(c).scrollTo('top', options.value, true);
6727         
6728         return;
6729     },
6730     /**
6731      * Set the HTML (text content) of the item
6732      * @param {string} html  content for the nav item
6733      */
6734     setHtml : function(html)
6735     {
6736         this.html = html;
6737         this.htmlEl.dom.innerHTML = html;
6738         
6739     } 
6740 });
6741  
6742
6743  /*
6744  * - LGPL
6745  *
6746  * sidebar item
6747  *
6748  *  li
6749  *    <span> icon </span>
6750  *    <span> text </span>
6751  *    <span>badge </span>
6752  */
6753
6754 /**
6755  * @class Roo.bootstrap.nav.SidebarItem
6756  * @extends Roo.bootstrap.nav.Item
6757  * Bootstrap Navbar.NavSidebarItem class
6758  * 
6759  * {String} badgeWeight (default|primary|success|info|warning|danger)the extra classes for the badge
6760  * {Boolean} open is the menu open
6761  * {Boolean} buttonView use button as the tigger el rather that a (default false)
6762  * {String} buttonWeight (default|primary|success|info|warning|danger)the extra classes for the button
6763  * {String} buttonSize (sm|md|lg)the extra classes for the button
6764  * {Boolean} showArrow show arrow next to the text (default true)
6765  * @constructor
6766  * Create a new Navbar Button
6767  * @param {Object} config The config object
6768  */
6769 Roo.bootstrap.nav.SidebarItem = function(config){
6770     Roo.bootstrap.nav.SidebarItem.superclass.constructor.call(this, config);
6771     this.addEvents({
6772         // raw events
6773         /**
6774          * @event click
6775          * The raw click event for the entire grid.
6776          * @param {Roo.EventObject} e
6777          */
6778         "click" : true,
6779          /**
6780             * @event changed
6781             * Fires when the active item active state changes
6782             * @param {Roo.bootstrap.nav.SidebarItem} this
6783             * @param {boolean} state the new state
6784              
6785          */
6786         'changed': true
6787     });
6788    
6789 };
6790
6791 Roo.extend(Roo.bootstrap.nav.SidebarItem, Roo.bootstrap.nav.Item,  {
6792     
6793     badgeWeight : 'default',
6794     
6795     open: false,
6796     
6797     buttonView : false,
6798     
6799     buttonWeight : 'default',
6800     
6801     buttonSize : 'md',
6802     
6803     showArrow : true,
6804     
6805     getAutoCreate : function(){
6806         
6807         
6808         var a = {
6809                 tag: 'a',
6810                 href : this.href || '#',
6811                 cls: '',
6812                 html : '',
6813                 cn : []
6814         };
6815         
6816         if(this.buttonView){
6817             a = {
6818                 tag: 'button',
6819                 href : this.href || '#',
6820                 cls: 'btn btn-' + this.buttonWeight + ' btn-' + this.buttonSize + 'roo-button-dropdown-toggle',
6821                 html : this.html,
6822                 cn : []
6823             };
6824         }
6825         
6826         var cfg = {
6827             tag: 'li',
6828             cls: '',
6829             cn: [ a ]
6830         };
6831         
6832         if (this.active) {
6833             cfg.cls += ' active';
6834         }
6835         
6836         if (this.disabled) {
6837             cfg.cls += ' disabled';
6838         }
6839         if (this.open) {
6840             cfg.cls += ' open x-open';
6841         }
6842         // left icon..
6843         if (this.glyphicon || this.icon) {
6844             var c = this.glyphicon  ? ('glyphicon glyphicon-'+this.glyphicon)  : this.icon;
6845             a.cn.push({ tag : 'i', cls : c }) ;
6846         }
6847         
6848         if(!this.buttonView){
6849             var span = {
6850                 tag: 'span',
6851                 html : this.html || ''
6852             };
6853
6854             a.cn.push(span);
6855             
6856         }
6857         
6858         if (this.badge !== '') {
6859             a.cn.push({ tag: 'span',  cls : 'badge pull-right badge-' + this.badgeWeight, html: this.badge }); 
6860         }
6861         
6862         if (this.menu) {
6863             
6864             if(this.showArrow){
6865                 a.cn.push({ tag : 'i', cls : 'glyphicon glyphicon-chevron-down pull-right'});
6866             }
6867             
6868             a.cls += ' dropdown-toggle treeview' ;
6869         }
6870         
6871         return cfg;
6872     },
6873     
6874     initEvents : function()
6875     { 
6876         if (typeof (this.menu) != 'undefined') {
6877             this.menu.parentType = this.xtype;
6878             this.menu.triggerEl = this.el;
6879             this.menu = this.addxtype(Roo.apply({}, this.menu));
6880         }
6881         
6882         this.el.on('click', this.onClick, this);
6883         
6884         if(this.badge !== ''){
6885             this.badgeEl = this.el.select('.badge', true).first().setVisibilityMode(Roo.Element.DISPLAY);
6886         }
6887         
6888     },
6889     
6890     onClick : function(e)
6891     {
6892         if(this.disabled){
6893             e.preventDefault();
6894             return;
6895         }
6896         
6897         if(this.preventDefault){
6898             e.preventDefault();
6899         }
6900         
6901         this.fireEvent('click', this, e);
6902     },
6903     
6904     disable : function()
6905     {
6906         this.setDisabled(true);
6907     },
6908     
6909     enable : function()
6910     {
6911         this.setDisabled(false);
6912     },
6913     
6914     setDisabled : function(state)
6915     {
6916         if(this.disabled == state){
6917             return;
6918         }
6919         
6920         this.disabled = state;
6921         
6922         if (state) {
6923             this.el.addClass('disabled');
6924             return;
6925         }
6926         
6927         this.el.removeClass('disabled');
6928         
6929         return;
6930     },
6931     
6932     setActive : function(state)
6933     {
6934         if(this.active == state){
6935             return;
6936         }
6937         
6938         this.active = state;
6939         
6940         if (state) {
6941             this.el.addClass('active');
6942             return;
6943         }
6944         
6945         this.el.removeClass('active');
6946         
6947         return;
6948     },
6949     
6950     isActive: function () 
6951     {
6952         return this.active;
6953     },
6954     
6955     setBadge : function(str)
6956     {
6957         if(!this.badgeEl){
6958             return;
6959         }
6960         
6961         this.badgeEl.dom.innerHTML = str;
6962     }
6963     
6964    
6965      
6966  
6967 });
6968  
6969
6970  /*
6971  * - LGPL
6972  *
6973  * nav progress bar
6974  * 
6975  */
6976
6977 /**
6978  * @class Roo.bootstrap.nav.ProgressBar
6979  * @extends Roo.bootstrap.Component
6980  * @children Roo.bootstrap.nav.ProgressBarItem
6981  * Bootstrap NavProgressBar class
6982  * 
6983  * @constructor
6984  * Create a new nav progress bar - a bar indicating step along a process
6985  * @param {Object} config The config object
6986  */
6987
6988 Roo.bootstrap.nav.ProgressBar = function(config){
6989     Roo.bootstrap.nav.ProgressBar.superclass.constructor.call(this, config);
6990
6991     this.bullets = this.bullets || [];
6992    
6993 //    Roo.bootstrap.nav.ProgressBar.register(this);
6994      this.addEvents({
6995         /**
6996              * @event changed
6997              * Fires when the active item changes
6998              * @param {Roo.bootstrap.nav.ProgressBar} this
6999              * @param {Roo.bootstrap.nav.ProgressItem} selected The item selected
7000              * @param {Roo.bootstrap.nav.ProgressItem} prev The previously selected item 
7001          */
7002         'changed': true
7003      });
7004     
7005 };
7006
7007 Roo.extend(Roo.bootstrap.nav.ProgressBar, Roo.bootstrap.Component,  {
7008     /**
7009      * @cfg {Roo.bootstrap.nav.ProgressItem} NavProgressBar:bullets[]
7010      * Bullets for the Nav Progress bar for the toolbar
7011      */
7012     bullets : [],
7013     barItems : [],
7014     
7015     getAutoCreate : function()
7016     {
7017         var cfg = Roo.apply({}, Roo.bootstrap.nav.ProgressBar.superclass.getAutoCreate.call(this));
7018         
7019         cfg = {
7020             tag : 'div',
7021             cls : 'roo-navigation-bar-group',
7022             cn : [
7023                 {
7024                     tag : 'div',
7025                     cls : 'roo-navigation-top-bar'
7026                 },
7027                 {
7028                     tag : 'div',
7029                     cls : 'roo-navigation-bullets-bar',
7030                     cn : [
7031                         {
7032                             tag : 'ul',
7033                             cls : 'roo-navigation-bar'
7034                         }
7035                     ]
7036                 },
7037                 
7038                 {
7039                     tag : 'div',
7040                     cls : 'roo-navigation-bottom-bar'
7041                 }
7042             ]
7043             
7044         };
7045         
7046         return cfg;
7047         
7048     },
7049     
7050     initEvents: function() 
7051     {
7052         
7053     },
7054     
7055     onRender : function(ct, position) 
7056     {
7057         Roo.bootstrap.nav.ProgressBar.superclass.onRender.call(this, ct, position);
7058         
7059         if(this.bullets.length){
7060             Roo.each(this.bullets, function(b){
7061                this.addItem(b);
7062             }, this);
7063         }
7064         
7065         this.format();
7066         
7067     },
7068     
7069     addItem : function(cfg)
7070     {
7071         var item = new Roo.bootstrap.nav.ProgressItem(cfg);
7072         
7073         item.parentId = this.id;
7074         item.render(this.el.select('.roo-navigation-bar', true).first(), null);
7075         
7076         if(cfg.html){
7077             var top = new Roo.bootstrap.Element({
7078                 tag : 'div',
7079                 cls : 'roo-navigation-bar-text'
7080             });
7081             
7082             var bottom = new Roo.bootstrap.Element({
7083                 tag : 'div',
7084                 cls : 'roo-navigation-bar-text'
7085             });
7086             
7087             top.onRender(this.el.select('.roo-navigation-top-bar', true).first(), null);
7088             bottom.onRender(this.el.select('.roo-navigation-bottom-bar', true).first(), null);
7089             
7090             var topText = new Roo.bootstrap.Element({
7091                 tag : 'span',
7092                 html : (typeof(cfg.position) != 'undefined' && cfg.position == 'top') ? cfg.html : ''
7093             });
7094             
7095             var bottomText = new Roo.bootstrap.Element({
7096                 tag : 'span',
7097                 html : (typeof(cfg.position) != 'undefined' && cfg.position == 'top') ? '' : cfg.html
7098             });
7099             
7100             topText.onRender(top.el, null);
7101             bottomText.onRender(bottom.el, null);
7102             
7103             item.topEl = top;
7104             item.bottomEl = bottom;
7105         }
7106         
7107         this.barItems.push(item);
7108         
7109         return item;
7110     },
7111     
7112     getActive : function()
7113     {
7114         var active = false;
7115         
7116         Roo.each(this.barItems, function(v){
7117             
7118             if (!v.isActive()) {
7119                 return;
7120             }
7121             
7122             active = v;
7123             return false;
7124             
7125         });
7126         
7127         return active;
7128     },
7129     
7130     setActiveItem : function(item)
7131     {
7132         var prev = false;
7133         
7134         Roo.each(this.barItems, function(v){
7135             if (v.rid == item.rid) {
7136                 return ;
7137             }
7138             
7139             if (v.isActive()) {
7140                 v.setActive(false);
7141                 prev = v;
7142             }
7143         });
7144
7145         item.setActive(true);
7146         
7147         this.fireEvent('changed', this, item, prev);
7148     },
7149     
7150     getBarItem: function(rid)
7151     {
7152         var ret = false;
7153         
7154         Roo.each(this.barItems, function(e) {
7155             if (e.rid != rid) {
7156                 return;
7157             }
7158             
7159             ret =  e;
7160             return false;
7161         });
7162         
7163         return ret;
7164     },
7165     
7166     indexOfItem : function(item)
7167     {
7168         var index = false;
7169         
7170         Roo.each(this.barItems, function(v, i){
7171             
7172             if (v.rid != item.rid) {
7173                 return;
7174             }
7175             
7176             index = i;
7177             return false
7178         });
7179         
7180         return index;
7181     },
7182     
7183     setActiveNext : function()
7184     {
7185         var i = this.indexOfItem(this.getActive());
7186         
7187         if (i > this.barItems.length) {
7188             return;
7189         }
7190         
7191         this.setActiveItem(this.barItems[i+1]);
7192     },
7193     
7194     setActivePrev : function()
7195     {
7196         var i = this.indexOfItem(this.getActive());
7197         
7198         if (i  < 1) {
7199             return;
7200         }
7201         
7202         this.setActiveItem(this.barItems[i-1]);
7203     },
7204     
7205     format : function()
7206     {
7207         if(!this.barItems.length){
7208             return;
7209         }
7210      
7211         var width = 100 / this.barItems.length;
7212         
7213         Roo.each(this.barItems, function(i){
7214             i.el.setStyle('width', width + '%');
7215             i.topEl.el.setStyle('width', width + '%');
7216             i.bottomEl.el.setStyle('width', width + '%');
7217         }, this);
7218         
7219     }
7220     
7221 });
7222 /*
7223  * - LGPL
7224  *
7225  * Nav Progress Item
7226  * 
7227  */
7228
7229 /**
7230  * @class Roo.bootstrap.nav.ProgressBarItem
7231  * @extends Roo.bootstrap.Component
7232  * Bootstrap NavProgressBarItem class
7233  * @cfg {String} rid the reference id
7234  * @cfg {Boolean} active (true|false) Is item active default false
7235  * @cfg {Boolean} disabled (true|false) Is item active default false
7236  * @cfg {String} html
7237  * @cfg {String} position (top|bottom) text position default bottom
7238  * @cfg {String} icon show icon instead of number
7239  * 
7240  * @constructor
7241  * Create a new NavProgressBarItem
7242  * @param {Object} config The config object
7243  */
7244 Roo.bootstrap.nav.ProgressBarItem = function(config){
7245     Roo.bootstrap.nav.ProgressBarItem.superclass.constructor.call(this, config);
7246     this.addEvents({
7247         // raw events
7248         /**
7249          * @event click
7250          * The raw click event for the entire grid.
7251          * @param {Roo.bootstrap.nav.ProgressBarItem} this
7252          * @param {Roo.EventObject} e
7253          */
7254         "click" : true
7255     });
7256    
7257 };
7258
7259 Roo.extend(Roo.bootstrap.nav.ProgressBarItem, Roo.bootstrap.Component,  {
7260     
7261     rid : '',
7262     active : false,
7263     disabled : false,
7264     html : '',
7265     position : 'bottom',
7266     icon : false,
7267     
7268     getAutoCreate : function()
7269     {
7270         var iconCls = 'roo-navigation-bar-item-icon';
7271         
7272         iconCls += ((this.icon) ? (' ' + this.icon) : (' step-number')) ;
7273         
7274         var cfg = {
7275             tag: 'li',
7276             cls: 'roo-navigation-bar-item',
7277             cn : [
7278                 {
7279                     tag : 'i',
7280                     cls : iconCls
7281                 }
7282             ]
7283         };
7284         
7285         if(this.active){
7286             cfg.cls += ' active';
7287         }
7288         if(this.disabled){
7289             cfg.cls += ' disabled';
7290         }
7291         
7292         return cfg;
7293     },
7294     
7295     disable : function()
7296     {
7297         this.setDisabled(true);
7298     },
7299     
7300     enable : function()
7301     {
7302         this.setDisabled(false);
7303     },
7304     
7305     initEvents: function() 
7306     {
7307         this.iconEl = this.el.select('.roo-navigation-bar-item-icon', true).first();
7308         
7309         this.iconEl.on('click', this.onClick, this);
7310     },
7311     
7312     onClick : function(e)
7313     {
7314         e.preventDefault();
7315         
7316         if(this.disabled){
7317             return;
7318         }
7319         
7320         if(this.fireEvent('click', this, e) === false){
7321             return;
7322         };
7323         
7324         this.parent().setActiveItem(this);
7325     },
7326     
7327     isActive: function () 
7328     {
7329         return this.active;
7330     },
7331     
7332     setActive : function(state)
7333     {
7334         if(this.active == state){
7335             return;
7336         }
7337         
7338         this.active = state;
7339         
7340         if (state) {
7341             this.el.addClass('active');
7342             return;
7343         }
7344         
7345         this.el.removeClass('active');
7346         
7347         return;
7348     },
7349     
7350     setDisabled : function(state)
7351     {
7352         if(this.disabled == state){
7353             return;
7354         }
7355         
7356         this.disabled = state;
7357         
7358         if (state) {
7359             this.el.addClass('disabled');
7360             return;
7361         }
7362         
7363         this.el.removeClass('disabled');
7364     },
7365     
7366     tooltipEl : function()
7367     {
7368         return this.el.select('.roo-navigation-bar-item-icon', true).first();;
7369     }
7370 });
7371  
7372
7373  /*
7374  * - LGPL
7375  *
7376  *  Breadcrumb Nav
7377  * 
7378  */
7379 Roo.namespace('Roo.bootstrap.breadcrumb');
7380
7381
7382 /**
7383  * @class Roo.bootstrap.breadcrumb.Nav
7384  * @extends Roo.bootstrap.Component
7385  * Bootstrap Breadcrumb Nav Class
7386  *  
7387  * @children Roo.bootstrap.breadcrumb.Item
7388  * 
7389  * @constructor
7390  * Create a new breadcrumb.Nav
7391  * @param {Object} config The config object
7392  */
7393
7394
7395 Roo.bootstrap.breadcrumb.Nav = function(config){
7396     Roo.bootstrap.breadcrumb.Nav.superclass.constructor.call(this, config);
7397     
7398     
7399 };
7400
7401 Roo.extend(Roo.bootstrap.breadcrumb.Nav, Roo.bootstrap.Component,  {
7402     
7403     getAutoCreate : function()
7404     {
7405
7406         var cfg = {
7407             tag: 'nav',
7408             cn : [
7409                 {
7410                     tag : 'ol',
7411                     cls : 'breadcrumb'
7412                 }
7413             ]
7414             
7415         };
7416           
7417         return cfg;
7418     },
7419     
7420     initEvents: function()
7421     {
7422         this.olEl = this.el.select('ol',true).first();    
7423     },
7424     getChildContainer : function()
7425     {
7426         return this.olEl;  
7427     }
7428     
7429 });
7430
7431  /*
7432  * - LGPL
7433  *
7434  *  Breadcrumb Item
7435  * 
7436  */
7437
7438
7439 /**
7440  * @class Roo.bootstrap.breadcrumb.Nav
7441  * @extends Roo.bootstrap.Component
7442  * @children Roo.bootstrap.Component
7443  * @parent Roo.bootstrap.breadcrumb.Nav
7444  * Bootstrap Breadcrumb Nav Class
7445  *  
7446  * 
7447  * @cfg {String} html the content of the link.
7448  * @cfg {String} href where it links to if '#' is used the link will be handled by onClick.
7449  * @cfg {Boolean} active is it active
7450
7451  * 
7452  * @constructor
7453  * Create a new breadcrumb.Nav
7454  * @param {Object} config The config object
7455  */
7456
7457 Roo.bootstrap.breadcrumb.Item = function(config){
7458     Roo.bootstrap.breadcrumb.Item.superclass.constructor.call(this, config);
7459     this.addEvents({
7460         // img events
7461         /**
7462          * @event click
7463          * The img click event for the img.
7464          * @param {Roo.EventObject} e
7465          */
7466         "click" : true
7467     });
7468     
7469 };
7470
7471 Roo.extend(Roo.bootstrap.breadcrumb.Item, Roo.bootstrap.Component,  {
7472     
7473     href: false,
7474     html : '',
7475     
7476     getAutoCreate : function()
7477     {
7478
7479         var cfg = {
7480             tag: 'li',
7481             cls : 'breadcrumb-item' + (this.active ? ' active' : '')
7482         };
7483         if (this.href !== false) {
7484             cfg.cn = [{
7485                 tag : 'a',
7486                 href : this.href,
7487                 html : this.html
7488             }];
7489         } else {
7490             cfg.html = this.html;
7491         }
7492         
7493         return cfg;
7494     },
7495     
7496     initEvents: function()
7497     {
7498         if (this.href) {
7499             this.el.select('a', true).first().on('click',this.onClick, this)
7500         }
7501         
7502     },
7503     onClick : function(e)
7504     {
7505         e.preventDefault();
7506         this.fireEvent('click',this,  e);
7507     }
7508     
7509 });
7510
7511  /*
7512  * - LGPL
7513  *
7514  * row
7515  * 
7516  */
7517
7518 /**
7519  * @class Roo.bootstrap.Row
7520  * @extends Roo.bootstrap.Component
7521  * @children Roo.bootstrap.Component
7522  * Bootstrap Row class (contains columns...)
7523  * 
7524  * @constructor
7525  * Create a new Row
7526  * @param {Object} config The config object
7527  */
7528
7529 Roo.bootstrap.Row = function(config){
7530     Roo.bootstrap.Row.superclass.constructor.call(this, config);
7531 };
7532
7533 Roo.extend(Roo.bootstrap.Row, Roo.bootstrap.Component,  {
7534     
7535     getAutoCreate : function(){
7536        return {
7537             cls: 'row clearfix'
7538        };
7539     }
7540     
7541     
7542 });
7543
7544  
7545
7546  /*
7547  * - LGPL
7548  *
7549  * pagination
7550  * 
7551  */
7552
7553 /**
7554  * @class Roo.bootstrap.Pagination
7555  * @extends Roo.bootstrap.Component
7556  * @children Roo.bootstrap.Pagination
7557  * Bootstrap Pagination class
7558  * 
7559  * @cfg {String} size (xs|sm|md|lg|xl)
7560  * @cfg {Boolean} inverse 
7561  * 
7562  * @constructor
7563  * Create a new Pagination
7564  * @param {Object} config The config object
7565  */
7566
7567 Roo.bootstrap.Pagination = function(config){
7568     Roo.bootstrap.Pagination.superclass.constructor.call(this, config);
7569 };
7570
7571 Roo.extend(Roo.bootstrap.Pagination, Roo.bootstrap.Component,  {
7572     
7573     cls: false,
7574     size: false,
7575     inverse: false,
7576     
7577     getAutoCreate : function(){
7578         var cfg = {
7579             tag: 'ul',
7580                 cls: 'pagination'
7581         };
7582         if (this.inverse) {
7583             cfg.cls += ' inverse';
7584         }
7585         if (this.html) {
7586             cfg.html=this.html;
7587         }
7588         if (this.cls) {
7589             cfg.cls += " " + this.cls;
7590         }
7591         return cfg;
7592     }
7593    
7594 });
7595
7596  
7597
7598  /*
7599  * - LGPL
7600  *
7601  * Pagination item
7602  * 
7603  */
7604
7605
7606 /**
7607  * @class Roo.bootstrap.PaginationItem
7608  * @extends Roo.bootstrap.Component
7609  * Bootstrap PaginationItem class
7610  * @cfg {String} html text
7611  * @cfg {String} href the link
7612  * @cfg {Boolean} preventDefault (true | false) default true
7613  * @cfg {Boolean} active (true | false) default false
7614  * @cfg {Boolean} disabled default false
7615  * 
7616  * 
7617  * @constructor
7618  * Create a new PaginationItem
7619  * @param {Object} config The config object
7620  */
7621
7622
7623 Roo.bootstrap.PaginationItem = function(config){
7624     Roo.bootstrap.PaginationItem.superclass.constructor.call(this, config);
7625     this.addEvents({
7626         // raw events
7627         /**
7628          * @event click
7629          * The raw click event for the entire grid.
7630          * @param {Roo.EventObject} e
7631          */
7632         "click" : true
7633     });
7634 };
7635
7636 Roo.extend(Roo.bootstrap.PaginationItem, Roo.bootstrap.Component,  {
7637     
7638     href : false,
7639     html : false,
7640     preventDefault: true,
7641     active : false,
7642     cls : false,
7643     disabled: false,
7644     
7645     getAutoCreate : function(){
7646         var cfg= {
7647             tag: 'li',
7648             cn: [
7649                 {
7650                     tag : 'a',
7651                     href : this.href ? this.href : '#',
7652                     html : this.html ? this.html : ''
7653                 }
7654             ]
7655         };
7656         
7657         if(this.cls){
7658             cfg.cls = this.cls;
7659         }
7660         
7661         if(this.disabled){
7662             cfg.cls = typeof(cfg.cls) !== 'undefined' ? cfg.cls + ' disabled' : 'disabled';
7663         }
7664         
7665         if(this.active){
7666             cfg.cls = typeof(cfg.cls) !== 'undefined' ? cfg.cls + ' active' : 'active';
7667         }
7668         
7669         return cfg;
7670     },
7671     
7672     initEvents: function() {
7673         
7674         this.el.on('click', this.onClick, this);
7675         
7676     },
7677     onClick : function(e)
7678     {
7679         Roo.log('PaginationItem on click ');
7680         if(this.preventDefault){
7681             e.preventDefault();
7682         }
7683         
7684         if(this.disabled){
7685             return;
7686         }
7687         
7688         this.fireEvent('click', this, e);
7689     }
7690    
7691 });
7692
7693  
7694
7695  /*
7696  * - LGPL
7697  *
7698  * slider
7699  * 
7700  */
7701
7702
7703 /**
7704  * @class Roo.bootstrap.Slider
7705  * @extends Roo.bootstrap.Component
7706  * Bootstrap Slider class
7707  *    
7708  * @constructor
7709  * Create a new Slider
7710  * @param {Object} config The config object
7711  */
7712
7713 Roo.bootstrap.Slider = function(config){
7714     Roo.bootstrap.Slider.superclass.constructor.call(this, config);
7715 };
7716
7717 Roo.extend(Roo.bootstrap.Slider, Roo.bootstrap.Component,  {
7718     
7719     getAutoCreate : function(){
7720         
7721         var cfg = {
7722             tag: 'div',
7723             cls: 'slider slider-sample1 vertical-handler ui-slider ui-slider-horizontal ui-widget ui-widget-content ui-corner-all',
7724             cn: [
7725                 {
7726                     tag: 'a',
7727                     cls: 'ui-slider-handle ui-state-default ui-corner-all'
7728                 }
7729             ]
7730         };
7731         
7732         return cfg;
7733     }
7734    
7735 });
7736
7737  /*
7738  * Based on:
7739  * Ext JS Library 1.1.1
7740  * Copyright(c) 2006-2007, Ext JS, LLC.
7741  *
7742  * Originally Released Under LGPL - original licence link has changed is not relivant.
7743  *
7744  * Fork - LGPL
7745  * <script type="text/javascript">
7746  */
7747  /**
7748  * @extends Roo.dd.DDProxy
7749  * @class Roo.grid.SplitDragZone
7750  * Support for Column Header resizing
7751  * @constructor
7752  * @param {Object} config
7753  */
7754 // private
7755 // This is a support class used internally by the Grid components
7756 Roo.grid.SplitDragZone = function(grid, hd, hd2){
7757     this.grid = grid;
7758     this.view = grid.getView();
7759     this.proxy = this.view.resizeProxy;
7760     Roo.grid.SplitDragZone.superclass.constructor.call(
7761         this,
7762         hd, // ID
7763         "gridSplitters" + this.grid.getGridEl().id, // SGROUP
7764         {  // CONFIG
7765             dragElId : Roo.id(this.proxy.dom),
7766             resizeFrame:false
7767         }
7768     );
7769     
7770     this.setHandleElId(Roo.id(hd));
7771     if (hd2 !== false) {
7772         this.setOuterHandleElId(Roo.id(hd2));
7773     }
7774     
7775     this.scroll = false;
7776 };
7777 Roo.extend(Roo.grid.SplitDragZone, Roo.dd.DDProxy, {
7778     fly: Roo.Element.fly,
7779
7780     b4StartDrag : function(x, y){
7781         this.view.headersDisabled = true;
7782         var h = this.view.mainWrap ? this.view.mainWrap.getHeight() : (
7783                     this.view.headEl.getHeight() + this.view.bodyEl.getHeight()
7784         );
7785         this.proxy.setHeight(h);
7786         
7787         // for old system colWidth really stored the actual width?
7788         // in bootstrap we tried using xs/ms/etc.. to do % sizing?
7789         // which in reality did not work.. - it worked only for fixed sizes
7790         // for resizable we need to use actual sizes.
7791         var w = this.cm.getColumnWidth(this.cellIndex);
7792         if (!this.view.mainWrap) {
7793             // bootstrap.
7794             w = this.view.getHeaderIndex(this.cellIndex).getWidth();
7795         }
7796         
7797         
7798         
7799         // this was w-this.grid.minColumnWidth;
7800         // doesnt really make sense? - w = thie curren width or the rendered one?
7801         var minw = Math.max(w-this.grid.minColumnWidth, 0);
7802         this.resetConstraints();
7803         this.setXConstraint(minw, 1000);
7804         this.setYConstraint(0, 0);
7805         this.minX = x - minw;
7806         this.maxX = x + 1000;
7807         this.startPos = x;
7808         if (!this.view.mainWrap) { // this is Bootstrap code..
7809             this.getDragEl().style.display='block';
7810         }
7811         
7812         Roo.dd.DDProxy.prototype.b4StartDrag.call(this, x, y);
7813     },
7814
7815
7816     handleMouseDown : function(e){
7817         ev = Roo.EventObject.setEvent(e);
7818         var t = this.fly(ev.getTarget());
7819         if(t.hasClass("x-grid-split")){
7820             this.cellIndex = this.view.getCellIndex(t.dom);
7821             this.split = t.dom;
7822             this.cm = this.grid.colModel;
7823             if(this.cm.isResizable(this.cellIndex) && !this.cm.isFixed(this.cellIndex)){
7824                 Roo.grid.SplitDragZone.superclass.handleMouseDown.apply(this, arguments);
7825             }
7826         }
7827     },
7828
7829     endDrag : function(e){
7830         this.view.headersDisabled = false;
7831         var endX = Math.max(this.minX, Roo.lib.Event.getPageX(e));
7832         var diff = endX - this.startPos;
7833         // 
7834         var w = this.cm.getColumnWidth(this.cellIndex);
7835         if (!this.view.mainWrap) {
7836             w = 0;
7837         }
7838         this.view.onColumnSplitterMoved(this.cellIndex, w+diff);
7839     },
7840
7841     autoOffset : function(){
7842         this.setDelta(0,0);
7843     }
7844 });/*
7845  * Based on:
7846  * Ext JS Library 1.1.1
7847  * Copyright(c) 2006-2007, Ext JS, LLC.
7848  *
7849  * Originally Released Under LGPL - original licence link has changed is not relivant.
7850  *
7851  * Fork - LGPL
7852  * <script type="text/javascript">
7853  */
7854
7855 /**
7856  * @class Roo.grid.AbstractSelectionModel
7857  * @extends Roo.util.Observable
7858  * @abstract
7859  * Abstract base class for grid SelectionModels.  It provides the interface that should be
7860  * implemented by descendant classes.  This class should not be directly instantiated.
7861  * @constructor
7862  */
7863 Roo.grid.AbstractSelectionModel = function(){
7864     this.locked = false;
7865     Roo.grid.AbstractSelectionModel.superclass.constructor.call(this);
7866 };
7867
7868 Roo.extend(Roo.grid.AbstractSelectionModel, Roo.util.Observable,  {
7869     /** @ignore Called by the grid automatically. Do not call directly. */
7870     init : function(grid){
7871         this.grid = grid;
7872         this.initEvents();
7873     },
7874
7875     /**
7876      * Locks the selections.
7877      */
7878     lock : function(){
7879         this.locked = true;
7880     },
7881
7882     /**
7883      * Unlocks the selections.
7884      */
7885     unlock : function(){
7886         this.locked = false;
7887     },
7888
7889     /**
7890      * Returns true if the selections are locked.
7891      * @return {Boolean}
7892      */
7893     isLocked : function(){
7894         return this.locked;
7895     }
7896 });/*
7897  * Based on:
7898  * Ext JS Library 1.1.1
7899  * Copyright(c) 2006-2007, Ext JS, LLC.
7900  *
7901  * Originally Released Under LGPL - original licence link has changed is not relivant.
7902  *
7903  * Fork - LGPL
7904  * <script type="text/javascript">
7905  */
7906 /**
7907  * @extends Roo.grid.AbstractSelectionModel
7908  * @class Roo.grid.RowSelectionModel
7909  * The default SelectionModel used by {@link Roo.grid.Grid}.
7910  * It supports multiple selections and keyboard selection/navigation. 
7911  * @constructor
7912  * @param {Object} config
7913  */
7914 Roo.grid.RowSelectionModel = function(config){
7915     Roo.apply(this, config);
7916     this.selections = new Roo.util.MixedCollection(false, function(o){
7917         return o.id;
7918     });
7919
7920     this.last = false;
7921     this.lastActive = false;
7922
7923     this.addEvents({
7924         /**
7925         * @event selectionchange
7926         * Fires when the selection changes
7927         * @param {SelectionModel} this
7928         */
7929        "selectionchange" : true,
7930        /**
7931         * @event afterselectionchange
7932         * Fires after the selection changes (eg. by key press or clicking)
7933         * @param {SelectionModel} this
7934         */
7935        "afterselectionchange" : true,
7936        /**
7937         * @event beforerowselect
7938         * Fires when a row is selected being selected, return false to cancel.
7939         * @param {SelectionModel} this
7940         * @param {Number} rowIndex The selected index
7941         * @param {Boolean} keepExisting False if other selections will be cleared
7942         */
7943        "beforerowselect" : true,
7944        /**
7945         * @event rowselect
7946         * Fires when a row is selected.
7947         * @param {SelectionModel} this
7948         * @param {Number} rowIndex The selected index
7949         * @param {Roo.data.Record} r The record
7950         */
7951        "rowselect" : true,
7952        /**
7953         * @event rowdeselect
7954         * Fires when a row is deselected.
7955         * @param {SelectionModel} this
7956         * @param {Number} rowIndex The selected index
7957         */
7958         "rowdeselect" : true
7959     });
7960     Roo.grid.RowSelectionModel.superclass.constructor.call(this);
7961     this.locked = false;
7962 };
7963
7964 Roo.extend(Roo.grid.RowSelectionModel, Roo.grid.AbstractSelectionModel,  {
7965     /**
7966      * @cfg {Boolean} singleSelect
7967      * True to allow selection of only one row at a time (defaults to false)
7968      */
7969     singleSelect : false,
7970
7971     // private
7972     initEvents : function(){
7973
7974         if(!this.grid.enableDragDrop && !this.grid.enableDrag){
7975             this.grid.on("mousedown", this.handleMouseDown, this);
7976         }else{ // allow click to work like normal
7977             this.grid.on("rowclick", this.handleDragableRowClick, this);
7978         }
7979         // bootstrap does not have a view..
7980         var view = this.grid.view ? this.grid.view : this.grid;
7981         this.rowNav = new Roo.KeyNav(this.grid.getGridEl(), {
7982             "up" : function(e){
7983                 if(!e.shiftKey){
7984                     this.selectPrevious(e.shiftKey);
7985                 }else if(this.last !== false && this.lastActive !== false){
7986                     var last = this.last;
7987                     this.selectRange(this.last,  this.lastActive-1);
7988                     view.focusRow(this.lastActive);
7989                     if(last !== false){
7990                         this.last = last;
7991                     }
7992                 }else{
7993                     this.selectFirstRow();
7994                 }
7995                 this.fireEvent("afterselectionchange", this);
7996             },
7997             "down" : function(e){
7998                 if(!e.shiftKey){
7999                     this.selectNext(e.shiftKey);
8000                 }else if(this.last !== false && this.lastActive !== false){
8001                     var last = this.last;
8002                     this.selectRange(this.last,  this.lastActive+1);
8003                     view.focusRow(this.lastActive);
8004                     if(last !== false){
8005                         this.last = last;
8006                     }
8007                 }else{
8008                     this.selectFirstRow();
8009                 }
8010                 this.fireEvent("afterselectionchange", this);
8011             },
8012             scope: this
8013         });
8014
8015          
8016         view.on("refresh", this.onRefresh, this);
8017         view.on("rowupdated", this.onRowUpdated, this);
8018         view.on("rowremoved", this.onRemove, this);
8019     },
8020
8021     // private
8022     onRefresh : function(){
8023         var ds = this.grid.ds, i, v = this.grid.view;
8024         var s = this.selections;
8025         s.each(function(r){
8026             if((i = ds.indexOfId(r.id)) != -1){
8027                 v.onRowSelect(i);
8028                 s.add(ds.getAt(i)); // updating the selection relate data
8029             }else{
8030                 s.remove(r);
8031             }
8032         });
8033     },
8034
8035     // private
8036     onRemove : function(v, index, r){
8037         this.selections.remove(r);
8038     },
8039
8040     // private
8041     onRowUpdated : function(v, index, r){
8042         if(this.isSelected(r)){
8043             v.onRowSelect(index);
8044         }
8045     },
8046
8047     /**
8048      * Select records.
8049      * @param {Array} records The records to select
8050      * @param {Boolean} keepExisting (optional) True to keep existing selections
8051      */
8052     selectRecords : function(records, keepExisting){
8053         if(!keepExisting){
8054             this.clearSelections();
8055         }
8056         var ds = this.grid.ds;
8057         for(var i = 0, len = records.length; i < len; i++){
8058             this.selectRow(ds.indexOf(records[i]), true);
8059         }
8060     },
8061
8062     /**
8063      * Gets the number of selected rows.
8064      * @return {Number}
8065      */
8066     getCount : function(){
8067         return this.selections.length;
8068     },
8069
8070     /**
8071      * Selects the first row in the grid.
8072      */
8073     selectFirstRow : function(){
8074         this.selectRow(0);
8075     },
8076
8077     /**
8078      * Select the last row.
8079      * @param {Boolean} keepExisting (optional) True to keep existing selections
8080      */
8081     selectLastRow : function(keepExisting){
8082         this.selectRow(this.grid.ds.getCount() - 1, keepExisting);
8083     },
8084
8085     /**
8086      * Selects the row immediately following the last selected row.
8087      * @param {Boolean} keepExisting (optional) True to keep existing selections
8088      */
8089     selectNext : function(keepExisting){
8090         if(this.last !== false && (this.last+1) < this.grid.ds.getCount()){
8091             this.selectRow(this.last+1, keepExisting);
8092             var view = this.grid.view ? this.grid.view : this.grid;
8093             view.focusRow(this.last);
8094         }
8095     },
8096
8097     /**
8098      * Selects the row that precedes the last selected row.
8099      * @param {Boolean} keepExisting (optional) True to keep existing selections
8100      */
8101     selectPrevious : function(keepExisting){
8102         if(this.last){
8103             this.selectRow(this.last-1, keepExisting);
8104             var view = this.grid.view ? this.grid.view : this.grid;
8105             view.focusRow(this.last);
8106         }
8107     },
8108
8109     /**
8110      * Returns the selected records
8111      * @return {Array} Array of selected records
8112      */
8113     getSelections : function(){
8114         return [].concat(this.selections.items);
8115     },
8116
8117     /**
8118      * Returns the first selected record.
8119      * @return {Record}
8120      */
8121     getSelected : function(){
8122         return this.selections.itemAt(0);
8123     },
8124
8125
8126     /**
8127      * Clears all selections.
8128      */
8129     clearSelections : function(fast){
8130         if(this.locked) {
8131             return;
8132         }
8133         if(fast !== true){
8134             var ds = this.grid.ds;
8135             var s = this.selections;
8136             s.each(function(r){
8137                 this.deselectRow(ds.indexOfId(r.id));
8138             }, this);
8139             s.clear();
8140         }else{
8141             this.selections.clear();
8142         }
8143         this.last = false;
8144     },
8145
8146
8147     /**
8148      * Selects all rows.
8149      */
8150     selectAll : function(){
8151         if(this.locked) {
8152             return;
8153         }
8154         this.selections.clear();
8155         for(var i = 0, len = this.grid.ds.getCount(); i < len; i++){
8156             this.selectRow(i, true);
8157         }
8158     },
8159
8160     /**
8161      * Returns True if there is a selection.
8162      * @return {Boolean}
8163      */
8164     hasSelection : function(){
8165         return this.selections.length > 0;
8166     },
8167
8168     /**
8169      * Returns True if the specified row is selected.
8170      * @param {Number/Record} record The record or index of the record to check
8171      * @return {Boolean}
8172      */
8173     isSelected : function(index){
8174         var r = typeof index == "number" ? this.grid.ds.getAt(index) : index;
8175         return (r && this.selections.key(r.id) ? true : false);
8176     },
8177
8178     /**
8179      * Returns True if the specified record id is selected.
8180      * @param {String} id The id of record to check
8181      * @return {Boolean}
8182      */
8183     isIdSelected : function(id){
8184         return (this.selections.key(id) ? true : false);
8185     },
8186
8187     // private
8188     handleMouseDown : function(e, t)
8189     {
8190         var view = this.grid.view ? this.grid.view : this.grid;
8191         var rowIndex;
8192         if(this.isLocked() || (rowIndex = view.findRowIndex(t)) === false){
8193             return;
8194         };
8195         if(e.shiftKey && this.last !== false){
8196             var last = this.last;
8197             this.selectRange(last, rowIndex, e.ctrlKey);
8198             this.last = last; // reset the last
8199             view.focusRow(rowIndex);
8200         }else{
8201             var isSelected = this.isSelected(rowIndex);
8202             if(e.button !== 0 && isSelected){
8203                 view.focusRow(rowIndex);
8204             }else if(e.ctrlKey && isSelected){
8205                 this.deselectRow(rowIndex);
8206             }else if(!isSelected){
8207                 this.selectRow(rowIndex, e.button === 0 && (e.ctrlKey || e.shiftKey));
8208                 view.focusRow(rowIndex);
8209             }
8210         }
8211         this.fireEvent("afterselectionchange", this);
8212     },
8213     // private
8214     handleDragableRowClick :  function(grid, rowIndex, e) 
8215     {
8216         if(e.button === 0 && !e.shiftKey && !e.ctrlKey) {
8217             this.selectRow(rowIndex, false);
8218             var view = this.grid.view ? this.grid.view : this.grid;
8219             view.focusRow(rowIndex);
8220              this.fireEvent("afterselectionchange", this);
8221         }
8222     },
8223     
8224     /**
8225      * Selects multiple rows.
8226      * @param {Array} rows Array of the indexes of the row to select
8227      * @param {Boolean} keepExisting (optional) True to keep existing selections
8228      */
8229     selectRows : function(rows, keepExisting){
8230         if(!keepExisting){
8231             this.clearSelections();
8232         }
8233         for(var i = 0, len = rows.length; i < len; i++){
8234             this.selectRow(rows[i], true);
8235         }
8236     },
8237
8238     /**
8239      * Selects a range of rows. All rows in between startRow and endRow are also selected.
8240      * @param {Number} startRow The index of the first row in the range
8241      * @param {Number} endRow The index of the last row in the range
8242      * @param {Boolean} keepExisting (optional) True to retain existing selections
8243      */
8244     selectRange : function(startRow, endRow, keepExisting){
8245         if(this.locked) {
8246             return;
8247         }
8248         if(!keepExisting){
8249             this.clearSelections();
8250         }
8251         if(startRow <= endRow){
8252             for(var i = startRow; i <= endRow; i++){
8253                 this.selectRow(i, true);
8254             }
8255         }else{
8256             for(var i = startRow; i >= endRow; i--){
8257                 this.selectRow(i, true);
8258             }
8259         }
8260     },
8261
8262     /**
8263      * Deselects a range of rows. All rows in between startRow and endRow are also deselected.
8264      * @param {Number} startRow The index of the first row in the range
8265      * @param {Number} endRow The index of the last row in the range
8266      */
8267     deselectRange : function(startRow, endRow, preventViewNotify){
8268         if(this.locked) {
8269             return;
8270         }
8271         for(var i = startRow; i <= endRow; i++){
8272             this.deselectRow(i, preventViewNotify);
8273         }
8274     },
8275
8276     /**
8277      * Selects a row.
8278      * @param {Number} row The index of the row to select
8279      * @param {Boolean} keepExisting (optional) True to keep existing selections
8280      */
8281     selectRow : function(index, keepExisting, preventViewNotify){
8282         if(this.locked || (index < 0 || index >= this.grid.ds.getCount())) {
8283             return;
8284         }
8285         if(this.fireEvent("beforerowselect", this, index, keepExisting) !== false){
8286             if(!keepExisting || this.singleSelect){
8287                 this.clearSelections();
8288             }
8289             var r = this.grid.ds.getAt(index);
8290             this.selections.add(r);
8291             this.last = this.lastActive = index;
8292             if(!preventViewNotify){
8293                 var view = this.grid.view ? this.grid.view : this.grid;
8294                 view.onRowSelect(index);
8295             }
8296             this.fireEvent("rowselect", this, index, r);
8297             this.fireEvent("selectionchange", this);
8298         }
8299     },
8300
8301     /**
8302      * Deselects a row.
8303      * @param {Number} row The index of the row to deselect
8304      */
8305     deselectRow : function(index, preventViewNotify){
8306         if(this.locked) {
8307             return;
8308         }
8309         if(this.last == index){
8310             this.last = false;
8311         }
8312         if(this.lastActive == index){
8313             this.lastActive = false;
8314         }
8315         var r = this.grid.ds.getAt(index);
8316         this.selections.remove(r);
8317         if(!preventViewNotify){
8318             var view = this.grid.view ? this.grid.view : this.grid;
8319             view.onRowDeselect(index);
8320         }
8321         this.fireEvent("rowdeselect", this, index);
8322         this.fireEvent("selectionchange", this);
8323     },
8324
8325     // private
8326     restoreLast : function(){
8327         if(this._last){
8328             this.last = this._last;
8329         }
8330     },
8331
8332     // private
8333     acceptsNav : function(row, col, cm){
8334         return !cm.isHidden(col) && cm.isCellEditable(col, row);
8335     },
8336
8337     // private
8338     onEditorKey : function(field, e){
8339         var k = e.getKey(), newCell, g = this.grid, ed = g.activeEditor;
8340         if(k == e.TAB){
8341             e.stopEvent();
8342             ed.completeEdit();
8343             if(e.shiftKey){
8344                 newCell = g.walkCells(ed.row, ed.col-1, -1, this.acceptsNav, this);
8345             }else{
8346                 newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
8347             }
8348         }else if(k == e.ENTER && !e.ctrlKey){
8349             e.stopEvent();
8350             ed.completeEdit();
8351             if(e.shiftKey){
8352                 newCell = g.walkCells(ed.row-1, ed.col, -1, this.acceptsNav, this);
8353             }else{
8354                 newCell = g.walkCells(ed.row+1, ed.col, 1, this.acceptsNav, this);
8355             }
8356         }else if(k == e.ESC){
8357             ed.cancelEdit();
8358         }
8359         if(newCell){
8360             g.startEditing(newCell[0], newCell[1]);
8361         }
8362     }
8363 });/*
8364  * Based on:
8365  * Ext JS Library 1.1.1
8366  * Copyright(c) 2006-2007, Ext JS, LLC.
8367  *
8368  * Originally Released Under LGPL - original licence link has changed is not relivant.
8369  *
8370  * Fork - LGPL
8371  * <script type="text/javascript">
8372  */
8373  
8374
8375 /**
8376  * @class Roo.grid.ColumnModel
8377  * @extends Roo.util.Observable
8378  * This is the default implementation of a ColumnModel used by the Grid. It defines
8379  * the columns in the grid.
8380  * <br>Usage:<br>
8381  <pre><code>
8382  var colModel = new Roo.grid.ColumnModel([
8383         {header: "Ticker", width: 60, sortable: true, locked: true},
8384         {header: "Company Name", width: 150, sortable: true},
8385         {header: "Market Cap.", width: 100, sortable: true},
8386         {header: "$ Sales", width: 100, sortable: true, renderer: money},
8387         {header: "Employees", width: 100, sortable: true, resizable: false}
8388  ]);
8389  </code></pre>
8390  * <p>
8391  
8392  * The config options listed for this class are options which may appear in each
8393  * individual column definition.
8394  * <br/>RooJS Fix - column id's are not sequential but use Roo.id() - fixes bugs with layouts.
8395  * @constructor
8396  * @param {Object} config An Array of column config objects. See this class's
8397  * config objects for details.
8398 */
8399 Roo.grid.ColumnModel = function(config){
8400         /**
8401      * The config passed into the constructor
8402      */
8403     this.config = []; //config;
8404     this.lookup = {};
8405
8406     // if no id, create one
8407     // if the column does not have a dataIndex mapping,
8408     // map it to the order it is in the config
8409     for(var i = 0, len = config.length; i < len; i++){
8410         this.addColumn(config[i]);
8411         
8412     }
8413
8414     /**
8415      * The width of columns which have no width specified (defaults to 100)
8416      * @type Number
8417      */
8418     this.defaultWidth = 100;
8419
8420     /**
8421      * Default sortable of columns which have no sortable specified (defaults to false)
8422      * @type Boolean
8423      */
8424     this.defaultSortable = false;
8425
8426     this.addEvents({
8427         /**
8428              * @event widthchange
8429              * Fires when the width of a column changes.
8430              * @param {ColumnModel} this
8431              * @param {Number} columnIndex The column index
8432              * @param {Number} newWidth The new width
8433              */
8434             "widthchange": true,
8435         /**
8436              * @event headerchange
8437              * Fires when the text of a header changes.
8438              * @param {ColumnModel} this
8439              * @param {Number} columnIndex The column index
8440              * @param {Number} newText The new header text
8441              */
8442             "headerchange": true,
8443         /**
8444              * @event hiddenchange
8445              * Fires when a column is hidden or "unhidden".
8446              * @param {ColumnModel} this
8447              * @param {Number} columnIndex The column index
8448              * @param {Boolean} hidden true if hidden, false otherwise
8449              */
8450             "hiddenchange": true,
8451             /**
8452          * @event columnmoved
8453          * Fires when a column is moved.
8454          * @param {ColumnModel} this
8455          * @param {Number} oldIndex
8456          * @param {Number} newIndex
8457          */
8458         "columnmoved" : true,
8459         /**
8460          * @event columlockchange
8461          * Fires when a column's locked state is changed
8462          * @param {ColumnModel} this
8463          * @param {Number} colIndex
8464          * @param {Boolean} locked true if locked
8465          */
8466         "columnlockchange" : true
8467     });
8468     Roo.grid.ColumnModel.superclass.constructor.call(this);
8469 };
8470 Roo.extend(Roo.grid.ColumnModel, Roo.util.Observable, {
8471     /**
8472      * @cfg {String} header [required] The header text to display in the Grid view.
8473      */
8474         /**
8475      * @cfg {String} xsHeader Header at Bootsrap Extra Small width (default for all)
8476      */
8477         /**
8478      * @cfg {String} smHeader Header at Bootsrap Small width
8479      */
8480         /**
8481      * @cfg {String} mdHeader Header at Bootsrap Medium width
8482      */
8483         /**
8484      * @cfg {String} lgHeader Header at Bootsrap Large width
8485      */
8486         /**
8487      * @cfg {String} xlHeader Header at Bootsrap extra Large width
8488      */
8489     /**
8490      * @cfg {String} dataIndex  The name of the field in the grid's {@link Roo.data.Store}'s
8491      * {@link Roo.data.Record} definition from which to draw the column's value. If not
8492      * specified, the column's index is used as an index into the Record's data Array.
8493      */
8494     /**
8495      * @cfg {Number} width  The initial width in pixels of the column. Using this
8496      * instead of {@link Roo.grid.Grid#autoSizeColumns} is more efficient.
8497      */
8498     /**
8499      * @cfg {Boolean} sortable True if sorting is to be allowed on this column.
8500      * Defaults to the value of the {@link #defaultSortable} property.
8501      * Whether local/remote sorting is used is specified in {@link Roo.data.Store#remoteSort}.
8502      */
8503     /**
8504      * @cfg {Boolean} locked  True to lock the column in place while scrolling the Grid.  Defaults to false.
8505      */
8506     /**
8507      * @cfg {Boolean} fixed  True if the column width cannot be changed.  Defaults to false.
8508      */
8509     /**
8510      * @cfg {Boolean} resizable  False to disable column resizing. Defaults to true.
8511      */
8512     /**
8513      * @cfg {Boolean} hidden  True to hide the column. Defaults to false.
8514      */
8515     /**
8516      * @cfg {Function} renderer A function used to generate HTML markup for a cell
8517      * given the cell's data value. See {@link #setRenderer}. If not specified, the
8518      * default renderer returns the escaped data value. If an object is returned (bootstrap only)
8519      * then it is treated as a Roo Component object instance, and it is rendered after the initial row is rendered
8520      */
8521        /**
8522      * @cfg {Roo.grid.GridEditor} editor  For grid editors - returns the grid editor 
8523      */
8524     /**
8525      * @cfg {String} align (left|right) Set the CSS text-align property of the column.  Defaults to undefined (left).
8526      */
8527     /**
8528      * @cfg {String} valign (top|bottom|middle) Set the CSS vertical-align property of the column (eg. middle, top, bottom etc).  Defaults to undefined (middle)
8529      */
8530     /**
8531      * @cfg {String} cursor ( auto|default|none|context-menu|help|pointer|progress|wait|cell|crosshair|text|vertical-text|alias|copy|move|no-drop|not-allowed|e-resize|n-resize|ne-resize|nw-resize|s-resize|se-resize|sw-resize|w-resize|ew-resize|ns-resize|nesw-resize|nwse-resize|col-resize|row-resize|all-scroll|zoom-in|zoom-out|grab|grabbing)
8532      */
8533     /**
8534      * @cfg {String} tooltip mouse over tooltip text
8535      */
8536     /**
8537      * @cfg {Number} xs  can be '0' for hidden at this size (number less than 12)
8538      */
8539     /**
8540      * @cfg {Number} sm can be '0' for hidden at this size (number less than 12)
8541      */
8542     /**
8543      * @cfg {Number} md can be '0' for hidden at this size (number less than 12)
8544      */
8545     /**
8546      * @cfg {Number} lg   can be '0' for hidden at this size (number less than 12)
8547      */
8548         /**
8549      * @cfg {Number} xl   can be '0' for hidden at this size (number less than 12)
8550      */
8551     /**
8552      * Returns the id of the column at the specified index.
8553      * @param {Number} index The column index
8554      * @return {String} the id
8555      */
8556     getColumnId : function(index){
8557         return this.config[index].id;
8558     },
8559
8560     /**
8561      * Returns the column for a specified id.
8562      * @param {String} id The column id
8563      * @return {Object} the column
8564      */
8565     getColumnById : function(id){
8566         return this.lookup[id];
8567     },
8568
8569     
8570     /**
8571      * Returns the column Object for a specified dataIndex.
8572      * @param {String} dataIndex The column dataIndex
8573      * @return {Object|Boolean} the column or false if not found
8574      */
8575     getColumnByDataIndex: function(dataIndex){
8576         var index = this.findColumnIndex(dataIndex);
8577         return index > -1 ? this.config[index] : false;
8578     },
8579     
8580     /**
8581      * Returns the index for a specified column id.
8582      * @param {String} id The column id
8583      * @return {Number} the index, or -1 if not found
8584      */
8585     getIndexById : function(id){
8586         for(var i = 0, len = this.config.length; i < len; i++){
8587             if(this.config[i].id == id){
8588                 return i;
8589             }
8590         }
8591         return -1;
8592     },
8593     
8594     /**
8595      * Returns the index for a specified column dataIndex.
8596      * @param {String} dataIndex The column dataIndex
8597      * @return {Number} the index, or -1 if not found
8598      */
8599     
8600     findColumnIndex : function(dataIndex){
8601         for(var i = 0, len = this.config.length; i < len; i++){
8602             if(this.config[i].dataIndex == dataIndex){
8603                 return i;
8604             }
8605         }
8606         return -1;
8607     },
8608     
8609     
8610     moveColumn : function(oldIndex, newIndex){
8611         var c = this.config[oldIndex];
8612         this.config.splice(oldIndex, 1);
8613         this.config.splice(newIndex, 0, c);
8614         this.dataMap = null;
8615         this.fireEvent("columnmoved", this, oldIndex, newIndex);
8616     },
8617
8618     isLocked : function(colIndex){
8619         return this.config[colIndex].locked === true;
8620     },
8621
8622     setLocked : function(colIndex, value, suppressEvent){
8623         if(this.isLocked(colIndex) == value){
8624             return;
8625         }
8626         this.config[colIndex].locked = value;
8627         if(!suppressEvent){
8628             this.fireEvent("columnlockchange", this, colIndex, value);
8629         }
8630     },
8631
8632     getTotalLockedWidth : function(){
8633         var totalWidth = 0;
8634         for(var i = 0; i < this.config.length; i++){
8635             if(this.isLocked(i) && !this.isHidden(i)){
8636                 this.totalWidth += this.getColumnWidth(i);
8637             }
8638         }
8639         return totalWidth;
8640     },
8641
8642     getLockedCount : function(){
8643         for(var i = 0, len = this.config.length; i < len; i++){
8644             if(!this.isLocked(i)){
8645                 return i;
8646             }
8647         }
8648         
8649         return this.config.length;
8650     },
8651
8652     /**
8653      * Returns the number of columns.
8654      * @return {Number}
8655      */
8656     getColumnCount : function(visibleOnly){
8657         if(visibleOnly === true){
8658             var c = 0;
8659             for(var i = 0, len = this.config.length; i < len; i++){
8660                 if(!this.isHidden(i)){
8661                     c++;
8662                 }
8663             }
8664             return c;
8665         }
8666         return this.config.length;
8667     },
8668
8669     /**
8670      * Returns the column configs that return true by the passed function that is called with (columnConfig, index)
8671      * @param {Function} fn
8672      * @param {Object} scope (optional)
8673      * @return {Array} result
8674      */
8675     getColumnsBy : function(fn, scope){
8676         var r = [];
8677         for(var i = 0, len = this.config.length; i < len; i++){
8678             var c = this.config[i];
8679             if(fn.call(scope||this, c, i) === true){
8680                 r[r.length] = c;
8681             }
8682         }
8683         return r;
8684     },
8685
8686     /**
8687      * Returns true if the specified column is sortable.
8688      * @param {Number} col The column index
8689      * @return {Boolean}
8690      */
8691     isSortable : function(col){
8692         if(typeof this.config[col].sortable == "undefined"){
8693             return this.defaultSortable;
8694         }
8695         return this.config[col].sortable;
8696     },
8697
8698     /**
8699      * Returns the rendering (formatting) function defined for the column.
8700      * @param {Number} col The column index.
8701      * @return {Function} The function used to render the cell. See {@link #setRenderer}.
8702      */
8703     getRenderer : function(col){
8704         if(!this.config[col].renderer){
8705             return Roo.grid.ColumnModel.defaultRenderer;
8706         }
8707         return this.config[col].renderer;
8708     },
8709
8710     /**
8711      * Sets the rendering (formatting) function for a column.
8712      * @param {Number} col The column index
8713      * @param {Function} fn The function to use to process the cell's raw data
8714      * to return HTML markup for the grid view. The render function is called with
8715      * the following parameters:<ul>
8716      * <li>Data value.</li>
8717      * <li>Cell metadata. An object in which you may set the following attributes:<ul>
8718      * <li>css A CSS style string to apply to the table cell.</li>
8719      * <li>attr An HTML attribute definition string to apply to the data container element <i>within</i> the table cell.</li></ul>
8720      * <li>The {@link Roo.data.Record} from which the data was extracted.</li>
8721      * <li>Row index</li>
8722      * <li>Column index</li>
8723      * <li>The {@link Roo.data.Store} object from which the Record was extracted</li></ul>
8724      */
8725     setRenderer : function(col, fn){
8726         this.config[col].renderer = fn;
8727     },
8728
8729     /**
8730      * Returns the width for the specified column.
8731      * @param {Number} col The column index
8732      * @param (optional) {String} gridSize bootstrap width size.
8733      * @return {Number}
8734      */
8735     getColumnWidth : function(col, gridSize)
8736         {
8737                 var cfg = this.config[col];
8738                 
8739                 if (typeof(gridSize) == 'undefined') {
8740                         return cfg.width * 1 || this.defaultWidth;
8741                 }
8742                 if (gridSize === false) { // if we set it..
8743                         return cfg.width || false;
8744                 }
8745                 var sizes = ['xl', 'lg', 'md', 'sm', 'xs'];
8746                 
8747                 for(var i = sizes.indexOf(gridSize); i < sizes.length; i++) {
8748                         if (typeof(cfg[ sizes[i] ] ) == 'undefined') {
8749                                 continue;
8750                         }
8751                         return cfg[ sizes[i] ];
8752                 }
8753                 return 1;
8754                 
8755     },
8756
8757     /**
8758      * Sets the width for a column.
8759      * @param {Number} col The column index
8760      * @param {Number} width The new width
8761      */
8762     setColumnWidth : function(col, width, suppressEvent){
8763         this.config[col].width = width;
8764         this.totalWidth = null;
8765         if(!suppressEvent){
8766              this.fireEvent("widthchange", this, col, width);
8767         }
8768     },
8769
8770     /**
8771      * Returns the total width of all columns.
8772      * @param {Boolean} includeHidden True to include hidden column widths
8773      * @return {Number}
8774      */
8775     getTotalWidth : function(includeHidden){
8776         if(!this.totalWidth){
8777             this.totalWidth = 0;
8778             for(var i = 0, len = this.config.length; i < len; i++){
8779                 if(includeHidden || !this.isHidden(i)){
8780                     this.totalWidth += this.getColumnWidth(i);
8781                 }
8782             }
8783         }
8784         return this.totalWidth;
8785     },
8786
8787     /**
8788      * Returns the header for the specified column.
8789      * @param {Number} col The column index
8790      * @return {String}
8791      */
8792     getColumnHeader : function(col){
8793         return this.config[col].header;
8794     },
8795
8796     /**
8797      * Sets the header for a column.
8798      * @param {Number} col The column index
8799      * @param {String} header The new header
8800      */
8801     setColumnHeader : function(col, header){
8802         this.config[col].header = header;
8803         this.fireEvent("headerchange", this, col, header);
8804     },
8805
8806     /**
8807      * Returns the tooltip for the specified column.
8808      * @param {Number} col The column index
8809      * @return {String}
8810      */
8811     getColumnTooltip : function(col){
8812             return this.config[col].tooltip;
8813     },
8814     /**
8815      * Sets the tooltip for a column.
8816      * @param {Number} col The column index
8817      * @param {String} tooltip The new tooltip
8818      */
8819     setColumnTooltip : function(col, tooltip){
8820             this.config[col].tooltip = tooltip;
8821     },
8822
8823     /**
8824      * Returns the dataIndex for the specified column.
8825      * @param {Number} col The column index
8826      * @return {Number}
8827      */
8828     getDataIndex : function(col){
8829         return this.config[col].dataIndex;
8830     },
8831
8832     /**
8833      * Sets the dataIndex for a column.
8834      * @param {Number} col The column index
8835      * @param {Number} dataIndex The new dataIndex
8836      */
8837     setDataIndex : function(col, dataIndex){
8838         this.config[col].dataIndex = dataIndex;
8839     },
8840
8841     
8842     
8843     /**
8844      * Returns true if the cell is editable.
8845      * @param {Number} colIndex The column index
8846      * @param {Number} rowIndex The row index - this is nto actually used..?
8847      * @return {Boolean}
8848      */
8849     isCellEditable : function(colIndex, rowIndex){
8850         return (this.config[colIndex].editable || (typeof this.config[colIndex].editable == "undefined" && this.config[colIndex].editor)) ? true : false;
8851     },
8852
8853     /**
8854      * Returns the editor defined for the cell/column.
8855      * return false or null to disable editing.
8856      * @param {Number} colIndex The column index
8857      * @param {Number} rowIndex The row index
8858      * @return {Object}
8859      */
8860     getCellEditor : function(colIndex, rowIndex){
8861         return this.config[colIndex].editor;
8862     },
8863
8864     /**
8865      * Sets if a column is editable.
8866      * @param {Number} col The column index
8867      * @param {Boolean} editable True if the column is editable
8868      */
8869     setEditable : function(col, editable){
8870         this.config[col].editable = editable;
8871     },
8872
8873
8874     /**
8875      * Returns true if the column is hidden.
8876      * @param {Number} colIndex The column index
8877      * @return {Boolean}
8878      */
8879     isHidden : function(colIndex){
8880         return this.config[colIndex].hidden;
8881     },
8882
8883
8884     /**
8885      * Returns true if the column width cannot be changed
8886      */
8887     isFixed : function(colIndex){
8888         return this.config[colIndex].fixed;
8889     },
8890
8891     /**
8892      * Returns true if the column can be resized
8893      * @return {Boolean}
8894      */
8895     isResizable : function(colIndex){
8896         return colIndex >= 0 && this.config[colIndex].resizable !== false && this.config[colIndex].fixed !== true;
8897     },
8898     /**
8899      * Sets if a column is hidden.
8900      * @param {Number} colIndex The column index
8901      * @param {Boolean} hidden True if the column is hidden
8902      */
8903     setHidden : function(colIndex, hidden){
8904         this.config[colIndex].hidden = hidden;
8905         this.totalWidth = null;
8906         this.fireEvent("hiddenchange", this, colIndex, hidden);
8907     },
8908
8909     /**
8910      * Sets the editor for a column.
8911      * @param {Number} col The column index
8912      * @param {Object} editor The editor object
8913      */
8914     setEditor : function(col, editor){
8915         this.config[col].editor = editor;
8916     },
8917     /**
8918      * Add a column (experimental...) - defaults to adding to the end..
8919      * @param {Object} config 
8920     */
8921     addColumn : function(c)
8922     {
8923     
8924         var i = this.config.length;
8925         this.config[i] = c;
8926         
8927         if(typeof c.dataIndex == "undefined"){
8928             c.dataIndex = i;
8929         }
8930         if(typeof c.renderer == "string"){
8931             c.renderer = Roo.util.Format[c.renderer];
8932         }
8933         if(typeof c.id == "undefined"){
8934             c.id = Roo.id();
8935         }
8936         if(c.editor && c.editor.xtype){
8937             c.editor  = Roo.factory(c.editor, Roo.grid);
8938         }
8939         if(c.editor && c.editor.isFormField){
8940             c.editor = new Roo.grid.GridEditor(c.editor);
8941         }
8942         this.lookup[c.id] = c;
8943     }
8944     
8945 });
8946
8947 Roo.grid.ColumnModel.defaultRenderer = function(value)
8948 {
8949     if(typeof value == "object") {
8950         return value;
8951     }
8952         if(typeof value == "string" && value.length < 1){
8953             return "&#160;";
8954         }
8955     
8956         return String.format("{0}", value);
8957 };
8958
8959 // Alias for backwards compatibility
8960 Roo.grid.DefaultColumnModel = Roo.grid.ColumnModel;
8961 /*
8962  * Based on:
8963  * Ext JS Library 1.1.1
8964  * Copyright(c) 2006-2007, Ext JS, LLC.
8965  *
8966  * Originally Released Under LGPL - original licence link has changed is not relivant.
8967  *
8968  * Fork - LGPL
8969  * <script type="text/javascript">
8970  */
8971  
8972 /**
8973  * @class Roo.LoadMask
8974  * A simple utility class for generically masking elements while loading data.  If the element being masked has
8975  * an underlying {@link Roo.data.Store}, the masking will be automatically synchronized with the store's loading
8976  * process and the mask element will be cached for reuse.  For all other elements, this mask will replace the
8977  * element's UpdateManager load indicator and will be destroyed after the initial load.
8978  * @constructor
8979  * Create a new LoadMask
8980  * @param {String/HTMLElement/Roo.Element} el The element or DOM node, or its id
8981  * @param {Object} config The config object
8982  */
8983 Roo.LoadMask = function(el, config){
8984     this.el = Roo.get(el);
8985     Roo.apply(this, config);
8986     if(this.store){
8987         this.store.on('beforeload', this.onBeforeLoad, this);
8988         this.store.on('load', this.onLoad, this);
8989         this.store.on('loadexception', this.onLoadException, this);
8990         this.removeMask = false;
8991     }else{
8992         var um = this.el.getUpdateManager();
8993         um.showLoadIndicator = false; // disable the default indicator
8994         um.on('beforeupdate', this.onBeforeLoad, this);
8995         um.on('update', this.onLoad, this);
8996         um.on('failure', this.onLoad, this);
8997         this.removeMask = true;
8998     }
8999 };
9000
9001 Roo.LoadMask.prototype = {
9002     /**
9003      * @cfg {Boolean} removeMask
9004      * True to create a single-use mask that is automatically destroyed after loading (useful for page loads),
9005      * False to persist the mask element reference for multiple uses (e.g., for paged data widgets).  Defaults to false.
9006      */
9007     removeMask : false,
9008     /**
9009      * @cfg {String} msg
9010      * The text to display in a centered loading message box (defaults to 'Loading...')
9011      */
9012     msg : 'Loading...',
9013     /**
9014      * @cfg {String} msgCls
9015      * The CSS class to apply to the loading message element (defaults to "x-mask-loading")
9016      */
9017     msgCls : 'x-mask-loading',
9018
9019     /**
9020      * Read-only. True if the mask is currently disabled so that it will not be displayed (defaults to false)
9021      * @type Boolean
9022      */
9023     disabled: false,
9024
9025     /**
9026      * Disables the mask to prevent it from being displayed
9027      */
9028     disable : function(){
9029        this.disabled = true;
9030     },
9031
9032     /**
9033      * Enables the mask so that it can be displayed
9034      */
9035     enable : function(){
9036         this.disabled = false;
9037     },
9038     
9039     onLoadException : function()
9040     {
9041         Roo.log(arguments);
9042         
9043         if (typeof(arguments[3]) != 'undefined') {
9044             Roo.MessageBox.alert("Error loading",arguments[3]);
9045         } 
9046         /*
9047         try {
9048             if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
9049                 Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
9050             }   
9051         } catch(e) {
9052             
9053         }
9054         */
9055     
9056         (function() { this.el.unmask(this.removeMask); }).defer(50, this);
9057     },
9058     // private
9059     onLoad : function()
9060     {
9061         (function() { this.el.unmask(this.removeMask); }).defer(50, this);
9062     },
9063
9064     // private
9065     onBeforeLoad : function(){
9066         if(!this.disabled){
9067             (function() { this.el.mask(this.msg, this.msgCls); }).defer(50, this);
9068         }
9069     },
9070
9071     // private
9072     destroy : function(){
9073         if(this.store){
9074             this.store.un('beforeload', this.onBeforeLoad, this);
9075             this.store.un('load', this.onLoad, this);
9076             this.store.un('loadexception', this.onLoadException, this);
9077         }else{
9078             var um = this.el.getUpdateManager();
9079             um.un('beforeupdate', this.onBeforeLoad, this);
9080             um.un('update', this.onLoad, this);
9081             um.un('failure', this.onLoad, this);
9082         }
9083     }
9084 };/**
9085  * @class Roo.bootstrap.Table
9086  * @licence LGBL
9087  * @extends Roo.bootstrap.Component
9088  * @children Roo.bootstrap.TableBody
9089  * Bootstrap Table class.  This class represents the primary interface of a component based grid control.
9090  * Similar to Roo.grid.Grid
9091  * <pre><code>
9092  var table = Roo.factory({
9093     xtype : 'Table',
9094     xns : Roo.bootstrap,
9095     autoSizeColumns: true,
9096     
9097     
9098     store : {
9099         xtype : 'Store',
9100         xns : Roo.data,
9101         remoteSort : true,
9102         sortInfo : { direction : 'ASC', field: 'name' },
9103         proxy : {
9104            xtype : 'HttpProxy',
9105            xns : Roo.data,
9106            method : 'GET',
9107            url : 'https://example.com/some.data.url.json'
9108         },
9109         reader : {
9110            xtype : 'JsonReader',
9111            xns : Roo.data,
9112            fields : [ 'id', 'name', whatever' ],
9113            id : 'id',
9114            root : 'data'
9115         }
9116     },
9117     cm : [
9118         {
9119             xtype : 'ColumnModel',
9120             xns : Roo.grid,
9121             align : 'center',
9122             cursor : 'pointer',
9123             dataIndex : 'is_in_group',
9124             header : "Name",
9125             sortable : true,
9126             renderer : function(v, x , r) {  
9127             
9128                 return String.format("{0}", v)
9129             }
9130             width : 3
9131         } // more columns..
9132     ],
9133     selModel : {
9134         xtype : 'RowSelectionModel',
9135         xns : Roo.bootstrap.Table
9136         // you can add listeners to catch selection change here....
9137     }
9138      
9139
9140  });
9141  // set any options
9142  grid.render(Roo.get("some-div"));
9143 </code></pre>
9144
9145 Currently the Table  uses multiple headers to try and handle XL / Medium etc... styling
9146
9147
9148
9149  *
9150  * @cfg {Roo.grid.AbstractSelectionModel} sm The selection model to use (cell selection is not supported yet)
9151  * @cfg {Roo.data.Store} store The data store to use
9152  * @cfg {Roo.grid.ColumnModel} cm[] A column for the grid.
9153  * 
9154  * @cfg {String} cls table class
9155  *
9156  *
9157  * @cfg {string} empty_results  Text to display for no results 
9158  * @cfg {boolean} striped Should the rows be alternative striped
9159  * @cfg {boolean} bordered Add borders to the table
9160  * @cfg {boolean} hover Add hover highlighting
9161  * @cfg {boolean} condensed Format condensed
9162  * @cfg {boolean} responsive default false - if this is on, columns are rendered with col-xs-4 etc. classes, otherwise columns will be sized by CSS,
9163  *                also adds table-responsive (see bootstrap docs for details)
9164  * @cfg {Boolean} loadMask (true|false) default false
9165  * @cfg {Boolean} footerShow (true|false) generate tfoot, default true
9166  * @cfg {Boolean} footerRow (true|false) generate tfoot with columns of values, default false
9167  * @cfg {Boolean} headerShow (true|false) generate thead, default true
9168  * @cfg {Boolean} rowSelection (true|false) default false
9169  * @cfg {Boolean} cellSelection (true|false) default false
9170  * @cfg {Boolean} scrollBody (true|false) default false - body scrolled / fixed header (with resizable columns)
9171  * @cfg {Roo.bootstrap.PagingToolbar} footer  a paging toolbar
9172  * @cfg {Boolean} lazyLoad  auto load data while scrolling to the end (default false)
9173  * @cfg {Boolean} auto_hide_footer  auto hide footer if only one page (default false)
9174  * @cfg {Boolean} enableColumnResize default true if columns can be resized = needs scrollBody to be set to work (drag/drop)
9175  * @cfg {Boolean} disableAutoSize disable autoSize() and initCSS()
9176  *
9177  * 
9178  * @cfg {Number} minColumnWidth default 50 pixels minimum column width 
9179  * 
9180  * @constructor
9181  * Create a new Table
9182  * @param {Object} config The config object
9183  */
9184
9185 Roo.bootstrap.Table = function(config)
9186 {
9187     Roo.bootstrap.Table.superclass.constructor.call(this, config);
9188      
9189     // BC...
9190     this.rowSelection = (typeof(config.rowSelection) != 'undefined') ? config.rowSelection : this.rowSelection;
9191     this.cellSelection = (typeof(config.cellSelection) != 'undefined') ? config.cellSelection : this.cellSelection;
9192     this.headerShow = (typeof(config.thead) != 'undefined') ? config.thead : this.headerShow;
9193     this.footerShow = (typeof(config.tfoot) != 'undefined') ? config.tfoot : this.footerShow;
9194     
9195     this.view = this; // compat with grid.
9196     
9197     this.sm = this.sm || {xtype: 'RowSelectionModel'};
9198     if (this.sm) {
9199         this.sm.grid = this;
9200         this.selModel = Roo.factory(this.sm, Roo.grid);
9201         this.sm = this.selModel;
9202         this.sm.xmodule = this.xmodule || false;
9203     }
9204     
9205     if (this.cm && typeof(this.cm.config) == 'undefined') {
9206         this.colModel = new Roo.grid.ColumnModel(this.cm);
9207         this.cm = this.colModel;
9208         this.cm.xmodule = this.xmodule || false;
9209     }
9210     if (this.store) {
9211         this.store= Roo.factory(this.store, Roo.data);
9212         this.ds = this.store;
9213         this.ds.xmodule = this.xmodule || false;
9214          
9215     }
9216     if (this.footer && this.store) {
9217         this.footer.dataSource = this.ds;
9218         this.footer = Roo.factory(this.footer);
9219     }
9220     
9221     /** @private */
9222     this.addEvents({
9223         /**
9224          * @event cellclick
9225          * Fires when a cell is clicked
9226          * @param {Roo.bootstrap.Table} this
9227          * @param {Roo.Element} el
9228          * @param {Number} rowIndex
9229          * @param {Number} columnIndex
9230          * @param {Roo.EventObject} e
9231          */
9232         "cellclick" : true,
9233         /**
9234          * @event celldblclick
9235          * Fires when a cell is double clicked
9236          * @param {Roo.bootstrap.Table} this
9237          * @param {Roo.Element} el
9238          * @param {Number} rowIndex
9239          * @param {Number} columnIndex
9240          * @param {Roo.EventObject} e
9241          */
9242         "celldblclick" : true,
9243         /**
9244          * @event rowclick
9245          * Fires when a row is clicked
9246          * @param {Roo.bootstrap.Table} this
9247          * @param {Roo.Element} el
9248          * @param {Number} rowIndex
9249          * @param {Roo.EventObject} e
9250          */
9251         "rowclick" : true,
9252         /**
9253          * @event rowdblclick
9254          * Fires when a row is double clicked
9255          * @param {Roo.bootstrap.Table} this
9256          * @param {Roo.Element} el
9257          * @param {Number} rowIndex
9258          * @param {Roo.EventObject} e
9259          */
9260         "rowdblclick" : true,
9261         /**
9262          * @event mouseover
9263          * Fires when a mouseover occur
9264          * @param {Roo.bootstrap.Table} this
9265          * @param {Roo.Element} el
9266          * @param {Number} rowIndex
9267          * @param {Number} columnIndex
9268          * @param {Roo.EventObject} e
9269          */
9270         "mouseover" : true,
9271         /**
9272          * @event mouseout
9273          * Fires when a mouseout occur
9274          * @param {Roo.bootstrap.Table} this
9275          * @param {Roo.Element} el
9276          * @param {Number} rowIndex
9277          * @param {Number} columnIndex
9278          * @param {Roo.EventObject} e
9279          */
9280         "mouseout" : true,
9281         /**
9282          * @event rowclass
9283          * Fires when a row is rendered, so you can change add a style to it.
9284          * @param {Roo.bootstrap.Table} this
9285          * @param {Object} rowcfg   contains record  rowIndex colIndex and rowClass - set rowClass to add a style.
9286          */
9287         'rowclass' : true,
9288           /**
9289          * @event rowsrendered
9290          * Fires when all the  rows have been rendered
9291          * @param {Roo.bootstrap.Table} this
9292          */
9293         'rowsrendered' : true,
9294         /**
9295          * @event contextmenu
9296          * The raw contextmenu event for the entire grid.
9297          * @param {Roo.EventObject} e
9298          */
9299         "contextmenu" : true,
9300         /**
9301          * @event rowcontextmenu
9302          * Fires when a row is right clicked
9303          * @param {Roo.bootstrap.Table} this
9304          * @param {Number} rowIndex
9305          * @param {Roo.EventObject} e
9306          */
9307         "rowcontextmenu" : true,
9308         /**
9309          * @event cellcontextmenu
9310          * Fires when a cell is right clicked
9311          * @param {Roo.bootstrap.Table} this
9312          * @param {Number} rowIndex
9313          * @param {Number} cellIndex
9314          * @param {Roo.EventObject} e
9315          */
9316          "cellcontextmenu" : true,
9317          /**
9318          * @event headercontextmenu
9319          * Fires when a header is right clicked
9320          * @param {Roo.bootstrap.Table} this
9321          * @param {Number} columnIndex
9322          * @param {Roo.EventObject} e
9323          */
9324         "headercontextmenu" : true,
9325         /**
9326          * @event mousedown
9327          * The raw mousedown event for the entire grid.
9328          * @param {Roo.EventObject} e
9329          */
9330         "mousedown" : true
9331         
9332     });
9333 };
9334
9335 Roo.extend(Roo.bootstrap.Table, Roo.bootstrap.Component,  {
9336     
9337     cls: false,
9338     
9339     empty_results : '',
9340     striped : false,
9341     scrollBody : false,
9342     bordered: false,
9343     hover:  false,
9344     condensed : false,
9345     responsive : false,
9346     sm : false,
9347     cm : false,
9348     store : false,
9349     loadMask : false,
9350     footerShow : true,
9351     footerRow : false,
9352     headerShow : true,
9353     enableColumnResize: true,
9354     disableAutoSize: false,
9355   
9356     rowSelection : false,
9357     cellSelection : false,
9358     layout : false,
9359
9360     minColumnWidth : 50,
9361     
9362     // Roo.Element - the tbody
9363     bodyEl: false,  // <tbody> Roo.Element - thead element    
9364     headEl: false,  // <thead> Roo.Element - thead element
9365     resizeProxy : false, // proxy element for dragging?
9366
9367
9368     
9369     container: false, // used by gridpanel...
9370     
9371     lazyLoad : false,
9372     
9373     CSS : Roo.util.CSS,
9374     
9375     auto_hide_footer : false,
9376     
9377     view: false, // actually points to this..
9378     
9379     getAutoCreate : function()
9380     {
9381         var cfg = Roo.apply({}, Roo.bootstrap.Table.superclass.getAutoCreate.call(this));
9382         
9383         cfg = {
9384             tag: 'table',
9385             cls : 'table', 
9386             cn : []
9387         };
9388         // this get's auto added by panel.Grid
9389         if (this.scrollBody) {
9390             cfg.cls += ' table-body-fixed';
9391         }    
9392         if (this.striped) {
9393             cfg.cls += ' table-striped';
9394         }
9395         
9396         if (this.hover) {
9397             cfg.cls += ' table-hover';
9398         }
9399         if (this.bordered) {
9400             cfg.cls += ' table-bordered';
9401         }
9402         if (this.condensed) {
9403             cfg.cls += ' table-condensed';
9404         }
9405         
9406         if (this.responsive) {
9407             cfg.cls += ' table-responsive';
9408         }
9409         
9410         if (this.cls) {
9411             cfg.cls+=  ' ' +this.cls;
9412         }
9413         
9414         
9415         
9416         if (this.layout) {
9417             cfg.style = (typeof(cfg.style) == 'undefined') ? ('table-layout:' + this.layout + ';') : (cfg.style + ('table-layout:' + this.layout + ';'));
9418         }
9419         
9420         if(this.store || this.cm){
9421             if(this.headerShow){
9422                 cfg.cn.push(this.renderHeader());
9423             }
9424             
9425             cfg.cn.push(this.renderBody());
9426             
9427             if(this.footerShow || this.footerRow){
9428                 cfg.cn.push(this.renderFooter());
9429             }
9430
9431             // where does this come from?
9432             //cfg.cls+=  ' TableGrid';
9433         }
9434         
9435         return { cn : [ cfg ] };
9436     },
9437     
9438     initEvents : function()
9439     {   
9440         if(!this.store || !this.cm){
9441             return;
9442         }
9443         if (this.selModel) {
9444             this.selModel.initEvents();
9445         }
9446         
9447         
9448         //Roo.log('initEvents with ds!!!!');
9449         
9450         this.bodyEl = this.el.select('tbody', true).first();
9451         this.headEl = this.el.select('thead', true).first();
9452         this.mainFoot = this.el.select('tfoot', true).first();
9453         
9454         
9455         
9456         
9457         Roo.each(this.el.select('thead th.sortable', true).elements, function(e){
9458             e.on('click', this.sort, this);
9459         }, this);
9460         
9461         
9462         // why is this done????? = it breaks dialogs??
9463         //this.parent().el.setStyle('position', 'relative');
9464         
9465         
9466         if (this.footer) {
9467             this.footer.parentId = this.id;
9468             this.footer.onRender(this.el.select('tfoot tr td').first(), null);
9469             
9470             if(this.lazyLoad){
9471                 this.el.select('tfoot tr td').first().addClass('hide');
9472             }
9473         } 
9474         
9475         if(this.loadMask) {
9476             this.maskEl = new Roo.LoadMask(this.el, { store : this.ds, msgCls: 'roo-el-mask-msg' });
9477         }
9478         
9479         this.store.on('load', this.onLoad, this);
9480         this.store.on('beforeload', this.onBeforeLoad, this);
9481         this.store.on('update', this.onUpdate, this);
9482         this.store.on('add', this.onAdd, this);
9483         this.store.on("clear", this.clear, this);
9484         
9485         this.el.on("contextmenu", this.onContextMenu, this);
9486         
9487         
9488         this.cm.on("headerchange", this.onHeaderChange, this);
9489         this.cm.on("hiddenchange", this.onHiddenChange, this, arguments);
9490
9491  //?? does bodyEl get replaced on render?
9492         this.bodyEl.on("click", this.onClick, this);
9493         this.bodyEl.on("dblclick", this.onDblClick, this);        
9494         this.bodyEl.on('scroll', this.onBodyScroll, this);
9495
9496         // guessing mainbody will work - this relays usually caught by selmodel at present.
9497         this.relayEvents(this.bodyEl, ["mousedown","mouseup","mouseover","mouseout","keypress"]);
9498   
9499   
9500         this.resizeProxy = Roo.get(document.body).createChild({ cls:"x-grid-resize-proxy", html: '&#160;' });
9501         
9502   
9503         if(this.headEl && this.enableColumnResize !== false && Roo.grid.SplitDragZone){
9504             new Roo.grid.SplitDragZone(this, this.headEl.dom, false); // not sure what 'lockedHd is for this implementation..)
9505         }
9506         
9507         this.initCSS();
9508     },
9509     // Compatibility with grid - we implement all the view features at present.
9510     getView : function()
9511     {
9512         return this;
9513     },
9514     
9515     initCSS : function()
9516     {
9517         if(this.disableAutoSize) {
9518             return;
9519         }
9520         
9521         var cm = this.cm, styles = [];
9522         this.CSS.removeStyleSheet(this.id + '-cssrules');
9523         var headHeight = this.headEl ? this.headEl.dom.clientHeight : 0;
9524         // we can honour xs/sm/md/xl  as widths...
9525         // we first have to decide what widht we are currently at...
9526         var sz = Roo.getGridSize();
9527         
9528         var total = 0;
9529         var last = -1;
9530         var cols = []; // visable cols.
9531         var total_abs = 0;
9532         for(var i = 0, len = cm.getColumnCount(); i < len; i++) {
9533             var w = cm.getColumnWidth(i, false);
9534             if(cm.isHidden(i)){
9535                 cols.push( { rel : false, abs : 0 });
9536                 continue;
9537             }
9538             if (w !== false) {
9539                 cols.push( { rel : false, abs : w });
9540                 total_abs += w;
9541                 last = i; // not really..
9542                 continue;
9543             }
9544             var w = cm.getColumnWidth(i, sz);
9545             if (w > 0) {
9546                 last = i
9547             }
9548             total += w;
9549             cols.push( { rel : w, abs : false });
9550         }
9551         
9552         var avail = this.bodyEl.dom.clientWidth - total_abs;
9553         
9554         var unitWidth = Math.floor(avail / total);
9555         var rem = avail - (unitWidth * total);
9556         
9557         var hidden, width, pos = 0 , splithide , left;
9558         for(var i = 0, len = cm.getColumnCount(); i < len; i++) {
9559             
9560             hidden = 'display:none;';
9561             left = '';
9562             width  = 'width:0px;';
9563             splithide = '';
9564             if(!cm.isHidden(i)){
9565                 hidden = '';
9566                 
9567                 
9568                 // we can honour xs/sm/md/xl ?
9569                 var w = cols[i].rel == false ? cols[i].abs : (cols[i].rel * unitWidth);
9570                 if (w===0) {
9571                     hidden = 'display:none;';
9572                 }
9573                 // width should return a small number...
9574                 if (i == last) {
9575                     w+=rem; // add the remaining with..
9576                 }
9577                 pos += w;
9578                 left = "left:" + (pos -4) + "px;";
9579                 width = "width:" + w+ "px;";
9580                 
9581             }
9582             if (this.responsive) {
9583                 width = '';
9584                 left = '';
9585                 hidden = cm.isHidden(i) ? 'display:none;' : '';
9586                 splithide = 'display: none;';
9587             }
9588             
9589             styles.push( '#' , this.id , ' .x-col-' , i, " {", cm.config[i].css, width, hidden, "}\n" );
9590             if (this.headEl) {
9591                 if (i == last) {
9592                     splithide = 'display:none;';
9593                 }
9594                 
9595                 styles.push('#' , this.id , ' .x-hcol-' , i, " { ", width, hidden," }\n",
9596                             '#' , this.id , ' .x-grid-split-' , i, " { ", left, splithide, 'height:', (headHeight - 4), "px;}\n",
9597                             // this is the popover version..
9598                             '.popover-inner #' , this.id , ' .x-grid-split-' , i, " { ", left, splithide, 'height:', 100, "%;}\n"
9599                 );
9600             }
9601             
9602         }
9603         //Roo.log(styles.join(''));
9604         this.CSS.createStyleSheet( styles.join(''), this.id + '-cssrules');
9605         
9606     },
9607     
9608     
9609     
9610     onContextMenu : function(e, t)
9611     {
9612         this.processEvent("contextmenu", e);
9613     },
9614     
9615     processEvent : function(name, e)
9616     {
9617         if (name != 'touchstart' ) {
9618             this.fireEvent(name, e);    
9619         }
9620         
9621         var t = e.getTarget();
9622         
9623         var cell = Roo.get(t);
9624         
9625         if(!cell){
9626             return;
9627         }
9628         
9629         if(cell.findParent('tfoot', false, true)){
9630             return;
9631         }
9632         
9633         if(cell.findParent('thead', false, true)){
9634             
9635             if(e.getTarget().nodeName.toLowerCase() != 'th'){
9636                 cell = Roo.get(t).findParent('th', false, true);
9637                 if (!cell) {
9638                     Roo.log("failed to find th in thead?");
9639                     Roo.log(e.getTarget());
9640                     return;
9641                 }
9642             }
9643             
9644             var cellIndex = cell.dom.cellIndex;
9645             
9646             var ename = name == 'touchstart' ? 'click' : name;
9647             this.fireEvent("header" + ename, this, cellIndex, e);
9648             
9649             return;
9650         }
9651         
9652         if(e.getTarget().nodeName.toLowerCase() != 'td'){
9653             cell = Roo.get(t).findParent('td', false, true);
9654             if (!cell) {
9655                 Roo.log("failed to find th in tbody?");
9656                 Roo.log(e.getTarget());
9657                 return;
9658             }
9659         }
9660         
9661         var row = cell.findParent('tr', false, true);
9662         var cellIndex = cell.dom.cellIndex;
9663         var rowIndex = row.dom.rowIndex - 1;
9664         
9665         if(row !== false){
9666             
9667             this.fireEvent("row" + name, this, rowIndex, e);
9668             
9669             if(cell !== false){
9670             
9671                 this.fireEvent("cell" + name, this, rowIndex, cellIndex, e);
9672             }
9673         }
9674         
9675     },
9676     
9677     onMouseover : function(e, el)
9678     {
9679         var cell = Roo.get(el);
9680         
9681         if(!cell){
9682             return;
9683         }
9684         
9685         if(e.getTarget().nodeName.toLowerCase() != 'td'){
9686             cell = cell.findParent('td', false, true);
9687         }
9688         
9689         var row = cell.findParent('tr', false, true);
9690         var cellIndex = cell.dom.cellIndex;
9691         var rowIndex = row.dom.rowIndex - 1; // start from 0
9692         
9693         this.fireEvent('mouseover', this, cell, rowIndex, cellIndex, e);
9694         
9695     },
9696     
9697     onMouseout : function(e, el)
9698     {
9699         var cell = Roo.get(el);
9700         
9701         if(!cell){
9702             return;
9703         }
9704         
9705         if(e.getTarget().nodeName.toLowerCase() != 'td'){
9706             cell = cell.findParent('td', false, true);
9707         }
9708         
9709         var row = cell.findParent('tr', false, true);
9710         var cellIndex = cell.dom.cellIndex;
9711         var rowIndex = row.dom.rowIndex - 1; // start from 0
9712         
9713         this.fireEvent('mouseout', this, cell, rowIndex, cellIndex, e);
9714         
9715     },
9716     
9717     onClick : function(e, el)
9718     {
9719         var cell = Roo.get(el);
9720         
9721         if(!cell || (!this.cellSelection && !this.rowSelection)){
9722             return;
9723         }
9724         
9725         if(e.getTarget().nodeName.toLowerCase() != 'td'){
9726             cell = cell.findParent('td', false, true);
9727         }
9728         
9729         if(!cell || typeof(cell) == 'undefined'){
9730             return;
9731         }
9732         
9733         var row = cell.findParent('tr', false, true);
9734         
9735         if(!row || typeof(row) == 'undefined'){
9736             return;
9737         }
9738         
9739         var cellIndex = cell.dom.cellIndex;
9740         var rowIndex = this.getRowIndex(row);
9741         
9742         // why??? - should these not be based on SelectionModel?
9743         //if(this.cellSelection){
9744             this.fireEvent('cellclick', this, cell, rowIndex, cellIndex, e);
9745         //}
9746         
9747         //if(this.rowSelection){
9748             this.fireEvent('rowclick', this, row, rowIndex, e);
9749         //}
9750          
9751     },
9752         
9753     onDblClick : function(e,el)
9754     {
9755         var cell = Roo.get(el);
9756         
9757         if(!cell || (!this.cellSelection && !this.rowSelection)){
9758             return;
9759         }
9760         
9761         if(e.getTarget().nodeName.toLowerCase() != 'td'){
9762             cell = cell.findParent('td', false, true);
9763         }
9764         
9765         if(!cell || typeof(cell) == 'undefined'){
9766             return;
9767         }
9768         
9769         var row = cell.findParent('tr', false, true);
9770         
9771         if(!row || typeof(row) == 'undefined'){
9772             return;
9773         }
9774         
9775         var cellIndex = cell.dom.cellIndex;
9776         var rowIndex = this.getRowIndex(row);
9777         
9778         if(this.cellSelection){
9779             this.fireEvent('celldblclick', this, cell, rowIndex, cellIndex, e);
9780         }
9781         
9782         if(this.rowSelection){
9783             this.fireEvent('rowdblclick', this, row, rowIndex, e);
9784         }
9785     },
9786     findRowIndex : function(el)
9787     {
9788         var cell = Roo.get(el);
9789         if(!cell) {
9790             return false;
9791         }
9792         var row = cell.findParent('tr', false, true);
9793         
9794         if(!row || typeof(row) == 'undefined'){
9795             return false;
9796         }
9797         return this.getRowIndex(row);
9798     },
9799     sort : function(e,el)
9800     {
9801         var col = Roo.get(el);
9802         
9803         if(!col.hasClass('sortable')){
9804             return;
9805         }
9806         
9807         var sort = col.attr('sort');
9808         var dir = 'ASC';
9809         
9810         if(col.select('i', true).first().hasClass('fa-arrow-up')){
9811             dir = 'DESC';
9812         }
9813         
9814         this.store.sortInfo = {field : sort, direction : dir};
9815         
9816         if (this.footer) {
9817             Roo.log("calling footer first");
9818             this.footer.onClick('first');
9819         } else {
9820         
9821             this.store.load({ params : { start : 0 } });
9822         }
9823     },
9824     
9825     renderHeader : function()
9826     {
9827         var header = {
9828             tag: 'thead',
9829             cn : []
9830         };
9831         
9832         var cm = this.cm;
9833         this.totalWidth = 0;
9834         
9835         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
9836             
9837             var config = cm.config[i];
9838             
9839             var c = {
9840                 tag: 'th',
9841                 cls : 'x-hcol-' + i,
9842                 style : '',
9843                 
9844                 html: cm.getColumnHeader(i)
9845             };
9846             
9847             var tooltip = cm.getColumnTooltip(i);
9848             if (tooltip) {
9849                 c.tooltip = tooltip;
9850             }
9851             
9852             
9853             var hh = '';
9854             
9855             if(typeof(config.sortable) != 'undefined' && config.sortable){
9856                 c.cls += ' sortable';
9857                 c.html = '<i class="fa"></i>' + c.html;
9858             }
9859             
9860             // could use BS4 hidden-..-down 
9861             
9862             if(typeof(config.lgHeader) != 'undefined'){
9863                 hh += '<span class="hidden-xs hidden-sm hidden-md ">' + config.lgHeader + '</span>';
9864             }
9865             
9866             if(typeof(config.mdHeader) != 'undefined'){
9867                 hh += '<span class="hidden-xs hidden-sm hidden-lg">' + config.mdHeader + '</span>';
9868             }
9869             
9870             if(typeof(config.smHeader) != 'undefined'){
9871                 hh += '<span class="hidden-xs hidden-md hidden-lg">' + config.smHeader + '</span>';
9872             }
9873             
9874             if(typeof(config.xsHeader) != 'undefined'){
9875                 hh += '<span class="hidden-sm hidden-md hidden-lg">' + config.xsHeader + '</span>';
9876             }
9877             
9878             if(hh.length){
9879                 c.html = hh;
9880             }
9881             
9882             if(typeof(config.tooltip) != 'undefined'){
9883                 c.tooltip = config.tooltip;
9884             }
9885             
9886             if(typeof(config.colspan) != 'undefined'){
9887                 c.colspan = config.colspan;
9888             }
9889             
9890             // hidden is handled by CSS now
9891             
9892             if(typeof(config.dataIndex) != 'undefined'){
9893                 c.sort = config.dataIndex;
9894             }
9895             
9896            
9897             
9898             if(typeof(config.align) != 'undefined' && config.align.length){
9899                 c.style += ' text-align:' + config.align + ';';
9900             }
9901             
9902             /* width is done in CSS
9903              *if(typeof(config.width) != 'undefined'){
9904                 c.style += ' width:' + config.width + 'px;';
9905                 this.totalWidth += config.width;
9906             } else {
9907                 this.totalWidth += 100; // assume minimum of 100 per column?
9908             }
9909             */
9910             
9911             if(typeof(config.cls) != 'undefined'){
9912                 c.cls = (typeof(c.cls) == 'undefined') ? config.cls : (c.cls + ' ' + config.cls);
9913             }
9914             // this is the bit that doesnt reall work at all...
9915             
9916             if (this.responsive) {
9917                  
9918             
9919                 ['xs','sm','md','lg'].map(function(size){
9920                     
9921                     if(typeof(config[size]) == 'undefined'){
9922                         return;
9923                     }
9924                      
9925                     if (!config[size]) { // 0 = hidden
9926                         // BS 4 '0' is treated as hide that column and below.
9927                         c.cls += ' hidden-' + size + ' hidden' + size + '-down';
9928                         return;
9929                     }
9930                     
9931                     c.cls += ' col-' + size + '-' + config[size] + (
9932                         size == 'xs' ? (' col-' + config[size] ) : '' // bs4 col-{num} replaces col-xs
9933                     );
9934                     
9935                     
9936                 });
9937             }
9938             // at the end?
9939             
9940             c.html +=' <span class="x-grid-split x-grid-split-' + i + '"></span>';
9941             
9942             
9943             
9944             
9945             header.cn.push(c)
9946         }
9947         
9948         return header;
9949     },
9950     
9951     renderBody : function()
9952     {
9953         var body = {
9954             tag: 'tbody',
9955             cn : [
9956                 {
9957                     tag: 'tr',
9958                     cn : [
9959                         {
9960                             tag : 'td',
9961                             colspan :  this.cm.getColumnCount()
9962                         }
9963                     ]
9964                 }
9965             ]
9966         };
9967         
9968         return body;
9969     },
9970     
9971     renderFooter : function()
9972     {
9973         var footer = {
9974             tag: 'tfoot',
9975             cn : [
9976                 {
9977                     tag: 'tr',
9978                     cn : [
9979                         {
9980                             tag : 'td',
9981                             colspan :  this.cm.getColumnCount()
9982                         }
9983                     ]
9984                 }
9985             ]
9986         };
9987         
9988         return footer;
9989     },
9990     
9991     onLoad : function()
9992     {
9993 //        Roo.log('ds onload');
9994         this.clear();
9995         
9996         var _this = this;
9997         var cm = this.cm;
9998         var ds = this.store;
9999         
10000         Roo.each(this.el.select('thead th.sortable', true).elements, function(e){
10001             e.select('i', true).removeClass(['fa-arrow-up', 'fa-arrow-down']);
10002             if (_this.store.sortInfo) {
10003                     
10004                 if(e.hasClass('sortable') && e.attr('sort') == _this.store.sortInfo.field && _this.store.sortInfo.direction.toUpperCase() == 'ASC'){
10005                     e.select('i', true).addClass(['fa-arrow-up']);
10006                 }
10007                 
10008                 if(e.hasClass('sortable') && e.attr('sort') == _this.store.sortInfo.field && _this.store.sortInfo.direction.toUpperCase() == 'DESC'){
10009                     e.select('i', true).addClass(['fa-arrow-down']);
10010                 }
10011             }
10012         });
10013         
10014         var tbody =  this.bodyEl;
10015               
10016         if(ds.getCount() > 0){
10017             ds.data.each(function(d,rowIndex){
10018                 var row =  this.renderRow(cm, ds, rowIndex);
10019                 
10020                 tbody.createChild(row);
10021                 
10022                 var _this = this;
10023                 
10024                 if(row.cellObjects.length){
10025                     Roo.each(row.cellObjects, function(r){
10026                         _this.renderCellObject(r);
10027                     })
10028                 }
10029                 
10030             }, this);
10031         } else if (this.empty_results.length) {
10032             this.el.mask(this.empty_results, 'no-spinner');
10033         }
10034         
10035         var tfoot = this.el.select('tfoot', true).first();
10036         
10037         if(this.footerShow && !this.footerRow && this.auto_hide_footer && this.mainFoot){
10038             
10039             this.mainFoot.setVisibilityMode(Roo.Element.DISPLAY).hide();
10040             
10041             var total = this.ds.getTotalCount();
10042             
10043             if(this.footer.pageSize < total){
10044                 this.mainFoot.show();
10045             }
10046         }
10047
10048         if(!this.footerShow && this.footerRow) {
10049
10050             var tr = {
10051                 tag : 'tr',
10052                 cn : []
10053             };
10054
10055             for(var i = 0, len = cm.getColumnCount(); i < len; i++){
10056                 var footer = typeof(cm.config[i].footer) == "function" ? cm.config[i].footer(ds, cm.config[i]) : cm.config[i].footer;
10057                 var td = {
10058                     tag: 'td',
10059                     cls : ' x-fcol-' + i,
10060                     html: footer
10061                 };
10062
10063                 tr.cn.push(td);
10064                 
10065             }
10066             
10067             tfoot.dom.innerHTML = '';
10068
10069             tfoot.createChild(tr);
10070         }
10071         
10072         Roo.each(this.el.select('tbody td', true).elements, function(e){
10073             e.on('mouseover', _this.onMouseover, _this);
10074         });
10075         
10076         Roo.each(this.el.select('tbody td', true).elements, function(e){
10077             e.on('mouseout', _this.onMouseout, _this);
10078         });
10079         this.fireEvent('rowsrendered', this);
10080         
10081         this.autoSize();
10082         
10083         this.initCSS(); /// resize cols
10084
10085         
10086     },
10087     
10088     
10089     onUpdate : function(ds,record)
10090     {
10091         this.refreshRow(record);
10092         this.autoSize();
10093     },
10094     
10095     onRemove : function(ds, record, index, isUpdate){
10096         if(isUpdate !== true){
10097             this.fireEvent("beforerowremoved", this, index, record);
10098         }
10099         var bt = this.bodyEl.dom;
10100         
10101         var rows = this.el.select('tbody > tr', true).elements;
10102         
10103         if(typeof(rows[index]) != 'undefined'){
10104             bt.removeChild(rows[index].dom);
10105         }
10106         
10107 //        if(bt.rows[index]){
10108 //            bt.removeChild(bt.rows[index]);
10109 //        }
10110         
10111         if(isUpdate !== true){
10112             //this.stripeRows(index);
10113             //this.syncRowHeights(index, index);
10114             //this.layout();
10115             this.fireEvent("rowremoved", this, index, record);
10116         }
10117     },
10118     
10119     onAdd : function(ds, records, rowIndex)
10120     {
10121         //Roo.log('on Add called');
10122         // - note this does not handle multiple adding very well..
10123         var bt = this.bodyEl.dom;
10124         for (var i =0 ; i < records.length;i++) {
10125             //Roo.log('call insert row Add called on ' + rowIndex + ':' + i);
10126             //Roo.log(records[i]);
10127             //Roo.log(this.store.getAt(rowIndex+i));
10128             this.insertRow(this.store, rowIndex + i, false);
10129             return;
10130         }
10131         
10132     },
10133     
10134     
10135     refreshRow : function(record){
10136         var ds = this.store, index;
10137         if(typeof record == 'number'){
10138             index = record;
10139             record = ds.getAt(index);
10140         }else{
10141             index = ds.indexOf(record);
10142             if (index < 0) {
10143                 return; // should not happen - but seems to 
10144             }
10145         }
10146         this.insertRow(ds, index, true);
10147         this.autoSize();
10148         this.onRemove(ds, record, index+1, true);
10149         this.autoSize();
10150         //this.syncRowHeights(index, index);
10151         //this.layout();
10152         this.fireEvent("rowupdated", this, index, record);
10153     },
10154     // private - called by RowSelection
10155     onRowSelect : function(rowIndex){
10156         var row = this.getRowDom(rowIndex);
10157         row.addClass(['bg-info','info']);
10158     },
10159     // private - called by RowSelection
10160     onRowDeselect : function(rowIndex)
10161     {
10162         if (rowIndex < 0) {
10163             return;
10164         }
10165         var row = this.getRowDom(rowIndex);
10166         row.removeClass(['bg-info','info']);
10167     },
10168       /**
10169      * Focuses the specified row.
10170      * @param {Number} row The row index
10171      */
10172     focusRow : function(row)
10173     {
10174         //Roo.log('GridView.focusRow');
10175         var x = this.bodyEl.dom.scrollLeft;
10176         this.focusCell(row, 0, false);
10177         this.bodyEl.dom.scrollLeft = x;
10178
10179     },
10180      /**
10181      * Focuses the specified cell.
10182      * @param {Number} row The row index
10183      * @param {Number} col The column index
10184      * @param {Boolean} hscroll false to disable horizontal scrolling
10185      */
10186     focusCell : function(row, col, hscroll)
10187     {
10188         //Roo.log('GridView.focusCell');
10189         var el = this.ensureVisible(row, col, hscroll);
10190         // not sure what focusEL achives = it's a <a> pos relative 
10191         //this.focusEl.alignTo(el, "tl-tl");
10192         //if(Roo.isGecko){
10193         //    this.focusEl.focus();
10194         //}else{
10195         //    this.focusEl.focus.defer(1, this.focusEl);
10196         //}
10197     },
10198     
10199      /**
10200      * Scrolls the specified cell into view
10201      * @param {Number} row The row index
10202      * @param {Number} col The column index
10203      * @param {Boolean} hscroll false to disable horizontal scrolling
10204      */
10205     ensureVisible : function(row, col, hscroll)
10206     {
10207         //Roo.log('GridView.ensureVisible,' + row + ',' + col);
10208         //return null; //disable for testing.
10209         if(typeof row != "number"){
10210             row = row.rowIndex;
10211         }
10212         if(row < 0 && row >= this.ds.getCount()){
10213             return  null;
10214         }
10215         col = (col !== undefined ? col : 0);
10216         var cm = this.cm;
10217         while(cm.isHidden(col)){
10218             col++;
10219         }
10220
10221         var el = this.getCellDom(row, col);
10222         if(!el){
10223             return null;
10224         }
10225         var c = this.bodyEl.dom;
10226
10227         var ctop = parseInt(el.offsetTop, 10);
10228         var cleft = parseInt(el.offsetLeft, 10);
10229         var cbot = ctop + el.offsetHeight;
10230         var cright = cleft + el.offsetWidth;
10231
10232         //var ch = c.clientHeight - this.mainHd.dom.offsetHeight;
10233         var ch = 0; //?? header is not withing the area?
10234         var stop = parseInt(c.scrollTop, 10);
10235         var sleft = parseInt(c.scrollLeft, 10);
10236         var sbot = stop + ch;
10237         var sright = sleft + c.clientWidth;
10238         /*
10239         Roo.log('GridView.ensureVisible:' +
10240                 ' ctop:' + ctop +
10241                 ' c.clientHeight:' + c.clientHeight +
10242                 ' this.mainHd.dom.offsetHeight:' + this.mainHd.dom.offsetHeight +
10243                 ' stop:' + stop +
10244                 ' cbot:' + cbot +
10245                 ' sbot:' + sbot +
10246                 ' ch:' + ch  
10247                 );
10248         */
10249         if(ctop < stop){
10250             c.scrollTop = ctop;
10251             //Roo.log("set scrolltop to ctop DISABLE?");
10252         }else if(cbot > sbot){
10253             //Roo.log("set scrolltop to cbot-ch");
10254             c.scrollTop = cbot-ch;
10255         }
10256
10257         if(hscroll !== false){
10258             if(cleft < sleft){
10259                 c.scrollLeft = cleft;
10260             }else if(cright > sright){
10261                 c.scrollLeft = cright-c.clientWidth;
10262             }
10263         }
10264
10265         return el;
10266     },
10267     
10268     
10269     insertRow : function(dm, rowIndex, isUpdate){
10270         
10271         if(!isUpdate){
10272             this.fireEvent("beforerowsinserted", this, rowIndex);
10273         }
10274             //var s = this.getScrollState();
10275         var row = this.renderRow(this.cm, this.store, rowIndex);
10276         // insert before rowIndex..
10277         var e = this.bodyEl.createChild(row,this.getRowDom(rowIndex));
10278         
10279         var _this = this;
10280                 
10281         if(row.cellObjects.length){
10282             Roo.each(row.cellObjects, function(r){
10283                 _this.renderCellObject(r);
10284             })
10285         }
10286             
10287         if(!isUpdate){
10288             this.fireEvent("rowsinserted", this, rowIndex);
10289             //this.syncRowHeights(firstRow, lastRow);
10290             //this.stripeRows(firstRow);
10291             //this.layout();
10292         }
10293         
10294     },
10295     
10296     
10297     getRowDom : function(rowIndex)
10298     {
10299         var rows = this.el.select('tbody > tr', true).elements;
10300         
10301         return (typeof(rows[rowIndex]) == 'undefined') ? false : rows[rowIndex];
10302         
10303     },
10304     getCellDom : function(rowIndex, colIndex)
10305     {
10306         var row = this.getRowDom(rowIndex);
10307         if (row === false) {
10308             return false;
10309         }
10310         var cols = row.select('td', true).elements;
10311         return (typeof(cols[colIndex]) == 'undefined') ? false : cols[colIndex];
10312         
10313     },
10314     
10315     // returns the object tree for a tr..
10316   
10317     
10318     renderRow : function(cm, ds, rowIndex) 
10319     {
10320         var d = ds.getAt(rowIndex);
10321         
10322         var row = {
10323             tag : 'tr',
10324             cls : 'x-row-' + rowIndex,
10325             cn : []
10326         };
10327             
10328         var cellObjects = [];
10329         
10330         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
10331             var config = cm.config[i];
10332             
10333             var renderer = cm.getRenderer(i);
10334             var value = '';
10335             var id = false;
10336             
10337             if(typeof(renderer) !== 'undefined'){
10338                 value = renderer(d.data[cm.getDataIndex(i)], false, d);
10339             }
10340             // if object are returned, then they are expected to be Roo.bootstrap.Component instances
10341             // and are rendered into the cells after the row is rendered - using the id for the element.
10342             
10343             if(typeof(value) === 'object'){
10344                 id = Roo.id();
10345                 cellObjects.push({
10346                     container : id,
10347                     cfg : value 
10348                 })
10349             }
10350             
10351             var rowcfg = {
10352                 record: d,
10353                 rowIndex : rowIndex,
10354                 colIndex : i,
10355                 rowClass : ''
10356             };
10357
10358             this.fireEvent('rowclass', this, rowcfg);
10359             
10360             var td = {
10361                 tag: 'td',
10362                 // this might end up displaying HTML?
10363                 // this is too messy... - better to only do it on columsn you know are going to be too long
10364                 //tooltip : (typeof(value) === 'object') ? '' : value,
10365                 cls : rowcfg.rowClass + ' x-col-' + i,
10366                 style: '',
10367                 html: (typeof(value) === 'object') ? '' : value
10368             };
10369             
10370             if (id) {
10371                 td.id = id;
10372             }
10373             
10374             if(typeof(config.colspan) != 'undefined'){
10375                 td.colspan = config.colspan;
10376             }
10377             
10378             
10379             
10380             if(typeof(config.align) != 'undefined' && config.align.length){
10381                 td.style += ' text-align:' + config.align + ';';
10382             }
10383             if(typeof(config.valign) != 'undefined' && config.valign.length){
10384                 td.style += ' vertical-align:' + config.valign + ';';
10385             }
10386             /*
10387             if(typeof(config.width) != 'undefined'){
10388                 td.style += ' width:' +  config.width + 'px;';
10389             }
10390             */
10391             
10392             if(typeof(config.cursor) != 'undefined'){
10393                 td.style += ' cursor:' +  config.cursor + ';';
10394             }
10395             
10396             if(typeof(config.cls) != 'undefined'){
10397                 td.cls = (typeof(td.cls) == 'undefined') ? config.cls : (td.cls + ' ' + config.cls);
10398             }
10399             if (this.responsive) {
10400                 ['xs','sm','md','lg'].map(function(size){
10401                     
10402                     if(typeof(config[size]) == 'undefined'){
10403                         return;
10404                     }
10405                     
10406                     
10407                       
10408                     if (!config[size]) { // 0 = hidden
10409                         // BS 4 '0' is treated as hide that column and below.
10410                         td.cls += ' hidden-' + size + ' hidden' + size + '-down';
10411                         return;
10412                     }
10413                     
10414                     td.cls += ' col-' + size + '-' + config[size] + (
10415                         size == 'xs' ? (' col-' +   config[size] ) : '' // bs4 col-{num} replaces col-xs
10416                     );
10417                      
10418     
10419                 });
10420             }
10421             row.cn.push(td);
10422            
10423         }
10424         
10425         row.cellObjects = cellObjects;
10426         
10427         return row;
10428           
10429     },
10430     
10431     
10432     
10433     onBeforeLoad : function()
10434     {
10435         this.el.unmask(); // if needed.
10436     },
10437      /**
10438      * Remove all rows
10439      */
10440     clear : function()
10441     {
10442         this.el.select('tbody', true).first().dom.innerHTML = '';
10443     },
10444     /**
10445      * Show or hide a row.
10446      * @param {Number} rowIndex to show or hide
10447      * @param {Boolean} state hide
10448      */
10449     setRowVisibility : function(rowIndex, state)
10450     {
10451         var bt = this.bodyEl.dom;
10452         
10453         var rows = this.el.select('tbody > tr', true).elements;
10454         
10455         if(typeof(rows[rowIndex]) == 'undefined'){
10456             return;
10457         }
10458         rows[rowIndex][ state ? 'removeClass' : 'addClass']('d-none');
10459         
10460     },
10461     
10462     
10463     getSelectionModel : function(){
10464         if(!this.selModel){
10465             this.selModel = new Roo.bootstrap.Table.RowSelectionModel({grid: this});
10466         }
10467         return this.selModel;
10468     },
10469     /*
10470      * Render the Roo.bootstrap object from renderder
10471      */
10472     renderCellObject : function(r)
10473     {
10474         var _this = this;
10475         
10476         r.cfg.parentId = (typeof(r.container) == 'string') ? r.container : r.container.id;
10477         
10478         var t = r.cfg.render(r.container);
10479         
10480         if(r.cfg.cn){
10481             Roo.each(r.cfg.cn, function(c){
10482                 var child = {
10483                     container: t.getChildContainer(),
10484                     cfg: c
10485                 };
10486                 _this.renderCellObject(child);
10487             })
10488         }
10489     },
10490     /**
10491      * get the Row Index from a dom element.
10492      * @param {Roo.Element} row The row to look for
10493      * @returns {Number} the row
10494      */
10495     getRowIndex : function(row)
10496     {
10497         var rowIndex = -1;
10498         
10499         Roo.each(this.el.select('tbody > tr', true).elements, function(el, index){
10500             if(el != row){
10501                 return;
10502             }
10503             
10504             rowIndex = index;
10505         });
10506         
10507         return rowIndex;
10508     },
10509     /**
10510      * get the header TH element for columnIndex
10511      * @param {Number} columnIndex
10512      * @returns {Roo.Element}
10513      */
10514     getHeaderIndex: function(colIndex)
10515     {
10516         var cols = this.headEl.select('th', true).elements;
10517         return cols[colIndex]; 
10518     },
10519     /**
10520      * get the Column Index from a dom element. (using regex on x-hcol-{colid})
10521      * @param {domElement} cell to look for
10522      * @returns {Number} the column
10523      */
10524     getCellIndex : function(cell)
10525     {
10526         var id = String(cell.className).match(Roo.bootstrap.Table.cellRE);
10527         if(id){
10528             return parseInt(id[1], 10);
10529         }
10530         return 0;
10531     },
10532      /**
10533      * Returns the grid's underlying element = used by panel.Grid
10534      * @return {Element} The element
10535      */
10536     getGridEl : function(){
10537         return this.el;
10538     },
10539      /**
10540      * Forces a resize - used by panel.Grid
10541      * @return {Element} The element
10542      */
10543     autoSize : function()
10544     {
10545         if(this.disableAutoSize) {
10546             return;
10547         }
10548         //var ctr = Roo.get(this.container.dom.parentElement);
10549         var ctr = Roo.get(this.el.dom);
10550         
10551         var thd = this.getGridEl().select('thead',true).first();
10552         var tbd = this.getGridEl().select('tbody', true).first();
10553         var tfd = this.getGridEl().select('tfoot', true).first();
10554         
10555         var cw = ctr.getWidth();
10556         this.getGridEl().select('tfoot tr, tfoot  td',true).setWidth(cw);
10557         
10558         if (tbd) {
10559             
10560             tbd.setWidth(ctr.getWidth());
10561             // if the body has a max height - and then scrolls - we should perhaps set up the height here
10562             // this needs fixing for various usage - currently only hydra job advers I think..
10563             //tdb.setHeight(
10564             //        ctr.getHeight() - ((thd ? thd.getHeight() : 0) + (tfd ? tfd.getHeight() : 0))
10565             //); 
10566             var barsize = (tbd.dom.offsetWidth - tbd.dom.clientWidth);
10567             cw -= barsize;
10568         }
10569         cw = Math.max(cw, this.totalWidth);
10570         this.getGridEl().select('tbody tr',true).setWidth(cw);
10571         this.initCSS();
10572         
10573         // resize 'expandable coloumn?
10574         
10575         return; // we doe not have a view in this design..
10576         
10577     },
10578     onBodyScroll: function()
10579     {
10580         //Roo.log("body scrolled');" + this.bodyEl.dom.scrollLeft);
10581         if(this.headEl){
10582             this.headEl.setStyle({
10583                 'position' : 'relative',
10584                 'left': (-1* this.bodyEl.dom.scrollLeft) + 'px'
10585             });
10586         }
10587         
10588         if(this.lazyLoad){
10589             
10590             var scrollHeight = this.bodyEl.dom.scrollHeight;
10591             
10592             var scrollTop = Math.ceil(this.bodyEl.getScroll().top);
10593             
10594             var height = this.bodyEl.getHeight();
10595             
10596             if(scrollHeight - height == scrollTop) {
10597                 
10598                 var total = this.ds.getTotalCount();
10599                 
10600                 if(this.footer.cursor + this.footer.pageSize < total){
10601                     
10602                     this.footer.ds.load({
10603                         params : {
10604                             start : this.footer.cursor + this.footer.pageSize,
10605                             limit : this.footer.pageSize
10606                         },
10607                         add : true
10608                     });
10609                 }
10610             }
10611             
10612         }
10613     },
10614     onColumnSplitterMoved : function(i, diff)
10615     {
10616         this.userResized = true;
10617         
10618         var cm = this.colModel;
10619         
10620         var w = this.getHeaderIndex(i).getWidth() + diff;
10621         
10622         
10623         cm.setColumnWidth(i, w, true);
10624         this.initCSS();
10625         //var cid = cm.getColumnId(i); << not used in this version?
10626        /* Roo.log(['#' + this.id + ' .x-col-' + i, "width", w + "px"]);
10627         
10628         this.CSS.updateRule( '#' + this.id + ' .x-col-' + i, "width", w + "px");
10629         this.CSS.updateRule('#' + this.id + ' .x-hcol-' + i, "width", w + "px");
10630         this.CSS.updateRule('#' + this.id + ' .x-grid-split-' + i, "left", w + "px");
10631 */
10632         //this.updateSplitters();
10633         //this.layout(); << ??
10634         this.fireEvent("columnresize", i, w);
10635     },
10636     onHeaderChange : function()
10637     {
10638         var header = this.renderHeader();
10639         var table = this.el.select('table', true).first();
10640         
10641         this.headEl.remove();
10642         this.headEl = table.createChild(header, this.bodyEl, false);
10643         
10644         Roo.each(this.el.select('thead th.sortable', true).elements, function(e){
10645             e.on('click', this.sort, this);
10646         }, this);
10647         
10648         if(this.enableColumnResize !== false && Roo.grid.SplitDragZone){
10649             new Roo.grid.SplitDragZone(this, this.headEl.dom, false); // not sure what 'lockedHd is for this implementation..)
10650         }
10651         
10652     },
10653     
10654     onHiddenChange : function(colModel, colIndex, hidden)
10655     {
10656         /*
10657         this.cm.setHidden()
10658         var thSelector = '#' + this.id + ' .x-hcol-' + colIndex;
10659         var tdSelector = '#' + this.id + ' .x-col-' + colIndex;
10660         
10661         this.CSS.updateRule(thSelector, "display", "");
10662         this.CSS.updateRule(tdSelector, "display", "");
10663         
10664         if(hidden){
10665             this.CSS.updateRule(thSelector, "display", "none");
10666             this.CSS.updateRule(tdSelector, "display", "none");
10667         }
10668         */
10669         // onload calls initCSS()
10670         this.onHeaderChange();
10671         this.onLoad();
10672     },
10673     
10674     setColumnWidth: function(col_index, width)
10675     {
10676         // width = "md-2 xs-2..."
10677         if(!this.colModel.config[col_index]) {
10678             return;
10679         }
10680         
10681         var w = width.split(" ");
10682         
10683         var rows = this.el.dom.getElementsByClassName("x-col-"+col_index);
10684         
10685         var h_row = this.el.dom.getElementsByClassName("x-hcol-"+col_index);
10686         
10687         
10688         for(var j = 0; j < w.length; j++) {
10689             
10690             if(!w[j]) {
10691                 continue;
10692             }
10693             
10694             var size_cls = w[j].split("-");
10695             
10696             if(!Number.isInteger(size_cls[1] * 1)) {
10697                 continue;
10698             }
10699             
10700             if(!this.colModel.config[col_index][size_cls[0]]) {
10701                 continue;
10702             }
10703             
10704             if(!h_row[0].classList.contains("col-"+size_cls[0]+"-"+this.colModel.config[col_index][size_cls[0]])) {
10705                 continue;
10706             }
10707             
10708             h_row[0].classList.replace(
10709                 "col-"+size_cls[0]+"-"+this.colModel.config[col_index][size_cls[0]],
10710                 "col-"+size_cls[0]+"-"+size_cls[1]
10711             );
10712             
10713             for(var i = 0; i < rows.length; i++) {
10714                 
10715                 var size_cls = w[j].split("-");
10716                 
10717                 if(!Number.isInteger(size_cls[1] * 1)) {
10718                     continue;
10719                 }
10720                 
10721                 if(!this.colModel.config[col_index][size_cls[0]]) {
10722                     continue;
10723                 }
10724                 
10725                 if(!rows[i].classList.contains("col-"+size_cls[0]+"-"+this.colModel.config[col_index][size_cls[0]])) {
10726                     continue;
10727                 }
10728                 
10729                 rows[i].classList.replace(
10730                     "col-"+size_cls[0]+"-"+this.colModel.config[col_index][size_cls[0]],
10731                     "col-"+size_cls[0]+"-"+size_cls[1]
10732                 );
10733             }
10734             
10735             this.colModel.config[col_index][size_cls[0]] = size_cls[1];
10736         }
10737     }
10738 });
10739
10740 // currently only used to find the split on drag.. 
10741 Roo.bootstrap.Table.cellRE = /(?:.*?)x-grid-(?:hd|cell|split)-([\d]+)(?:.*?)/;
10742
10743 /**
10744  * @depricated
10745 */
10746 Roo.bootstrap.Table.AbstractSelectionModel = Roo.grid.AbstractSelectionModel;
10747 Roo.bootstrap.Table.RowSelectionModel = Roo.grid.RowSelectionModel;
10748 /*
10749  * - LGPL
10750  *
10751  * table cell
10752  * 
10753  */
10754
10755 /**
10756  * @class Roo.bootstrap.TableCell
10757  * @extends Roo.bootstrap.Component
10758  * @children Roo.bootstrap.Component
10759  * @parent Roo.bootstrap.TableRow
10760  * Bootstrap TableCell class
10761  * 
10762  * @cfg {String} html cell contain text
10763  * @cfg {String} cls cell class
10764  * @cfg {String} tag cell tag (td|th) default td
10765  * @cfg {String} abbr Specifies an abbreviated version of the content in a cell
10766  * @cfg {String} align Aligns the content in a cell
10767  * @cfg {String} axis Categorizes cells
10768  * @cfg {String} bgcolor Specifies the background color of a cell
10769  * @cfg {Number} charoff Sets the number of characters the content will be aligned from the character specified by the char attribute
10770  * @cfg {Number} colspan Specifies the number of columns a cell should span
10771  * @cfg {String} headers Specifies one or more header cells a cell is related to
10772  * @cfg {Number} height Sets the height of a cell
10773  * @cfg {String} nowrap Specifies that the content inside a cell should not wrap
10774  * @cfg {Number} rowspan Sets the number of rows a cell should span
10775  * @cfg {String} scope Defines a way to associate header cells and data cells in a table
10776  * @cfg {String} valign Vertical aligns the content in a cell
10777  * @cfg {Number} width Specifies the width of a cell
10778  * 
10779  * @constructor
10780  * Create a new TableCell
10781  * @param {Object} config The config object
10782  */
10783
10784 Roo.bootstrap.TableCell = function(config){
10785     Roo.bootstrap.TableCell.superclass.constructor.call(this, config);
10786 };
10787
10788 Roo.extend(Roo.bootstrap.TableCell, Roo.bootstrap.Component,  {
10789     
10790     html: false,
10791     cls: false,
10792     tag: false,
10793     abbr: false,
10794     align: false,
10795     axis: false,
10796     bgcolor: false,
10797     charoff: false,
10798     colspan: false,
10799     headers: false,
10800     height: false,
10801     nowrap: false,
10802     rowspan: false,
10803     scope: false,
10804     valign: false,
10805     width: false,
10806     
10807     
10808     getAutoCreate : function(){
10809         var cfg = Roo.apply({}, Roo.bootstrap.TableCell.superclass.getAutoCreate.call(this));
10810         
10811         cfg = {
10812             tag: 'td'
10813         };
10814         
10815         if(this.tag){
10816             cfg.tag = this.tag;
10817         }
10818         
10819         if (this.html) {
10820             cfg.html=this.html
10821         }
10822         if (this.cls) {
10823             cfg.cls=this.cls
10824         }
10825         if (this.abbr) {
10826             cfg.abbr=this.abbr
10827         }
10828         if (this.align) {
10829             cfg.align=this.align
10830         }
10831         if (this.axis) {
10832             cfg.axis=this.axis
10833         }
10834         if (this.bgcolor) {
10835             cfg.bgcolor=this.bgcolor
10836         }
10837         if (this.charoff) {
10838             cfg.charoff=this.charoff
10839         }
10840         if (this.colspan) {
10841             cfg.colspan=this.colspan
10842         }
10843         if (this.headers) {
10844             cfg.headers=this.headers
10845         }
10846         if (this.height) {
10847             cfg.height=this.height
10848         }
10849         if (this.nowrap) {
10850             cfg.nowrap=this.nowrap
10851         }
10852         if (this.rowspan) {
10853             cfg.rowspan=this.rowspan
10854         }
10855         if (this.scope) {
10856             cfg.scope=this.scope
10857         }
10858         if (this.valign) {
10859             cfg.valign=this.valign
10860         }
10861         if (this.width) {
10862             cfg.width=this.width
10863         }
10864         
10865         
10866         return cfg;
10867     }
10868    
10869 });
10870
10871  
10872
10873  /*
10874  * - LGPL
10875  *
10876  * table row
10877  * 
10878  */
10879
10880 /**
10881  * @class Roo.bootstrap.TableRow
10882  * @extends Roo.bootstrap.Component
10883  * @children Roo.bootstrap.TableCell
10884  * @parent Roo.bootstrap.TableBody
10885  * Bootstrap TableRow class
10886  * @cfg {String} cls row class
10887  * @cfg {String} align Aligns the content in a table row
10888  * @cfg {String} bgcolor Specifies a background color for a table row
10889  * @cfg {Number} charoff Sets the number of characters the content will be aligned from the character specified by the char attribute
10890  * @cfg {String} valign Vertical aligns the content in a table row
10891  * 
10892  * @constructor
10893  * Create a new TableRow
10894  * @param {Object} config The config object
10895  */
10896
10897 Roo.bootstrap.TableRow = function(config){
10898     Roo.bootstrap.TableRow.superclass.constructor.call(this, config);
10899 };
10900
10901 Roo.extend(Roo.bootstrap.TableRow, Roo.bootstrap.Component,  {
10902     
10903     cls: false,
10904     align: false,
10905     bgcolor: false,
10906     charoff: false,
10907     valign: false,
10908     
10909     getAutoCreate : function(){
10910         var cfg = Roo.apply({}, Roo.bootstrap.TableRow.superclass.getAutoCreate.call(this));
10911         
10912         cfg = {
10913             tag: 'tr'
10914         };
10915             
10916         if(this.cls){
10917             cfg.cls = this.cls;
10918         }
10919         if(this.align){
10920             cfg.align = this.align;
10921         }
10922         if(this.bgcolor){
10923             cfg.bgcolor = this.bgcolor;
10924         }
10925         if(this.charoff){
10926             cfg.charoff = this.charoff;
10927         }
10928         if(this.valign){
10929             cfg.valign = this.valign;
10930         }
10931         
10932         return cfg;
10933     }
10934    
10935 });
10936
10937  
10938
10939  /*
10940  * - LGPL
10941  *
10942  * table body
10943  * 
10944  */
10945
10946 /**
10947  * @class Roo.bootstrap.TableBody
10948  * @extends Roo.bootstrap.Component
10949  * @children Roo.bootstrap.TableRow
10950  * @parent Roo.bootstrap.Table
10951  * Bootstrap TableBody class
10952  * @cfg {String} cls element class
10953  * @cfg {String} tag element tag (thead|tbody|tfoot) default tbody
10954  * @cfg {String} align Aligns the content inside the element
10955  * @cfg {Number} charoff Sets the number of characters the content inside the element will be aligned from the character specified by the char attribute
10956  * @cfg {String} valign Vertical aligns the content inside the <tbody> element
10957  * 
10958  * @constructor
10959  * Create a new TableBody
10960  * @param {Object} config The config object
10961  */
10962
10963 Roo.bootstrap.TableBody = function(config){
10964     Roo.bootstrap.TableBody.superclass.constructor.call(this, config);
10965 };
10966
10967 Roo.extend(Roo.bootstrap.TableBody, Roo.bootstrap.Component,  {
10968     
10969     cls: false,
10970     tag: false,
10971     align: false,
10972     charoff: false,
10973     valign: false,
10974     
10975     getAutoCreate : function(){
10976         var cfg = Roo.apply({}, Roo.bootstrap.TableBody.superclass.getAutoCreate.call(this));
10977         
10978         cfg = {
10979             tag: 'tbody'
10980         };
10981             
10982         if (this.cls) {
10983             cfg.cls=this.cls
10984         }
10985         if(this.tag){
10986             cfg.tag = this.tag;
10987         }
10988         
10989         if(this.align){
10990             cfg.align = this.align;
10991         }
10992         if(this.charoff){
10993             cfg.charoff = this.charoff;
10994         }
10995         if(this.valign){
10996             cfg.valign = this.valign;
10997         }
10998         
10999         return cfg;
11000     }
11001     
11002     
11003 //    initEvents : function()
11004 //    {
11005 //        
11006 //        if(!this.store){
11007 //            return;
11008 //        }
11009 //        
11010 //        this.store = Roo.factory(this.store, Roo.data);
11011 //        this.store.on('load', this.onLoad, this);
11012 //        
11013 //        this.store.load();
11014 //        
11015 //    },
11016 //    
11017 //    onLoad: function () 
11018 //    {   
11019 //        this.fireEvent('load', this);
11020 //    }
11021 //    
11022 //   
11023 });
11024
11025  
11026
11027  /*
11028  * Based on:
11029  * Ext JS Library 1.1.1
11030  * Copyright(c) 2006-2007, Ext JS, LLC.
11031  *
11032  * Originally Released Under LGPL - original licence link has changed is not relivant.
11033  *
11034  * Fork - LGPL
11035  * <script type="text/javascript">
11036  */
11037
11038 // as we use this in bootstrap.
11039 Roo.namespace('Roo.form');
11040  /**
11041  * @class Roo.form.Action
11042  * Internal Class used to handle form actions
11043  * @constructor
11044  * @param {Roo.form.BasicForm} el The form element or its id
11045  * @param {Object} config Configuration options
11046  */
11047
11048  
11049  
11050 // define the action interface
11051 Roo.form.Action = function(form, options){
11052     this.form = form;
11053     this.options = options || {};
11054 };
11055 /**
11056  * Client Validation Failed
11057  * @const 
11058  */
11059 Roo.form.Action.CLIENT_INVALID = 'client';
11060 /**
11061  * Server Validation Failed
11062  * @const 
11063  */
11064 Roo.form.Action.SERVER_INVALID = 'server';
11065  /**
11066  * Connect to Server Failed
11067  * @const 
11068  */
11069 Roo.form.Action.CONNECT_FAILURE = 'connect';
11070 /**
11071  * Reading Data from Server Failed
11072  * @const 
11073  */
11074 Roo.form.Action.LOAD_FAILURE = 'load';
11075
11076 Roo.form.Action.prototype = {
11077     type : 'default',
11078     failureType : undefined,
11079     response : undefined,
11080     result : undefined,
11081
11082     // interface method
11083     run : function(options){
11084
11085     },
11086
11087     // interface method
11088     success : function(response){
11089
11090     },
11091
11092     // interface method
11093     handleResponse : function(response){
11094
11095     },
11096
11097     // default connection failure
11098     failure : function(response){
11099         
11100         this.response = response;
11101         this.failureType = Roo.form.Action.CONNECT_FAILURE;
11102         this.form.afterAction(this, false);
11103     },
11104
11105     processResponse : function(response){
11106         this.response = response;
11107         if(!response.responseText){
11108             return true;
11109         }
11110         this.result = this.handleResponse(response);
11111         return this.result;
11112     },
11113
11114     // utility functions used internally
11115     getUrl : function(appendParams){
11116         var url = this.options.url || this.form.url || this.form.el.dom.action;
11117         if(appendParams){
11118             var p = this.getParams();
11119             if(p){
11120                 url += (url.indexOf('?') != -1 ? '&' : '?') + p;
11121             }
11122         }
11123         return url;
11124     },
11125
11126     getMethod : function(){
11127         return (this.options.method || this.form.method || this.form.el.dom.method || 'POST').toUpperCase();
11128     },
11129
11130     getParams : function(){
11131         var bp = this.form.baseParams;
11132         var p = this.options.params;
11133         if(p){
11134             if(typeof p == "object"){
11135                 p = Roo.urlEncode(Roo.applyIf(p, bp));
11136             }else if(typeof p == 'string' && bp){
11137                 p += '&' + Roo.urlEncode(bp);
11138             }
11139         }else if(bp){
11140             p = Roo.urlEncode(bp);
11141         }
11142         return p;
11143     },
11144
11145     createCallback : function(){
11146         return {
11147             success: this.success,
11148             failure: this.failure,
11149             scope: this,
11150             timeout: (this.form.timeout*1000),
11151             upload: this.form.fileUpload ? this.success : undefined
11152         };
11153     }
11154 };
11155
11156 Roo.form.Action.Submit = function(form, options){
11157     Roo.form.Action.Submit.superclass.constructor.call(this, form, options);
11158 };
11159
11160 Roo.extend(Roo.form.Action.Submit, Roo.form.Action, {
11161     type : 'submit',
11162
11163     haveProgress : false,
11164     uploadComplete : false,
11165     
11166     // uploadProgress indicator.
11167     uploadProgress : function()
11168     {
11169         if (!this.form.progressUrl) {
11170             return;
11171         }
11172         
11173         if (!this.haveProgress) {
11174             Roo.MessageBox.progress("Uploading", "Uploading");
11175         }
11176         if (this.uploadComplete) {
11177            Roo.MessageBox.hide();
11178            return;
11179         }
11180         
11181         this.haveProgress = true;
11182    
11183         var uid = this.form.findField('UPLOAD_IDENTIFIER').getValue();
11184         
11185         var c = new Roo.data.Connection();
11186         c.request({
11187             url : this.form.progressUrl,
11188             params: {
11189                 id : uid
11190             },
11191             method: 'GET',
11192             success : function(req){
11193                //console.log(data);
11194                 var rdata = false;
11195                 var edata;
11196                 try  {
11197                    rdata = Roo.decode(req.responseText)
11198                 } catch (e) {
11199                     Roo.log("Invalid data from server..");
11200                     Roo.log(edata);
11201                     return;
11202                 }
11203                 if (!rdata || !rdata.success) {
11204                     Roo.log(rdata);
11205                     Roo.MessageBox.alert(Roo.encode(rdata));
11206                     return;
11207                 }
11208                 var data = rdata.data;
11209                 
11210                 if (this.uploadComplete) {
11211                    Roo.MessageBox.hide();
11212                    return;
11213                 }
11214                    
11215                 if (data){
11216                     Roo.MessageBox.updateProgress(data.bytes_uploaded/data.bytes_total,
11217                        Math.floor((data.bytes_total - data.bytes_uploaded)/1000) + 'k remaining'
11218                     );
11219                 }
11220                 this.uploadProgress.defer(2000,this);
11221             },
11222        
11223             failure: function(data) {
11224                 Roo.log('progress url failed ');
11225                 Roo.log(data);
11226             },
11227             scope : this
11228         });
11229            
11230     },
11231     
11232     
11233     run : function()
11234     {
11235         // run get Values on the form, so it syncs any secondary forms.
11236         this.form.getValues();
11237         
11238         var o = this.options;
11239         var method = this.getMethod();
11240         var isPost = method == 'POST';
11241         if(o.clientValidation === false || this.form.isValid()){
11242             
11243             if (this.form.progressUrl) {
11244                 this.form.findField('UPLOAD_IDENTIFIER').setValue(
11245                     (new Date() * 1) + '' + Math.random());
11246                     
11247             } 
11248             
11249             
11250             Roo.Ajax.request(Roo.apply(this.createCallback(), {
11251                 form:this.form.el.dom,
11252                 url:this.getUrl(!isPost),
11253                 method: method,
11254                 params:isPost ? this.getParams() : null,
11255                 isUpload: this.form.fileUpload,
11256                 formData : this.form.formData
11257             }));
11258             
11259             this.uploadProgress();
11260
11261         }else if (o.clientValidation !== false){ // client validation failed
11262             this.failureType = Roo.form.Action.CLIENT_INVALID;
11263             this.form.afterAction(this, false);
11264         }
11265     },
11266
11267     success : function(response)
11268     {
11269         this.uploadComplete= true;
11270         if (this.haveProgress) {
11271             Roo.MessageBox.hide();
11272         }
11273         
11274         
11275         var result = this.processResponse(response);
11276         if(result === true || result.success){
11277             this.form.afterAction(this, true);
11278             return;
11279         }
11280         if(result.errors){
11281             this.form.markInvalid(result.errors);
11282             this.failureType = Roo.form.Action.SERVER_INVALID;
11283         }
11284         this.form.afterAction(this, false);
11285     },
11286     failure : function(response)
11287     {
11288         this.uploadComplete= true;
11289         if (this.haveProgress) {
11290             Roo.MessageBox.hide();
11291         }
11292         
11293         this.response = response;
11294         this.failureType = Roo.form.Action.CONNECT_FAILURE;
11295         this.form.afterAction(this, false);
11296     },
11297     
11298     handleResponse : function(response){
11299         if(this.form.errorReader){
11300             var rs = this.form.errorReader.read(response);
11301             var errors = [];
11302             if(rs.records){
11303                 for(var i = 0, len = rs.records.length; i < len; i++) {
11304                     var r = rs.records[i];
11305                     errors[i] = r.data;
11306                 }
11307             }
11308             if(errors.length < 1){
11309                 errors = null;
11310             }
11311             return {
11312                 success : rs.success,
11313                 errors : errors
11314             };
11315         }
11316         var ret = false;
11317         try {
11318             var rt = response.responseText;
11319             if (rt.match(/^\<!--\[CDATA\[/)) {
11320                 rt = rt.replace(/^\<!--\[CDATA\[/,'');
11321                 rt = rt.replace(/\]\]--\>$/,'');
11322             }
11323             
11324             ret = Roo.decode(rt);
11325         } catch (e) {
11326             ret = {
11327                 success: false,
11328                 errorMsg: "Failed to read server message: " + (response ? response.responseText : ' - no message'),
11329                 errors : []
11330             };
11331         }
11332         return ret;
11333         
11334     }
11335 });
11336
11337
11338 Roo.form.Action.Load = function(form, options){
11339     Roo.form.Action.Load.superclass.constructor.call(this, form, options);
11340     this.reader = this.form.reader;
11341 };
11342
11343 Roo.extend(Roo.form.Action.Load, Roo.form.Action, {
11344     type : 'load',
11345
11346     run : function(){
11347         
11348         Roo.Ajax.request(Roo.apply(
11349                 this.createCallback(), {
11350                     method:this.getMethod(),
11351                     url:this.getUrl(false),
11352                     params:this.getParams()
11353         }));
11354     },
11355
11356     success : function(response){
11357         
11358         var result = this.processResponse(response);
11359         if(result === true || !result.success || !result.data){
11360             this.failureType = Roo.form.Action.LOAD_FAILURE;
11361             this.form.afterAction(this, false);
11362             return;
11363         }
11364         this.form.clearInvalid();
11365         this.form.setValues(result.data);
11366         this.form.afterAction(this, true);
11367     },
11368
11369     handleResponse : function(response){
11370         if(this.form.reader){
11371             var rs = this.form.reader.read(response);
11372             var data = rs.records && rs.records[0] ? rs.records[0].data : null;
11373             return {
11374                 success : rs.success,
11375                 data : data
11376             };
11377         }
11378         return Roo.decode(response.responseText);
11379     }
11380 });
11381
11382 Roo.form.Action.ACTION_TYPES = {
11383     'load' : Roo.form.Action.Load,
11384     'submit' : Roo.form.Action.Submit
11385 };/*
11386  * - LGPL
11387  *
11388  * form
11389  *
11390  */
11391
11392 /**
11393  * @class Roo.bootstrap.form.Form
11394  * @extends Roo.bootstrap.Component
11395  * @children Roo.bootstrap.Component
11396  * Bootstrap Form class
11397  * @cfg {String} method  GET | POST (default POST)
11398  * @cfg {String} labelAlign top | left (default top)
11399  * @cfg {String} align left  | right - for navbars
11400  * @cfg {Boolean} loadMask load mask when submit (default true)
11401
11402  *
11403  * @constructor
11404  * Create a new Form
11405  * @param {Object} config The config object
11406  */
11407
11408
11409 Roo.bootstrap.form.Form = function(config){
11410     
11411     Roo.bootstrap.form.Form.superclass.constructor.call(this, config);
11412     
11413     Roo.bootstrap.form.Form.popover.apply();
11414     
11415     this.addEvents({
11416         /**
11417          * @event clientvalidation
11418          * If the monitorValid config option is true, this event fires repetitively to notify of valid state
11419          * @param {Form} this
11420          * @param {Boolean} valid true if the form has passed client-side validation
11421          */
11422         clientvalidation: true,
11423         /**
11424          * @event beforeaction
11425          * Fires before any action is performed. Return false to cancel the action.
11426          * @param {Form} this
11427          * @param {Action} action The action to be performed
11428          */
11429         beforeaction: true,
11430         /**
11431          * @event actionfailed
11432          * Fires when an action fails.
11433          * @param {Form} this
11434          * @param {Action} action The action that failed
11435          */
11436         actionfailed : true,
11437         /**
11438          * @event actioncomplete
11439          * Fires when an action is completed.
11440          * @param {Form} this
11441          * @param {Action} action The action that completed
11442          */
11443         actioncomplete : true
11444     });
11445 };
11446
11447 Roo.extend(Roo.bootstrap.form.Form, Roo.bootstrap.Component,  {
11448
11449      /**
11450      * @cfg {String} method
11451      * The request method to use (GET or POST) for form actions if one isn't supplied in the action options.
11452      */
11453     method : 'POST',
11454     /**
11455      * @cfg {String} url
11456      * The URL to use for form actions if one isn't supplied in the action options.
11457      */
11458     /**
11459      * @cfg {Boolean} fileUpload
11460      * Set to true if this form is a file upload.
11461      */
11462
11463     /**
11464      * @cfg {Object} baseParams
11465      * Parameters to pass with all requests. e.g. baseParams: {id: '123', foo: 'bar'}.
11466      */
11467
11468     /**
11469      * @cfg {Number} timeout Timeout for form actions in seconds (default is 30 seconds).
11470      */
11471     timeout: 30,
11472     /**
11473      * @cfg {Sting} align (left|right) for navbar forms
11474      */
11475     align : 'left',
11476
11477     // private
11478     activeAction : null,
11479
11480     /**
11481      * By default wait messages are displayed with Roo.MessageBox.wait. You can target a specific
11482      * element by passing it or its id or mask the form itself by passing in true.
11483      * @type Mixed
11484      */
11485     waitMsgTarget : false,
11486
11487     loadMask : true,
11488     
11489     /**
11490      * @cfg {Boolean} errorMask (true|false) default false
11491      */
11492     errorMask : false,
11493     
11494     /**
11495      * @cfg {Number} maskOffset Default 100
11496      */
11497     maskOffset : 100,
11498     
11499     /**
11500      * @cfg {Boolean} maskBody
11501      */
11502     maskBody : false,
11503
11504     getAutoCreate : function(){
11505
11506         var cfg = {
11507             tag: 'form',
11508             method : this.method || 'POST',
11509             id : this.id || Roo.id(),
11510             cls : ''
11511         };
11512         if (this.parent().xtype.match(/^Nav/)) {
11513             cfg.cls = 'navbar-form form-inline navbar-' + this.align;
11514
11515         }
11516
11517         if (this.labelAlign == 'left' ) {
11518             cfg.cls += ' form-horizontal';
11519         }
11520
11521
11522         return cfg;
11523     },
11524     initEvents : function()
11525     {
11526         this.el.on('submit', this.onSubmit, this);
11527         // this was added as random key presses on the form where triggering form submit.
11528         this.el.on('keypress', function(e) {
11529             if (e.getCharCode() != 13) {
11530                 return true;
11531             }
11532             // we might need to allow it for textareas.. and some other items.
11533             // check e.getTarget().
11534
11535             if(e.getTarget().nodeName.toLowerCase() === 'textarea'){
11536                 return true;
11537             }
11538
11539             Roo.log("keypress blocked");
11540
11541             e.preventDefault();
11542             return false;
11543         });
11544         
11545     },
11546     // private
11547     onSubmit : function(e){
11548         e.stopEvent();
11549     },
11550
11551      /**
11552      * Returns true if client-side validation on the form is successful.
11553      * @return Boolean
11554      */
11555     isValid : function(){
11556         var items = this.getItems();
11557         var valid = true;
11558         var target = false;
11559         
11560         items.each(function(f){
11561             
11562             if(f.validate()){
11563                 return;
11564             }
11565             
11566             Roo.log('invalid field: ' + f.name);
11567             
11568             valid = false;
11569
11570             if(!target && f.el.isVisible(true)){
11571                 target = f;
11572             }
11573            
11574         });
11575         
11576         if(this.errorMask && !valid){
11577             Roo.bootstrap.form.Form.popover.mask(this, target);
11578         }
11579         
11580         return valid;
11581     },
11582     
11583     /**
11584      * Returns true if any fields in this form have changed since their original load.
11585      * @return Boolean
11586      */
11587     isDirty : function(){
11588         var dirty = false;
11589         var items = this.getItems();
11590         items.each(function(f){
11591            if(f.isDirty()){
11592                dirty = true;
11593                return false;
11594            }
11595            return true;
11596         });
11597         return dirty;
11598     },
11599      /**
11600      * Performs a predefined action (submit or load) or custom actions you define on this form.
11601      * @param {String} actionName The name of the action type
11602      * @param {Object} options (optional) The options to pass to the action.  All of the config options listed
11603      * below are supported by both the submit and load actions unless otherwise noted (custom actions could also
11604      * accept other config options):
11605      * <pre>
11606 Property          Type             Description
11607 ----------------  ---------------  ----------------------------------------------------------------------------------
11608 url               String           The url for the action (defaults to the form's url)
11609 method            String           The form method to use (defaults to the form's method, or POST if not defined)
11610 params            String/Object    The params to pass (defaults to the form's baseParams, or none if not defined)
11611 clientValidation  Boolean          Applies to submit only.  Pass true to call form.isValid() prior to posting to
11612                                    validate the form on the client (defaults to false)
11613      * </pre>
11614      * @return {BasicForm} this
11615      */
11616     doAction : function(action, options){
11617         if(typeof action == 'string'){
11618             action = new Roo.form.Action.ACTION_TYPES[action](this, options);
11619         }
11620         if(this.fireEvent('beforeaction', this, action) !== false){
11621             this.beforeAction(action);
11622             action.run.defer(100, action);
11623         }
11624         return this;
11625     },
11626
11627     // private
11628     beforeAction : function(action){
11629         var o = action.options;
11630         
11631         if(this.loadMask){
11632             
11633             if(this.maskBody){
11634                 Roo.get(document.body).mask(o.waitMsg || "Sending", 'x-mask-loading')
11635             } else {
11636                 this.el.mask(o.waitMsg || "Sending", 'x-mask-loading');
11637             }
11638         }
11639         // not really supported yet.. ??
11640
11641         //if(this.waitMsgTarget === true){
11642         //  this.el.mask(o.waitMsg || "Sending", 'x-mask-loading');
11643         //}else if(this.waitMsgTarget){
11644         //    this.waitMsgTarget = Roo.get(this.waitMsgTarget);
11645         //    this.waitMsgTarget.mask(o.waitMsg || "Sending", 'x-mask-loading');
11646         //}else {
11647         //    Roo.MessageBox.wait(o.waitMsg || "Sending", o.waitTitle || this.waitTitle || 'Please Wait...');
11648        // }
11649
11650     },
11651
11652     // private
11653     afterAction : function(action, success){
11654         this.activeAction = null;
11655         var o = action.options;
11656
11657         if(this.loadMask){
11658             
11659             if(this.maskBody){
11660                 Roo.get(document.body).unmask();
11661             } else {
11662                 this.el.unmask();
11663             }
11664         }
11665         
11666         //if(this.waitMsgTarget === true){
11667 //            this.el.unmask();
11668         //}else if(this.waitMsgTarget){
11669         //    this.waitMsgTarget.unmask();
11670         //}else{
11671         //    Roo.MessageBox.updateProgress(1);
11672         //    Roo.MessageBox.hide();
11673        // }
11674         //
11675         if(success){
11676             if(o.reset){
11677                 this.reset();
11678             }
11679             Roo.callback(o.success, o.scope, [this, action]);
11680             this.fireEvent('actioncomplete', this, action);
11681
11682         }else{
11683
11684             // failure condition..
11685             // we have a scenario where updates need confirming.
11686             // eg. if a locking scenario exists..
11687             // we look for { errors : { needs_confirm : true }} in the response.
11688             if (
11689                 (typeof(action.result) != 'undefined')  &&
11690                 (typeof(action.result.errors) != 'undefined')  &&
11691                 (typeof(action.result.errors.needs_confirm) != 'undefined')
11692            ){
11693                 var _t = this;
11694                 Roo.log("not supported yet");
11695                  /*
11696
11697                 Roo.MessageBox.confirm(
11698                     "Change requires confirmation",
11699                     action.result.errorMsg,
11700                     function(r) {
11701                         if (r != 'yes') {
11702                             return;
11703                         }
11704                         _t.doAction('submit', { params :  { _submit_confirmed : 1 } }  );
11705                     }
11706
11707                 );
11708                 */
11709
11710
11711                 return;
11712             }
11713
11714             Roo.callback(o.failure, o.scope, [this, action]);
11715             // show an error message if no failed handler is set..
11716             if (!this.hasListener('actionfailed')) {
11717                 Roo.log("need to add dialog support");
11718                 /*
11719                 Roo.MessageBox.alert("Error",
11720                     (typeof(action.result) != 'undefined' && typeof(action.result.errorMsg) != 'undefined') ?
11721                         action.result.errorMsg :
11722                         "Saving Failed, please check your entries or try again"
11723                 );
11724                 */
11725             }
11726
11727             this.fireEvent('actionfailed', this, action);
11728         }
11729
11730     },
11731     /**
11732      * Find a Roo.form.Field in this form by id, dataIndex, name or hiddenName
11733      * @param {String} id The value to search for
11734      * @return Field
11735      */
11736     findField : function(id){
11737         var items = this.getItems();
11738         var field = items.get(id);
11739         if(!field){
11740              items.each(function(f){
11741                 if(f.isFormField && (f.dataIndex == id || f.id == id || f.getName() == id)){
11742                     field = f;
11743                     return false;
11744                 }
11745                 return true;
11746             });
11747         }
11748         return field || null;
11749     },
11750      /**
11751      * Mark fields in this form invalid in bulk.
11752      * @param {Array/Object} errors Either an array in the form [{id:'fieldId', msg:'The message'},...] or an object hash of {id: msg, id2: msg2}
11753      * @return {BasicForm} this
11754      */
11755     markInvalid : function(errors){
11756         if(errors instanceof Array){
11757             for(var i = 0, len = errors.length; i < len; i++){
11758                 var fieldError = errors[i];
11759                 var f = this.findField(fieldError.id);
11760                 if(f){
11761                     f.markInvalid(fieldError.msg);
11762                 }
11763             }
11764         }else{
11765             var field, id;
11766             for(id in errors){
11767                 if(typeof errors[id] != 'function' && (field = this.findField(id))){
11768                     field.markInvalid(errors[id]);
11769                 }
11770             }
11771         }
11772         //Roo.each(this.childForms || [], function (f) {
11773         //    f.markInvalid(errors);
11774         //});
11775
11776         return this;
11777     },
11778
11779     /**
11780      * Set values for fields in this form in bulk.
11781      * @param {Array/Object} values Either an array in the form [{id:'fieldId', value:'foo'},...] or an object hash of {id: value, id2: value2}
11782      * @return {BasicForm} this
11783      */
11784     setValues : function(values){
11785         if(values instanceof Array){ // array of objects
11786             for(var i = 0, len = values.length; i < len; i++){
11787                 var v = values[i];
11788                 var f = this.findField(v.id);
11789                 if(f){
11790                     f.setValue(v.value);
11791                     if(this.trackResetOnLoad){
11792                         f.originalValue = f.getValue();
11793                     }
11794                 }
11795             }
11796         }else{ // object hash
11797             var field, id;
11798             for(id in values){
11799                 if(typeof values[id] != 'function' && (field = this.findField(id))){
11800
11801                     if (field.setFromData &&
11802                         field.valueField &&
11803                         field.displayField &&
11804                         // combos' with local stores can
11805                         // be queried via setValue()
11806                         // to set their value..
11807                         (field.store && !field.store.isLocal)
11808                         ) {
11809                         // it's a combo
11810                         var sd = { };
11811                         sd[field.valueField] = typeof(values[field.hiddenName]) == 'undefined' ? '' : values[field.hiddenName];
11812                         sd[field.displayField] = typeof(values[field.name]) == 'undefined' ? '' : values[field.name];
11813                         field.setFromData(sd);
11814
11815                     } else if(field.setFromData && (field.store && !field.store.isLocal)) {
11816                         
11817                         field.setFromData(values);
11818                         
11819                     } else {
11820                         field.setValue(values[id]);
11821                     }
11822
11823
11824                     if(this.trackResetOnLoad){
11825                         field.originalValue = field.getValue();
11826                     }
11827                 }
11828             }
11829         }
11830
11831         //Roo.each(this.childForms || [], function (f) {
11832         //    f.setValues(values);
11833         //});
11834
11835         return this;
11836     },
11837
11838     /**
11839      * Returns the fields in this form as an object with key/value pairs. If multiple fields exist with the same name
11840      * they are returned as an array.
11841      * @param {Boolean} asString
11842      * @return {Object}
11843      */
11844     getValues : function(asString){
11845         //if (this.childForms) {
11846             // copy values from the child forms
11847         //    Roo.each(this.childForms, function (f) {
11848         //        this.setValues(f.getValues());
11849         //    }, this);
11850         //}
11851
11852
11853
11854         var fs = Roo.lib.Ajax.serializeForm(this.el.dom);
11855         if(asString === true){
11856             return fs;
11857         }
11858         return Roo.urlDecode(fs);
11859     },
11860
11861     /**
11862      * Returns the fields in this form as an object with key/value pairs.
11863      * This differs from getValues as it calls getValue on each child item, rather than using dom data.
11864      * @return {Object}
11865      */
11866     getFieldValues : function(with_hidden)
11867     {
11868         var items = this.getItems();
11869         var ret = {};
11870         items.each(function(f){
11871             
11872             if (!f.getName()) {
11873                 return;
11874             }
11875             
11876             var v = f.getValue();
11877             
11878             if (f.inputType =='radio') {
11879                 if (typeof(ret[f.getName()]) == 'undefined') {
11880                     ret[f.getName()] = ''; // empty..
11881                 }
11882
11883                 if (!f.el.dom.checked) {
11884                     return;
11885
11886                 }
11887                 v = f.el.dom.value;
11888
11889             }
11890             
11891             if(f.xtype == 'MoneyField'){
11892                 ret[f.currencyName] = f.getCurrency();
11893             }
11894
11895             // not sure if this supported any more..
11896             if ((typeof(v) == 'object') && f.getRawValue) {
11897                 v = f.getRawValue() ; // dates..
11898             }
11899             // combo boxes where name != hiddenName...
11900             if (f.name !== false && f.name != '' && f.name != f.getName()) {
11901                 ret[f.name] = f.getRawValue();
11902             }
11903             ret[f.getName()] = v;
11904         });
11905
11906         return ret;
11907     },
11908
11909     /**
11910      * Clears all invalid messages in this form.
11911      * @return {BasicForm} this
11912      */
11913     clearInvalid : function(){
11914         var items = this.getItems();
11915
11916         items.each(function(f){
11917            f.clearInvalid();
11918         });
11919
11920         return this;
11921     },
11922
11923     /**
11924      * Resets this form.
11925      * @return {BasicForm} this
11926      */
11927     reset : function(){
11928         var items = this.getItems();
11929         items.each(function(f){
11930             f.reset();
11931         });
11932
11933         Roo.each(this.childForms || [], function (f) {
11934             f.reset();
11935         });
11936
11937
11938         return this;
11939     },
11940     
11941     getItems : function()
11942     {
11943         var r=new Roo.util.MixedCollection(false, function(o){
11944             return o.id || (o.id = Roo.id());
11945         });
11946         var iter = function(el) {
11947             if (el.inputEl) {
11948                 r.add(el);
11949             }
11950             if (!el.items) {
11951                 return;
11952             }
11953             Roo.each(el.items,function(e) {
11954                 iter(e);
11955             });
11956         };
11957
11958         iter(this);
11959         return r;
11960     },
11961     
11962     hideFields : function(items)
11963     {
11964         Roo.each(items, function(i){
11965             
11966             var f = this.findField(i);
11967             
11968             if(!f){
11969                 return;
11970             }
11971             
11972             f.hide();
11973             
11974         }, this);
11975     },
11976     
11977     showFields : function(items)
11978     {
11979         Roo.each(items, function(i){
11980             
11981             var f = this.findField(i);
11982             
11983             if(!f){
11984                 return;
11985             }
11986             
11987             f.show();
11988             
11989         }, this);
11990     }
11991
11992 });
11993
11994 Roo.apply(Roo.bootstrap.form.Form, {
11995     
11996     popover : {
11997         
11998         padding : 5,
11999         
12000         isApplied : false,
12001         
12002         isMasked : false,
12003         
12004         form : false,
12005         
12006         target : false,
12007         
12008         toolTip : false,
12009         
12010         intervalID : false,
12011         
12012         maskEl : false,
12013         
12014         apply : function()
12015         {
12016             if(this.isApplied){
12017                 return;
12018             }
12019             
12020             this.maskEl = {
12021                 top : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-top-mask" }, true),
12022                 left : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-left-mask" }, true),
12023                 bottom : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-bottom-mask" }, true),
12024                 right : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-right-mask" }, true)
12025             };
12026             
12027             this.maskEl.top.enableDisplayMode("block");
12028             this.maskEl.left.enableDisplayMode("block");
12029             this.maskEl.bottom.enableDisplayMode("block");
12030             this.maskEl.right.enableDisplayMode("block");
12031             
12032             this.toolTip = new Roo.bootstrap.Tooltip({
12033                 cls : 'roo-form-error-popover',
12034                 alignment : {
12035                     'left' : ['r-l', [-2,0], 'right'],
12036                     'right' : ['l-r', [2,0], 'left'],
12037                     'bottom' : ['tl-bl', [0,2], 'top'],
12038                     'top' : [ 'bl-tl', [0,-2], 'bottom']
12039                 }
12040             });
12041             
12042             this.toolTip.render(Roo.get(document.body));
12043
12044             this.toolTip.el.enableDisplayMode("block");
12045             
12046             Roo.get(document.body).on('click', function(){
12047                 this.unmask();
12048             }, this);
12049             
12050             Roo.get(document.body).on('touchstart', function(){
12051                 this.unmask();
12052             }, this);
12053             
12054             this.isApplied = true
12055         },
12056         
12057         mask : function(form, target)
12058         {
12059             this.form = form;
12060             
12061             this.target = target;
12062             
12063             if(!this.form.errorMask || !target.el){
12064                 return;
12065             }
12066             
12067             var scrollable = this.target.el.findScrollableParent() || this.target.el.findParent('div.modal', 100, true) || Roo.get(document.body);
12068             
12069             Roo.log(scrollable);
12070             
12071             var ot = this.target.el.calcOffsetsTo(scrollable);
12072             
12073             var scrollTo = ot[1] - this.form.maskOffset;
12074             
12075             scrollTo = Math.min(scrollTo, scrollable.dom.scrollHeight);
12076             
12077             scrollable.scrollTo('top', scrollTo);
12078             
12079             var box = this.target.el.getBox();
12080             Roo.log(box);
12081             var zIndex = Roo.bootstrap.Modal.zIndex++;
12082
12083             
12084             this.maskEl.top.setStyle('position', 'absolute');
12085             this.maskEl.top.setStyle('z-index', zIndex);
12086             this.maskEl.top.setSize(Roo.lib.Dom.getDocumentWidth(), box.y - this.padding);
12087             this.maskEl.top.setLeft(0);
12088             this.maskEl.top.setTop(0);
12089             this.maskEl.top.show();
12090             
12091             this.maskEl.left.setStyle('position', 'absolute');
12092             this.maskEl.left.setStyle('z-index', zIndex);
12093             this.maskEl.left.setSize(box.x - this.padding, box.height + this.padding * 2);
12094             this.maskEl.left.setLeft(0);
12095             this.maskEl.left.setTop(box.y - this.padding);
12096             this.maskEl.left.show();
12097
12098             this.maskEl.bottom.setStyle('position', 'absolute');
12099             this.maskEl.bottom.setStyle('z-index', zIndex);
12100             this.maskEl.bottom.setSize(Roo.lib.Dom.getDocumentWidth(), Roo.lib.Dom.getDocumentHeight() - box.bottom - this.padding);
12101             this.maskEl.bottom.setLeft(0);
12102             this.maskEl.bottom.setTop(box.bottom + this.padding);
12103             this.maskEl.bottom.show();
12104
12105             this.maskEl.right.setStyle('position', 'absolute');
12106             this.maskEl.right.setStyle('z-index', zIndex);
12107             this.maskEl.right.setSize(Roo.lib.Dom.getDocumentWidth() - box.right - this.padding, box.height + this.padding * 2);
12108             this.maskEl.right.setLeft(box.right + this.padding);
12109             this.maskEl.right.setTop(box.y - this.padding);
12110             this.maskEl.right.show();
12111
12112             this.toolTip.bindEl = this.target.el;
12113
12114             this.toolTip.el.setStyle('z-index', Roo.bootstrap.Modal.zIndex++);
12115
12116             var tip = this.target.blankText;
12117
12118             if(this.target.getValue() !== '' ) {
12119                 
12120                 if (this.target.invalidText.length) {
12121                     tip = this.target.invalidText;
12122                 } else if (this.target.regexText.length){
12123                     tip = this.target.regexText;
12124                 }
12125             }
12126
12127             this.toolTip.show(tip);
12128
12129             this.intervalID = window.setInterval(function() {
12130                 Roo.bootstrap.form.Form.popover.unmask();
12131             }, 10000);
12132
12133             window.onwheel = function(){ return false;};
12134             
12135             (function(){ this.isMasked = true; }).defer(500, this);
12136             
12137         },
12138         
12139         unmask : function()
12140         {
12141             if(!this.isApplied || !this.isMasked || !this.form || !this.target || !this.form.errorMask){
12142                 return;
12143             }
12144             
12145             this.maskEl.top.setStyle('position', 'absolute');
12146             this.maskEl.top.setSize(0, 0).setXY([0, 0]);
12147             this.maskEl.top.hide();
12148
12149             this.maskEl.left.setStyle('position', 'absolute');
12150             this.maskEl.left.setSize(0, 0).setXY([0, 0]);
12151             this.maskEl.left.hide();
12152
12153             this.maskEl.bottom.setStyle('position', 'absolute');
12154             this.maskEl.bottom.setSize(0, 0).setXY([0, 0]);
12155             this.maskEl.bottom.hide();
12156
12157             this.maskEl.right.setStyle('position', 'absolute');
12158             this.maskEl.right.setSize(0, 0).setXY([0, 0]);
12159             this.maskEl.right.hide();
12160             
12161             this.toolTip.hide();
12162             
12163             this.toolTip.el.hide();
12164             
12165             window.onwheel = function(){ return true;};
12166             
12167             if(this.intervalID){
12168                 window.clearInterval(this.intervalID);
12169                 this.intervalID = false;
12170             }
12171             
12172             this.isMasked = false;
12173             
12174         }
12175         
12176     }
12177     
12178 });
12179
12180 /*
12181  * Based on:
12182  * Ext JS Library 1.1.1
12183  * Copyright(c) 2006-2007, Ext JS, LLC.
12184  *
12185  * Originally Released Under LGPL - original licence link has changed is not relivant.
12186  *
12187  * Fork - LGPL
12188  * <script type="text/javascript">
12189  */
12190 /**
12191  * @class Roo.form.VTypes
12192  * Overridable validation definitions. The validations provided are basic and intended to be easily customizable and extended.
12193  * @static
12194  */
12195 Roo.form.VTypes = function(){
12196     // closure these in so they are only created once.
12197     var alpha = /^[a-zA-Z_]+$/;
12198     var alphanum = /^[a-zA-Z0-9_]+$/;
12199     var email = /^([\w]+)(.[\w]+)*@([\w-]+\.){1,5}([A-Za-z]){2,24}$/;
12200     var url = /(((https?)|(ftp)):\/\/([\-\w]+\.)+\w{2,3}(\/[%\-\w]+(\.\w{2,})?)*(([\w\-\.\?\\\/+@&#;`~=%!]*)(\.\w{2,})?)*\/?)/i;
12201
12202     // All these messages and functions are configurable
12203     return {
12204         /**
12205          * The function used to validate email addresses
12206          * @param {String} value The email address
12207          */
12208         email : function(v){
12209             return email.test(v);
12210         },
12211         /**
12212          * The error text to display when the email validation function returns false
12213          * @type String
12214          */
12215         emailText : 'This field should be an e-mail address in the format "user@domain.com"',
12216         /**
12217          * The keystroke filter mask to be applied on email input
12218          * @type RegExp
12219          */
12220         emailMask : /[a-z0-9_\.\-@]/i,
12221
12222         /**
12223          * The function used to validate URLs
12224          * @param {String} value The URL
12225          */
12226         url : function(v){
12227             return url.test(v);
12228         },
12229         /**
12230          * The error text to display when the url validation function returns false
12231          * @type String
12232          */
12233         urlText : 'This field should be a URL in the format "http:/'+'/www.domain.com"',
12234         
12235         /**
12236          * The function used to validate alpha values
12237          * @param {String} value The value
12238          */
12239         alpha : function(v){
12240             return alpha.test(v);
12241         },
12242         /**
12243          * The error text to display when the alpha validation function returns false
12244          * @type String
12245          */
12246         alphaText : 'This field should only contain letters and _',
12247         /**
12248          * The keystroke filter mask to be applied on alpha input
12249          * @type RegExp
12250          */
12251         alphaMask : /[a-z_]/i,
12252
12253         /**
12254          * The function used to validate alphanumeric values
12255          * @param {String} value The value
12256          */
12257         alphanum : function(v){
12258             return alphanum.test(v);
12259         },
12260         /**
12261          * The error text to display when the alphanumeric validation function returns false
12262          * @type String
12263          */
12264         alphanumText : 'This field should only contain letters, numbers and _',
12265         /**
12266          * The keystroke filter mask to be applied on alphanumeric input
12267          * @type RegExp
12268          */
12269         alphanumMask : /[a-z0-9_]/i
12270     };
12271 }();/*
12272  * - LGPL
12273  *
12274  * Input
12275  * 
12276  */
12277
12278 /**
12279  * @class Roo.bootstrap.form.Input
12280  * @extends Roo.bootstrap.Component
12281  * Bootstrap Input class
12282  * @cfg {Boolean} disabled is it disabled
12283  * @cfg {String} inputType (button|checkbox|email|file|hidden|image|number|password|radio|range|reset|search|submit|text)  
12284  * @cfg {String} name name of the input
12285  * @cfg {string} fieldLabel - the label associated
12286  * @cfg {string} placeholder - placeholder to put in text.
12287  * @cfg {string} before - input group add on before
12288  * @cfg {string} after - input group add on after
12289  * @cfg {string} size - (lg|sm) or leave empty..
12290  * @cfg {Number} xs colspan out of 12 for mobile-sized screens
12291  * @cfg {Number} sm colspan out of 12 for tablet-sized screens
12292  * @cfg {Number} md colspan out of 12 for computer-sized screens
12293  * @cfg {Number} lg colspan out of 12 for large computer-sized screens
12294  * @cfg {string} value default value of the input
12295  * @cfg {Number} labelWidth set the width of label 
12296  * @cfg {Number} labellg set the width of label (1-12)
12297  * @cfg {Number} labelmd set the width of label (1-12)
12298  * @cfg {Number} labelsm set the width of label (1-12)
12299  * @cfg {Number} labelxs set the width of label (1-12)
12300  * @cfg {String} labelAlign (top|left)
12301  * @cfg {Boolean} readOnly Specifies that the field should be read-only
12302  * @cfg {String} autocomplete - default is new-password see: https://developers.google.com/web/fundamentals/input/form/label-and-name-inputs?hl=en
12303  * @cfg {String} indicatorpos (left|right) default left
12304  * @cfg {String} capture (user|camera) use for file input only. (default empty)
12305  * @cfg {String} accept (image|video|audio) use for file input only. (default empty)
12306  * @cfg {Boolean} preventMark Do not show tick or cross if error/success
12307  * @cfg {Roo.bootstrap.Button} before Button to show before
12308  * @cfg {Roo.bootstrap.Button} afterButton to show before
12309  * @cfg {String} align (left|center|right) Default left
12310  * @cfg {Boolean} forceFeedback (true|false) Default false
12311  * 
12312  * @constructor
12313  * Create a new Input
12314  * @param {Object} config The config object
12315  */
12316
12317 Roo.bootstrap.form.Input = function(config){
12318     
12319     Roo.bootstrap.form.Input.superclass.constructor.call(this, config);
12320     
12321     this.addEvents({
12322         /**
12323          * @event focus
12324          * Fires when this field receives input focus.
12325          * @param {Roo.form.Field} this
12326          */
12327         focus : true,
12328         /**
12329          * @event blur
12330          * Fires when this field loses input focus.
12331          * @param {Roo.form.Field} this
12332          */
12333         blur : true,
12334         /**
12335          * @event specialkey
12336          * Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check
12337          * {@link Roo.EventObject#getKey} to determine which key was pressed.
12338          * @param {Roo.form.Field} this
12339          * @param {Roo.EventObject} e The event object
12340          */
12341         specialkey : true,
12342         /**
12343          * @event change
12344          * Fires just before the field blurs if the field value has changed.
12345          * @param {Roo.form.Field} this
12346          * @param {Mixed} newValue The new value
12347          * @param {Mixed} oldValue The original value
12348          */
12349         change : true,
12350         /**
12351          * @event invalid
12352          * Fires after the field has been marked as invalid.
12353          * @param {Roo.form.Field} this
12354          * @param {String} msg The validation message
12355          */
12356         invalid : true,
12357         /**
12358          * @event valid
12359          * Fires after the field has been validated with no errors.
12360          * @param {Roo.form.Field} this
12361          */
12362         valid : true,
12363          /**
12364          * @event keyup
12365          * Fires after the key up
12366          * @param {Roo.form.Field} this
12367          * @param {Roo.EventObject}  e The event Object
12368          */
12369         keyup : true,
12370         /**
12371          * @event paste
12372          * Fires after the user pastes into input
12373          * @param {Roo.form.Field} this
12374          * @param {Roo.EventObject}  e The event Object
12375          */
12376         paste : true
12377     });
12378 };
12379
12380 Roo.extend(Roo.bootstrap.form.Input, Roo.bootstrap.Component,  {
12381      /**
12382      * @cfg {String/Boolean} validationEvent The event that should initiate field validation. Set to false to disable
12383       automatic validation (defaults to "keyup").
12384      */
12385     validationEvent : "keyup",
12386      /**
12387      * @cfg {Boolean} validateOnBlur Whether the field should validate when it loses focus (defaults to true).
12388      */
12389     validateOnBlur : true,
12390     /**
12391      * @cfg {Number} validationDelay The length of time in milliseconds after user input begins until validation is initiated (defaults to 250)
12392      */
12393     validationDelay : 250,
12394      /**
12395      * @cfg {String} focusClass The CSS class to use when the field receives focus (defaults to "x-form-focus")
12396      */
12397     focusClass : "x-form-focus",  // not needed???
12398     
12399        
12400     /**
12401      * @cfg {String} invalidClass DEPRICATED - code uses BS4 - is-valid / is-invalid
12402      */
12403     invalidClass : "has-warning",
12404     
12405     /**
12406      * @cfg {String} validClass DEPRICATED - code uses BS4 - is-valid / is-invalid
12407      */
12408     validClass : "has-success",
12409     
12410     /**
12411      * @cfg {Boolean} hasFeedback (true|false) default true
12412      */
12413     hasFeedback : true,
12414     
12415     /**
12416      * @cfg {String} invalidFeedbackIcon The CSS class to use when create feedback icon (defaults to "x-form-invalid")
12417      */
12418     invalidFeedbackClass : "glyphicon-warning-sign",
12419     
12420     /**
12421      * @cfg {String} validFeedbackIcon The CSS class to use when create feedback icon (defaults to "x-form-invalid")
12422      */
12423     validFeedbackClass : "glyphicon-ok",
12424     
12425     /**
12426      * @cfg {Boolean} selectOnFocus True to automatically select any existing field text when the field receives input focus (defaults to false)
12427      */
12428     selectOnFocus : false,
12429     
12430      /**
12431      * @cfg {String} maskRe An input mask regular expression that will be used to filter keystrokes that don't match (defaults to null)
12432      */
12433     maskRe : null,
12434        /**
12435      * @cfg {String} vtype A validation type name as defined in {@link Roo.form.VTypes} (defaults to null)
12436      */
12437     vtype : null,
12438     
12439       /**
12440      * @cfg {Boolean} disableKeyFilter True to disable input keystroke filtering (defaults to false)
12441      */
12442     disableKeyFilter : false,
12443     
12444        /**
12445      * @cfg {Boolean} disabled True to disable the field (defaults to false).
12446      */
12447     disabled : false,
12448      /**
12449      * @cfg {Boolean} allowBlank False to validate that the value length > 0 (defaults to true)
12450      */
12451     allowBlank : true,
12452     /**
12453      * @cfg {String} blankText Error text to display if the allow blank validation fails (defaults to "This field is required")
12454      */
12455     blankText : "Please complete this mandatory field",
12456     
12457      /**
12458      * @cfg {Number} minLength Minimum input field length required (defaults to 0)
12459      */
12460     minLength : 0,
12461     /**
12462      * @cfg {Number} maxLength Maximum input field length allowed (defaults to Number.MAX_VALUE)
12463      */
12464     maxLength : Number.MAX_VALUE,
12465     /**
12466      * @cfg {String} minLengthText Error text to display if the minimum length validation fails (defaults to "The minimum length for this field is {minLength}")
12467      */
12468     minLengthText : "The minimum length for this field is {0}",
12469     /**
12470      * @cfg {String} maxLengthText Error text to display if the maximum length validation fails (defaults to "The maximum length for this field is {maxLength}")
12471      */
12472     maxLengthText : "The maximum length for this field is {0}",
12473   
12474     
12475     /**
12476      * @cfg {Function} validator A custom validation function to be called during field validation (defaults to null).
12477      * If available, this function will be called only after the basic validators all return true, and will be passed the
12478      * current field value and expected to return boolean true if the value is valid or a string error message if invalid.
12479      */
12480     validator : null,
12481     /**
12482      * @cfg {RegExp} regex A JavaScript RegExp object to be tested against the field value during validation (defaults to null).
12483      * If available, this regex will be evaluated only after the basic validators all return true, and will be passed the
12484      * current field value.  If the test fails, the field will be marked invalid using {@link #regexText}.
12485      */
12486     regex : null,
12487     /**
12488      * @cfg {String} regexText -- Depricated - use Invalid Text
12489      */
12490     regexText : "",
12491     
12492     /**
12493      * @cfg {String} invalidText The error text to display if {@link #validator} test fails during validation (defaults to "")
12494      */
12495     invalidText : "",
12496     
12497     
12498     
12499     autocomplete: false,
12500     
12501     
12502     fieldLabel : '',
12503     inputType : 'text',
12504     
12505     name : false,
12506     placeholder: false,
12507     before : false,
12508     after : false,
12509     size : false,
12510     hasFocus : false,
12511     preventMark: false,
12512     isFormField : true,
12513     value : '',
12514     labelWidth : 2,
12515     labelAlign : false,
12516     readOnly : false,
12517     align : false,
12518     formatedValue : false,
12519     forceFeedback : false,
12520     
12521     indicatorpos : 'left',
12522     
12523     labellg : 0,
12524     labelmd : 0,
12525     labelsm : 0,
12526     labelxs : 0,
12527     
12528     capture : '',
12529     accept : '',
12530     
12531     parentLabelAlign : function()
12532     {
12533         var parent = this;
12534         while (parent.parent()) {
12535             parent = parent.parent();
12536             if (typeof(parent.labelAlign) !='undefined') {
12537                 return parent.labelAlign;
12538             }
12539         }
12540         return 'left';
12541         
12542     },
12543     
12544     getAutoCreate : function()
12545     {
12546         
12547         var id = Roo.id();
12548         
12549         var cfg = {};
12550         
12551         if(this.inputType != 'hidden'){
12552             cfg.cls = 'form-group' //input-group
12553         }
12554         
12555         var input =  {
12556             tag: 'input',
12557             id : id,
12558             type : this.inputType,
12559             value : this.value,
12560             cls : 'form-control',
12561             placeholder : this.placeholder || '',
12562             autocomplete : this.autocomplete || 'new-password'
12563         };
12564         if (this.inputType == 'file') {
12565             input.style = 'overflow:hidden'; // why not in CSS?
12566         }
12567         
12568         if(this.capture.length){
12569             input.capture = this.capture;
12570         }
12571         
12572         if(this.accept.length){
12573             input.accept = this.accept + "/*";
12574         }
12575         
12576         if(this.align){
12577             input.style = (typeof(input.style) == 'undefined') ? ('text-align:' + this.align) : (input.style + 'text-align:' + this.align);
12578         }
12579         
12580         if(this.maxLength && this.maxLength != Number.MAX_VALUE){
12581             input.maxLength = this.maxLength;
12582         }
12583         
12584         if (this.disabled) {
12585             input.disabled=true;
12586         }
12587         
12588         if (this.readOnly) {
12589             input.readonly=true;
12590         }
12591         
12592         if (this.name) {
12593             input.name = this.name;
12594         }
12595         
12596         if (this.size) {
12597             input.cls += ' input-' + this.size;
12598         }
12599         
12600         var settings=this;
12601         ['xs','sm','md','lg'].map(function(size){
12602             if (settings[size]) {
12603                 cfg.cls += ' col-' + size + '-' + settings[size];
12604             }
12605         });
12606         
12607         var inputblock = input;
12608         
12609         var feedback = {
12610             tag: 'span',
12611             cls: 'glyphicon form-control-feedback'
12612         };
12613             
12614         if(this.hasFeedback && this.inputType != 'hidden' && !this.allowBlank){
12615             
12616             inputblock = {
12617                 cls : 'has-feedback',
12618                 cn :  [
12619                     input,
12620                     feedback
12621                 ] 
12622             };  
12623         }
12624         
12625         if (this.before || this.after) {
12626             
12627             inputblock = {
12628                 cls : 'input-group',
12629                 cn :  [] 
12630             };
12631             
12632             if (this.before && typeof(this.before) == 'string') {
12633                 
12634                 inputblock.cn.push({
12635                     tag :'span',
12636                     cls : 'roo-input-before input-group-addon input-group-prepend input-group-text',
12637                     html : this.before
12638                 });
12639             }
12640             if (this.before && typeof(this.before) == 'object') {
12641                 this.before = Roo.factory(this.before);
12642                 
12643                 inputblock.cn.push({
12644                     tag :'span',
12645                     cls : 'roo-input-before input-group-prepend   input-group-' +
12646                         (this.before.xtype == 'Button' ? 'btn' : 'addon')  //?? what about checkboxes - that looks like a bit of a hack thought? 
12647                 });
12648             }
12649             
12650             inputblock.cn.push(input);
12651             
12652             if (this.after && typeof(this.after) == 'string') {
12653                 inputblock.cn.push({
12654                     tag :'span',
12655                     cls : 'roo-input-after input-group-append input-group-text input-group-addon',
12656                     html : this.after
12657                 });
12658             }
12659             if (this.after && typeof(this.after) == 'object') {
12660                 this.after = Roo.factory(this.after);
12661                 
12662                 inputblock.cn.push({
12663                     tag :'span',
12664                     cls : 'roo-input-after input-group-append  input-group-' +
12665                         (this.after.xtype == 'Button' ? 'btn' : 'addon')  //?? what about checkboxes - that looks like a bit of a hack thought? 
12666                 });
12667             }
12668             
12669             if(this.hasFeedback && this.inputType != 'hidden' && !this.allowBlank){
12670                 inputblock.cls += ' has-feedback';
12671                 inputblock.cn.push(feedback);
12672             }
12673         };
12674         
12675         
12676         
12677         cfg = this.getAutoCreateLabel( cfg, inputblock );
12678         
12679        
12680          
12681         
12682         if (this.parentType === 'Navbar' &&  this.parent().bar) {
12683            cfg.cls += ' navbar-form';
12684         }
12685         
12686         if (this.parentType === 'NavGroup' && !(Roo.bootstrap.version == 4 && this.parent().form)) {
12687             // on BS4 we do this only if not form 
12688             cfg.cls += ' navbar-form';
12689             cfg.tag = 'li';
12690         }
12691         
12692         return cfg;
12693         
12694     },
12695     /**
12696      * autocreate the label - also used by textara... ?? and others?
12697      */
12698     getAutoCreateLabel : function( cfg, inputblock )
12699     {
12700         var align = (!this.labelAlign) ? this.parentLabelAlign() : this.labelAlign;
12701        
12702         var indicator = {
12703             tag : 'i',
12704             cls : 'roo-required-indicator ' + (this.indicatorpos == 'right'  ? 'right' : 'left') +'-indicator text-danger fa fa-lg fa-star',
12705             tooltip : 'This field is required'
12706         };
12707         if (this.allowBlank ) {
12708             indicator.style = this.allowBlank ? ' display:none' : '';
12709         }
12710         if (align ==='left' && this.fieldLabel.length) {
12711             
12712             cfg.cls += ' roo-form-group-label-left'  + (Roo.bootstrap.version == 4 ? ' row' : '');
12713             
12714             cfg.cn = [
12715                 indicator,
12716                 {
12717                     tag: 'label',
12718                     'for' :  id,
12719                     cls : 'control-label col-form-label',
12720                     html : this.fieldLabel
12721
12722                 },
12723                 {
12724                     cls : "", 
12725                     cn: [
12726                         inputblock
12727                     ]
12728                 }
12729             ];
12730             
12731             var labelCfg = cfg.cn[1];
12732             var contentCfg = cfg.cn[2];
12733             
12734             if(this.indicatorpos == 'right'){
12735                 cfg.cn = [
12736                     {
12737                         tag: 'label',
12738                         'for' :  id,
12739                         cls : 'control-label col-form-label',
12740                         cn : [
12741                             {
12742                                 tag : 'span',
12743                                 html : this.fieldLabel
12744                             },
12745                             indicator
12746                         ]
12747                     },
12748                     {
12749                         cls : "",
12750                         cn: [
12751                             inputblock
12752                         ]
12753                     }
12754
12755                 ];
12756                 
12757                 labelCfg = cfg.cn[0];
12758                 contentCfg = cfg.cn[1];
12759             
12760             }
12761             
12762             if(this.labelWidth > 12){
12763                 labelCfg.style = "width: " + this.labelWidth + 'px';
12764             }
12765             
12766             if(this.labelWidth < 13 && this.labelmd == 0){
12767                 this.labellg = this.labellg > 0 ? this.labellg : this.labelWidth;
12768             }
12769             
12770             if(this.labellg > 0){
12771                 labelCfg.cls += ' col-lg-' + this.labellg;
12772                 contentCfg.cls += ' col-lg-' + (12 - this.labellg);
12773             }
12774             
12775             if(this.labelmd > 0){
12776                 labelCfg.cls += ' col-md-' + this.labelmd;
12777                 contentCfg.cls += ' col-md-' + (12 - this.labelmd);
12778             }
12779             
12780             if(this.labelsm > 0){
12781                 labelCfg.cls += ' col-sm-' + this.labelsm;
12782                 contentCfg.cls += ' col-sm-' + (12 - this.labelsm);
12783             }
12784             
12785             if(this.labelxs > 0){
12786                 labelCfg.cls += ' col-xs-' + this.labelxs;
12787                 contentCfg.cls += ' col-xs-' + (12 - this.labelxs);
12788             }
12789             
12790             
12791         } else if ( this.fieldLabel.length) {
12792                 
12793             
12794             
12795             cfg.cn = [
12796                 {
12797                     tag : 'i',
12798                     cls : 'roo-required-indicator left-indicator text-danger fa fa-lg fa-star',
12799                     tooltip : 'This field is required',
12800                     style : this.allowBlank ? ' display:none' : '' 
12801                 },
12802                 {
12803                     tag: 'label',
12804                    //cls : 'input-group-addon',
12805                     html : this.fieldLabel
12806
12807                 },
12808
12809                inputblock
12810
12811            ];
12812            
12813            if(this.indicatorpos == 'right'){
12814        
12815                 cfg.cn = [
12816                     {
12817                         tag: 'label',
12818                        //cls : 'input-group-addon',
12819                         html : this.fieldLabel
12820
12821                     },
12822                     {
12823                         tag : 'i',
12824                         cls : 'roo-required-indicator right-indicator text-danger fa fa-lg fa-star',
12825                         tooltip : 'This field is required',
12826                         style : this.allowBlank ? ' display:none' : '' 
12827                     },
12828
12829                    inputblock
12830
12831                ];
12832
12833             }
12834
12835         } else {
12836             
12837             cfg.cn = [
12838
12839                     inputblock
12840
12841             ];
12842                 
12843                 
12844         };
12845         return cfg;
12846     },
12847     
12848     
12849     /**
12850      * return the real input element.
12851      */
12852     inputEl: function ()
12853     {
12854         return this.el.select('input.form-control',true).first();
12855     },
12856     
12857     tooltipEl : function()
12858     {
12859         return this.inputEl();
12860     },
12861     
12862     indicatorEl : function()
12863     {
12864         if (Roo.bootstrap.version == 4) {
12865             return false; // not enabled in v4 yet.
12866         }
12867         
12868         var indicator = this.el.select('i.roo-required-indicator',true).first();
12869         
12870         if(!indicator){
12871             return false;
12872         }
12873         
12874         return indicator;
12875         
12876     },
12877     
12878     setDisabled : function(v)
12879     {
12880         var i  = this.inputEl().dom;
12881         if (!v) {
12882             i.removeAttribute('disabled');
12883             return;
12884             
12885         }
12886         i.setAttribute('disabled','true');
12887     },
12888     initEvents : function()
12889     {
12890           
12891         this.inputEl().on("keydown" , this.fireKey,  this);
12892         this.inputEl().on("focus", this.onFocus,  this);
12893         this.inputEl().on("blur", this.onBlur,  this);
12894         
12895         this.inputEl().relayEvent('keyup', this);
12896         this.inputEl().relayEvent('paste', this);
12897         
12898         this.indicator = this.indicatorEl();
12899         
12900         if(this.indicator){
12901             this.indicator.addClass(this.indicatorpos == 'right' ? 'hidden' : 'invisible'); // changed from invisible??? - 
12902         }
12903  
12904         // reference to original value for reset
12905         this.originalValue = this.getValue();
12906         //Roo.form.TextField.superclass.initEvents.call(this);
12907         if(this.validationEvent == 'keyup'){
12908             this.validationTask = new Roo.util.DelayedTask(this.validate, this);
12909             this.inputEl().on('keyup', this.filterValidation, this);
12910         }
12911         else if(this.validationEvent !== false){
12912             this.inputEl().on(this.validationEvent, this.validate, this, {buffer: this.validationDelay});
12913         }
12914         
12915         if(this.selectOnFocus){
12916             this.on("focus", this.preFocus, this);
12917             
12918         }
12919         if(this.maskRe || (this.vtype && this.disableKeyFilter !== true && (this.maskRe = Roo.form.VTypes[this.vtype+'Mask']))){
12920             this.inputEl().on("keypress", this.filterKeys, this);
12921         } else {
12922             this.inputEl().relayEvent('keypress', this);
12923         }
12924        /* if(this.grow){
12925             this.el.on("keyup", this.onKeyUp,  this, {buffer:50});
12926             this.el.on("click", this.autoSize,  this);
12927         }
12928         */
12929         if(this.inputEl().is('input[type=password]') && Roo.isSafari){
12930             this.inputEl().on('keydown', this.SafariOnKeyDown, this);
12931         }
12932         
12933         if (typeof(this.before) == 'object') {
12934             this.before.render(this.el.select('.roo-input-before',true).first());
12935         }
12936         if (typeof(this.after) == 'object') {
12937             this.after.render(this.el.select('.roo-input-after',true).first());
12938         }
12939         
12940         this.inputEl().on('change', this.onChange, this);
12941         
12942     },
12943     filterValidation : function(e){
12944         if(!e.isNavKeyPress()){
12945             this.validationTask.delay(this.validationDelay);
12946         }
12947     },
12948      /**
12949      * Validates the field value
12950      * @return {Boolean} True if the value is valid, else false
12951      */
12952     validate : function(){
12953         //if(this.disabled || this.validateValue(this.processValue(this.getRawValue()))){
12954         if(this.disabled || this.validateValue(this.getRawValue())){
12955             this.markValid();
12956             return true;
12957         }
12958         
12959         this.markInvalid();
12960         return false;
12961     },
12962     
12963     
12964     /**
12965      * Validates a value according to the field's validation rules and marks the field as invalid
12966      * if the validation fails
12967      * @param {Mixed} value The value to validate
12968      * @return {Boolean} True if the value is valid, else false
12969      */
12970     validateValue : function(value)
12971     {
12972         if(this.getVisibilityEl().hasClass('hidden')){
12973             return true;
12974         }
12975         
12976         if(value.length < 1)  { // if it's blank
12977             if(this.allowBlank){
12978                 return true;
12979             }
12980             return false;
12981         }
12982         
12983         if(value.length < this.minLength){
12984             return false;
12985         }
12986         if(value.length > this.maxLength){
12987             return false;
12988         }
12989         if(this.vtype){
12990             var vt = Roo.form.VTypes;
12991             if(!vt[this.vtype](value, this)){
12992                 return false;
12993             }
12994         }
12995         if(typeof this.validator == "function"){
12996             var msg = this.validator(value);
12997             if (typeof(msg) == 'string') {
12998                 this.invalidText = msg;
12999             }
13000             if(msg !== true){
13001                 return false;
13002             }
13003         }
13004         
13005         if(this.regex && !this.regex.test(value)){
13006             return false;
13007         }
13008         
13009         return true;
13010     },
13011     
13012      // private
13013     fireKey : function(e){
13014         //Roo.log('field ' + e.getKey());
13015         if(e.isNavKeyPress()){
13016             this.fireEvent("specialkey", this, e);
13017         }
13018     },
13019     focus : function (selectText){
13020         if(this.rendered){
13021             this.inputEl().focus();
13022             if(selectText === true){
13023                 this.inputEl().dom.select();
13024             }
13025         }
13026         return this;
13027     } ,
13028     
13029     onFocus : function(){
13030         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
13031            // this.el.addClass(this.focusClass);
13032         }
13033         if(!this.hasFocus){
13034             this.hasFocus = true;
13035             this.startValue = this.getValue();
13036             this.fireEvent("focus", this);
13037         }
13038     },
13039     
13040     beforeBlur : Roo.emptyFn,
13041
13042     
13043     // private
13044     onBlur : function(){
13045         this.beforeBlur();
13046         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
13047             //this.el.removeClass(this.focusClass);
13048         }
13049         this.hasFocus = false;
13050         if(this.validationEvent !== false && this.validateOnBlur && this.validationEvent != "blur"){
13051             this.validate();
13052         }
13053         var v = this.getValue();
13054         if(String(v) !== String(this.startValue)){
13055             this.fireEvent('change', this, v, this.startValue);
13056         }
13057         this.fireEvent("blur", this);
13058     },
13059     
13060     onChange : function(e)
13061     {
13062         var v = this.getValue();
13063         if(String(v) !== String(this.startValue)){
13064             this.fireEvent('change', this, v, this.startValue);
13065         }
13066         
13067     },
13068     
13069     /**
13070      * Resets the current field value to the originally loaded value and clears any validation messages
13071      */
13072     reset : function(){
13073         this.setValue(this.originalValue);
13074         this.validate();
13075     },
13076      /**
13077      * Returns the name of the field
13078      * @return {Mixed} name The name field
13079      */
13080     getName: function(){
13081         return this.name;
13082     },
13083      /**
13084      * Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}.
13085      * @return {Mixed} value The field value
13086      */
13087     getValue : function(){
13088         
13089         var v = this.inputEl().getValue();
13090         
13091         return v;
13092     },
13093     /**
13094      * Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}.
13095      * @return {Mixed} value The field value
13096      */
13097     getRawValue : function(){
13098         var v = this.inputEl().getValue();
13099         
13100         return v;
13101     },
13102     
13103     /**
13104      * Sets the underlying DOM field's value directly, bypassing validation.  To set the value with validation see {@link #setValue}.
13105      * @param {Mixed} value The value to set
13106      */
13107     setRawValue : function(v){
13108         return this.inputEl().dom.value = (v === null || v === undefined ? '' : v);
13109     },
13110     
13111     selectText : function(start, end){
13112         var v = this.getRawValue();
13113         if(v.length > 0){
13114             start = start === undefined ? 0 : start;
13115             end = end === undefined ? v.length : end;
13116             var d = this.inputEl().dom;
13117             if(d.setSelectionRange){
13118                 d.setSelectionRange(start, end);
13119             }else if(d.createTextRange){
13120                 var range = d.createTextRange();
13121                 range.moveStart("character", start);
13122                 range.moveEnd("character", v.length-end);
13123                 range.select();
13124             }
13125         }
13126     },
13127     
13128     /**
13129      * Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}.
13130      * @param {Mixed} value The value to set
13131      */
13132     setValue : function(v){
13133         this.value = v;
13134         if(this.rendered){
13135             this.inputEl().dom.value = (v === null || v === undefined ? '' : v);
13136             this.validate();
13137         }
13138     },
13139     
13140     /*
13141     processValue : function(value){
13142         if(this.stripCharsRe){
13143             var newValue = value.replace(this.stripCharsRe, '');
13144             if(newValue !== value){
13145                 this.setRawValue(newValue);
13146                 return newValue;
13147             }
13148         }
13149         return value;
13150     },
13151   */
13152     preFocus : function(){
13153         
13154         if(this.selectOnFocus){
13155             this.inputEl().dom.select();
13156         }
13157     },
13158     filterKeys : function(e){
13159         var k = e.getKey();
13160         if(!Roo.isIE && (e.isNavKeyPress() || k == e.BACKSPACE || (k == e.DELETE && e.button == -1))){
13161             return;
13162         }
13163         var c = e.getCharCode(), cc = String.fromCharCode(c);
13164         if(Roo.isIE && (e.isSpecialKey() || !cc)){
13165             return;
13166         }
13167         if(!this.maskRe.test(cc)){
13168             e.stopEvent();
13169         }
13170     },
13171      /**
13172      * Clear any invalid styles/messages for this field
13173      */
13174     clearInvalid : function(){
13175         
13176         if(!this.el || this.preventMark){ // not rendered
13177             return;
13178         }
13179         
13180         
13181         this.el.removeClass([this.invalidClass, 'is-invalid']);
13182         
13183         if(this.hasFeedback && this.inputType != 'hidden' && !this.allowBlank){
13184             
13185             var feedback = this.el.select('.form-control-feedback', true).first();
13186             
13187             if(feedback){
13188                 this.el.select('.form-control-feedback', true).first().removeClass(this.invalidFeedbackClass);
13189             }
13190             
13191         }
13192         
13193         if(this.indicator){
13194             this.indicator.removeClass('visible');
13195             this.indicator.addClass(this.indicatorpos == 'right' ? 'hidden' : 'invisible');
13196         }
13197         
13198         this.fireEvent('valid', this);
13199     },
13200     
13201      /**
13202      * Mark this field as valid
13203      */
13204     markValid : function()
13205     {
13206         if(!this.el  || this.preventMark){ // not rendered...
13207             return;
13208         }
13209         
13210         this.el.removeClass([this.invalidClass, this.validClass]);
13211         this.inputEl().removeClass(['is-valid', 'is-invalid']);
13212
13213         var feedback = this.el.select('.form-control-feedback', true).first();
13214             
13215         if(feedback){
13216             this.el.select('.form-control-feedback', true).first().removeClass([this.invalidFeedbackClass, this.validFeedbackClass]);
13217         }
13218         
13219         if(this.indicator){
13220             this.indicator.removeClass('visible');
13221             this.indicator.addClass(this.indicatorpos == 'right' ? 'hidden' : 'invisible');
13222         }
13223         
13224         if(this.disabled){
13225             return;
13226         }
13227         
13228            
13229         if(this.allowBlank && !this.getRawValue().length){
13230             return;
13231         }
13232         if (Roo.bootstrap.version == 3) {
13233             this.el.addClass(this.validClass);
13234         } else {
13235             this.inputEl().addClass('is-valid');
13236         }
13237
13238         if(this.hasFeedback && this.inputType != 'hidden' && !this.allowBlank && (this.getValue().length || this.forceFeedback)){
13239             
13240             var feedback = this.el.select('.form-control-feedback', true).first();
13241             
13242             if(feedback){
13243                 this.el.select('.form-control-feedback', true).first().removeClass([this.invalidFeedbackClass, this.validFeedbackClass]);
13244                 this.el.select('.form-control-feedback', true).first().addClass([this.validFeedbackClass]);
13245             }
13246             
13247         }
13248         
13249         this.fireEvent('valid', this);
13250     },
13251     
13252      /**
13253      * Mark this field as invalid
13254      * @param {String} msg The validation message
13255      */
13256     markInvalid : function(msg)
13257     {
13258         if(!this.el  || this.preventMark){ // not rendered
13259             return;
13260         }
13261         
13262         this.el.removeClass([this.invalidClass, this.validClass]);
13263         this.inputEl().removeClass(['is-valid', 'is-invalid']);
13264         
13265         var feedback = this.el.select('.form-control-feedback', true).first();
13266             
13267         if(feedback){
13268             this.el.select('.form-control-feedback', true).first().removeClass(
13269                     [this.invalidFeedbackClass, this.validFeedbackClass]);
13270         }
13271
13272         if(this.disabled){
13273             return;
13274         }
13275         
13276         if(this.allowBlank && !this.getRawValue().length){
13277             return;
13278         }
13279         
13280         if(this.indicator){
13281             this.indicator.removeClass(this.indicatorpos == 'right' ? 'hidden' : 'invisible');
13282             this.indicator.addClass('visible');
13283         }
13284         if (Roo.bootstrap.version == 3) {
13285             this.el.addClass(this.invalidClass);
13286         } else {
13287             this.inputEl().addClass('is-invalid');
13288         }
13289         
13290         
13291         
13292         if(this.hasFeedback && this.inputType != 'hidden' && !this.allowBlank){
13293             
13294             var feedback = this.el.select('.form-control-feedback', true).first();
13295             
13296             if(feedback){
13297                 this.el.select('.form-control-feedback', true).first().removeClass([this.invalidFeedbackClass, this.validFeedbackClass]);
13298                 
13299                 if(this.getValue().length || this.forceFeedback){
13300                     this.el.select('.form-control-feedback', true).first().addClass([this.invalidFeedbackClass]);
13301                 }
13302                 
13303             }
13304             
13305         }
13306         
13307         this.fireEvent('invalid', this, msg);
13308     },
13309     // private
13310     SafariOnKeyDown : function(event)
13311     {
13312         // this is a workaround for a password hang bug on chrome/ webkit.
13313         if (this.inputEl().dom.type != 'password') {
13314             return;
13315         }
13316         
13317         var isSelectAll = false;
13318         
13319         if(this.inputEl().dom.selectionEnd > 0){
13320             isSelectAll = (this.inputEl().dom.selectionEnd - this.inputEl().dom.selectionStart - this.getValue().length == 0) ? true : false;
13321         }
13322         if(((event.getKey() == 8 || event.getKey() == 46) && this.getValue().length ==1)){ // backspace and delete key
13323             event.preventDefault();
13324             this.setValue('');
13325             return;
13326         }
13327         
13328         if(isSelectAll  && event.getCharCode() > 31 && !event.ctrlKey) { // not backspace and delete key (or ctrl-v)
13329             
13330             event.preventDefault();
13331             // this is very hacky as keydown always get's upper case.
13332             //
13333             var cc = String.fromCharCode(event.getCharCode());
13334             this.setValue( event.shiftKey ?  cc : cc.toLowerCase());
13335             
13336         }
13337     },
13338     adjustWidth : function(tag, w){
13339         tag = tag.toLowerCase();
13340         if(typeof w == 'number' && Roo.isStrict && !Roo.isSafari){
13341             if(Roo.isIE && (tag == 'input' || tag == 'textarea')){
13342                 if(tag == 'input'){
13343                     return w + 2;
13344                 }
13345                 if(tag == 'textarea'){
13346                     return w-2;
13347                 }
13348             }else if(Roo.isOpera){
13349                 if(tag == 'input'){
13350                     return w + 2;
13351                 }
13352                 if(tag == 'textarea'){
13353                     return w-2;
13354                 }
13355             }
13356         }
13357         return w;
13358     },
13359     
13360     setFieldLabel : function(v)
13361     {
13362         if(!this.rendered){
13363             return;
13364         }
13365         
13366         if(this.indicatorEl()){
13367             var ar = this.el.select('label > span',true);
13368             
13369             if (ar.elements.length) {
13370                 this.el.select('label > span',true).first().dom.innerHTML = (v === null || v === undefined ? '' : v);
13371                 this.fieldLabel = v;
13372                 return;
13373             }
13374             
13375             var br = this.el.select('label',true);
13376             
13377             if(br.elements.length) {
13378                 this.el.select('label',true).first().dom.innerHTML = (v === null || v === undefined ? '' : v);
13379                 this.fieldLabel = v;
13380                 return;
13381             }
13382             
13383             Roo.log('Cannot Found any of label > span || label in input');
13384             return;
13385         }
13386         
13387         this.el.select('label',true).first().dom.innerHTML = (v === null || v === undefined ? '' : v);
13388         this.fieldLabel = v;
13389         
13390         
13391     }
13392 });
13393
13394  
13395 /*
13396  * - LGPL
13397  *
13398  * Input
13399  * 
13400  */
13401
13402 /**
13403  * @class Roo.bootstrap.form.TextArea
13404  * @extends Roo.bootstrap.form.Input
13405  * Bootstrap TextArea class
13406  * @cfg {Number} cols Specifies the visible width of a text area
13407  * @cfg {Number} rows Specifies the visible number of lines in a text area
13408  * @cfg {string} wrap (soft|hard)Specifies how the text in a text area is to be wrapped when submitted in a form
13409  * @cfg {string} resize (none|both|horizontal|vertical|inherit|initial)
13410  * @cfg {string} html text
13411  * 
13412  * @constructor
13413  * Create a new TextArea
13414  * @param {Object} config The config object
13415  */
13416
13417 Roo.bootstrap.form.TextArea = function(config){
13418     Roo.bootstrap.form.TextArea.superclass.constructor.call(this, config);
13419    
13420 };
13421
13422 Roo.extend(Roo.bootstrap.form.TextArea, Roo.bootstrap.form.Input,  {
13423      
13424     cols : false,
13425     rows : 5,
13426     readOnly : false,
13427     warp : 'soft',
13428     resize : false,
13429     value: false,
13430     html: false,
13431     
13432     getAutoCreate : function(){
13433         
13434         var align = (!this.labelAlign) ? this.parentLabelAlign() : this.labelAlign;
13435         
13436         var id = Roo.id();
13437         
13438         var cfg = {};
13439         
13440         if(this.inputType != 'hidden'){
13441             cfg.cls = 'form-group' //input-group
13442         }
13443         
13444         var input =  {
13445             tag: 'textarea',
13446             id : id,
13447             warp : this.warp,
13448             rows : this.rows,
13449             value : this.value || '',
13450             html: this.html || '',
13451             cls : 'form-control',
13452             placeholder : this.placeholder || '' 
13453             
13454         };
13455         
13456         if(this.maxLength && this.maxLength != Number.MAX_VALUE){
13457             input.maxLength = this.maxLength;
13458         }
13459         
13460         if(this.resize){
13461             input.style = (typeof(input.style) == 'undefined') ? 'resize:' + this.resize : input.style + 'resize:' + this.resize;
13462         }
13463         
13464         if(this.cols){
13465             input.cols = this.cols;
13466         }
13467         
13468         if (this.readOnly) {
13469             input.readonly = true;
13470         }
13471         
13472         if (this.name) {
13473             input.name = this.name;
13474         }
13475         
13476         if (this.size) {
13477             input.cls = (typeof(input.cls) == 'undefined') ? 'input-' + this.size : input.cls + ' input-' + this.size;
13478         }
13479         
13480         var settings=this;
13481         ['xs','sm','md','lg'].map(function(size){
13482             if (settings[size]) {
13483                 cfg.cls += ' col-' + size + '-' + settings[size];
13484             }
13485         });
13486         
13487         var inputblock = input;
13488         
13489         if(this.hasFeedback && !this.allowBlank){
13490             
13491             var feedback = {
13492                 tag: 'span',
13493                 cls: 'glyphicon form-control-feedback'
13494             };
13495
13496             inputblock = {
13497                 cls : 'has-feedback',
13498                 cn :  [
13499                     input,
13500                     feedback
13501                 ] 
13502             };  
13503         }
13504         
13505         
13506         if (this.before || this.after) {
13507             
13508             inputblock = {
13509                 cls : 'input-group',
13510                 cn :  [] 
13511             };
13512             if (this.before) {
13513                 inputblock.cn.push({
13514                     tag :'span',
13515                     cls : 'input-group-addon',
13516                     html : this.before
13517                 });
13518             }
13519             
13520             inputblock.cn.push(input);
13521             
13522             if(this.hasFeedback && !this.allowBlank){
13523                 inputblock.cls += ' has-feedback';
13524                 inputblock.cn.push(feedback);
13525             }
13526             
13527             if (this.after) {
13528                 inputblock.cn.push({
13529                     tag :'span',
13530                     cls : 'input-group-addon',
13531                     html : this.after
13532                 });
13533             }
13534             
13535         }
13536         
13537         
13538         cfg = this.getAutoCreateLabel( cfg, inputblock );
13539
13540          
13541         
13542         if (this.disabled) {
13543             input.disabled=true;
13544         }
13545         
13546         return cfg;
13547         
13548     },
13549     /**
13550      * return the real textarea element.
13551      */
13552     inputEl: function ()
13553     {
13554         return this.el.select('textarea.form-control',true).first();
13555     },
13556     
13557     /**
13558      * Clear any invalid styles/messages for this field
13559      */
13560     clearInvalid : function()
13561     {
13562         
13563         if(!this.el || this.preventMark){ // not rendered
13564             return;
13565         }
13566         
13567         var label = this.el.select('label', true).first();
13568         var icon = this.el.select('i.fa-star', true).first();
13569         
13570         if(label && icon){
13571             icon.remove();
13572         }
13573         this.el.removeClass( this.validClass);
13574         this.inputEl().removeClass('is-invalid');
13575          
13576         if(this.hasFeedback && this.inputType != 'hidden' && !this.allowBlank){
13577             
13578             var feedback = this.el.select('.form-control-feedback', true).first();
13579             
13580             if(feedback){
13581                 this.el.select('.form-control-feedback', true).first().removeClass(this.invalidFeedbackClass);
13582             }
13583             
13584         }
13585         
13586         this.fireEvent('valid', this);
13587     },
13588     
13589      /**
13590      * Mark this field as valid
13591      */
13592     markValid : function()
13593     {
13594         if(!this.el  || this.preventMark){ // not rendered
13595             return;
13596         }
13597         
13598         this.el.removeClass([this.invalidClass, this.validClass]);
13599         this.inputEl().removeClass(['is-valid', 'is-invalid']);
13600         
13601         var feedback = this.el.select('.form-control-feedback', true).first();
13602             
13603         if(feedback){
13604             this.el.select('.form-control-feedback', true).first().removeClass([this.invalidFeedbackClass, this.validFeedbackClass]);
13605         }
13606
13607         if(this.disabled || this.allowBlank){
13608             return;
13609         }
13610         
13611         var label = this.el.select('label', true).first();
13612         var icon = this.el.select('i.fa-star', true).first();
13613         
13614         if(label && icon){
13615             icon.remove();
13616         }
13617         if (Roo.bootstrap.version == 3) {
13618             this.el.addClass(this.validClass);
13619         } else {
13620             this.inputEl().addClass('is-valid');
13621         }
13622         
13623         
13624         if(this.hasFeedback && this.inputType != 'hidden' && !this.allowBlank && (this.getValue().length || this.forceFeedback)){
13625             
13626             var feedback = this.el.select('.form-control-feedback', true).first();
13627             
13628             if(feedback){
13629                 this.el.select('.form-control-feedback', true).first().removeClass([this.invalidFeedbackClass, this.validFeedbackClass]);
13630                 this.el.select('.form-control-feedback', true).first().addClass([this.validFeedbackClass]);
13631             }
13632             
13633         }
13634         
13635         this.fireEvent('valid', this);
13636     },
13637     
13638      /**
13639      * Mark this field as invalid
13640      * @param {String} msg The validation message
13641      */
13642     markInvalid : function(msg)
13643     {
13644         if(!this.el  || this.preventMark){ // not rendered
13645             return;
13646         }
13647         
13648         this.el.removeClass([this.invalidClass, this.validClass]);
13649         this.inputEl().removeClass(['is-valid', 'is-invalid']);
13650         
13651         var feedback = this.el.select('.form-control-feedback', true).first();
13652             
13653         if(feedback){
13654             this.el.select('.form-control-feedback', true).first().removeClass([this.invalidFeedbackClass, this.validFeedbackClass]);
13655         }
13656
13657         if(this.disabled || this.allowBlank){
13658             return;
13659         }
13660         
13661         var label = this.el.select('label', true).first();
13662         var icon = this.el.select('i.fa-star', true).first();
13663         
13664         if(!this.getValue().length && label && !icon){
13665             this.el.createChild({
13666                 tag : 'i',
13667                 cls : 'text-danger fa fa-lg fa-star',
13668                 tooltip : 'This field is required',
13669                 style : 'margin-right:5px;'
13670             }, label, true);
13671         }
13672         
13673         if (Roo.bootstrap.version == 3) {
13674             this.el.addClass(this.invalidClass);
13675         } else {
13676             this.inputEl().addClass('is-invalid');
13677         }
13678         
13679         // fixme ... this may be depricated need to test..
13680         if(this.hasFeedback && this.inputType != 'hidden' && !this.allowBlank){
13681             
13682             var feedback = this.el.select('.form-control-feedback', true).first();
13683             
13684             if(feedback){
13685                 this.el.select('.form-control-feedback', true).first().removeClass([this.invalidFeedbackClass, this.validFeedbackClass]);
13686                 
13687                 if(this.getValue().length || this.forceFeedback){
13688                     this.el.select('.form-control-feedback', true).first().addClass([this.invalidFeedbackClass]);
13689                 }
13690                 
13691             }
13692             
13693         }
13694         
13695         this.fireEvent('invalid', this, msg);
13696     }
13697 });
13698
13699  
13700 /*
13701  * - LGPL
13702  *
13703  * trigger field - base class for combo..
13704  * 
13705  */
13706  
13707 /**
13708  * @class Roo.bootstrap.form.TriggerField
13709  * @extends Roo.bootstrap.form.Input
13710  * Provides a convenient wrapper for TextFields that adds a clickable trigger button (looks like a combobox by default).
13711  * The trigger has no default action, so you must assign a function to implement the trigger click handler by
13712  * overriding {@link #onTriggerClick}. You can create a TriggerField directly, as it renders exactly like a combobox
13713  * for which you can provide a custom implementation.  For example:
13714  * <pre><code>
13715 var trigger = new Roo.bootstrap.form.TriggerField();
13716 trigger.onTriggerClick = myTriggerFn;
13717 trigger.applyTo('my-field');
13718 </code></pre>
13719  *
13720  * However, in general you will most likely want to use TriggerField as the base class for a reusable component.
13721  * {@link Roo.bootstrap.form.DateField} and {@link Roo.bootstrap.form.ComboBox} are perfect examples of this.
13722  * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
13723  * class 'x-form-trigger' by default and triggerClass will be <b>appended</b> if specified.
13724  * @cfg {String} caret (search|calendar) BS3 only - carat fa name
13725
13726  * @constructor
13727  * Create a new TriggerField.
13728  * @param {Object} config Configuration options (valid {@Roo.bootstrap.form.Input} config options will also be applied
13729  * to the base TextField)
13730  */
13731 Roo.bootstrap.form.TriggerField = function(config){
13732     this.mimicing = false;
13733     Roo.bootstrap.form.TriggerField.superclass.constructor.call(this, config);
13734 };
13735
13736 Roo.extend(Roo.bootstrap.form.TriggerField, Roo.bootstrap.form.Input,  {
13737     /**
13738      * @cfg {String} triggerClass A CSS class to apply to the trigger
13739      */
13740      /**
13741      * @cfg {Boolean} hideTrigger True to hide the trigger element and display only the base text field (defaults to false)
13742      */
13743     hideTrigger:false,
13744
13745     /**
13746      * @cfg {Boolean} removable (true|false) special filter default false
13747      */
13748     removable : false,
13749     
13750     /** @cfg {Boolean} grow @hide */
13751     /** @cfg {Number} growMin @hide */
13752     /** @cfg {Number} growMax @hide */
13753
13754     /**
13755      * @hide 
13756      * @method
13757      */
13758     autoSize: Roo.emptyFn,
13759     // private
13760     monitorTab : true,
13761     // private
13762     deferHeight : true,
13763
13764     
13765     actionMode : 'wrap',
13766     
13767     caret : false,
13768     
13769     
13770     getAutoCreate : function(){
13771        
13772         var align = this.labelAlign || this.parentLabelAlign();
13773         
13774         var id = Roo.id();
13775         
13776         var cfg = {
13777             cls: 'form-group' //input-group
13778         };
13779         
13780         
13781         var input =  {
13782             tag: 'input',
13783             id : id,
13784             type : this.inputType,
13785             cls : 'form-control',
13786             autocomplete: 'new-password',
13787             placeholder : this.placeholder || '' 
13788             
13789         };
13790         if (this.name) {
13791             input.name = this.name;
13792         }
13793         if (this.size) {
13794             input.cls += ' input-' + this.size;
13795         }
13796         
13797         if (this.disabled) {
13798             input.disabled=true;
13799         }
13800         
13801         var inputblock = input;
13802         
13803         if(this.hasFeedback && !this.allowBlank){
13804             
13805             var feedback = {
13806                 tag: 'span',
13807                 cls: 'glyphicon form-control-feedback'
13808             };
13809             
13810             if(this.removable && !this.editable  ){
13811                 inputblock = {
13812                     cls : 'has-feedback',
13813                     cn :  [
13814                         inputblock,
13815                         {
13816                             tag: 'button',
13817                             html : 'x',
13818                             cls : 'roo-combo-removable-btn close'
13819                         },
13820                         feedback
13821                     ] 
13822                 };
13823             } else {
13824                 inputblock = {
13825                     cls : 'has-feedback',
13826                     cn :  [
13827                         inputblock,
13828                         feedback
13829                     ] 
13830                 };
13831             }
13832
13833         } else {
13834             if(this.removable && !this.editable ){
13835                 inputblock = {
13836                     cls : 'roo-removable',
13837                     cn :  [
13838                         inputblock,
13839                         {
13840                             tag: 'button',
13841                             html : 'x',
13842                             cls : 'roo-combo-removable-btn close'
13843                         }
13844                     ] 
13845                 };
13846             }
13847         }
13848         
13849         if (this.before || this.after) {
13850             
13851             inputblock = {
13852                 cls : 'input-group',
13853                 cn :  [] 
13854             };
13855             if (this.before) {
13856                 inputblock.cn.push({
13857                     tag :'span',
13858                     cls : 'input-group-addon input-group-prepend input-group-text',
13859                     html : this.before
13860                 });
13861             }
13862             
13863             inputblock.cn.push(input);
13864             
13865             if(this.hasFeedback && !this.allowBlank){
13866                 inputblock.cls += ' has-feedback';
13867                 inputblock.cn.push(feedback);
13868             }
13869             
13870             if (this.after) {
13871                 inputblock.cn.push({
13872                     tag :'span',
13873                     cls : 'input-group-addon input-group-append input-group-text',
13874                     html : this.after
13875                 });
13876             }
13877             
13878         };
13879         
13880       
13881         
13882         var ibwrap = inputblock;
13883         
13884         if(this.multiple){
13885             ibwrap = {
13886                 tag: 'ul',
13887                 cls: 'roo-select2-choices',
13888                 cn:[
13889                     {
13890                         tag: 'li',
13891                         cls: 'roo-select2-search-field',
13892                         cn: [
13893
13894                             inputblock
13895                         ]
13896                     }
13897                 ]
13898             };
13899                 
13900         }
13901         
13902         var combobox = {
13903             cls: 'roo-select2-container input-group',
13904             cn: [
13905                  {
13906                     tag: 'input',
13907                     type : 'hidden',
13908                     cls: 'form-hidden-field'
13909                 },
13910                 ibwrap
13911             ]
13912         };
13913         
13914         if(!this.multiple && this.showToggleBtn){
13915             
13916             var caret = {
13917                         tag: 'span',
13918                         cls: 'caret'
13919              };
13920             if (this.caret != false) {
13921                 caret = {
13922                      tag: 'i',
13923                      cls: 'fa fa-' + this.caret
13924                 };
13925                 
13926             }
13927             
13928             combobox.cn.push({
13929                 tag :'span',
13930                 cls : 'input-group-addon input-group-append input-group-text btn dropdown-toggle',
13931                 cn : [
13932                     Roo.bootstrap.version == 3 ? caret : '',
13933                     {
13934                         tag: 'span',
13935                         cls: 'combobox-clear',
13936                         cn  : [
13937                             {
13938                                 tag : 'i',
13939                                 cls: 'icon-remove'
13940                             }
13941                         ]
13942                     }
13943                 ]
13944
13945             })
13946         }
13947         
13948         if(this.multiple){
13949             combobox.cls += ' roo-select2-container-multi';
13950         }
13951          var indicator = {
13952             tag : 'i',
13953             cls : 'roo-required-indicator ' + (this.indicatorpos == 'right'  ? 'right' : 'left') +'-indicator text-danger fa fa-lg fa-star',
13954             tooltip : 'This field is required'
13955         };
13956       
13957         if (this.allowBlank) {
13958             indicator = {
13959                 tag : 'i',
13960                 style : 'display:none'
13961             };
13962         }
13963          
13964         
13965         
13966         if (align ==='left' && this.fieldLabel.length) {
13967             
13968             cfg.cls += ' roo-form-group-label-left'  + (Roo.bootstrap.version == 4 ? ' row' : '');
13969
13970             cfg.cn = [
13971                 indicator,
13972                 {
13973                     tag: 'label',
13974                     'for' :  id,
13975                     cls : 'control-label',
13976                     html : this.fieldLabel
13977
13978                 },
13979                 {
13980                     cls : "", 
13981                     cn: [
13982                         combobox
13983                     ]
13984                 }
13985
13986             ];
13987             
13988             var labelCfg = cfg.cn[1];
13989             var contentCfg = cfg.cn[2];
13990             
13991             if(this.indicatorpos == 'right'){
13992                 cfg.cn = [
13993                     {
13994                         tag: 'label',
13995                         'for' :  id,
13996                         cls : 'control-label',
13997                         cn : [
13998                             {
13999                                 tag : 'span',
14000                                 html : this.fieldLabel
14001                             },
14002                             indicator
14003                         ]
14004                     },
14005                     {
14006                         cls : "", 
14007                         cn: [
14008                             combobox
14009                         ]
14010                     }
14011
14012                 ];
14013                 
14014                 labelCfg = cfg.cn[0];
14015                 contentCfg = cfg.cn[1];
14016             }
14017             
14018             if(this.labelWidth > 12){
14019                 labelCfg.style = "width: " + this.labelWidth + 'px';
14020             }
14021             
14022             if(this.labelWidth < 13 && this.labelmd == 0){
14023                 this.labelmd = this.labelWidth;
14024             }
14025             
14026             if(this.labellg > 0){
14027                 labelCfg.cls += ' col-lg-' + this.labellg;
14028                 contentCfg.cls += ' col-lg-' + (12 - this.labellg);
14029             }
14030             
14031             if(this.labelmd > 0){
14032                 labelCfg.cls += ' col-md-' + this.labelmd;
14033                 contentCfg.cls += ' col-md-' + (12 - this.labelmd);
14034             }
14035             
14036             if(this.labelsm > 0){
14037                 labelCfg.cls += ' col-sm-' + this.labelsm;
14038                 contentCfg.cls += ' col-sm-' + (12 - this.labelsm);
14039             }
14040             
14041             if(this.labelxs > 0){
14042                 labelCfg.cls += ' col-xs-' + this.labelxs;
14043                 contentCfg.cls += ' col-xs-' + (12 - this.labelxs);
14044             }
14045             
14046         } else if ( this.fieldLabel.length) {
14047 //                Roo.log(" label");
14048             cfg.cn = [
14049                 indicator,
14050                {
14051                    tag: 'label',
14052                    //cls : 'input-group-addon',
14053                    html : this.fieldLabel
14054
14055                },
14056
14057                combobox
14058
14059             ];
14060             
14061             if(this.indicatorpos == 'right'){
14062                 
14063                 cfg.cn = [
14064                     {
14065                        tag: 'label',
14066                        cn : [
14067                            {
14068                                tag : 'span',
14069                                html : this.fieldLabel
14070                            },
14071                            indicator
14072                        ]
14073
14074                     },
14075                     combobox
14076
14077                 ];
14078
14079             }
14080
14081         } else {
14082             
14083 //                Roo.log(" no label && no align");
14084                 cfg = combobox
14085                      
14086                 
14087         }
14088         
14089         var settings=this;
14090         ['xs','sm','md','lg'].map(function(size){
14091             if (settings[size]) {
14092                 cfg.cls += ' col-' + size + '-' + settings[size];
14093             }
14094         });
14095         
14096         return cfg;
14097         
14098     },
14099     
14100     
14101     
14102     // private
14103     onResize : function(w, h){
14104 //        Roo.bootstrap.form.TriggerField.superclass.onResize.apply(this, arguments);
14105 //        if(typeof w == 'number'){
14106 //            var x = w - this.trigger.getWidth();
14107 //            this.inputEl().setWidth(this.adjustWidth('input', x));
14108 //            this.trigger.setStyle('left', x+'px');
14109 //        }
14110     },
14111
14112     // private
14113     adjustSize : Roo.BoxComponent.prototype.adjustSize,
14114
14115     // private
14116     getResizeEl : function(){
14117         return this.inputEl();
14118     },
14119
14120     // private
14121     getPositionEl : function(){
14122         return this.inputEl();
14123     },
14124
14125     // private
14126     alignErrorIcon : function(){
14127         this.errorIcon.alignTo(this.inputEl(), 'tl-tr', [2, 0]);
14128     },
14129
14130     // private
14131     initEvents : function(){
14132         
14133         this.createList();
14134         
14135         Roo.bootstrap.form.TriggerField.superclass.initEvents.call(this);
14136         //this.wrap = this.el.wrap({cls: "x-form-field-wrap"});
14137         if(!this.multiple && this.showToggleBtn){
14138             this.trigger = this.el.select('span.dropdown-toggle',true).first();
14139             if(this.hideTrigger){
14140                 this.trigger.setDisplayed(false);
14141             }
14142             this.trigger.on("click", this.onTriggerClick, this, {preventDefault:true});
14143         }
14144         
14145         if(this.multiple){
14146             this.inputEl().on("click", this.onTriggerClick, this, {preventDefault:true});
14147         }
14148         
14149         if(this.removable && !this.editable && !this.tickable){
14150             var close = this.closeTriggerEl();
14151             
14152             if(close){
14153                 close.setVisibilityMode(Roo.Element.DISPLAY).hide();
14154                 close.on('click', this.removeBtnClick, this, close);
14155             }
14156         }
14157         
14158         //this.trigger.addClassOnOver('x-form-trigger-over');
14159         //this.trigger.addClassOnClick('x-form-trigger-click');
14160         
14161         //if(!this.width){
14162         //    this.wrap.setWidth(this.el.getWidth()+this.trigger.getWidth());
14163         //}
14164     },
14165     
14166     closeTriggerEl : function()
14167     {
14168         var close = this.el.select('.roo-combo-removable-btn', true).first();
14169         return close ? close : false;
14170     },
14171     
14172     removeBtnClick : function(e, h, el)
14173     {
14174         e.preventDefault();
14175         
14176         if(this.fireEvent("remove", this) !== false){
14177             this.reset();
14178             this.fireEvent("afterremove", this)
14179         }
14180     },
14181     
14182     createList : function()
14183     {
14184         this.list = Roo.get(document.body).createChild({
14185             tag: Roo.bootstrap.version == 4 ? 'div' : 'ul',
14186             cls: 'typeahead typeahead-long dropdown-menu shadow',
14187             style: 'display:none'
14188         });
14189         
14190         this.list.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';;
14191         
14192     },
14193
14194     // private
14195     initTrigger : function(){
14196        
14197     },
14198
14199     // private
14200     onDestroy : function(){
14201         if(this.trigger){
14202             this.trigger.removeAllListeners();
14203           //  this.trigger.remove();
14204         }
14205         //if(this.wrap){
14206         //    this.wrap.remove();
14207         //}
14208         Roo.bootstrap.form.TriggerField.superclass.onDestroy.call(this);
14209     },
14210
14211     // private
14212     onFocus : function(){
14213         Roo.bootstrap.form.TriggerField.superclass.onFocus.call(this);
14214         /*
14215         if(!this.mimicing){
14216             this.wrap.addClass('x-trigger-wrap-focus');
14217             this.mimicing = true;
14218             Roo.get(Roo.isIE ? document.body : document).on("mousedown", this.mimicBlur, this);
14219             if(this.monitorTab){
14220                 this.el.on("keydown", this.checkTab, this);
14221             }
14222         }
14223         */
14224     },
14225
14226     // private
14227     checkTab : function(e){
14228         if(e.getKey() == e.TAB){
14229             this.triggerBlur();
14230         }
14231     },
14232
14233     // private
14234     onBlur : function(){
14235         // do nothing
14236     },
14237
14238     // private
14239     mimicBlur : function(e, t){
14240         /*
14241         if(!this.wrap.contains(t) && this.validateBlur()){
14242             this.triggerBlur();
14243         }
14244         */
14245     },
14246
14247     // private
14248     triggerBlur : function(){
14249         this.mimicing = false;
14250         Roo.get(Roo.isIE ? document.body : document).un("mousedown", this.mimicBlur);
14251         if(this.monitorTab){
14252             this.el.un("keydown", this.checkTab, this);
14253         }
14254         //this.wrap.removeClass('x-trigger-wrap-focus');
14255         Roo.bootstrap.form.TriggerField.superclass.onBlur.call(this);
14256     },
14257
14258     // private
14259     // This should be overriden by any subclass that needs to check whether or not the field can be blurred.
14260     validateBlur : function(e, t){
14261         return true;
14262     },
14263
14264     // private
14265     onDisable : function(){
14266         this.inputEl().dom.disabled = true;
14267         //Roo.bootstrap.form.TriggerField.superclass.onDisable.call(this);
14268         //if(this.wrap){
14269         //    this.wrap.addClass('x-item-disabled');
14270         //}
14271     },
14272
14273     // private
14274     onEnable : function(){
14275         this.inputEl().dom.disabled = false;
14276         //Roo.bootstrap.form.TriggerField.superclass.onEnable.call(this);
14277         //if(this.wrap){
14278         //    this.el.removeClass('x-item-disabled');
14279         //}
14280     },
14281
14282     // private
14283     onShow : function(){
14284         var ae = this.getActionEl();
14285         
14286         if(ae){
14287             ae.dom.style.display = '';
14288             ae.dom.style.visibility = 'visible';
14289         }
14290     },
14291
14292     // private
14293     
14294     onHide : function(){
14295         var ae = this.getActionEl();
14296         ae.dom.style.display = 'none';
14297     },
14298
14299     /**
14300      * The function that should handle the trigger's click event.  This method does nothing by default until overridden
14301      * by an implementing function.
14302      * @method
14303      * @param {EventObject} e
14304      */
14305     onTriggerClick : Roo.emptyFn
14306 });
14307  
14308 /*
14309 * Licence: LGPL
14310 */
14311
14312 /**
14313  * @class Roo.bootstrap.form.CardUploader
14314  * @extends Roo.bootstrap.Button
14315  * Bootstrap Card Uploader class - it's a button which when you add files to it, adds cards below with preview and the name...
14316  * @cfg {Number} errorTimeout default 3000
14317  * @cfg {Array}  images  an array of ?? Img objects ??? when loading existing files..
14318  * @cfg {Array}  html The button text.
14319
14320  *
14321  * @constructor
14322  * Create a new CardUploader
14323  * @param {Object} config The config object
14324  */
14325
14326 Roo.bootstrap.form.CardUploader = function(config){
14327     
14328  
14329     
14330     Roo.bootstrap.form.CardUploader.superclass.constructor.call(this, config);
14331     
14332     
14333     this.fileCollection   = new Roo.util.MixedCollection(false,function(r) {
14334         return r.data.id
14335      });
14336     
14337      this.addEvents({
14338          // raw events
14339         /**
14340          * @event preview
14341          * When a image is clicked on - and needs to display a slideshow or similar..
14342          * @param {Roo.bootstrap.Card} this
14343          * @param {Object} The image information data 
14344          *
14345          */
14346         'preview' : true,
14347          /**
14348          * @event download
14349          * When a the download link is clicked
14350          * @param {Roo.bootstrap.Card} this
14351          * @param {Object} The image information data  contains 
14352          */
14353         'download' : true
14354         
14355     });
14356 };
14357  
14358 Roo.extend(Roo.bootstrap.form.CardUploader, Roo.bootstrap.form.Input,  {
14359     
14360      
14361     errorTimeout : 3000,
14362      
14363     images : false,
14364    
14365     fileCollection : false,
14366     allowBlank : true,
14367     
14368     getAutoCreate : function()
14369     {
14370         
14371         var cfg =  {
14372             cls :'form-group' ,
14373             cn : [
14374                
14375                 {
14376                     tag: 'label',
14377                    //cls : 'input-group-addon',
14378                     html : this.fieldLabel
14379
14380                 },
14381
14382                 {
14383                     tag: 'input',
14384                     type : 'hidden',
14385                     name : this.name,
14386                     value : this.value,
14387                     cls : 'd-none  form-control'
14388                 },
14389                 
14390                 {
14391                     tag: 'input',
14392                     multiple : 'multiple',
14393                     type : 'file',
14394                     cls : 'd-none  roo-card-upload-selector'
14395                 },
14396                 
14397                 {
14398                     cls : 'roo-card-uploader-button-container w-100 mb-2'
14399                 },
14400                 {
14401                     cls : 'card-columns roo-card-uploader-container'
14402                 }
14403
14404             ]
14405         };
14406            
14407          
14408         return cfg;
14409     },
14410     
14411     getChildContainer : function() /// what children are added to.
14412     {
14413         return this.containerEl;
14414     },
14415    
14416     getButtonContainer : function() /// what children are added to.
14417     {
14418         return this.el.select(".roo-card-uploader-button-container").first();
14419     },
14420    
14421     initEvents : function()
14422     {
14423         
14424         Roo.bootstrap.form.Input.prototype.initEvents.call(this);
14425         
14426         var t = this;
14427         this.addxtype({
14428             xns: Roo.bootstrap,
14429
14430             xtype : 'Button',
14431             container_method : 'getButtonContainer' ,            
14432             html :  this.html, // fix changable?
14433             cls : 'w-100 ',
14434             listeners : {
14435                 'click' : function(btn, e) {
14436                     t.onClick(e);
14437                 }
14438             }
14439         });
14440         
14441         
14442         
14443         
14444         this.urlAPI = (window.createObjectURL && window) || 
14445                                 (window.URL && URL.revokeObjectURL && URL) || 
14446                                 (window.webkitURL && webkitURL);
14447                         
14448          
14449          
14450          
14451         this.selectorEl = this.el.select('.roo-card-upload-selector', true).first();
14452         
14453         this.selectorEl.on('change', this.onFileSelected, this);
14454         if (this.images) {
14455             var t = this;
14456             this.images.forEach(function(img) {
14457                 t.addCard(img)
14458             });
14459             this.images = false;
14460         }
14461         this.containerEl = this.el.select('.roo-card-uploader-container', true).first();
14462          
14463        
14464     },
14465     
14466    
14467     onClick : function(e)
14468     {
14469         e.preventDefault();
14470          
14471         this.selectorEl.dom.click();
14472          
14473     },
14474     
14475     onFileSelected : function(e)
14476     {
14477         e.preventDefault();
14478         
14479         if(typeof(this.selectorEl.dom.files) == 'undefined' || !this.selectorEl.dom.files.length){
14480             return;
14481         }
14482         
14483         Roo.each(this.selectorEl.dom.files, function(file){    
14484             this.addFile(file);
14485         }, this);
14486          
14487     },
14488     
14489       
14490     
14491       
14492     
14493     addFile : function(file)
14494     {
14495            
14496         if(typeof(file) === 'string'){
14497             throw "Add file by name?"; // should not happen
14498             return;
14499         }
14500         
14501         if(!file || !this.urlAPI){
14502             return;
14503         }
14504         
14505         // file;
14506         // file.type;
14507         
14508         var _this = this;
14509         
14510         
14511         var url = _this.urlAPI.createObjectURL( file);
14512            
14513         this.addCard({
14514             id : Roo.bootstrap.form.CardUploader.ID--,
14515             is_uploaded : false,
14516             src : url,
14517             srcfile : file,
14518             title : file.name,
14519             mimetype : file.type,
14520             preview : false,
14521             is_deleted : 0
14522         });
14523         
14524     },
14525     
14526     /**
14527      * addCard - add an Attachment to the uploader
14528      * @param data - the data about the image to upload
14529      *
14530      * {
14531           id : 123
14532           title : "Title of file",
14533           is_uploaded : false,
14534           src : "http://.....",
14535           srcfile : { the File upload object },
14536           mimetype : file.type,
14537           preview : false,
14538           is_deleted : 0
14539           .. any other data...
14540         }
14541      *
14542      * 
14543     */
14544     
14545     addCard : function (data)
14546     {
14547         // hidden input element?
14548         // if the file is not an image...
14549         //then we need to use something other that and header_image
14550         var t = this;
14551         //   remove.....
14552         var footer = [
14553             {
14554                 xns : Roo.bootstrap,
14555                 xtype : 'CardFooter',
14556                  items: [
14557                     {
14558                         xns : Roo.bootstrap,
14559                         xtype : 'Element',
14560                         cls : 'd-flex',
14561                         items : [
14562                             
14563                             {
14564                                 xns : Roo.bootstrap,
14565                                 xtype : 'Button',
14566                                 html : String.format("<small>{0}</small>", data.title),
14567                                 cls : 'col-10 text-left',
14568                                 size: 'sm',
14569                                 weight: 'link',
14570                                 fa : 'download',
14571                                 listeners : {
14572                                     click : function() {
14573                                      
14574                                         t.fireEvent( "download", t, data );
14575                                     }
14576                                 }
14577                             },
14578                           
14579                             {
14580                                 xns : Roo.bootstrap,
14581                                 xtype : 'Button',
14582                                 style: 'max-height: 28px; ',
14583                                 size : 'sm',
14584                                 weight: 'danger',
14585                                 cls : 'col-2',
14586                                 fa : 'times',
14587                                 listeners : {
14588                                     click : function() {
14589                                         t.removeCard(data.id)
14590                                     }
14591                                 }
14592                             }
14593                         ]
14594                     }
14595                     
14596                 ] 
14597             }
14598             
14599         ];
14600         
14601         var cn = this.addxtype(
14602             {
14603                  
14604                 xns : Roo.bootstrap,
14605                 xtype : 'Card',
14606                 closeable : true,
14607                 header : !data.mimetype.match(/image/) && !data.preview ? "Document": false,
14608                 header_image : data.mimetype.match(/image/) ? data.src  : data.preview,
14609                 header_image_fit_square: true, // fixme  - we probably need to use the 'Img' element to do stuff like this.
14610                 data : data,
14611                 html : false,
14612                  
14613                 items : footer,
14614                 initEvents : function() {
14615                     Roo.bootstrap.Card.prototype.initEvents.call(this);
14616                     var card = this;
14617                     this.imgEl = this.el.select('.card-img-top').first();
14618                     if (this.imgEl) {
14619                         this.imgEl.on('click', function() { t.fireEvent( "preview", t, data ); }, this);
14620                         this.imgEl.set({ 'pointer' : 'cursor' });
14621                                   
14622                     }
14623                     this.getCardFooter().addClass('p-1');
14624                     
14625                   
14626                 }
14627                 
14628             }
14629         );
14630         // dont' really need ot update items.
14631         // this.items.push(cn);
14632         this.fileCollection.add(cn);
14633         
14634         if (!data.srcfile) {
14635             this.updateInput();
14636             return;
14637         }
14638             
14639         var _t = this;
14640         var reader = new FileReader();
14641         reader.addEventListener("load", function() {  
14642             data.srcdata =  reader.result;
14643             _t.updateInput();
14644         });
14645         reader.readAsDataURL(data.srcfile);
14646         
14647         
14648         
14649     },
14650     removeCard : function(id)
14651     {
14652         
14653         var card  = this.fileCollection.get(id);
14654         card.data.is_deleted = 1;
14655         card.data.src = ''; /// delete the source - so it reduces size of not uploaded images etc.
14656         //this.fileCollection.remove(card);
14657         //this.items = this.items.filter(function(e) { return e != card });
14658         // dont' really need ot update items.
14659         card.el.dom.parentNode.removeChild(card.el.dom);
14660         this.updateInput();
14661
14662         
14663     },
14664     reset: function()
14665     {
14666         this.fileCollection.each(function(card) {
14667             if (card.el.dom && card.el.dom.parentNode) {
14668                 card.el.dom.parentNode.removeChild(card.el.dom);
14669             }
14670         });
14671         this.fileCollection.clear();
14672         this.updateInput();
14673     },
14674     
14675     updateInput : function()
14676     {
14677          var data = [];
14678         this.fileCollection.each(function(e) {
14679             data.push(e.data);
14680             
14681         });
14682         this.inputEl().dom.value = JSON.stringify(data);
14683         
14684         
14685         
14686     }
14687     
14688     
14689 });
14690
14691
14692 Roo.bootstrap.form.CardUploader.ID = -1;/*
14693  * Based on:
14694  * Ext JS Library 1.1.1
14695  * Copyright(c) 2006-2007, Ext JS, LLC.
14696  *
14697  * Originally Released Under LGPL - original licence link has changed is not relivant.
14698  *
14699  * Fork - LGPL
14700  * <script type="text/javascript">
14701  */
14702
14703
14704 /**
14705  * @class Roo.data.SortTypes
14706  * @static
14707  * Defines the default sorting (casting?) comparison functions used when sorting data.
14708  */
14709 Roo.data.SortTypes = {
14710     /**
14711      * Default sort that does nothing
14712      * @param {Mixed} s The value being converted
14713      * @return {Mixed} The comparison value
14714      */
14715     none : function(s){
14716         return s;
14717     },
14718     
14719     /**
14720      * The regular expression used to strip tags
14721      * @type {RegExp}
14722      * @property
14723      */
14724     stripTagsRE : /<\/?[^>]+>/gi,
14725     
14726     /**
14727      * Strips all HTML tags to sort on text only
14728      * @param {Mixed} s The value being converted
14729      * @return {String} The comparison value
14730      */
14731     asText : function(s){
14732         return String(s).replace(this.stripTagsRE, "");
14733     },
14734     
14735     /**
14736      * Strips all HTML tags to sort on text only - Case insensitive
14737      * @param {Mixed} s The value being converted
14738      * @return {String} The comparison value
14739      */
14740     asUCText : function(s){
14741         return String(s).toUpperCase().replace(this.stripTagsRE, "");
14742     },
14743     
14744     /**
14745      * Case insensitive string
14746      * @param {Mixed} s The value being converted
14747      * @return {String} The comparison value
14748      */
14749     asUCString : function(s) {
14750         return String(s).toUpperCase();
14751     },
14752     
14753     /**
14754      * Date sorting
14755      * @param {Mixed} s The value being converted
14756      * @return {Number} The comparison value
14757      */
14758     asDate : function(s) {
14759         if(!s){
14760             return 0;
14761         }
14762         if(s instanceof Date){
14763             return s.getTime();
14764         }
14765         return Date.parse(String(s));
14766     },
14767     
14768     /**
14769      * Float sorting
14770      * @param {Mixed} s The value being converted
14771      * @return {Float} The comparison value
14772      */
14773     asFloat : function(s) {
14774         var val = parseFloat(String(s).replace(/,/g, ""));
14775         if(isNaN(val)) {
14776             val = 0;
14777         }
14778         return val;
14779     },
14780     
14781     /**
14782      * Integer sorting
14783      * @param {Mixed} s The value being converted
14784      * @return {Number} The comparison value
14785      */
14786     asInt : function(s) {
14787         var val = parseInt(String(s).replace(/,/g, ""));
14788         if(isNaN(val)) {
14789             val = 0;
14790         }
14791         return val;
14792     }
14793 };/*
14794  * Based on:
14795  * Ext JS Library 1.1.1
14796  * Copyright(c) 2006-2007, Ext JS, LLC.
14797  *
14798  * Originally Released Under LGPL - original licence link has changed is not relivant.
14799  *
14800  * Fork - LGPL
14801  * <script type="text/javascript">
14802  */
14803
14804 /**
14805 * @class Roo.data.Record
14806  * Instances of this class encapsulate both record <em>definition</em> information, and record
14807  * <em>value</em> information for use in {@link Roo.data.Store} objects, or any code which needs
14808  * to access Records cached in an {@link Roo.data.Store} object.<br>
14809  * <p>
14810  * Constructors for this class are generated by passing an Array of field definition objects to {@link #create}.
14811  * Instances are usually only created by {@link Roo.data.Reader} implementations when processing unformatted data
14812  * objects.<br>
14813  * <p>
14814  * Record objects generated by this constructor inherit all the methods of Roo.data.Record listed below.
14815  * @constructor
14816  * This constructor should not be used to create Record objects. Instead, use the constructor generated by
14817  * {@link #create}. The parameters are the same.
14818  * @param {Array} data An associative Array of data values keyed by the field name.
14819  * @param {Object} id (Optional) The id of the record. This id should be unique, and is used by the
14820  * {@link Roo.data.Store} object which owns the Record to index its collection of Records. If
14821  * not specified an integer id is generated.
14822  */
14823 Roo.data.Record = function(data, id){
14824     this.id = (id || id === 0) ? id : ++Roo.data.Record.AUTO_ID;
14825     this.data = data;
14826 };
14827
14828 /**
14829  * Generate a constructor for a specific record layout.
14830  * @param {Array} o An Array of field definition objects which specify field names, and optionally,
14831  * data types, and a mapping for an {@link Roo.data.Reader} to extract the field's value from a data object.
14832  * Each field definition object may contain the following properties: <ul>
14833  * <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,
14834  * for example the <em>dataIndex</em> property in column definition objects passed to {@link Roo.grid.ColumnModel}</p></li>
14835  * <li><b>mapping</b> : String<p style="margin-left:1em">(Optional) A path specification for use by the {@link Roo.data.Reader} implementation
14836  * that is creating the Record to access the data value from the data object. If an {@link Roo.data.JsonReader}
14837  * is being used, then this is a string containing the javascript expression to reference the data relative to 
14838  * the record item's root. If an {@link Roo.data.XmlReader} is being used, this is an {@link Roo.DomQuery} path
14839  * to the data item relative to the record element. If the mapping expression is the same as the field name,
14840  * this may be omitted.</p></li>
14841  * <li><b>type</b> : String<p style="margin-left:1em">(Optional) The data type for conversion to displayable value. Possible values are
14842  * <ul><li>auto (Default, implies no conversion)</li>
14843  * <li>string</li>
14844  * <li>int</li>
14845  * <li>float</li>
14846  * <li>boolean</li>
14847  * <li>date</li></ul></p></li>
14848  * <li><b>sortType</b> : Mixed<p style="margin-left:1em">(Optional) A member of {@link Roo.data.SortTypes}.</p></li>
14849  * <li><b>sortDir</b> : String<p style="margin-left:1em">(Optional) Initial direction to sort. "ASC" or "DESC"</p></li>
14850  * <li><b>convert</b> : Function<p style="margin-left:1em">(Optional) A function which converts the value provided
14851  * by the Reader into an object that will be stored in the Record. It is passed the
14852  * following parameters:<ul>
14853  * <li><b>v</b> : Mixed<p style="margin-left:1em">The data value as read by the Reader.</p></li>
14854  * </ul></p></li>
14855  * <li><b>dateFormat</b> : String<p style="margin-left:1em">(Optional) A format String for the Date.parseDate function.</p></li>
14856  * </ul>
14857  * <br>usage:<br><pre><code>
14858 var TopicRecord = Roo.data.Record.create(
14859     {name: 'title', mapping: 'topic_title'},
14860     {name: 'author', mapping: 'username'},
14861     {name: 'totalPosts', mapping: 'topic_replies', type: 'int'},
14862     {name: 'lastPost', mapping: 'post_time', type: 'date'},
14863     {name: 'lastPoster', mapping: 'user2'},
14864     {name: 'excerpt', mapping: 'post_text'}
14865 );
14866
14867 var myNewRecord = new TopicRecord({
14868     title: 'Do my job please',
14869     author: 'noobie',
14870     totalPosts: 1,
14871     lastPost: new Date(),
14872     lastPoster: 'Animal',
14873     excerpt: 'No way dude!'
14874 });
14875 myStore.add(myNewRecord);
14876 </code></pre>
14877  * @method create
14878  * @static
14879  */
14880 Roo.data.Record.create = function(o){
14881     var f = function(){
14882         f.superclass.constructor.apply(this, arguments);
14883     };
14884     Roo.extend(f, Roo.data.Record);
14885     var p = f.prototype;
14886     p.fields = new Roo.util.MixedCollection(false, function(field){
14887         return field.name;
14888     });
14889     for(var i = 0, len = o.length; i < len; i++){
14890         p.fields.add(new Roo.data.Field(o[i]));
14891     }
14892     f.getField = function(name){
14893         return p.fields.get(name);  
14894     };
14895     return f;
14896 };
14897
14898 Roo.data.Record.AUTO_ID = 1000;
14899 Roo.data.Record.EDIT = 'edit';
14900 Roo.data.Record.REJECT = 'reject';
14901 Roo.data.Record.COMMIT = 'commit';
14902
14903 Roo.data.Record.prototype = {
14904     /**
14905      * Readonly flag - true if this record has been modified.
14906      * @type Boolean
14907      */
14908     dirty : false,
14909     editing : false,
14910     error: null,
14911     modified: null,
14912
14913     // private
14914     join : function(store){
14915         this.store = store;
14916     },
14917
14918     /**
14919      * Set the named field to the specified value.
14920      * @param {String} name The name of the field to set.
14921      * @param {Object} value The value to set the field to.
14922      */
14923     set : function(name, value){
14924         if(this.data[name] == value){
14925             return;
14926         }
14927         this.dirty = true;
14928         if(!this.modified){
14929             this.modified = {};
14930         }
14931         if(typeof this.modified[name] == 'undefined'){
14932             this.modified[name] = this.data[name];
14933         }
14934         this.data[name] = value;
14935         if(!this.editing && this.store){
14936             this.store.afterEdit(this);
14937         }       
14938     },
14939
14940     /**
14941      * Get the value of the named field.
14942      * @param {String} name The name of the field to get the value of.
14943      * @return {Object} The value of the field.
14944      */
14945     get : function(name){
14946         return this.data[name]; 
14947     },
14948
14949     // private
14950     beginEdit : function(){
14951         this.editing = true;
14952         this.modified = {}; 
14953     },
14954
14955     // private
14956     cancelEdit : function(){
14957         this.editing = false;
14958         delete this.modified;
14959     },
14960
14961     // private
14962     endEdit : function(){
14963         this.editing = false;
14964         if(this.dirty && this.store){
14965             this.store.afterEdit(this);
14966         }
14967     },
14968
14969     /**
14970      * Usually called by the {@link Roo.data.Store} which owns the Record.
14971      * Rejects all changes made to the Record since either creation, or the last commit operation.
14972      * Modified fields are reverted to their original values.
14973      * <p>
14974      * Developers should subscribe to the {@link Roo.data.Store#update} event to have their code notified
14975      * of reject operations.
14976      */
14977     reject : function(){
14978         var m = this.modified;
14979         for(var n in m){
14980             if(typeof m[n] != "function"){
14981                 this.data[n] = m[n];
14982             }
14983         }
14984         this.dirty = false;
14985         delete this.modified;
14986         this.editing = false;
14987         if(this.store){
14988             this.store.afterReject(this);
14989         }
14990     },
14991
14992     /**
14993      * Usually called by the {@link Roo.data.Store} which owns the Record.
14994      * Commits all changes made to the Record since either creation, or the last commit operation.
14995      * <p>
14996      * Developers should subscribe to the {@link Roo.data.Store#update} event to have their code notified
14997      * of commit operations.
14998      */
14999     commit : function(){
15000         this.dirty = false;
15001         delete this.modified;
15002         this.editing = false;
15003         if(this.store){
15004             this.store.afterCommit(this);
15005         }
15006     },
15007
15008     // private
15009     hasError : function(){
15010         return this.error != null;
15011     },
15012
15013     // private
15014     clearError : function(){
15015         this.error = null;
15016     },
15017
15018     /**
15019      * Creates a copy of this record.
15020      * @param {String} id (optional) A new record id if you don't want to use this record's id
15021      * @return {Record}
15022      */
15023     copy : function(newId) {
15024         return new this.constructor(Roo.apply({}, this.data), newId || this.id);
15025     }
15026 };/*
15027  * Based on:
15028  * Ext JS Library 1.1.1
15029  * Copyright(c) 2006-2007, Ext JS, LLC.
15030  *
15031  * Originally Released Under LGPL - original licence link has changed is not relivant.
15032  *
15033  * Fork - LGPL
15034  * <script type="text/javascript">
15035  */
15036
15037
15038
15039 /**
15040  * @class Roo.data.Store
15041  * @extends Roo.util.Observable
15042  * The Store class encapsulates a client side cache of {@link Roo.data.Record} objects which provide input data
15043  * for widgets such as the Roo.grid.Grid, or the Roo.form.ComboBox.<br>
15044  * <p>
15045  * 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
15046  * has no knowledge of the format of the data returned by the Proxy.<br>
15047  * <p>
15048  * A Store object uses its configured implementation of {@link Roo.data.DataReader} to create {@link Roo.data.Record}
15049  * instances from the data object. These records are cached and made available through accessor functions.
15050  * @constructor
15051  * Creates a new Store.
15052  * @param {Object} config A config object containing the objects needed for the Store to access data,
15053  * and read the data into Records.
15054  */
15055 Roo.data.Store = function(config){
15056     this.data = new Roo.util.MixedCollection(false);
15057     this.data.getKey = function(o){
15058         return o.id;
15059     };
15060     this.baseParams = {};
15061     // private
15062     this.paramNames = {
15063         "start" : "start",
15064         "limit" : "limit",
15065         "sort" : "sort",
15066         "dir" : "dir",
15067         "multisort" : "_multisort"
15068     };
15069
15070     if(config && config.data){
15071         this.inlineData = config.data;
15072         delete config.data;
15073     }
15074
15075     Roo.apply(this, config);
15076     
15077     if(this.reader){ // reader passed
15078         this.reader = Roo.factory(this.reader, Roo.data);
15079         this.reader.xmodule = this.xmodule || false;
15080         if(!this.recordType){
15081             this.recordType = this.reader.recordType;
15082         }
15083         if(this.reader.onMetaChange){
15084             this.reader.onMetaChange = this.onMetaChange.createDelegate(this);
15085         }
15086     }
15087
15088     if(this.recordType){
15089         this.fields = this.recordType.prototype.fields;
15090     }
15091     this.modified = [];
15092
15093     this.addEvents({
15094         /**
15095          * @event datachanged
15096          * Fires when the data cache has changed, and a widget which is using this Store
15097          * as a Record cache should refresh its view.
15098          * @param {Store} this
15099          */
15100         datachanged : true,
15101         /**
15102          * @event metachange
15103          * Fires when this store's reader provides new metadata (fields). This is currently only support for JsonReaders.
15104          * @param {Store} this
15105          * @param {Object} meta The JSON metadata
15106          */
15107         metachange : true,
15108         /**
15109          * @event add
15110          * Fires when Records have been added to the Store
15111          * @param {Store} this
15112          * @param {Roo.data.Record[]} records The array of Records added
15113          * @param {Number} index The index at which the record(s) were added
15114          */
15115         add : true,
15116         /**
15117          * @event remove
15118          * Fires when a Record has been removed from the Store
15119          * @param {Store} this
15120          * @param {Roo.data.Record} record The Record that was removed
15121          * @param {Number} index The index at which the record was removed
15122          */
15123         remove : true,
15124         /**
15125          * @event update
15126          * Fires when a Record has been updated
15127          * @param {Store} this
15128          * @param {Roo.data.Record} record The Record that was updated
15129          * @param {String} operation The update operation being performed.  Value may be one of:
15130          * <pre><code>
15131  Roo.data.Record.EDIT
15132  Roo.data.Record.REJECT
15133  Roo.data.Record.COMMIT
15134          * </code></pre>
15135          */
15136         update : true,
15137         /**
15138          * @event clear
15139          * Fires when the data cache has been cleared.
15140          * @param {Store} this
15141          */
15142         clear : true,
15143         /**
15144          * @event beforeload
15145          * Fires before a request is made for a new data object.  If the beforeload handler returns false
15146          * the load action will be canceled.
15147          * @param {Store} this
15148          * @param {Object} options The loading options that were specified (see {@link #load} for details)
15149          */
15150         beforeload : true,
15151         /**
15152          * @event beforeloadadd
15153          * Fires after a new set of Records has been loaded.
15154          * @param {Store} this
15155          * @param {Roo.data.Record[]} records The Records that were loaded
15156          * @param {Object} options The loading options that were specified (see {@link #load} for details)
15157          */
15158         beforeloadadd : true,
15159         /**
15160          * @event load
15161          * Fires after a new set of Records has been loaded, before they are added to the store.
15162          * @param {Store} this
15163          * @param {Roo.data.Record[]} records The Records that were loaded
15164          * @param {Object} options The loading options that were specified (see {@link #load} for details)
15165          * @params {Object} return from reader
15166          */
15167         load : true,
15168         /**
15169          * @event loadexception
15170          * Fires if an exception occurs in the Proxy during loading.
15171          * Called with the signature of the Proxy's "loadexception" event.
15172          * If you return Json { data: [] , success: false, .... } then this will be thrown with the following args
15173          * 
15174          * @param {Proxy} 
15175          * @param {Object} return from JsonData.reader() - success, totalRecords, records
15176          * @param {Object} load options 
15177          * @param {Object} jsonData from your request (normally this contains the Exception)
15178          */
15179         loadexception : true
15180     });
15181     
15182     if(this.proxy){
15183         this.proxy = Roo.factory(this.proxy, Roo.data);
15184         this.proxy.xmodule = this.xmodule || false;
15185         this.relayEvents(this.proxy,  ["loadexception"]);
15186     }
15187     this.sortToggle = {};
15188     this.sortOrder = []; // array of order of sorting - updated by grid if multisort is enabled.
15189
15190     Roo.data.Store.superclass.constructor.call(this);
15191
15192     if(this.inlineData){
15193         this.loadData(this.inlineData);
15194         delete this.inlineData;
15195     }
15196 };
15197
15198 Roo.extend(Roo.data.Store, Roo.util.Observable, {
15199      /**
15200     * @cfg {boolean} isLocal   flag if data is locally available (and can be always looked up
15201     * without a remote query - used by combo/forms at present.
15202     */
15203     
15204     /**
15205     * @cfg {Roo.data.DataProxy} proxy [required] The Proxy object which provides access to a data object.
15206     */
15207     /**
15208     * @cfg {Array} data Inline data to be loaded when the store is initialized.
15209     */
15210     /**
15211     * @cfg {Roo.data.DataReader} reader [required]  The Reader object which processes the data object and returns
15212     * an Array of Roo.data.record objects which are cached keyed by their <em>id</em> property.
15213     */
15214     /**
15215     * @cfg {Object} baseParams An object containing properties which are to be sent as parameters
15216     * on any HTTP request
15217     */
15218     /**
15219     * @cfg {Object} sortInfo A config object in the format: {field: "fieldName", direction: "ASC|DESC"}
15220     */
15221     /**
15222     * @cfg {Boolean} multiSort enable multi column sorting (sort is based on the order of columns, remote only at present)
15223     */
15224     multiSort: false,
15225     /**
15226     * @cfg {boolean} remoteSort True if sorting is to be handled by requesting the Proxy to provide a refreshed
15227     * version of the data object in sorted order, as opposed to sorting the Record cache in place (defaults to false).
15228     */
15229     remoteSort : false,
15230
15231     /**
15232     * @cfg {boolean} pruneModifiedRecords True to clear all modified record information each time the store is
15233      * loaded or when a record is removed. (defaults to false).
15234     */
15235     pruneModifiedRecords : false,
15236
15237     // private
15238     lastOptions : null,
15239
15240     /**
15241      * Add Records to the Store and fires the add event.
15242      * @param {Roo.data.Record[]} records An Array of Roo.data.Record objects to add to the cache.
15243      */
15244     add : function(records){
15245         records = [].concat(records);
15246         for(var i = 0, len = records.length; i < len; i++){
15247             records[i].join(this);
15248         }
15249         var index = this.data.length;
15250         this.data.addAll(records);
15251         this.fireEvent("add", this, records, index);
15252     },
15253
15254     /**
15255      * Remove a Record from the Store and fires the remove event.
15256      * @param {Ext.data.Record} record The Roo.data.Record object to remove from the cache.
15257      */
15258     remove : function(record){
15259         var index = this.data.indexOf(record);
15260         this.data.removeAt(index);
15261  
15262         if(this.pruneModifiedRecords){
15263             this.modified.remove(record);
15264         }
15265         this.fireEvent("remove", this, record, index);
15266     },
15267
15268     /**
15269      * Remove all Records from the Store and fires the clear event.
15270      */
15271     removeAll : function(){
15272         this.data.clear();
15273         if(this.pruneModifiedRecords){
15274             this.modified = [];
15275         }
15276         this.fireEvent("clear", this);
15277     },
15278
15279     /**
15280      * Inserts Records to the Store at the given index and fires the add event.
15281      * @param {Number} index The start index at which to insert the passed Records.
15282      * @param {Roo.data.Record[]} records An Array of Roo.data.Record objects to add to the cache.
15283      */
15284     insert : function(index, records){
15285         records = [].concat(records);
15286         for(var i = 0, len = records.length; i < len; i++){
15287             this.data.insert(index, records[i]);
15288             records[i].join(this);
15289         }
15290         this.fireEvent("add", this, records, index);
15291     },
15292
15293     /**
15294      * Get the index within the cache of the passed Record.
15295      * @param {Roo.data.Record} record The Roo.data.Record object to to find.
15296      * @return {Number} The index of the passed Record. Returns -1 if not found.
15297      */
15298     indexOf : function(record){
15299         return this.data.indexOf(record);
15300     },
15301
15302     /**
15303      * Get the index within the cache of the Record with the passed id.
15304      * @param {String} id The id of the Record to find.
15305      * @return {Number} The index of the Record. Returns -1 if not found.
15306      */
15307     indexOfId : function(id){
15308         return this.data.indexOfKey(id);
15309     },
15310
15311     /**
15312      * Get the Record with the specified id.
15313      * @param {String} id The id of the Record to find.
15314      * @return {Roo.data.Record} The Record with the passed id. Returns undefined if not found.
15315      */
15316     getById : function(id){
15317         return this.data.key(id);
15318     },
15319
15320     /**
15321      * Get the Record at the specified index.
15322      * @param {Number} index The index of the Record to find.
15323      * @return {Roo.data.Record} The Record at the passed index. Returns undefined if not found.
15324      */
15325     getAt : function(index){
15326         return this.data.itemAt(index);
15327     },
15328
15329     /**
15330      * Returns a range of Records between specified indices.
15331      * @param {Number} startIndex (optional) The starting index (defaults to 0)
15332      * @param {Number} endIndex (optional) The ending index (defaults to the last Record in the Store)
15333      * @return {Roo.data.Record[]} An array of Records
15334      */
15335     getRange : function(start, end){
15336         return this.data.getRange(start, end);
15337     },
15338
15339     // private
15340     storeOptions : function(o){
15341         o = Roo.apply({}, o);
15342         delete o.callback;
15343         delete o.scope;
15344         this.lastOptions = o;
15345     },
15346
15347     /**
15348      * Loads the Record cache from the configured Proxy using the configured Reader.
15349      * <p>
15350      * If using remote paging, then the first load call must specify the <em>start</em>
15351      * and <em>limit</em> properties in the options.params property to establish the initial
15352      * position within the dataset, and the number of Records to cache on each read from the Proxy.
15353      * <p>
15354      * <strong>It is important to note that for remote data sources, loading is asynchronous,
15355      * and this call will return before the new data has been loaded. Perform any post-processing
15356      * in a callback function, or in a "load" event handler.</strong>
15357      * <p>
15358      * @param {Object} options An object containing properties which control loading options:<ul>
15359      * <li>params {Object} An object containing properties to pass as HTTP parameters to a remote data source.</li>
15360      * <li>params.data {Object} if you are using a MemoryProxy / JsonReader, use this as the data to load stuff..
15361      * <pre>
15362                 {
15363                     data : data,  // array of key=>value data like JsonReader
15364                     total : data.length,
15365                     success : true
15366                     
15367                 }
15368         </pre>
15369             }.</li>
15370      * <li>callback {Function} A function to be called after the Records have been loaded. The callback is
15371      * passed the following arguments:<ul>
15372      * <li>r : Roo.data.Record[]</li>
15373      * <li>options: Options object from the load call</li>
15374      * <li>success: Boolean success indicator</li></ul></li>
15375      * <li>scope {Object} Scope with which to call the callback (defaults to the Store object)</li>
15376      * <li>add {Boolean} indicator to append loaded records rather than replace the current cache.</li>
15377      * </ul>
15378      */
15379     load : function(options){
15380         options = options || {};
15381         if(this.fireEvent("beforeload", this, options) !== false){
15382             this.storeOptions(options);
15383             var p = Roo.apply(options.params || {}, this.baseParams);
15384             // if meta was not loaded from remote source.. try requesting it.
15385             if (!this.reader.metaFromRemote) {
15386                 p._requestMeta = 1;
15387             }
15388             if(this.sortInfo && this.remoteSort){
15389                 var pn = this.paramNames;
15390                 p[pn["sort"]] = this.sortInfo.field;
15391                 p[pn["dir"]] = this.sortInfo.direction;
15392             }
15393             if (this.multiSort) {
15394                 var pn = this.paramNames;
15395                 p[pn["multisort"]] = Roo.encode( { sort : this.sortToggle, order: this.sortOrder });
15396             }
15397             
15398             this.proxy.load(p, this.reader, this.loadRecords, this, options);
15399         }
15400     },
15401
15402     /**
15403      * Reloads the Record cache from the configured Proxy using the configured Reader and
15404      * the options from the last load operation performed.
15405      * @param {Object} options (optional) An object containing properties which may override the options
15406      * used in the last load operation. See {@link #load} for details (defaults to null, in which case
15407      * the most recently used options are reused).
15408      */
15409     reload : function(options){
15410         this.load(Roo.applyIf(options||{}, this.lastOptions));
15411     },
15412
15413     // private
15414     // Called as a callback by the Reader during a load operation.
15415     loadRecords : function(o, options, success){
15416          
15417         if(!o){
15418             if(success !== false){
15419                 this.fireEvent("load", this, [], options, o);
15420             }
15421             if(options.callback){
15422                 options.callback.call(options.scope || this, [], options, false);
15423             }
15424             return;
15425         }
15426         // if data returned failure - throw an exception.
15427         if (o.success === false) {
15428             // show a message if no listener is registered.
15429             if (!this.hasListener('loadexception') && typeof(o.raw.errorMsg) != 'undefined') {
15430                     Roo.MessageBox.alert("Error loading",o.raw.errorMsg);
15431             }
15432             // loadmask wil be hooked into this..
15433             this.fireEvent("loadexception", this, o, options, o.raw.errorMsg);
15434             return;
15435         }
15436         var r = o.records, t = o.totalRecords || r.length;
15437         
15438         this.fireEvent("beforeloadadd", this, r, options, o);
15439         
15440         if(!options || options.add !== true){
15441             if(this.pruneModifiedRecords){
15442                 this.modified = [];
15443             }
15444             for(var i = 0, len = r.length; i < len; i++){
15445                 r[i].join(this);
15446             }
15447             if(this.snapshot){
15448                 this.data = this.snapshot;
15449                 delete this.snapshot;
15450             }
15451             this.data.clear();
15452             this.data.addAll(r);
15453             this.totalLength = t;
15454             this.applySort();
15455             this.fireEvent("datachanged", this);
15456         }else{
15457             this.totalLength = Math.max(t, this.data.length+r.length);
15458             this.add(r);
15459         }
15460         
15461         if(this.parent && !Roo.isIOS && !this.useNativeIOS && this.parent.emptyTitle.length) {
15462                 
15463             var e = new Roo.data.Record({});
15464
15465             e.set(this.parent.displayField, this.parent.emptyTitle);
15466             e.set(this.parent.valueField, '');
15467
15468             this.insert(0, e);
15469         }
15470             
15471         this.fireEvent("load", this, r, options, o);
15472         if(options.callback){
15473             options.callback.call(options.scope || this, r, options, true);
15474         }
15475     },
15476
15477
15478     /**
15479      * Loads data from a passed data block. A Reader which understands the format of the data
15480      * must have been configured in the constructor.
15481      * @param {Object} data The data block from which to read the Records.  The format of the data expected
15482      * is dependent on the type of Reader that is configured and should correspond to that Reader's readRecords parameter.
15483      * @param {Boolean} append (Optional) True to append the new Records rather than replace the existing cache.
15484      */
15485     loadData : function(o, append){
15486         var r = this.reader.readRecords(o);
15487         this.loadRecords(r, {add: append}, true);
15488     },
15489     
15490      /**
15491      * using 'cn' the nested child reader read the child array into it's child stores.
15492      * @param {Object} rec The record with a 'children array
15493      */
15494     loadDataFromChildren : function(rec)
15495     {
15496         this.loadData(this.reader.toLoadData(rec));
15497     },
15498     
15499
15500     /**
15501      * Gets the number of cached records.
15502      * <p>
15503      * <em>If using paging, this may not be the total size of the dataset. If the data object
15504      * used by the Reader contains the dataset size, then the getTotalCount() function returns
15505      * the data set size</em>
15506      */
15507     getCount : function(){
15508         return this.data.length || 0;
15509     },
15510
15511     /**
15512      * Gets the total number of records in the dataset as returned by the server.
15513      * <p>
15514      * <em>If using paging, for this to be accurate, the data object used by the Reader must contain
15515      * the dataset size</em>
15516      */
15517     getTotalCount : function(){
15518         return this.totalLength || 0;
15519     },
15520
15521     /**
15522      * Returns the sort state of the Store as an object with two properties:
15523      * <pre><code>
15524  field {String} The name of the field by which the Records are sorted
15525  direction {String} The sort order, "ASC" or "DESC"
15526      * </code></pre>
15527      */
15528     getSortState : function(){
15529         return this.sortInfo;
15530     },
15531
15532     // private
15533     applySort : function(){
15534         if(this.sortInfo && !this.remoteSort){
15535             var s = this.sortInfo, f = s.field;
15536             var st = this.fields.get(f).sortType;
15537             var fn = function(r1, r2){
15538                 var v1 = st(r1.data[f]), v2 = st(r2.data[f]);
15539                 return v1 > v2 ? 1 : (v1 < v2 ? -1 : 0);
15540             };
15541             this.data.sort(s.direction, fn);
15542             if(this.snapshot && this.snapshot != this.data){
15543                 this.snapshot.sort(s.direction, fn);
15544             }
15545         }
15546     },
15547
15548     /**
15549      * Sets the default sort column and order to be used by the next load operation.
15550      * @param {String} fieldName The name of the field to sort by.
15551      * @param {String} dir (optional) The sort order, "ASC" or "DESC" (defaults to "ASC")
15552      */
15553     setDefaultSort : function(field, dir){
15554         this.sortInfo = {field: field, direction: dir ? dir.toUpperCase() : "ASC"};
15555     },
15556
15557     /**
15558      * Sort the Records.
15559      * If remote sorting is used, the sort is performed on the server, and the cache is
15560      * reloaded. If local sorting is used, the cache is sorted internally.
15561      * @param {String} fieldName The name of the field to sort by.
15562      * @param {String} dir (optional) The sort order, "ASC" or "DESC" (defaults to "ASC")
15563      */
15564     sort : function(fieldName, dir){
15565         var f = this.fields.get(fieldName);
15566         if(!dir){
15567             this.sortToggle[f.name] = this.sortToggle[f.name] || f.sortDir;
15568             
15569             if(this.multiSort || (this.sortInfo && this.sortInfo.field == f.name) ){ // toggle sort dir
15570                 dir = (this.sortToggle[f.name] || "ASC").toggle("ASC", "DESC");
15571             }else{
15572                 dir = f.sortDir;
15573             }
15574         }
15575         this.sortToggle[f.name] = dir;
15576         this.sortInfo = {field: f.name, direction: dir};
15577         if(!this.remoteSort){
15578             this.applySort();
15579             this.fireEvent("datachanged", this);
15580         }else{
15581             this.load(this.lastOptions);
15582         }
15583     },
15584
15585     /**
15586      * Calls the specified function for each of the Records in the cache.
15587      * @param {Function} fn The function to call. The Record is passed as the first parameter.
15588      * Returning <em>false</em> aborts and exits the iteration.
15589      * @param {Object} scope (optional) The scope in which to call the function (defaults to the Record).
15590      */
15591     each : function(fn, scope){
15592         this.data.each(fn, scope);
15593     },
15594
15595     /**
15596      * Gets all records modified since the last commit.  Modified records are persisted across load operations
15597      * (e.g., during paging).
15598      * @return {Roo.data.Record[]} An array of Records containing outstanding modifications.
15599      */
15600     getModifiedRecords : function(){
15601         return this.modified;
15602     },
15603
15604     // private
15605     createFilterFn : function(property, value, anyMatch){
15606         if(!value.exec){ // not a regex
15607             value = String(value);
15608             if(value.length == 0){
15609                 return false;
15610             }
15611             value = new RegExp((anyMatch === true ? '' : '^') + Roo.escapeRe(value), "i");
15612         }
15613         return function(r){
15614             return value.test(r.data[property]);
15615         };
15616     },
15617
15618     /**
15619      * Sums the value of <i>property</i> for each record between start and end and returns the result.
15620      * @param {String} property A field on your records
15621      * @param {Number} start The record index to start at (defaults to 0)
15622      * @param {Number} end The last record index to include (defaults to length - 1)
15623      * @return {Number} The sum
15624      */
15625     sum : function(property, start, end){
15626         var rs = this.data.items, v = 0;
15627         start = start || 0;
15628         end = (end || end === 0) ? end : rs.length-1;
15629
15630         for(var i = start; i <= end; i++){
15631             v += (rs[i].data[property] || 0);
15632         }
15633         return v;
15634     },
15635
15636     /**
15637      * Filter the records by a specified property.
15638      * @param {String} field A field on your records
15639      * @param {String/RegExp} value Either a string that the field
15640      * should start with or a RegExp to test against the field
15641      * @param {Boolean} anyMatch True to match any part not just the beginning
15642      */
15643     filter : function(property, value, anyMatch){
15644         var fn = this.createFilterFn(property, value, anyMatch);
15645         return fn ? this.filterBy(fn) : this.clearFilter();
15646     },
15647
15648     /**
15649      * Filter by a function. The specified function will be called with each
15650      * record in this data source. If the function returns true the record is included,
15651      * otherwise it is filtered.
15652      * @param {Function} fn The function to be called, it will receive 2 args (record, id)
15653      * @param {Object} scope (optional) The scope of the function (defaults to this)
15654      */
15655     filterBy : function(fn, scope){
15656         this.snapshot = this.snapshot || this.data;
15657         this.data = this.queryBy(fn, scope||this);
15658         this.fireEvent("datachanged", this);
15659     },
15660
15661     /**
15662      * Query the records by a specified property.
15663      * @param {String} field A field on your records
15664      * @param {String/RegExp} value Either a string that the field
15665      * should start with or a RegExp to test against the field
15666      * @param {Boolean} anyMatch True to match any part not just the beginning
15667      * @return {MixedCollection} Returns an Roo.util.MixedCollection of the matched records
15668      */
15669     query : function(property, value, anyMatch){
15670         var fn = this.createFilterFn(property, value, anyMatch);
15671         return fn ? this.queryBy(fn) : this.data.clone();
15672     },
15673
15674     /**
15675      * Query by a function. The specified function will be called with each
15676      * record in this data source. If the function returns true the record is included
15677      * in the results.
15678      * @param {Function} fn The function to be called, it will receive 2 args (record, id)
15679      * @param {Object} scope (optional) The scope of the function (defaults to this)
15680       @return {MixedCollection} Returns an Roo.util.MixedCollection of the matched records
15681      **/
15682     queryBy : function(fn, scope){
15683         var data = this.snapshot || this.data;
15684         return data.filterBy(fn, scope||this);
15685     },
15686
15687     /**
15688      * Collects unique values for a particular dataIndex from this store.
15689      * @param {String} dataIndex The property to collect
15690      * @param {Boolean} allowNull (optional) Pass true to allow null, undefined or empty string values
15691      * @param {Boolean} bypassFilter (optional) Pass true to collect from all records, even ones which are filtered
15692      * @return {Array} An array of the unique values
15693      **/
15694     collect : function(dataIndex, allowNull, bypassFilter){
15695         var d = (bypassFilter === true && this.snapshot) ?
15696                 this.snapshot.items : this.data.items;
15697         var v, sv, r = [], l = {};
15698         for(var i = 0, len = d.length; i < len; i++){
15699             v = d[i].data[dataIndex];
15700             sv = String(v);
15701             if((allowNull || !Roo.isEmpty(v)) && !l[sv]){
15702                 l[sv] = true;
15703                 r[r.length] = v;
15704             }
15705         }
15706         return r;
15707     },
15708
15709     /**
15710      * Revert to a view of the Record cache with no filtering applied.
15711      * @param {Boolean} suppressEvent If true the filter is cleared silently without notifying listeners
15712      */
15713     clearFilter : function(suppressEvent){
15714         if(this.snapshot && this.snapshot != this.data){
15715             this.data = this.snapshot;
15716             delete this.snapshot;
15717             if(suppressEvent !== true){
15718                 this.fireEvent("datachanged", this);
15719             }
15720         }
15721     },
15722
15723     // private
15724     afterEdit : function(record){
15725         if(this.modified.indexOf(record) == -1){
15726             this.modified.push(record);
15727         }
15728         this.fireEvent("update", this, record, Roo.data.Record.EDIT);
15729     },
15730     
15731     // private
15732     afterReject : function(record){
15733         this.modified.remove(record);
15734         this.fireEvent("update", this, record, Roo.data.Record.REJECT);
15735     },
15736
15737     // private
15738     afterCommit : function(record){
15739         this.modified.remove(record);
15740         this.fireEvent("update", this, record, Roo.data.Record.COMMIT);
15741     },
15742
15743     /**
15744      * Commit all Records with outstanding changes. To handle updates for changes, subscribe to the
15745      * Store's "update" event, and perform updating when the third parameter is Roo.data.Record.COMMIT.
15746      */
15747     commitChanges : function(){
15748         var m = this.modified.slice(0);
15749         this.modified = [];
15750         for(var i = 0, len = m.length; i < len; i++){
15751             m[i].commit();
15752         }
15753     },
15754
15755     /**
15756      * Cancel outstanding changes on all changed records.
15757      */
15758     rejectChanges : function(){
15759         var m = this.modified.slice(0);
15760         this.modified = [];
15761         for(var i = 0, len = m.length; i < len; i++){
15762             m[i].reject();
15763         }
15764     },
15765
15766     onMetaChange : function(meta, rtype, o){
15767         this.recordType = rtype;
15768         this.fields = rtype.prototype.fields;
15769         delete this.snapshot;
15770         this.sortInfo = meta.sortInfo || this.sortInfo;
15771         this.modified = [];
15772         this.fireEvent('metachange', this, this.reader.meta);
15773     },
15774     
15775     moveIndex : function(data, type)
15776     {
15777         var index = this.indexOf(data);
15778         
15779         var newIndex = index + type;
15780         
15781         this.remove(data);
15782         
15783         this.insert(newIndex, data);
15784         
15785     }
15786 });/*
15787  * Based on:
15788  * Ext JS Library 1.1.1
15789  * Copyright(c) 2006-2007, Ext JS, LLC.
15790  *
15791  * Originally Released Under LGPL - original licence link has changed is not relivant.
15792  *
15793  * Fork - LGPL
15794  * <script type="text/javascript">
15795  */
15796
15797 /**
15798  * @class Roo.data.SimpleStore
15799  * @extends Roo.data.Store
15800  * Small helper class to make creating Stores from Array data easier.
15801  * @cfg {Number} id The array index of the record id. Leave blank to auto generate ids.
15802  * @cfg {Array} fields An array of field definition objects, or field name strings.
15803  * @cfg {Object} an existing reader (eg. copied from another store)
15804  * @cfg {Array} data The multi-dimensional array of data
15805  * @cfg {Roo.data.DataProxy} proxy [not-required]  
15806  * @cfg {Roo.data.Reader} reader  [not-required] 
15807  * @constructor
15808  * @param {Object} config
15809  */
15810 Roo.data.SimpleStore = function(config)
15811 {
15812     Roo.data.SimpleStore.superclass.constructor.call(this, {
15813         isLocal : true,
15814         reader: typeof(config.reader) != 'undefined' ? config.reader : new Roo.data.ArrayReader({
15815                 id: config.id
15816             },
15817             Roo.data.Record.create(config.fields)
15818         ),
15819         proxy : new Roo.data.MemoryProxy(config.data)
15820     });
15821     this.load();
15822 };
15823 Roo.extend(Roo.data.SimpleStore, Roo.data.Store);/*
15824  * Based on:
15825  * Ext JS Library 1.1.1
15826  * Copyright(c) 2006-2007, Ext JS, LLC.
15827  *
15828  * Originally Released Under LGPL - original licence link has changed is not relivant.
15829  *
15830  * Fork - LGPL
15831  * <script type="text/javascript">
15832  */
15833
15834 /**
15835 /**
15836  * @extends Roo.data.Store
15837  * @class Roo.data.JsonStore
15838  * Small helper class to make creating Stores for JSON data easier. <br/>
15839 <pre><code>
15840 var store = new Roo.data.JsonStore({
15841     url: 'get-images.php',
15842     root: 'images',
15843     fields: ['name', 'url', {name:'size', type: 'float'}, {name:'lastmod', type:'date'}]
15844 });
15845 </code></pre>
15846  * <b>Note: Although they are not listed, this class inherits all of the config options of Store,
15847  * JsonReader and HttpProxy (unless inline data is provided).</b>
15848  * @cfg {Array} fields An array of field definition objects, or field name strings.
15849  * @constructor
15850  * @param {Object} config
15851  */
15852 Roo.data.JsonStore = function(c){
15853     Roo.data.JsonStore.superclass.constructor.call(this, Roo.apply(c, {
15854         proxy: !c.data ? new Roo.data.HttpProxy({url: c.url}) : undefined,
15855         reader: new Roo.data.JsonReader(c, c.fields)
15856     }));
15857 };
15858 Roo.extend(Roo.data.JsonStore, Roo.data.Store);/*
15859  * Based on:
15860  * Ext JS Library 1.1.1
15861  * Copyright(c) 2006-2007, Ext JS, LLC.
15862  *
15863  * Originally Released Under LGPL - original licence link has changed is not relivant.
15864  *
15865  * Fork - LGPL
15866  * <script type="text/javascript">
15867  */
15868
15869  
15870 Roo.data.Field = function(config){
15871     if(typeof config == "string"){
15872         config = {name: config};
15873     }
15874     Roo.apply(this, config);
15875     
15876     if(!this.type){
15877         this.type = "auto";
15878     }
15879     
15880     var st = Roo.data.SortTypes;
15881     // named sortTypes are supported, here we look them up
15882     if(typeof this.sortType == "string"){
15883         this.sortType = st[this.sortType];
15884     }
15885     
15886     // set default sortType for strings and dates
15887     if(!this.sortType){
15888         switch(this.type){
15889             case "string":
15890                 this.sortType = st.asUCString;
15891                 break;
15892             case "date":
15893                 this.sortType = st.asDate;
15894                 break;
15895             default:
15896                 this.sortType = st.none;
15897         }
15898     }
15899
15900     // define once
15901     var stripRe = /[\$,%]/g;
15902
15903     // prebuilt conversion function for this field, instead of
15904     // switching every time we're reading a value
15905     if(!this.convert){
15906         var cv, dateFormat = this.dateFormat;
15907         switch(this.type){
15908             case "":
15909             case "auto":
15910             case undefined:
15911                 cv = function(v){ return v; };
15912                 break;
15913             case "string":
15914                 cv = function(v){ return (v === undefined || v === null) ? '' : String(v); };
15915                 break;
15916             case "int":
15917                 cv = function(v){
15918                     return v !== undefined && v !== null && v !== '' ?
15919                            parseInt(String(v).replace(stripRe, ""), 10) : '';
15920                     };
15921                 break;
15922             case "float":
15923                 cv = function(v){
15924                     return v !== undefined && v !== null && v !== '' ?
15925                            parseFloat(String(v).replace(stripRe, ""), 10) : ''; 
15926                     };
15927                 break;
15928             case "bool":
15929             case "boolean":
15930                 cv = function(v){ return v === true || v === "true" || v == 1; };
15931                 break;
15932             case "date":
15933                 cv = function(v){
15934                     if(!v){
15935                         return '';
15936                     }
15937                     if(v instanceof Date){
15938                         return v;
15939                     }
15940                     if(dateFormat){
15941                         if(dateFormat == "timestamp"){
15942                             return new Date(v*1000);
15943                         }
15944                         return Date.parseDate(v, dateFormat);
15945                     }
15946                     var parsed = Date.parse(v);
15947                     return parsed ? new Date(parsed) : null;
15948                 };
15949              break;
15950             
15951         }
15952         this.convert = cv;
15953     }
15954 };
15955
15956 Roo.data.Field.prototype = {
15957     dateFormat: null,
15958     defaultValue: "",
15959     mapping: null,
15960     sortType : null,
15961     sortDir : "ASC"
15962 };/*
15963  * Based on:
15964  * Ext JS Library 1.1.1
15965  * Copyright(c) 2006-2007, Ext JS, LLC.
15966  *
15967  * Originally Released Under LGPL - original licence link has changed is not relivant.
15968  *
15969  * Fork - LGPL
15970  * <script type="text/javascript">
15971  */
15972  
15973 // Base class for reading structured data from a data source.  This class is intended to be
15974 // extended (see ArrayReader, JsonReader and XmlReader) and should not be created directly.
15975
15976 /**
15977  * @class Roo.data.DataReader
15978  * @abstract
15979  * Base class for reading structured data from a data source.  This class is intended to be
15980  * extended (see {Roo.data.ArrayReader}, {Roo.data.JsonReader} and {Roo.data.XmlReader}) and should not be created directly.
15981  */
15982
15983 Roo.data.DataReader = function(meta, recordType){
15984     
15985     this.meta = meta;
15986     
15987     this.recordType = recordType instanceof Array ? 
15988         Roo.data.Record.create(recordType) : recordType;
15989 };
15990
15991 Roo.data.DataReader.prototype = {
15992     
15993     
15994     readerType : 'Data',
15995      /**
15996      * Create an empty record
15997      * @param {Object} data (optional) - overlay some values
15998      * @return {Roo.data.Record} record created.
15999      */
16000     newRow :  function(d) {
16001         var da =  {};
16002         this.recordType.prototype.fields.each(function(c) {
16003             switch( c.type) {
16004                 case 'int' : da[c.name] = 0; break;
16005                 case 'date' : da[c.name] = new Date(); break;
16006                 case 'float' : da[c.name] = 0.0; break;
16007                 case 'boolean' : da[c.name] = false; break;
16008                 default : da[c.name] = ""; break;
16009             }
16010             
16011         });
16012         return new this.recordType(Roo.apply(da, d));
16013     }
16014     
16015     
16016 };/*
16017  * Based on:
16018  * Ext JS Library 1.1.1
16019  * Copyright(c) 2006-2007, Ext JS, LLC.
16020  *
16021  * Originally Released Under LGPL - original licence link has changed is not relivant.
16022  *
16023  * Fork - LGPL
16024  * <script type="text/javascript">
16025  */
16026
16027 /**
16028  * @class Roo.data.DataProxy
16029  * @extends Roo.util.Observable
16030  * @abstract
16031  * This class is an abstract base class for implementations which provide retrieval of
16032  * unformatted data objects.<br>
16033  * <p>
16034  * DataProxy implementations are usually used in conjunction with an implementation of Roo.data.DataReader
16035  * (of the appropriate type which knows how to parse the data object) to provide a block of
16036  * {@link Roo.data.Records} to an {@link Roo.data.Store}.<br>
16037  * <p>
16038  * Custom implementations must implement the load method as described in
16039  * {@link Roo.data.HttpProxy#load}.
16040  */
16041 Roo.data.DataProxy = function(){
16042     this.addEvents({
16043         /**
16044          * @event beforeload
16045          * Fires before a network request is made to retrieve a data object.
16046          * @param {Object} This DataProxy object.
16047          * @param {Object} params The params parameter to the load function.
16048          */
16049         beforeload : true,
16050         /**
16051          * @event load
16052          * Fires before the load method's callback is called.
16053          * @param {Object} This DataProxy object.
16054          * @param {Object} o The data object.
16055          * @param {Object} arg The callback argument object passed to the load function.
16056          */
16057         load : true,
16058         /**
16059          * @event loadexception
16060          * Fires if an Exception occurs during data retrieval.
16061          * @param {Object} This DataProxy object.
16062          * @param {Object} o The data object.
16063          * @param {Object} arg The callback argument object passed to the load function.
16064          * @param {Object} e The Exception.
16065          */
16066         loadexception : true
16067     });
16068     Roo.data.DataProxy.superclass.constructor.call(this);
16069 };
16070
16071 Roo.extend(Roo.data.DataProxy, Roo.util.Observable);
16072
16073     /**
16074      * @cfg {void} listeners (Not available) Constructor blocks listeners from being set
16075      */
16076 /*
16077  * Based on:
16078  * Ext JS Library 1.1.1
16079  * Copyright(c) 2006-2007, Ext JS, LLC.
16080  *
16081  * Originally Released Under LGPL - original licence link has changed is not relivant.
16082  *
16083  * Fork - LGPL
16084  * <script type="text/javascript">
16085  */
16086 /**
16087  * @class Roo.data.MemoryProxy
16088  * @extends Roo.data.DataProxy
16089  * An implementation of Roo.data.DataProxy that simply passes the data specified in its constructor
16090  * to the Reader when its load method is called.
16091  * @constructor
16092  * @param {Object} config  A config object containing the objects needed for the Store to access data,
16093  */
16094 Roo.data.MemoryProxy = function(config){
16095     var data = config;
16096     if (typeof(config) != 'undefined' && typeof(config.data) != 'undefined') {
16097         data = config.data;
16098     }
16099     Roo.data.MemoryProxy.superclass.constructor.call(this);
16100     this.data = data;
16101 };
16102
16103 Roo.extend(Roo.data.MemoryProxy, Roo.data.DataProxy, {
16104     
16105     /**
16106      *  @cfg {Object} data The data object which the Reader uses to construct a block of Roo.data.Records.
16107      */
16108     /**
16109      * Load data from the requested source (in this case an in-memory
16110      * data object passed to the constructor), read the data object into
16111      * a block of Roo.data.Records using the passed Roo.data.DataReader implementation, and
16112      * process that block using the passed callback.
16113      * @param {Object} params This parameter is not used by the MemoryProxy class.
16114      * @param {Roo.data.DataReader} reader The Reader object which converts the data
16115      * object into a block of Roo.data.Records.
16116      * @param {Function} callback The function into which to pass the block of Roo.data.records.
16117      * The function must be passed <ul>
16118      * <li>The Record block object</li>
16119      * <li>The "arg" argument from the load function</li>
16120      * <li>A boolean success indicator</li>
16121      * </ul>
16122      * @param {Object} scope The scope in which to call the callback
16123      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
16124      */
16125     load : function(params, reader, callback, scope, arg){
16126         params = params || {};
16127         var result;
16128         try {
16129             result = reader.readRecords(params.data ? params.data :this.data);
16130         }catch(e){
16131             this.fireEvent("loadexception", this, arg, null, e);
16132             callback.call(scope, null, arg, false);
16133             return;
16134         }
16135         callback.call(scope, result, arg, true);
16136     },
16137     
16138     // private
16139     update : function(params, records){
16140         
16141     }
16142 });/*
16143  * Based on:
16144  * Ext JS Library 1.1.1
16145  * Copyright(c) 2006-2007, Ext JS, LLC.
16146  *
16147  * Originally Released Under LGPL - original licence link has changed is not relivant.
16148  *
16149  * Fork - LGPL
16150  * <script type="text/javascript">
16151  */
16152 /**
16153  * @class Roo.data.HttpProxy
16154  * @extends Roo.data.DataProxy
16155  * An implementation of {@link Roo.data.DataProxy} that reads a data object from an {@link Roo.data.Connection} object
16156  * configured to reference a certain URL.<br><br>
16157  * <p>
16158  * <em>Note that this class cannot be used to retrieve data from a domain other than the domain
16159  * from which the running page was served.<br><br>
16160  * <p>
16161  * For cross-domain access to remote data, use an {@link Roo.data.ScriptTagProxy}.</em><br><br>
16162  * <p>
16163  * Be aware that to enable the browser to parse an XML document, the server must set
16164  * the Content-Type header in the HTTP response to "text/xml".
16165  * @constructor
16166  * @param {Object} conn Connection config options to add to each request (e.g. {url: 'foo.php'} or
16167  * an {@link Roo.data.Connection} object.  If a Connection config is passed, the singleton {@link Roo.Ajax} object
16168  * will be used to make the request.
16169  */
16170 Roo.data.HttpProxy = function(conn){
16171     Roo.data.HttpProxy.superclass.constructor.call(this);
16172     // is conn a conn config or a real conn?
16173     this.conn = conn;
16174     this.useAjax = !conn || !conn.events;
16175   
16176 };
16177
16178 Roo.extend(Roo.data.HttpProxy, Roo.data.DataProxy, {
16179     // thse are take from connection...
16180     
16181     /**
16182      * @cfg {String} url (Optional) The default URL to be used for requests to the server. (defaults to undefined)
16183      */
16184     /**
16185      * @cfg {Object} extraParams (Optional) An object containing properties which are used as
16186      * extra parameters to each request made by this object. (defaults to undefined)
16187      */
16188     /**
16189      * @cfg {Object} defaultHeaders (Optional) An object containing request headers which are added
16190      *  to each request made by this object. (defaults to undefined)
16191      */
16192     /**
16193      * @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)
16194      */
16195     /**
16196      * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
16197      */
16198      /**
16199      * @cfg {Boolean} autoAbort (Optional) Whether this request should abort any pending requests. (defaults to false)
16200      * @type Boolean
16201      */
16202   
16203
16204     /**
16205      * @cfg {Boolean} disableCaching (Optional) True to add a unique cache-buster param to GET requests. (defaults to true)
16206      * @type Boolean
16207      */
16208     /**
16209      * Return the {@link Roo.data.Connection} object being used by this Proxy.
16210      * @return {Connection} The Connection object. This object may be used to subscribe to events on
16211      * a finer-grained basis than the DataProxy events.
16212      */
16213     getConnection : function(){
16214         return this.useAjax ? Roo.Ajax : this.conn;
16215     },
16216
16217     /**
16218      * Load data from the configured {@link Roo.data.Connection}, read the data object into
16219      * a block of Roo.data.Records using the passed {@link Roo.data.DataReader} implementation, and
16220      * process that block using the passed callback.
16221      * @param {Object} params An object containing properties which are to be used as HTTP parameters
16222      * for the request to the remote server.
16223      * @param {Roo.data.DataReader} reader The Reader object which converts the data
16224      * object into a block of Roo.data.Records.
16225      * @param {Function} callback The function into which to pass the block of Roo.data.Records.
16226      * The function must be passed <ul>
16227      * <li>The Record block object</li>
16228      * <li>The "arg" argument from the load function</li>
16229      * <li>A boolean success indicator</li>
16230      * </ul>
16231      * @param {Object} scope The scope in which to call the callback
16232      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
16233      */
16234     load : function(params, reader, callback, scope, arg){
16235         if(this.fireEvent("beforeload", this, params) !== false){
16236             var  o = {
16237                 params : params || {},
16238                 request: {
16239                     callback : callback,
16240                     scope : scope,
16241                     arg : arg
16242                 },
16243                 reader: reader,
16244                 callback : this.loadResponse,
16245                 scope: this
16246             };
16247             if(this.useAjax){
16248                 Roo.applyIf(o, this.conn);
16249                 if(this.activeRequest){
16250                     Roo.Ajax.abort(this.activeRequest);
16251                 }
16252                 this.activeRequest = Roo.Ajax.request(o);
16253             }else{
16254                 this.conn.request(o);
16255             }
16256         }else{
16257             callback.call(scope||this, null, arg, false);
16258         }
16259     },
16260
16261     // private
16262     loadResponse : function(o, success, response){
16263         delete this.activeRequest;
16264         if(!success){
16265             this.fireEvent("loadexception", this, o, response);
16266             o.request.callback.call(o.request.scope, null, o.request.arg, false);
16267             return;
16268         }
16269         var result;
16270         try {
16271             result = o.reader.read(response);
16272         }catch(e){
16273             o.success = false;
16274             o.raw = { errorMsg : response.responseText };
16275             this.fireEvent("loadexception", this, o, response, e);
16276             o.request.callback.call(o.request.scope, o, o.request.arg, false);
16277             return;
16278         }
16279         
16280         this.fireEvent("load", this, o, o.request.arg);
16281         o.request.callback.call(o.request.scope, result, o.request.arg, true);
16282     },
16283
16284     // private
16285     update : function(dataSet){
16286
16287     },
16288
16289     // private
16290     updateResponse : function(dataSet){
16291
16292     }
16293 });/*
16294  * Based on:
16295  * Ext JS Library 1.1.1
16296  * Copyright(c) 2006-2007, Ext JS, LLC.
16297  *
16298  * Originally Released Under LGPL - original licence link has changed is not relivant.
16299  *
16300  * Fork - LGPL
16301  * <script type="text/javascript">
16302  */
16303
16304 /**
16305  * @class Roo.data.ScriptTagProxy
16306  * An implementation of Roo.data.DataProxy that reads a data object from a URL which may be in a domain
16307  * other than the originating domain of the running page.<br><br>
16308  * <p>
16309  * <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
16310  * of the running page, you must use this class, rather than DataProxy.</em><br><br>
16311  * <p>
16312  * The content passed back from a server resource requested by a ScriptTagProxy is executable JavaScript
16313  * source code that is used as the source inside a &lt;script> tag.<br><br>
16314  * <p>
16315  * In order for the browser to process the returned data, the server must wrap the data object
16316  * with a call to a callback function, the name of which is passed as a parameter by the ScriptTagProxy.
16317  * Below is a Java example for a servlet which returns data for either a ScriptTagProxy, or an HttpProxy
16318  * depending on whether the callback name was passed:
16319  * <p>
16320  * <pre><code>
16321 boolean scriptTag = false;
16322 String cb = request.getParameter("callback");
16323 if (cb != null) {
16324     scriptTag = true;
16325     response.setContentType("text/javascript");
16326 } else {
16327     response.setContentType("application/x-json");
16328 }
16329 Writer out = response.getWriter();
16330 if (scriptTag) {
16331     out.write(cb + "(");
16332 }
16333 out.print(dataBlock.toJsonString());
16334 if (scriptTag) {
16335     out.write(");");
16336 }
16337 </pre></code>
16338  *
16339  * @constructor
16340  * @param {Object} config A configuration object.
16341  */
16342 Roo.data.ScriptTagProxy = function(config){
16343     Roo.data.ScriptTagProxy.superclass.constructor.call(this);
16344     Roo.apply(this, config);
16345     this.head = document.getElementsByTagName("head")[0];
16346 };
16347
16348 Roo.data.ScriptTagProxy.TRANS_ID = 1000;
16349
16350 Roo.extend(Roo.data.ScriptTagProxy, Roo.data.DataProxy, {
16351     /**
16352      * @cfg {String} url The URL from which to request the data object.
16353      */
16354     /**
16355      * @cfg {Number} timeout (Optional) The number of milliseconds to wait for a response. Defaults to 30 seconds.
16356      */
16357     timeout : 30000,
16358     /**
16359      * @cfg {String} callbackParam (Optional) The name of the parameter to pass to the server which tells
16360      * the server the name of the callback function set up by the load call to process the returned data object.
16361      * Defaults to "callback".<p>The server-side processing must read this parameter value, and generate
16362      * javascript output which calls this named function passing the data object as its only parameter.
16363      */
16364     callbackParam : "callback",
16365     /**
16366      *  @cfg {Boolean} nocache (Optional) Defaults to true. Disable cacheing by adding a unique parameter
16367      * name to the request.
16368      */
16369     nocache : true,
16370
16371     /**
16372      * Load data from the configured URL, read the data object into
16373      * a block of Roo.data.Records using the passed Roo.data.DataReader implementation, and
16374      * process that block using the passed callback.
16375      * @param {Object} params An object containing properties which are to be used as HTTP parameters
16376      * for the request to the remote server.
16377      * @param {Roo.data.DataReader} reader The Reader object which converts the data
16378      * object into a block of Roo.data.Records.
16379      * @param {Function} callback The function into which to pass the block of Roo.data.Records.
16380      * The function must be passed <ul>
16381      * <li>The Record block object</li>
16382      * <li>The "arg" argument from the load function</li>
16383      * <li>A boolean success indicator</li>
16384      * </ul>
16385      * @param {Object} scope The scope in which to call the callback
16386      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
16387      */
16388     load : function(params, reader, callback, scope, arg){
16389         if(this.fireEvent("beforeload", this, params) !== false){
16390
16391             var p = Roo.urlEncode(Roo.apply(params, this.extraParams));
16392
16393             var url = this.url;
16394             url += (url.indexOf("?") != -1 ? "&" : "?") + p;
16395             if(this.nocache){
16396                 url += "&_dc=" + (new Date().getTime());
16397             }
16398             var transId = ++Roo.data.ScriptTagProxy.TRANS_ID;
16399             var trans = {
16400                 id : transId,
16401                 cb : "stcCallback"+transId,
16402                 scriptId : "stcScript"+transId,
16403                 params : params,
16404                 arg : arg,
16405                 url : url,
16406                 callback : callback,
16407                 scope : scope,
16408                 reader : reader
16409             };
16410             var conn = this;
16411
16412             window[trans.cb] = function(o){
16413                 conn.handleResponse(o, trans);
16414             };
16415
16416             url += String.format("&{0}={1}", this.callbackParam, trans.cb);
16417
16418             if(this.autoAbort !== false){
16419                 this.abort();
16420             }
16421
16422             trans.timeoutId = this.handleFailure.defer(this.timeout, this, [trans]);
16423
16424             var script = document.createElement("script");
16425             script.setAttribute("src", url);
16426             script.setAttribute("type", "text/javascript");
16427             script.setAttribute("id", trans.scriptId);
16428             this.head.appendChild(script);
16429
16430             this.trans = trans;
16431         }else{
16432             callback.call(scope||this, null, arg, false);
16433         }
16434     },
16435
16436     // private
16437     isLoading : function(){
16438         return this.trans ? true : false;
16439     },
16440
16441     /**
16442      * Abort the current server request.
16443      */
16444     abort : function(){
16445         if(this.isLoading()){
16446             this.destroyTrans(this.trans);
16447         }
16448     },
16449
16450     // private
16451     destroyTrans : function(trans, isLoaded){
16452         this.head.removeChild(document.getElementById(trans.scriptId));
16453         clearTimeout(trans.timeoutId);
16454         if(isLoaded){
16455             window[trans.cb] = undefined;
16456             try{
16457                 delete window[trans.cb];
16458             }catch(e){}
16459         }else{
16460             // if hasn't been loaded, wait for load to remove it to prevent script error
16461             window[trans.cb] = function(){
16462                 window[trans.cb] = undefined;
16463                 try{
16464                     delete window[trans.cb];
16465                 }catch(e){}
16466             };
16467         }
16468     },
16469
16470     // private
16471     handleResponse : function(o, trans){
16472         this.trans = false;
16473         this.destroyTrans(trans, true);
16474         var result;
16475         try {
16476             result = trans.reader.readRecords(o);
16477         }catch(e){
16478             this.fireEvent("loadexception", this, o, trans.arg, e);
16479             trans.callback.call(trans.scope||window, null, trans.arg, false);
16480             return;
16481         }
16482         this.fireEvent("load", this, o, trans.arg);
16483         trans.callback.call(trans.scope||window, result, trans.arg, true);
16484     },
16485
16486     // private
16487     handleFailure : function(trans){
16488         this.trans = false;
16489         this.destroyTrans(trans, false);
16490         this.fireEvent("loadexception", this, null, trans.arg);
16491         trans.callback.call(trans.scope||window, null, trans.arg, false);
16492     }
16493 });/*
16494  * Based on:
16495  * Ext JS Library 1.1.1
16496  * Copyright(c) 2006-2007, Ext JS, LLC.
16497  *
16498  * Originally Released Under LGPL - original licence link has changed is not relivant.
16499  *
16500  * Fork - LGPL
16501  * <script type="text/javascript">
16502  */
16503
16504 /**
16505  * @class Roo.data.JsonReader
16506  * @extends Roo.data.DataReader
16507  * Data reader class to create an Array of Roo.data.Record objects from a JSON response
16508  * based on mappings in a provided Roo.data.Record constructor.
16509  * 
16510  * The default behaviour of a store is to send ?_requestMeta=1, unless the class has recieved 'metaData' property
16511  * in the reply previously. 
16512  * 
16513  * <p>
16514  * Example code:
16515  * <pre><code>
16516 var RecordDef = Roo.data.Record.create([
16517     {name: 'name', mapping: 'name'},     // "mapping" property not needed if it's the same as "name"
16518     {name: 'occupation'}                 // This field will use "occupation" as the mapping.
16519 ]);
16520 var myReader = new Roo.data.JsonReader({
16521     totalProperty: "results",    // The property which contains the total dataset size (optional)
16522     root: "rows",                // The property which contains an Array of row objects
16523     id: "id"                     // The property within each row object that provides an ID for the record (optional)
16524 }, RecordDef);
16525 </code></pre>
16526  * <p>
16527  * This would consume a JSON file like this:
16528  * <pre><code>
16529 { 'results': 2, 'rows': [
16530     { 'id': 1, 'name': 'Bill', occupation: 'Gardener' },
16531     { 'id': 2, 'name': 'Ben', occupation: 'Horticulturalist' } ]
16532 }
16533 </code></pre>
16534  * @cfg {String} totalProperty Name of the property from which to retrieve the total number of records
16535  * in the dataset. This is only needed if the whole dataset is not passed in one go, but is being
16536  * paged from the remote server.
16537  * @cfg {String} successProperty Name of the property from which to retrieve the success attribute used by forms.
16538  * @cfg {String} root name of the property which contains the Array of row objects.
16539  * @cfg {String} id Name of the property within a row object that contains a record identifier value.
16540  * @cfg {Array} fields Array of field definition objects
16541  * @constructor
16542  * Create a new JsonReader
16543  * @param {Object} meta Metadata configuration options
16544  * @param {Object} recordType Either an Array of field definition objects,
16545  * or an {@link Roo.data.Record} object created using {@link Roo.data.Record#create}.
16546  */
16547 Roo.data.JsonReader = function(meta, recordType){
16548     
16549     meta = meta || {};
16550     // set some defaults:
16551     Roo.applyIf(meta, {
16552         totalProperty: 'total',
16553         successProperty : 'success',
16554         root : 'data',
16555         id : 'id'
16556     });
16557     
16558     Roo.data.JsonReader.superclass.constructor.call(this, meta, recordType||meta.fields);
16559 };
16560 Roo.extend(Roo.data.JsonReader, Roo.data.DataReader, {
16561     
16562     readerType : 'Json',
16563     
16564     /**
16565      * @prop {Boolean} metaFromRemote  - if the meta data was loaded from the remote source.
16566      * Used by Store query builder to append _requestMeta to params.
16567      * 
16568      */
16569     metaFromRemote : false,
16570     /**
16571      * This method is only used by a DataProxy which has retrieved data from a remote server.
16572      * @param {Object} response The XHR object which contains the JSON data in its responseText.
16573      * @return {Object} data A data block which is used by an Roo.data.Store object as
16574      * a cache of Roo.data.Records.
16575      */
16576     read : function(response){
16577         var json = response.responseText;
16578        
16579         var o = /* eval:var:o */ eval("("+json+")");
16580         if(!o) {
16581             throw {message: "JsonReader.read: Json object not found"};
16582         }
16583         
16584         if(o.metaData){
16585             
16586             delete this.ef;
16587             this.metaFromRemote = true;
16588             this.meta = o.metaData;
16589             this.recordType = Roo.data.Record.create(o.metaData.fields);
16590             this.onMetaChange(this.meta, this.recordType, o);
16591         }
16592         return this.readRecords(o);
16593     },
16594
16595     // private function a store will implement
16596     onMetaChange : function(meta, recordType, o){
16597
16598     },
16599
16600     /**
16601          * @ignore
16602          */
16603     simpleAccess: function(obj, subsc) {
16604         return obj[subsc];
16605     },
16606
16607         /**
16608          * @ignore
16609          */
16610     getJsonAccessor: function(){
16611         var re = /[\[\.]/;
16612         return function(expr) {
16613             try {
16614                 return(re.test(expr))
16615                     ? new Function("obj", "return obj." + expr)
16616                     : function(obj){
16617                         return obj[expr];
16618                     };
16619             } catch(e){}
16620             return Roo.emptyFn;
16621         };
16622     }(),
16623
16624     /**
16625      * Create a data block containing Roo.data.Records from an XML document.
16626      * @param {Object} o An object which contains an Array of row objects in the property specified
16627      * in the config as 'root, and optionally a property, specified in the config as 'totalProperty'
16628      * which contains the total size of the dataset.
16629      * @return {Object} data A data block which is used by an Roo.data.Store object as
16630      * a cache of Roo.data.Records.
16631      */
16632     readRecords : function(o){
16633         /**
16634          * After any data loads, the raw JSON data is available for further custom processing.
16635          * @type Object
16636          */
16637         this.o = o;
16638         var s = this.meta, Record = this.recordType,
16639             f = Record ? Record.prototype.fields : null, fi = f ? f.items : [], fl = f ? f.length : 0;
16640
16641 //      Generate extraction functions for the totalProperty, the root, the id, and for each field
16642         if (!this.ef) {
16643             if(s.totalProperty) {
16644                     this.getTotal = this.getJsonAccessor(s.totalProperty);
16645                 }
16646                 if(s.successProperty) {
16647                     this.getSuccess = this.getJsonAccessor(s.successProperty);
16648                 }
16649                 this.getRoot = s.root ? this.getJsonAccessor(s.root) : function(p){return p;};
16650                 if (s.id) {
16651                         var g = this.getJsonAccessor(s.id);
16652                         this.getId = function(rec) {
16653                                 var r = g(rec);  
16654                                 return (r === undefined || r === "") ? null : r;
16655                         };
16656                 } else {
16657                         this.getId = function(){return null;};
16658                 }
16659             this.ef = [];
16660             for(var jj = 0; jj < fl; jj++){
16661                 f = fi[jj];
16662                 var map = (f.mapping !== undefined && f.mapping !== null) ? f.mapping : f.name;
16663                 this.ef[jj] = this.getJsonAccessor(map);
16664             }
16665         }
16666
16667         var root = this.getRoot(o), c = root.length, totalRecords = c, success = true;
16668         if(s.totalProperty){
16669             var vt = parseInt(this.getTotal(o), 10);
16670             if(!isNaN(vt)){
16671                 totalRecords = vt;
16672             }
16673         }
16674         if(s.successProperty){
16675             var vs = this.getSuccess(o);
16676             if(vs === false || vs === 'false'){
16677                 success = false;
16678             }
16679         }
16680         var records = [];
16681         for(var i = 0; i < c; i++){
16682             var n = root[i];
16683             var values = {};
16684             var id = this.getId(n);
16685             for(var j = 0; j < fl; j++){
16686                 f = fi[j];
16687                                 var v = this.ef[j](n);
16688                                 if (!f.convert) {
16689                                         Roo.log('missing convert for ' + f.name);
16690                                         Roo.log(f);
16691                                         continue;
16692                                 }
16693                                 values[f.name] = f.convert((v !== undefined) ? v : f.defaultValue);
16694             }
16695                         if (!Record) {
16696                                 return {
16697                                         raw : { errorMsg : "JSON Reader Error: fields or metadata not available to create Record" },
16698                                         success : false,
16699                                         records : [],
16700                                         totalRecords : 0
16701                                 };
16702                         }
16703             var record = new Record(values, id);
16704             record.json = n;
16705             records[i] = record;
16706         }
16707         return {
16708             raw : o,
16709             success : success,
16710             records : records,
16711             totalRecords : totalRecords
16712         };
16713     },
16714     // used when loading children.. @see loadDataFromChildren
16715     toLoadData: function(rec)
16716     {
16717         // expect rec just to be an array.. eg [a,b,c, [...] << cn ]
16718         var data = typeof(rec.data.cn) == 'undefined' ? [] : rec.data.cn;
16719         return { data : data, total : data.length };
16720         
16721     }
16722 });/*
16723  * Based on:
16724  * Ext JS Library 1.1.1
16725  * Copyright(c) 2006-2007, Ext JS, LLC.
16726  *
16727  * Originally Released Under LGPL - original licence link has changed is not relivant.
16728  *
16729  * Fork - LGPL
16730  * <script type="text/javascript">
16731  */
16732
16733 /**
16734  * @class Roo.data.ArrayReader
16735  * @extends Roo.data.DataReader
16736  * Data reader class to create an Array of Roo.data.Record objects from an Array.
16737  * Each element of that Array represents a row of data fields. The
16738  * fields are pulled into a Record object using as a subscript, the <em>mapping</em> property
16739  * of the field definition if it exists, or the field's ordinal position in the definition.<br>
16740  * <p>
16741  * Example code:.
16742  * <pre><code>
16743 var RecordDef = Roo.data.Record.create([
16744     {name: 'name', mapping: 1},         // "mapping" only needed if an "id" field is present which
16745     {name: 'occupation', mapping: 2}    // precludes using the ordinal position as the index.
16746 ]);
16747 var myReader = new Roo.data.ArrayReader({
16748     id: 0                     // The subscript within row Array that provides an ID for the Record (optional)
16749 }, RecordDef);
16750 </code></pre>
16751  * <p>
16752  * This would consume an Array like this:
16753  * <pre><code>
16754 [ [1, 'Bill', 'Gardener'], [2, 'Ben', 'Horticulturalist'] ]
16755   </code></pre>
16756  
16757  * @constructor
16758  * Create a new JsonReader
16759  * @param {Object} meta Metadata configuration options.
16760  * @param {Object|Array} recordType Either an Array of field definition objects
16761  * 
16762  * @cfg {Array} fields Array of field definition objects
16763  * @cfg {String} id Name of the property within a row object that contains a record identifier value.
16764  * as specified to {@link Roo.data.Record#create},
16765  * or an {@link Roo.data.Record} object
16766  *
16767  * 
16768  * created using {@link Roo.data.Record#create}.
16769  */
16770 Roo.data.ArrayReader = function(meta, recordType)
16771 {    
16772     Roo.data.ArrayReader.superclass.constructor.call(this, meta, recordType||meta.fields);
16773 };
16774
16775 Roo.extend(Roo.data.ArrayReader, Roo.data.JsonReader, {
16776     
16777       /**
16778      * Create a data block containing Roo.data.Records from an XML document.
16779      * @param {Object} o An Array of row objects which represents the dataset.
16780      * @return {Object} A data block which is used by an {@link Roo.data.Store} object as
16781      * a cache of Roo.data.Records.
16782      */
16783     readRecords : function(o)
16784     {
16785         var sid = this.meta ? this.meta.id : null;
16786         var recordType = this.recordType, fields = recordType.prototype.fields;
16787         var records = [];
16788         var root = o;
16789         for(var i = 0; i < root.length; i++){
16790             var n = root[i];
16791             var values = {};
16792             var id = ((sid || sid === 0) && n[sid] !== undefined && n[sid] !== "" ? n[sid] : null);
16793             for(var j = 0, jlen = fields.length; j < jlen; j++){
16794                 var f = fields.items[j];
16795                 var k = f.mapping !== undefined && f.mapping !== null ? f.mapping : j;
16796                 var v = n[k] !== undefined ? n[k] : f.defaultValue;
16797                 v = f.convert(v);
16798                 values[f.name] = v;
16799             }
16800             var record = new recordType(values, id);
16801             record.json = n;
16802             records[records.length] = record;
16803         }
16804         return {
16805             records : records,
16806             totalRecords : records.length
16807         };
16808     },
16809     // used when loading children.. @see loadDataFromChildren
16810     toLoadData: function(rec)
16811     {
16812         // expect rec just to be an array.. eg [a,b,c, [...] << cn ]
16813         return typeof(rec.data.cn) == 'undefined' ? [] : rec.data.cn;
16814         
16815     }
16816     
16817     
16818 });/*
16819  * - LGPL
16820  * * 
16821  */
16822
16823 /**
16824  * @class Roo.bootstrap.form.ComboBox
16825  * @extends Roo.bootstrap.form.TriggerField
16826  * A combobox control with support for autocomplete, remote-loading, paging and many other features.
16827  * @cfg {Boolean} append (true|false) default false
16828  * @cfg {Boolean} autoFocus (true|false) auto focus the first item, default true
16829  * @cfg {Boolean} tickable ComboBox with tickable selections (true|false), default false
16830  * @cfg {Boolean} triggerList trigger show the list or not (true|false) default true
16831  * @cfg {Boolean} showToggleBtn show toggle button or not (true|false) default true
16832  * @cfg {String} btnPosition set the position of the trigger button (left | right) default right
16833  * @cfg {Boolean} animate default true
16834  * @cfg {Boolean} emptyResultText only for touch device
16835  * @cfg {String} triggerText multiple combobox trigger button text default 'Select'
16836  * @cfg {String} emptyTitle default ''
16837  * @cfg {Number} width fixed with? experimental
16838  * @constructor
16839  * Create a new ComboBox.
16840  * @param {Object} config Configuration options
16841  */
16842 Roo.bootstrap.form.ComboBox = function(config){
16843     Roo.bootstrap.form.ComboBox.superclass.constructor.call(this, config);
16844     this.addEvents({
16845         /**
16846          * @event expand
16847          * Fires when the dropdown list is expanded
16848         * @param {Roo.bootstrap.form.ComboBox} combo This combo box
16849         */
16850         'expand' : true,
16851         /**
16852          * @event collapse
16853          * Fires when the dropdown list is collapsed
16854         * @param {Roo.bootstrap.form.ComboBox} combo This combo box
16855         */
16856         'collapse' : true,
16857         /**
16858          * @event beforeselect
16859          * Fires before a list item is selected. Return false to cancel the selection.
16860         * @param {Roo.bootstrap.form.ComboBox} combo This combo box
16861         * @param {Roo.data.Record} record The data record returned from the underlying store
16862         * @param {Number} index The index of the selected item in the dropdown list
16863         */
16864         'beforeselect' : true,
16865         /**
16866          * @event select
16867          * Fires when a list item is selected
16868         * @param {Roo.bootstrap.form.ComboBox} combo This combo box
16869         * @param {Roo.data.Record} record The data record returned from the underlying store (or false on clear)
16870         * @param {Number} index The index of the selected item in the dropdown list
16871         */
16872         'select' : true,
16873         /**
16874          * @event beforequery
16875          * Fires before all queries are processed. Return false to cancel the query or set cancel to true.
16876          * The event object passed has these properties:
16877         * @param {Roo.bootstrap.form.ComboBox} combo This combo box
16878         * @param {String} query The query
16879         * @param {Boolean} forceAll true to force "all" query
16880         * @param {Boolean} cancel true to cancel the query
16881         * @param {Object} e The query event object
16882         */
16883         'beforequery': true,
16884          /**
16885          * @event add
16886          * Fires when the 'add' icon is pressed (add a listener to enable add button)
16887         * @param {Roo.bootstrap.form.ComboBox} combo This combo box
16888         */
16889         'add' : true,
16890         /**
16891          * @event edit
16892          * Fires when the 'edit' icon is pressed (add a listener to enable add button)
16893         * @param {Roo.bootstrap.form.ComboBox} combo This combo box
16894         * @param {Roo.data.Record|false} record The data record returned from the underlying store (or false on nothing selected)
16895         */
16896         'edit' : true,
16897         /**
16898          * @event remove
16899          * Fires when the remove value from the combobox array
16900         * @param {Roo.bootstrap.form.ComboBox} combo This combo box
16901         */
16902         'remove' : true,
16903         /**
16904          * @event afterremove
16905          * Fires when the remove value from the combobox array
16906         * @param {Roo.bootstrap.form.ComboBox} combo This combo box
16907         */
16908         'afterremove' : true,
16909         /**
16910          * @event specialfilter
16911          * Fires when specialfilter
16912             * @param {Roo.bootstrap.form.ComboBox} combo This combo box
16913             */
16914         'specialfilter' : true,
16915         /**
16916          * @event tick
16917          * Fires when tick the element
16918             * @param {Roo.bootstrap.form.ComboBox} combo This combo box
16919             */
16920         'tick' : true,
16921         /**
16922          * @event touchviewdisplay
16923          * Fires when touch view require special display (default is using displayField)
16924             * @param {Roo.bootstrap.form.ComboBox} combo This combo box
16925             * @param {Object} cfg set html .
16926             */
16927         'touchviewdisplay' : true
16928         
16929     });
16930     
16931     this.item = [];
16932     this.tickItems = [];
16933     
16934     this.selectedIndex = -1;
16935     if(this.mode == 'local'){
16936         if(config.queryDelay === undefined){
16937             this.queryDelay = 10;
16938         }
16939         if(config.minChars === undefined){
16940             this.minChars = 0;
16941         }
16942     }
16943 };
16944
16945 Roo.extend(Roo.bootstrap.form.ComboBox, Roo.bootstrap.form.TriggerField, {
16946      
16947     /**
16948      * @cfg {Boolean} lazyRender True to prevent the ComboBox from rendering until requested (should always be used when
16949      * rendering into an Roo.Editor, defaults to false)
16950      */
16951     /**
16952      * @cfg {Boolean/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to:
16953      * {tag: "input", type: "text", size: "24", autocomplete: "off"})
16954      */
16955     /**
16956      * @cfg {Roo.data.Store} store The data store to which this combo is bound (defaults to undefined)
16957      */
16958     /**
16959      * @cfg {String} title If supplied, a header element is created containing this text and added into the top of
16960      * the dropdown list (defaults to undefined, with no header element)
16961      */
16962
16963      /**
16964      * @cfg {String/Roo.Template} tpl The template to use to render the output default is  '<a class="dropdown-item" href="#">{' + this.displayField + '}</a>' 
16965      */
16966      
16967      /**
16968      * @cfg {Number} listWidth The width in pixels of the dropdown list (defaults to the width of the ComboBox field)
16969      */
16970     listWidth: undefined,
16971     /**
16972      * @cfg {String} displayField The underlying data field name to bind to this CombBox (defaults to undefined if
16973      * mode = 'remote' or 'text' if mode = 'local')
16974      */
16975     displayField: undefined,
16976     
16977     /**
16978      * @cfg {String} valueField The underlying data value name to bind to this CombBox (defaults to undefined if
16979      * mode = 'remote' or 'value' if mode = 'local'). 
16980      * Note: use of a valueField requires the user make a selection
16981      * in order for a value to be mapped.
16982      */
16983     valueField: undefined,
16984     /**
16985      * @cfg {String} modalTitle The title of the dialog that pops up on mobile views.
16986      */
16987     modalTitle : '',
16988     
16989     /**
16990      * @cfg {String} hiddenName If specified, a hidden form field with this name is dynamically generated to store the
16991      * field's data value (defaults to the underlying DOM element's name)
16992      */
16993     hiddenName: undefined,
16994     /**
16995      * @cfg {String} listClass CSS class to apply to the dropdown list element (defaults to '')
16996      */
16997     listClass: '',
16998     /**
16999      * @cfg {String} selectedClass CSS class to apply to the selected item in the dropdown list (defaults to 'x-combo-selected')
17000      */
17001     selectedClass: 'active',
17002     
17003     /**
17004      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
17005      */
17006     shadow:'sides',
17007     /**
17008      * @cfg {String} listAlign A valid anchor position value. See {@link Roo.Element#alignTo} for details on supported
17009      * anchor positions (defaults to 'tl-bl')
17010      */
17011     listAlign: 'tl-bl?',
17012     /**
17013      * @cfg {Number} maxHeight The maximum height in pixels of the dropdown list before scrollbars are shown (defaults to 300)
17014      */
17015     maxHeight: 300,
17016     /**
17017      * @cfg {String} triggerAction The action to execute when the trigger field is activated.  Use 'all' to run the
17018      * query specified by the allQuery config option (defaults to 'query')
17019      */
17020     triggerAction: 'query',
17021     /**
17022      * @cfg {Number} minChars The minimum number of characters the user must type before autocomplete and typeahead activate
17023      * (defaults to 4, does not apply if editable = false)
17024      */
17025     minChars : 4,
17026     /**
17027      * @cfg {Boolean} typeAhead True to populate and autoselect the remainder of the text being typed after a configurable
17028      * delay (typeAheadDelay) if it matches a known value (defaults to false)
17029      */
17030     typeAhead: false,
17031     /**
17032      * @cfg {Number} queryDelay The length of time in milliseconds to delay between the start of typing and sending the
17033      * query to filter the dropdown list (defaults to 500 if mode = 'remote' or 10 if mode = 'local')
17034      */
17035     queryDelay: 500,
17036     /**
17037      * @cfg {Number} pageSize If greater than 0, a paging toolbar is displayed in the footer of the dropdown list and the
17038      * filter queries will execute with page start and limit parameters.  Only applies when mode = 'remote' (defaults to 0)
17039      */
17040     pageSize: 0,
17041     /**
17042      * @cfg {Boolean} selectOnFocus True to select any existing text in the field immediately on focus.  Only applies
17043      * when editable = true (defaults to false)
17044      */
17045     selectOnFocus:false,
17046     /**
17047      * @cfg {String} queryParam Name of the query as it will be passed on the querystring (defaults to 'query')
17048      */
17049     queryParam: 'query',
17050     /**
17051      * @cfg {String} loadingText The text to display in the dropdown list while data is loading.  Only applies
17052      * when mode = 'remote' (defaults to 'Loading...')
17053      */
17054     loadingText: 'Loading...',
17055     /**
17056      * @cfg {Boolean} resizable True to add a resize handle to the bottom of the dropdown list (defaults to false)
17057      */
17058     resizable: false,
17059     /**
17060      * @cfg {Number} handleHeight The height in pixels of the dropdown list resize handle if resizable = true (defaults to 8)
17061      */
17062     handleHeight : 8,
17063     /**
17064      * @cfg {Boolean} editable False to prevent the user from typing text directly into the field, just like a
17065      * traditional select (defaults to true)
17066      */
17067     editable: true,
17068     /**
17069      * @cfg {String} allQuery The text query to send to the server to return all records for the list with no filtering (defaults to '')
17070      */
17071     allQuery: '',
17072     /**
17073      * @cfg {String} mode Set to 'local' if the ComboBox loads local data (defaults to 'remote' which loads from the server)
17074      */
17075     mode: 'remote',
17076     /**
17077      * @cfg {Number} minListWidth The minimum width of the dropdown list in pixels (defaults to 70, will be ignored if
17078      * listWidth has a higher value)
17079      */
17080     minListWidth : 70,
17081     /**
17082      * @cfg {Boolean} forceSelection True to restrict the selected value to one of the values in the list, false to
17083      * allow the user to set arbitrary text into the field (defaults to false)
17084      */
17085     forceSelection:false,
17086     /**
17087      * @cfg {Number} typeAheadDelay The length of time in milliseconds to wait until the typeahead text is displayed
17088      * if typeAhead = true (defaults to 250)
17089      */
17090     typeAheadDelay : 250,
17091     /**
17092      * @cfg {String} valueNotFoundText When using a name/value combo, if the value passed to setValue is not found in
17093      * the store, valueNotFoundText will be displayed as the field text if defined (defaults to undefined)
17094      */
17095     valueNotFoundText : undefined,
17096     /**
17097      * @cfg {Boolean} blockFocus Prevents all focus calls, so it can work with things like HTML edtor bar
17098      */
17099     blockFocus : false,
17100     
17101     /**
17102      * @cfg {Boolean} disableClear Disable showing of clear button.
17103      */
17104     disableClear : false,
17105     /**
17106      * @cfg {Boolean} alwaysQuery  Disable caching of results, and always send query
17107      */
17108     alwaysQuery : false,
17109     
17110     /**
17111      * @cfg {Boolean} multiple  (true|false) ComboBobArray, default false
17112      */
17113     multiple : false,
17114     
17115     /**
17116      * @cfg {String} invalidClass DEPRICATED - uses BS4 is-valid now
17117      */
17118     invalidClass : "has-warning",
17119     
17120     /**
17121      * @cfg {String} validClass DEPRICATED - uses BS4 is-valid now
17122      */
17123     validClass : "has-success",
17124     
17125     /**
17126      * @cfg {Boolean} specialFilter (true|false) special filter default false
17127      */
17128     specialFilter : false,
17129     
17130     /**
17131      * @cfg {Boolean} mobileTouchView (true|false) show mobile touch view when using a mobile default true
17132      */
17133     mobileTouchView : true,
17134     
17135     /**
17136      * @cfg {Boolean} useNativeIOS (true|false) render it as classic select for ios, not support dynamic load data (default false)
17137      */
17138     useNativeIOS : false,
17139     
17140     /**
17141      * @cfg {Boolean} mobile_restrict_height (true|false) restrict height for touch view
17142      */
17143     mobile_restrict_height : false,
17144     
17145     ios_options : false,
17146     
17147     //private
17148     addicon : false,
17149     editicon: false,
17150     
17151     page: 0,
17152     hasQuery: false,
17153     append: false,
17154     loadNext: false,
17155     autoFocus : true,
17156     tickable : false,
17157     btnPosition : 'right',
17158     triggerList : true,
17159     showToggleBtn : true,
17160     animate : true,
17161     emptyResultText: 'Empty',
17162     triggerText : 'Select',
17163     emptyTitle : '',
17164     width : false,
17165     
17166     // element that contains real text value.. (when hidden is used..)
17167     
17168     getAutoCreate : function()
17169     {   
17170         var cfg = false;
17171         //render
17172         /*
17173          * Render classic select for iso
17174          */
17175         
17176         if(Roo.isIOS && this.useNativeIOS){
17177             cfg = this.getAutoCreateNativeIOS();
17178             return cfg;
17179         }
17180         
17181         /*
17182          * Touch Devices
17183          */
17184         
17185         if(Roo.isTouch && this.mobileTouchView){
17186             cfg = this.getAutoCreateTouchView();
17187             return cfg;;
17188         }
17189         
17190         /*
17191          *  Normal ComboBox
17192          */
17193         if(!this.tickable){
17194             cfg = Roo.bootstrap.form.ComboBox.superclass.getAutoCreate.call(this);
17195             return cfg;
17196         }
17197         
17198         /*
17199          *  ComboBox with tickable selections
17200          */
17201              
17202         var align = this.labelAlign || this.parentLabelAlign();
17203         
17204         cfg = {
17205             cls : 'form-group roo-combobox-tickable' //input-group
17206         };
17207         
17208         var btn_text_select = '';
17209         var btn_text_done = '';
17210         var btn_text_cancel = '';
17211         
17212         if (this.btn_text_show) {
17213             btn_text_select = 'Select';
17214             btn_text_done = 'Done';
17215             btn_text_cancel = 'Cancel'; 
17216         }
17217         
17218         var buttons = {
17219             tag : 'div',
17220             cls : 'tickable-buttons',
17221             cn : [
17222                 {
17223                     tag : 'button',
17224                     type : 'button',
17225                     cls : 'btn btn-link btn-edit pull-' + this.btnPosition,
17226                     //html : this.triggerText
17227                     html: btn_text_select
17228                 },
17229                 {
17230                     tag : 'button',
17231                     type : 'button',
17232                     name : 'ok',
17233                     cls : 'btn btn-link btn-ok pull-' + this.btnPosition,
17234                     //html : 'Done'
17235                     html: btn_text_done
17236                 },
17237                 {
17238                     tag : 'button',
17239                     type : 'button',
17240                     name : 'cancel',
17241                     cls : 'btn btn-link btn-cancel pull-' + this.btnPosition,
17242                     //html : 'Cancel'
17243                     html: btn_text_cancel
17244                 }
17245             ]
17246         };
17247         
17248         if(this.editable){
17249             buttons.cn.unshift({
17250                 tag: 'input',
17251                 cls: 'roo-select2-search-field-input'
17252             });
17253         }
17254         
17255         var _this = this;
17256         
17257         Roo.each(buttons.cn, function(c){
17258             if (_this.size) {
17259                 c.cls += ' btn-' + _this.size;
17260             }
17261
17262             if (_this.disabled) {
17263                 c.disabled = true;
17264             }
17265         });
17266         
17267         var box = {
17268             tag: 'div',
17269             style : 'display: contents',
17270             cn: [
17271                 {
17272                     tag: 'input',
17273                     type : 'hidden',
17274                     cls: 'form-hidden-field'
17275                 },
17276                 {
17277                     tag: 'ul',
17278                     cls: 'roo-select2-choices',
17279                     cn:[
17280                         {
17281                             tag: 'li',
17282                             cls: 'roo-select2-search-field',
17283                             cn: [
17284                                 buttons
17285                             ]
17286                         }
17287                     ]
17288                 }
17289             ]
17290         };
17291         
17292         var combobox = {
17293             cls: 'roo-select2-container input-group roo-select2-container-multi',
17294             cn: [
17295                 
17296                 box
17297 //                {
17298 //                    tag: 'ul',
17299 //                    cls: 'typeahead typeahead-long dropdown-menu',
17300 //                    style: 'display:none; max-height:' + this.maxHeight + 'px;'
17301 //                }
17302             ]
17303         };
17304         
17305         if(this.hasFeedback && !this.allowBlank){
17306             
17307             var feedback = {
17308                 tag: 'span',
17309                 cls: 'glyphicon form-control-feedback'
17310             };
17311
17312             combobox.cn.push(feedback);
17313         }
17314         
17315         
17316         
17317         var indicator = {
17318             tag : 'i',
17319             cls : 'roo-required-indicator ' + (this.indicatorpos == 'right'  ? 'right' : 'left') +'-indicator text-danger fa fa-lg fa-star',
17320             tooltip : 'This field is required'
17321         };
17322          
17323         if (this.allowBlank) {
17324             indicator = {
17325                 tag : 'i',
17326                 style : 'display:none'
17327             };
17328         } 
17329         if (align ==='left' && this.fieldLabel.length) {
17330             
17331             cfg.cls += ' roo-form-group-label-left'  + (Roo.bootstrap.version == 4 ? ' row' : '');
17332             
17333             cfg.cn = [
17334                 indicator,
17335                 {
17336                     tag: 'label',
17337                     'for' :  id,
17338                     cls : 'control-label col-form-label',
17339                     html : this.fieldLabel
17340
17341                 },
17342                 {
17343                     cls : "", 
17344                     cn: [
17345                         combobox
17346                     ]
17347                 }
17348
17349             ];
17350             
17351             var labelCfg = cfg.cn[1];
17352             var contentCfg = cfg.cn[2];
17353             
17354
17355             if(this.indicatorpos == 'right'){
17356                 
17357                 cfg.cn = [
17358                     {
17359                         tag: 'label',
17360                         'for' :  id,
17361                         cls : 'control-label col-form-label',
17362                         cn : [
17363                             {
17364                                 tag : 'span',
17365                                 html : this.fieldLabel
17366                             },
17367                             indicator
17368                         ]
17369                     },
17370                     {
17371                         cls : "",
17372                         cn: [
17373                             combobox
17374                         ]
17375                     }
17376
17377                 ];
17378                 
17379                 
17380                 
17381                 labelCfg = cfg.cn[0];
17382                 contentCfg = cfg.cn[1];
17383             
17384             }
17385             
17386             if(this.labelWidth > 12){
17387                 labelCfg.style = "width: " + this.labelWidth + 'px';
17388             }
17389             if(this.width * 1 > 0){
17390                 contentCfg.style = "width: " + this.width + 'px';
17391             }
17392             if(this.labelWidth < 13 && this.labelmd == 0){
17393                 this.labelmd = this.labelWidth;
17394             }
17395             
17396             if(this.labellg > 0){
17397                 labelCfg.cls += ' col-lg-' + this.labellg;
17398                 contentCfg.cls += ' col-lg-' + (12 - this.labellg);
17399             }
17400             
17401             if(this.labelmd > 0){
17402                 labelCfg.cls += ' col-md-' + this.labelmd;
17403                 contentCfg.cls += ' col-md-' + (12 - this.labelmd);
17404             }
17405             
17406             if(this.labelsm > 0){
17407                 labelCfg.cls += ' col-sm-' + this.labelsm;
17408                 contentCfg.cls += ' col-sm-' + (12 - this.labelsm);
17409             }
17410             
17411             if(this.labelxs > 0){
17412                 labelCfg.cls += ' col-xs-' + this.labelxs;
17413                 contentCfg.cls += ' col-xs-' + (12 - this.labelxs);
17414             }
17415                 
17416                 
17417         } else if ( this.fieldLabel.length) {
17418 //                Roo.log(" label");
17419                  cfg.cn = [
17420                    indicator,
17421                     {
17422                         tag: 'label',
17423                         //cls : 'input-group-addon',
17424                         html : this.fieldLabel
17425                     },
17426                     combobox
17427                 ];
17428                 
17429                 if(this.indicatorpos == 'right'){
17430                     cfg.cn = [
17431                         {
17432                             tag: 'label',
17433                             //cls : 'input-group-addon',
17434                             html : this.fieldLabel
17435                         },
17436                         indicator,
17437                         combobox
17438                     ];
17439                     
17440                 }
17441
17442         } else {
17443             
17444 //                Roo.log(" no label && no align");
17445                 cfg = combobox
17446                      
17447                 
17448         }
17449          
17450         var settings=this;
17451         ['xs','sm','md','lg'].map(function(size){
17452             if (settings[size]) {
17453                 cfg.cls += ' col-' + size + '-' + settings[size];
17454             }
17455         });
17456         
17457         return cfg;
17458         
17459     },
17460     
17461     _initEventsCalled : false,
17462     
17463     // private
17464     initEvents: function()
17465     {   
17466         if (this._initEventsCalled) { // as we call render... prevent looping...
17467             return;
17468         }
17469         this._initEventsCalled = true;
17470         
17471         if (!this.store) {
17472             throw "can not find store for combo";
17473         }
17474         
17475         this.indicator = this.indicatorEl();
17476         
17477         this.store = Roo.factory(this.store, Roo.data);
17478         this.store.parent = this;
17479         
17480         // if we are building from html. then this element is so complex, that we can not really
17481         // use the rendered HTML.
17482         // so we have to trash and replace the previous code.
17483         if (Roo.XComponent.build_from_html) {
17484             // remove this element....
17485             var e = this.el.dom, k=0;
17486             while (e ) { e = e.previousSibling;  ++k;}
17487
17488             this.el.remove();
17489             
17490             this.el=false;
17491             this.rendered = false;
17492             
17493             this.render(this.parent().getChildContainer(true), k);
17494         }
17495         
17496         if(Roo.isIOS && this.useNativeIOS){
17497             this.initIOSView();
17498             return;
17499         }
17500         
17501         /*
17502          * Touch Devices
17503          */
17504         
17505         if(Roo.isTouch && this.mobileTouchView){
17506             this.initTouchView();
17507             return;
17508         }
17509         
17510         if(this.tickable){
17511             this.initTickableEvents();
17512             return;
17513         }
17514         
17515         Roo.bootstrap.form.ComboBox.superclass.initEvents.call(this);
17516         
17517         if(this.hiddenName){
17518             
17519             this.hiddenField = this.el.select('input.form-hidden-field',true).first();
17520             
17521             this.hiddenField.dom.value =
17522                 this.hiddenValue !== undefined ? this.hiddenValue :
17523                 this.value !== undefined ? this.value : '';
17524
17525             // prevent input submission
17526             this.el.dom.removeAttribute('name');
17527             this.hiddenField.dom.setAttribute('name', this.hiddenName);
17528              
17529              
17530         }
17531         //if(Roo.isGecko){
17532         //    this.el.dom.setAttribute('autocomplete', 'off');
17533         //}
17534         
17535         var cls = 'x-combo-list';
17536         
17537         //this.list = new Roo.Layer({
17538         //    shadow: this.shadow, cls: [cls, this.listClass].join(' '), constrain:false
17539         //});
17540         
17541         var _this = this;
17542         
17543         (function(){
17544             var lw = _this.listWidth || Math.max(_this.inputEl().getWidth(), _this.minListWidth);
17545             _this.list.setWidth(lw);
17546         }).defer(100);
17547         
17548         this.list.on('mouseover', this.onViewOver, this);
17549         this.list.on('mousemove', this.onViewMove, this);
17550         this.list.on('scroll', this.onViewScroll, this);
17551         
17552         /*
17553         this.list.swallowEvent('mousewheel');
17554         this.assetHeight = 0;
17555
17556         if(this.title){
17557             this.header = this.list.createChild({cls:cls+'-hd', html: this.title});
17558             this.assetHeight += this.header.getHeight();
17559         }
17560
17561         this.innerList = this.list.createChild({cls:cls+'-inner'});
17562         this.innerList.on('mouseover', this.onViewOver, this);
17563         this.innerList.on('mousemove', this.onViewMove, this);
17564         this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
17565         
17566         if(this.allowBlank && !this.pageSize && !this.disableClear){
17567             this.footer = this.list.createChild({cls:cls+'-ft'});
17568             this.pageTb = new Roo.Toolbar(this.footer);
17569            
17570         }
17571         if(this.pageSize){
17572             this.footer = this.list.createChild({cls:cls+'-ft'});
17573             this.pageTb = new Roo.PagingToolbar(this.footer, this.store,
17574                     {pageSize: this.pageSize});
17575             
17576         }
17577         
17578         if (this.pageTb && this.allowBlank && !this.disableClear) {
17579             var _this = this;
17580             this.pageTb.add(new Roo.Toolbar.Fill(), {
17581                 cls: 'x-btn-icon x-btn-clear',
17582                 text: '&#160;',
17583                 handler: function()
17584                 {
17585                     _this.collapse();
17586                     _this.clearValue();
17587                     _this.onSelect(false, -1);
17588                 }
17589             });
17590         }
17591         if (this.footer) {
17592             this.assetHeight += this.footer.getHeight();
17593         }
17594         */
17595             
17596         if(!this.tpl){
17597             this.tpl = Roo.bootstrap.version == 4 ?
17598                 '<a class="dropdown-item" href="#">{' + this.displayField + '}</a>' :  // 4 does not need <li> and it get's really confisued.
17599                 '<li><a class="dropdown-item" href="#">{' + this.displayField + '}</a></li>';
17600         }
17601
17602         this.view = new Roo.View(this.list, this.tpl, {
17603             singleSelect:true, store: this.store, selectedClass: this.selectedClass
17604         });
17605         //this.view.wrapEl.setDisplayed(false);
17606         this.view.on('click', this.onViewClick, this);
17607         
17608         
17609         this.store.on('beforeload', this.onBeforeLoad, this);
17610         this.store.on('load', this.onLoad, this);
17611         this.store.on('loadexception', this.onLoadException, this);
17612         /*
17613         if(this.resizable){
17614             this.resizer = new Roo.Resizable(this.list,  {
17615                pinned:true, handles:'se'
17616             });
17617             this.resizer.on('resize', function(r, w, h){
17618                 this.maxHeight = h-this.handleHeight-this.list.getFrameWidth('tb')-this.assetHeight;
17619                 this.listWidth = w;
17620                 this.innerList.setWidth(w - this.list.getFrameWidth('lr'));
17621                 this.restrictHeight();
17622             }, this);
17623             this[this.pageSize?'footer':'innerList'].setStyle('margin-bottom', this.handleHeight+'px');
17624         }
17625         */
17626         if(!this.editable){
17627             this.editable = true;
17628             this.setEditable(false);
17629         }
17630         
17631         /*
17632         
17633         if (typeof(this.events.add.listeners) != 'undefined') {
17634             
17635             this.addicon = this.wrap.createChild(
17636                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-add' });  
17637        
17638             this.addicon.on('click', function(e) {
17639                 this.fireEvent('add', this);
17640             }, this);
17641         }
17642         if (typeof(this.events.edit.listeners) != 'undefined') {
17643             
17644             this.editicon = this.wrap.createChild(
17645                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-edit' });  
17646             if (this.addicon) {
17647                 this.editicon.setStyle('margin-left', '40px');
17648             }
17649             this.editicon.on('click', function(e) {
17650                 
17651                 // we fire even  if inothing is selected..
17652                 this.fireEvent('edit', this, this.lastData );
17653                 
17654             }, this);
17655         }
17656         */
17657         
17658         this.keyNav = new Roo.KeyNav(this.inputEl(), {
17659             "up" : function(e){
17660                 this.inKeyMode = true;
17661                 this.selectPrev();
17662             },
17663
17664             "down" : function(e){
17665                 if(!this.isExpanded()){
17666                     this.onTriggerClick();
17667                 }else{
17668                     this.inKeyMode = true;
17669                     this.selectNext();
17670                 }
17671             },
17672
17673             "enter" : function(e){
17674 //                this.onViewClick();
17675                 //return true;
17676                 this.collapse();
17677                 
17678                 if(this.fireEvent("specialkey", this, e)){
17679                     this.onViewClick(false);
17680                 }
17681                 
17682                 return true;
17683             },
17684
17685             "esc" : function(e){
17686                 this.collapse();
17687             },
17688
17689             "tab" : function(e){
17690                 this.collapse();
17691                 
17692                 if(this.fireEvent("specialkey", this, e)){
17693                     this.onViewClick(false);
17694                 }
17695                 
17696                 return true;
17697             },
17698
17699             scope : this,
17700
17701             doRelay : function(foo, bar, hname){
17702                 if(hname == 'down' || this.scope.isExpanded()){
17703                    return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
17704                 }
17705                 return true;
17706             },
17707
17708             forceKeyDown: true
17709         });
17710         
17711         
17712         this.queryDelay = Math.max(this.queryDelay || 10,
17713                 this.mode == 'local' ? 10 : 250);
17714         
17715         
17716         this.dqTask = new Roo.util.DelayedTask(this.initQuery, this);
17717         
17718         if(this.typeAhead){
17719             this.taTask = new Roo.util.DelayedTask(this.onTypeAhead, this);
17720         }
17721         if(this.editable !== false){
17722             this.inputEl().on("keyup", this.onKeyUp, this);
17723         }
17724         if(this.forceSelection){
17725             this.inputEl().on('blur', this.doForce, this);
17726         }
17727         
17728         if(this.multiple){
17729             this.choices = this.el.select('ul.roo-select2-choices', true).first();
17730             this.searchField = this.el.select('ul li.roo-select2-search-field', true).first();
17731         }
17732     },
17733     
17734     initTickableEvents: function()
17735     {   
17736         this.createList();
17737         
17738         if(this.hiddenName){
17739             
17740             this.hiddenField = this.el.select('input.form-hidden-field',true).first();
17741             
17742             this.hiddenField.dom.value =
17743                 this.hiddenValue !== undefined ? this.hiddenValue :
17744                 this.value !== undefined ? this.value : '';
17745
17746             // prevent input submission
17747             this.el.dom.removeAttribute('name');
17748             this.hiddenField.dom.setAttribute('name', this.hiddenName);
17749              
17750              
17751         }
17752         
17753 //        this.list = this.el.select('ul.dropdown-menu',true).first();
17754         
17755         this.choices = this.el.select('ul.roo-select2-choices', true).first();
17756         this.searchField = this.el.select('ul li.roo-select2-search-field', true).first();
17757         if(this.triggerList){
17758             this.searchField.on("click", this.onSearchFieldClick, this, {preventDefault:true});
17759         }
17760          
17761         this.trigger = this.el.select('.tickable-buttons > .btn-edit', true).first();
17762         this.trigger.on("click", this.onTickableTriggerClick, this, {preventDefault:true});
17763         
17764         this.okBtn = this.el.select('.tickable-buttons > .btn-ok', true).first();
17765         this.cancelBtn = this.el.select('.tickable-buttons > .btn-cancel', true).first();
17766         
17767         this.okBtn.on('click', this.onTickableFooterButtonClick, this, this.okBtn);
17768         this.cancelBtn.on('click', this.onTickableFooterButtonClick, this, this.cancelBtn);
17769         
17770         this.trigger.setVisibilityMode(Roo.Element.DISPLAY);
17771         this.okBtn.setVisibilityMode(Roo.Element.DISPLAY);
17772         this.cancelBtn.setVisibilityMode(Roo.Element.DISPLAY);
17773         
17774         this.okBtn.hide();
17775         this.cancelBtn.hide();
17776         
17777         var _this = this;
17778         
17779         (function(){
17780             var lw = _this.listWidth || Math.max(_this.inputEl().getWidth(), _this.minListWidth);
17781             _this.list.setWidth(lw);
17782         }).defer(100);
17783         
17784         this.list.on('mouseover', this.onViewOver, this);
17785         this.list.on('mousemove', this.onViewMove, this);
17786         
17787         this.list.on('scroll', this.onViewScroll, this);
17788         
17789         if(!this.tpl){
17790             this.tpl = '<li class="roo-select2-result"><div class="checkbox"><input id="{roo-id}"' + 
17791                 'type="checkbox" {roo-data-checked}><label for="{roo-id}"><b>{' + this.displayField + '}</b></label></div></li>';
17792         }
17793
17794         this.view = new Roo.View(this.list, this.tpl, {
17795             singleSelect:true,
17796             tickable:true,
17797             parent:this,
17798             store: this.store,
17799             selectedClass: this.selectedClass
17800         });
17801         
17802         //this.view.wrapEl.setDisplayed(false);
17803         this.view.on('click', this.onViewClick, this);
17804         
17805         
17806         
17807         this.store.on('beforeload', this.onBeforeLoad, this);
17808         this.store.on('load', this.onLoad, this);
17809         this.store.on('loadexception', this.onLoadException, this);
17810         
17811         if(this.editable){
17812             this.keyNav = new Roo.KeyNav(this.tickableInputEl(), {
17813                 "up" : function(e){
17814                     this.inKeyMode = true;
17815                     this.selectPrev();
17816                 },
17817
17818                 "down" : function(e){
17819                     this.inKeyMode = true;
17820                     this.selectNext();
17821                 },
17822
17823                 "enter" : function(e){
17824                     if(this.fireEvent("specialkey", this, e)){
17825                         this.onViewClick(false);
17826                     }
17827                     
17828                     return true;
17829                 },
17830
17831                 "esc" : function(e){
17832                     this.onTickableFooterButtonClick(e, false, false);
17833                 },
17834
17835                 "tab" : function(e){
17836                     this.fireEvent("specialkey", this, e);
17837                     
17838                     this.onTickableFooterButtonClick(e, false, false);
17839                     
17840                     return true;
17841                 },
17842
17843                 scope : this,
17844
17845                 doRelay : function(e, fn, key){
17846                     if(this.scope.isExpanded()){
17847                        return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
17848                     }
17849                     return true;
17850                 },
17851
17852                 forceKeyDown: true
17853             });
17854         }
17855         
17856         this.queryDelay = Math.max(this.queryDelay || 10,
17857                 this.mode == 'local' ? 10 : 250);
17858         
17859         
17860         this.dqTask = new Roo.util.DelayedTask(this.initQuery, this);
17861         
17862         if(this.typeAhead){
17863             this.taTask = new Roo.util.DelayedTask(this.onTypeAhead, this);
17864         }
17865         
17866         if(this.editable !== false){
17867             this.tickableInputEl().on("keyup", this.onKeyUp, this);
17868         }
17869         
17870         this.indicator = this.indicatorEl();
17871         
17872         if(this.indicator){
17873             this.indicator.setVisibilityMode(Roo.Element.DISPLAY);
17874             this.indicator.hide();
17875         }
17876         
17877     },
17878
17879     onDestroy : function(){
17880         if(this.view){
17881             this.view.setStore(null);
17882             this.view.el.removeAllListeners();
17883             this.view.el.remove();
17884             this.view.purgeListeners();
17885         }
17886         if(this.list){
17887             this.list.dom.innerHTML  = '';
17888         }
17889         
17890         if(this.store){
17891             this.store.un('beforeload', this.onBeforeLoad, this);
17892             this.store.un('load', this.onLoad, this);
17893             this.store.un('loadexception', this.onLoadException, this);
17894         }
17895         Roo.bootstrap.form.ComboBox.superclass.onDestroy.call(this);
17896     },
17897
17898     // private
17899     fireKey : function(e){
17900         if(e.isNavKeyPress() && !this.list.isVisible()){
17901             this.fireEvent("specialkey", this, e);
17902         }
17903     },
17904
17905     // private
17906     onResize: function(w, h)
17907     {
17908         
17909         
17910 //        Roo.bootstrap.form.ComboBox.superclass.onResize.apply(this, arguments);
17911 //        
17912 //        if(typeof w != 'number'){
17913 //            // we do not handle it!?!?
17914 //            return;
17915 //        }
17916 //        var tw = this.trigger.getWidth();
17917 //       // tw += this.addicon ? this.addicon.getWidth() : 0;
17918 //       // tw += this.editicon ? this.editicon.getWidth() : 0;
17919 //        var x = w - tw;
17920 //        this.inputEl().setWidth( this.adjustWidth('input', x));
17921 //            
17922 //        //this.trigger.setStyle('left', x+'px');
17923 //        
17924 //        if(this.list && this.listWidth === undefined){
17925 //            var lw = Math.max(x + this.trigger.getWidth(), this.minListWidth);
17926 //            this.list.setWidth(lw);
17927 //            this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
17928 //        }
17929         
17930     
17931         
17932     },
17933
17934     /**
17935      * Allow or prevent the user from directly editing the field text.  If false is passed,
17936      * the user will only be able to select from the items defined in the dropdown list.  This method
17937      * is the runtime equivalent of setting the 'editable' config option at config time.
17938      * @param {Boolean} value True to allow the user to directly edit the field text
17939      */
17940     setEditable : function(value){
17941         if(value == this.editable){
17942             return;
17943         }
17944         this.editable = value;
17945         if(!value){
17946             this.inputEl().dom.setAttribute('readOnly', true);
17947             this.inputEl().on('mousedown', this.onTriggerClick,  this);
17948             this.inputEl().addClass('x-combo-noedit');
17949         }else{
17950             this.inputEl().dom.removeAttribute('readOnly');
17951             this.inputEl().un('mousedown', this.onTriggerClick,  this);
17952             this.inputEl().removeClass('x-combo-noedit');
17953         }
17954     },
17955
17956     // private
17957     
17958     onBeforeLoad : function(combo,opts){
17959         if(!this.hasFocus){
17960             return;
17961         }
17962          if (!opts.add) {
17963             this.list.dom.innerHTML = '<li class="loading-indicator">'+(this.loadingText||'loading')+'</li>' ;
17964          }
17965         this.restrictHeight();
17966         this.selectedIndex = -1;
17967     },
17968
17969     // private
17970     onLoad : function(){
17971         
17972         this.hasQuery = false;
17973         
17974         if(!this.hasFocus){
17975             return;
17976         }
17977         
17978         if(typeof(this.loading) !== 'undefined' && this.loading !== null){
17979             this.loading.hide();
17980         }
17981         
17982         if(this.store.getCount() > 0){
17983             
17984             this.expand();
17985             this.restrictHeight();
17986             if(this.lastQuery == this.allQuery){
17987                 if(this.editable && !this.tickable){
17988                     this.inputEl().dom.select();
17989                 }
17990                 
17991                 if(
17992                     !this.selectByValue(this.value, true) &&
17993                     this.autoFocus && 
17994                     (
17995                         !this.store.lastOptions ||
17996                         typeof(this.store.lastOptions.add) == 'undefined' || 
17997                         this.store.lastOptions.add != true
17998                     )
17999                 ){
18000                     this.select(0, true);
18001                 }
18002             }else{
18003                 if(this.autoFocus){
18004                     this.selectNext();
18005                 }
18006                 if(this.typeAhead && this.lastKey != Roo.EventObject.BACKSPACE && this.lastKey != Roo.EventObject.DELETE){
18007                     this.taTask.delay(this.typeAheadDelay);
18008                 }
18009             }
18010         }else{
18011             this.onEmptyResults();
18012         }
18013         
18014         //this.el.focus();
18015     },
18016     // private
18017     onLoadException : function()
18018     {
18019         this.hasQuery = false;
18020         
18021         if(typeof(this.loading) !== 'undefined' && this.loading !== null){
18022             this.loading.hide();
18023         }
18024         
18025         if(this.tickable && this.editable){
18026             return;
18027         }
18028         
18029         this.collapse();
18030         // only causes errors at present
18031         //Roo.log(this.store.reader.jsonData);
18032         //if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
18033             // fixme
18034             //Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
18035         //}
18036         
18037         
18038     },
18039     // private
18040     onTypeAhead : function(){
18041         if(this.store.getCount() > 0){
18042             var r = this.store.getAt(0);
18043             var newValue = r.data[this.displayField];
18044             var len = newValue.length;
18045             var selStart = this.getRawValue().length;
18046             
18047             if(selStart != len){
18048                 this.setRawValue(newValue);
18049                 this.selectText(selStart, newValue.length);
18050             }
18051         }
18052     },
18053
18054     // private
18055     onSelect : function(record, index){
18056         
18057         if(this.fireEvent('beforeselect', this, record, index) !== false){
18058         
18059             this.setFromData(index > -1 ? record.data : false);
18060             
18061             this.collapse();
18062             this.fireEvent('select', this, record, index);
18063         }
18064     },
18065
18066     /**
18067      * Returns the currently selected field value or empty string if no value is set.
18068      * @return {String} value The selected value
18069      */
18070     getValue : function()
18071     {
18072         if(Roo.isIOS && this.useNativeIOS){
18073             return this.ios_options[this.inputEl().dom.selectedIndex].data[this.valueField];
18074         }
18075         
18076         if(this.multiple){
18077             return (this.hiddenField) ? this.hiddenField.dom.value : this.value;
18078         }
18079         
18080         if(this.valueField){
18081             return typeof this.value != 'undefined' ? this.value : '';
18082         }else{
18083             return Roo.bootstrap.form.ComboBox.superclass.getValue.call(this);
18084         }
18085     },
18086     
18087     getRawValue : function()
18088     {
18089         if(Roo.isIOS && this.useNativeIOS){
18090             return this.ios_options[this.inputEl().dom.selectedIndex].data[this.displayField];
18091         }
18092         
18093         var v = this.inputEl().getValue();
18094         
18095         return v;
18096     },
18097
18098     /**
18099      * Clears any text/value currently set in the field
18100      */
18101     clearValue : function(){
18102         
18103         if(this.hiddenField){
18104             this.hiddenField.dom.value = '';
18105         }
18106         this.value = '';
18107         this.setRawValue('');
18108         this.lastSelectionText = '';
18109         this.lastData = false;
18110         
18111         var close = this.closeTriggerEl();
18112         
18113         if(close){
18114             close.hide();
18115         }
18116         
18117         this.validate();
18118         
18119     },
18120
18121     /**
18122      * Sets the specified value into the field.  If the value finds a match, the corresponding record text
18123      * will be displayed in the field.  If the value does not match the data value of an existing item,
18124      * and the valueNotFoundText config option is defined, it will be displayed as the default field text.
18125      * Otherwise the field will be blank (although the value will still be set).
18126      * @param {String} value The value to match
18127      */
18128     setValue : function(v)
18129     {
18130         if(Roo.isIOS && this.useNativeIOS){
18131             this.setIOSValue(v);
18132             return;
18133         }
18134         
18135         if(this.multiple){
18136             this.syncValue();
18137             return;
18138         }
18139         
18140         var text = v;
18141         if(this.valueField){
18142             var r = this.findRecord(this.valueField, v);
18143             if(r){
18144                 text = r.data[this.displayField];
18145             }else if(this.valueNotFoundText !== undefined){
18146                 text = this.valueNotFoundText;
18147             }
18148         }
18149         this.lastSelectionText = text;
18150         if(this.hiddenField){
18151             this.hiddenField.dom.value = v;
18152         }
18153         Roo.bootstrap.form.ComboBox.superclass.setValue.call(this, text);
18154         this.value = v;
18155         
18156         var close = this.closeTriggerEl();
18157         
18158         if(close){
18159             (v && (v.length || v * 1 > 0)) ? close.show() : close.hide();
18160         }
18161         
18162         this.validate();
18163     },
18164     /**
18165      * @property {Object} the last set data for the element
18166      */
18167     
18168     lastData : false,
18169     /**
18170      * Sets the value of the field based on a object which is related to the record format for the store.
18171      * @param {Object} value the value to set as. or false on reset?
18172      */
18173     setFromData : function(o){
18174         
18175         if(this.multiple){
18176             this.addItem(o);
18177             return;
18178         }
18179             
18180         var dv = ''; // display value
18181         var vv = ''; // value value..
18182         this.lastData = o;
18183         if (this.displayField) {
18184             dv = !o || typeof(o[this.displayField]) == 'undefined' ? '' : o[this.displayField];
18185         } else {
18186             // this is an error condition!!!
18187             Roo.log('no  displayField value set for '+ (this.name ? this.name : this.id));
18188         }
18189         
18190         if(this.valueField){
18191             vv = !o || typeof(o[this.valueField]) == 'undefined' ? dv : o[this.valueField];
18192         }
18193         
18194         var close = this.closeTriggerEl();
18195         
18196         if(close){
18197             if(dv.length || vv * 1 > 0){
18198                 close.show() ;
18199                 this.blockFocus=true;
18200             } else {
18201                 close.hide();
18202             }             
18203         }
18204         
18205         if(this.hiddenField){
18206             this.hiddenField.dom.value = vv;
18207             
18208             this.lastSelectionText = dv;
18209             Roo.bootstrap.form.ComboBox.superclass.setValue.call(this, dv);
18210             this.value = vv;
18211             return;
18212         }
18213         // no hidden field.. - we store the value in 'value', but still display
18214         // display field!!!!
18215         this.lastSelectionText = dv;
18216         Roo.bootstrap.form.ComboBox.superclass.setValue.call(this, dv);
18217         this.value = vv;
18218         
18219         
18220         
18221     },
18222     // private
18223     reset : function(){
18224         // overridden so that last data is reset..
18225         
18226         if(this.multiple){
18227             this.clearItem();
18228             return;
18229         }
18230         
18231         this.setValue(this.originalValue);
18232         //this.clearInvalid();
18233         this.lastData = false;
18234         if (this.view) {
18235             this.view.clearSelections();
18236         }
18237         
18238         this.validate();
18239     },
18240     // private
18241     findRecord : function(prop, value){
18242         var record;
18243         if(this.store.getCount() > 0){
18244             this.store.each(function(r){
18245                 if(r.data[prop] == value){
18246                     record = r;
18247                     return false;
18248                 }
18249                 return true;
18250             });
18251         }
18252         return record;
18253     },
18254     
18255     getName: function()
18256     {
18257         // returns hidden if it's set..
18258         if (!this.rendered) {return ''};
18259         return !this.hiddenName && this.inputEl().dom.name  ? this.inputEl().dom.name : (this.hiddenName || '');
18260         
18261     },
18262     // private
18263     onViewMove : function(e, t){
18264         this.inKeyMode = false;
18265     },
18266
18267     // private
18268     onViewOver : function(e, t){
18269         if(this.inKeyMode){ // prevent key nav and mouse over conflicts
18270             return;
18271         }
18272         var item = this.view.findItemFromChild(t);
18273         
18274         if(item){
18275             var index = this.view.indexOf(item);
18276             this.select(index, false);
18277         }
18278     },
18279
18280     // private
18281     onViewClick : function(view, doFocus, el, e)
18282     {
18283         var index = this.view.getSelectedIndexes()[0];
18284         
18285         var r = this.store.getAt(index);
18286         
18287         if(this.tickable){
18288             
18289             if(typeof(e) != 'undefined' && e.getTarget().nodeName.toLowerCase() != 'input'){
18290                 return;
18291             }
18292             
18293             var rm = false;
18294             var _this = this;
18295             
18296             Roo.each(this.tickItems, function(v,k){
18297                 
18298                 if(typeof(v) != 'undefined' && v[_this.valueField] == r.data[_this.valueField]){
18299                     Roo.log(v);
18300                     _this.tickItems.splice(k, 1);
18301                     
18302                     if(typeof(e) == 'undefined' && view == false){
18303                         Roo.get(_this.view.getNodes(index, index)[0]).select('input', true).first().dom.checked = false;
18304                     }
18305                     
18306                     rm = true;
18307                     return;
18308                 }
18309             });
18310             
18311             if(rm){
18312                 return;
18313             }
18314             
18315             if(this.fireEvent('tick', this, r, index, Roo.get(_this.view.getNodes(index, index)[0]).select('input', true).first().dom.checked) !== false){
18316                 this.tickItems.push(r.data);
18317             }
18318             
18319             if(typeof(e) == 'undefined' && view == false){
18320                 Roo.get(_this.view.getNodes(index, index)[0]).select('input', true).first().dom.checked = true;
18321             }
18322                     
18323             return;
18324         }
18325         
18326         if(r){
18327             this.onSelect(r, index);
18328         }
18329         if(doFocus !== false && !this.blockFocus){
18330             this.inputEl().focus();
18331         }
18332     },
18333
18334     // private
18335     restrictHeight : function(){
18336         //this.innerList.dom.style.height = '';
18337         //var inner = this.innerList.dom;
18338         //var h = Math.max(inner.clientHeight, inner.offsetHeight, inner.scrollHeight);
18339         //this.innerList.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
18340         //this.list.beginUpdate();
18341         //this.list.setHeight(this.innerList.getHeight()+this.list.getFrameWidth('tb')+(this.resizable?this.handleHeight:0)+this.assetHeight);
18342         this.list.alignTo(this.inputEl(), this.listAlign);
18343         this.list.alignTo(this.inputEl(), this.listAlign);
18344         //this.list.endUpdate();
18345     },
18346
18347     // private
18348     onEmptyResults : function(){
18349         
18350         if(this.tickable && this.editable){
18351             this.hasFocus = false;
18352             this.restrictHeight();
18353             return;
18354         }
18355         
18356         this.collapse();
18357     },
18358
18359     /**
18360      * Returns true if the dropdown list is expanded, else false.
18361      */
18362     isExpanded : function(){
18363         return this.list.isVisible();
18364     },
18365
18366     /**
18367      * Select an item in the dropdown list by its data value. This function does NOT cause the select event to fire.
18368      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
18369      * @param {String} value The data value of the item to select
18370      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
18371      * selected item if it is not currently in view (defaults to true)
18372      * @return {Boolean} True if the value matched an item in the list, else false
18373      */
18374     selectByValue : function(v, scrollIntoView){
18375         if(v !== undefined && v !== null){
18376             var r = this.findRecord(this.valueField || this.displayField, v);
18377             if(r){
18378                 this.select(this.store.indexOf(r), scrollIntoView);
18379                 return true;
18380             }
18381         }
18382         return false;
18383     },
18384
18385     /**
18386      * Select an item in the dropdown list by its numeric index in the list. This function does NOT cause the select event to fire.
18387      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
18388      * @param {Number} index The zero-based index of the list item to select
18389      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
18390      * selected item if it is not currently in view (defaults to true)
18391      */
18392     select : function(index, scrollIntoView){
18393         this.selectedIndex = index;
18394         this.view.select(index);
18395         if(scrollIntoView !== false){
18396             var el = this.view.getNode(index);
18397             /*
18398              * el && !this.multiple && !this.tickable // not sure why we disable multiple before..
18399              */
18400             if(el){
18401                 this.list.scrollChildIntoView(el, false);
18402             }
18403         }
18404     },
18405
18406     // private
18407     selectNext : function(){
18408         var ct = this.store.getCount();
18409         if(ct > 0){
18410             if(this.selectedIndex == -1){
18411                 this.select(0);
18412             }else if(this.selectedIndex < ct-1){
18413                 this.select(this.selectedIndex+1);
18414             }
18415         }
18416     },
18417
18418     // private
18419     selectPrev : function(){
18420         var ct = this.store.getCount();
18421         if(ct > 0){
18422             if(this.selectedIndex == -1){
18423                 this.select(0);
18424             }else if(this.selectedIndex != 0){
18425                 this.select(this.selectedIndex-1);
18426             }
18427         }
18428     },
18429
18430     // private
18431     onKeyUp : function(e){
18432         if(this.editable !== false && !e.isSpecialKey()){
18433             this.lastKey = e.getKey();
18434             this.dqTask.delay(this.queryDelay);
18435         }
18436     },
18437
18438     // private
18439     validateBlur : function(){
18440         return !this.list || !this.list.isVisible();   
18441     },
18442
18443     // private
18444     initQuery : function(){
18445         
18446         var v = this.getRawValue();
18447         
18448         if(this.tickable && this.editable){
18449             v = this.tickableInputEl().getValue();
18450         }
18451         
18452         this.doQuery(v);
18453     },
18454
18455     // private
18456     doForce : function(){
18457         if(this.inputEl().dom.value.length > 0){
18458             this.inputEl().dom.value =
18459                 this.lastSelectionText === undefined ? '' : this.lastSelectionText;
18460              
18461         }
18462     },
18463
18464     /**
18465      * Execute a query to filter the dropdown list.  Fires the beforequery event prior to performing the
18466      * query allowing the query action to be canceled if needed.
18467      * @param {String} query The SQL query to execute
18468      * @param {Boolean} forceAll True to force the query to execute even if there are currently fewer characters
18469      * in the field than the minimum specified by the minChars config option.  It also clears any filter previously
18470      * saved in the current store (defaults to false)
18471      */
18472     doQuery : function(q, forceAll){
18473         
18474         if(q === undefined || q === null){
18475             q = '';
18476         }
18477         var qe = {
18478             query: q,
18479             forceAll: forceAll,
18480             combo: this,
18481             cancel:false
18482         };
18483         if(this.fireEvent('beforequery', qe)===false || qe.cancel){
18484             return false;
18485         }
18486         q = qe.query;
18487         
18488         forceAll = qe.forceAll;
18489         if(forceAll === true || (q.length >= this.minChars)){
18490             
18491             this.hasQuery = true;
18492             
18493             if(this.lastQuery != q || this.alwaysQuery){
18494                 this.lastQuery = q;
18495                 if(this.mode == 'local'){
18496                     this.selectedIndex = -1;
18497                     if(forceAll){
18498                         this.store.clearFilter();
18499                     }else{
18500                         
18501                         if(this.specialFilter){
18502                             this.fireEvent('specialfilter', this);
18503                             this.onLoad();
18504                             return;
18505                         }
18506                         
18507                         this.store.filter(this.displayField, q);
18508                     }
18509                     
18510                     this.store.fireEvent("datachanged", this.store);
18511                     
18512                     this.onLoad();
18513                     
18514                     
18515                 }else{
18516                     
18517                     this.store.baseParams[this.queryParam] = q;
18518                     
18519                     var options = {params : this.getParams(q)};
18520                     
18521                     if(this.loadNext){
18522                         options.add = true;
18523                         options.params.start = this.page * this.pageSize;
18524                     }
18525                     
18526                     this.store.load(options);
18527                     
18528                     /*
18529                      *  this code will make the page width larger, at the beginning, the list not align correctly, 
18530                      *  we should expand the list on onLoad
18531                      *  so command out it
18532                      */
18533 //                    this.expand();
18534                 }
18535             }else{
18536                 this.selectedIndex = -1;
18537                 this.onLoad();   
18538             }
18539         }
18540         
18541         this.loadNext = false;
18542     },
18543     
18544     // private
18545     getParams : function(q){
18546         var p = {};
18547         //p[this.queryParam] = q;
18548         
18549         if(this.pageSize){
18550             p.start = 0;
18551             p.limit = this.pageSize;
18552         }
18553         return p;
18554     },
18555
18556     /**
18557      * Hides the dropdown list if it is currently expanded. Fires the 'collapse' event on completion.
18558      */
18559     collapse : function(){
18560         if(!this.isExpanded()){
18561             return;
18562         }
18563         
18564         this.list.hide();
18565         
18566         this.hasFocus = false;
18567         
18568         if(this.tickable){
18569             this.okBtn.hide();
18570             this.cancelBtn.hide();
18571             this.trigger.show();
18572             
18573             if(this.editable){
18574                 this.tickableInputEl().dom.value = '';
18575                 this.tickableInputEl().blur();
18576             }
18577             
18578         }
18579         
18580         Roo.get(document).un('mousedown', this.collapseIf, this);
18581         Roo.get(document).un('mousewheel', this.collapseIf, this);
18582         if (!this.editable) {
18583             Roo.get(document).un('keydown', this.listKeyPress, this);
18584         }
18585         this.fireEvent('collapse', this);
18586         
18587         this.validate();
18588     },
18589
18590     // private
18591     collapseIf : function(e){
18592         var in_combo  = e.within(this.el);
18593         var in_list =  e.within(this.list);
18594         var is_list = (Roo.get(e.getTarget()).id == this.list.id) ? true : false;
18595         
18596         if (in_combo || in_list || is_list) {
18597             //e.stopPropagation();
18598             return;
18599         }
18600         
18601         if(this.tickable){
18602             this.onTickableFooterButtonClick(e, false, false);
18603         }
18604
18605         this.collapse();
18606         
18607     },
18608
18609     /**
18610      * Expands the dropdown list if it is currently hidden. Fires the 'expand' event on completion.
18611      */
18612     expand : function(){
18613        
18614         if(this.isExpanded() || !this.hasFocus){
18615             return;
18616         }
18617         
18618         var lw = this.listWidth || Math.max(this.inputEl().getWidth(), this.minListWidth);
18619         this.list.setWidth(lw);
18620         
18621         Roo.log('expand');
18622         
18623         this.list.show();
18624         
18625         this.restrictHeight();
18626         
18627         if(this.tickable){
18628             
18629             this.tickItems = Roo.apply([], this.item);
18630             
18631             this.okBtn.show();
18632             this.cancelBtn.show();
18633             this.trigger.hide();
18634             
18635             if(this.editable){
18636                 this.tickableInputEl().focus();
18637             }
18638             
18639         }
18640         
18641         Roo.get(document).on('mousedown', this.collapseIf, this);
18642         Roo.get(document).on('mousewheel', this.collapseIf, this);
18643         if (!this.editable) {
18644             Roo.get(document).on('keydown', this.listKeyPress, this);
18645         }
18646         
18647         this.fireEvent('expand', this);
18648     },
18649
18650     // private
18651     // Implements the default empty TriggerField.onTriggerClick function
18652     onTriggerClick : function(e)
18653     {
18654         Roo.log('trigger click');
18655         
18656         if(this.disabled || !this.triggerList){
18657             return;
18658         }
18659         
18660         this.page = 0;
18661         this.loadNext = false;
18662         
18663         if(this.isExpanded()){
18664             this.collapse();
18665             if (!this.blockFocus) {
18666                 this.inputEl().focus();
18667             }
18668             
18669         }else {
18670             this.hasFocus = true;
18671             if(this.triggerAction == 'all') {
18672                 this.doQuery(this.allQuery, true);
18673             } else {
18674                 this.doQuery(this.getRawValue());
18675             }
18676             if (!this.blockFocus) {
18677                 this.inputEl().focus();
18678             }
18679         }
18680     },
18681     
18682     onTickableTriggerClick : function(e)
18683     {
18684         if(this.disabled){
18685             return;
18686         }
18687         
18688         this.page = 0;
18689         this.loadNext = false;
18690         this.hasFocus = true;
18691         
18692         if(this.triggerAction == 'all') {
18693             this.doQuery(this.allQuery, true);
18694         } else {
18695             this.doQuery(this.getRawValue());
18696         }
18697     },
18698     
18699     onSearchFieldClick : function(e)
18700     {
18701         if(this.hasFocus && !this.disabled && e.getTarget().nodeName.toLowerCase() != 'button'){
18702             this.onTickableFooterButtonClick(e, false, false);
18703             return;
18704         }
18705         
18706         if(this.hasFocus || this.disabled || e.getTarget().nodeName.toLowerCase() == 'button'){
18707             return;
18708         }
18709         
18710         this.page = 0;
18711         this.loadNext = false;
18712         this.hasFocus = true;
18713         
18714         if(this.triggerAction == 'all') {
18715             this.doQuery(this.allQuery, true);
18716         } else {
18717             this.doQuery(this.getRawValue());
18718         }
18719     },
18720     
18721     listKeyPress : function(e)
18722     {
18723         //Roo.log('listkeypress');
18724         // scroll to first matching element based on key pres..
18725         if (e.isSpecialKey()) {
18726             return false;
18727         }
18728         var k = String.fromCharCode(e.getKey()).toUpperCase();
18729         //Roo.log(k);
18730         var match  = false;
18731         var csel = this.view.getSelectedNodes();
18732         var cselitem = false;
18733         if (csel.length) {
18734             var ix = this.view.indexOf(csel[0]);
18735             cselitem  = this.store.getAt(ix);
18736             if (!cselitem.get(this.displayField) || cselitem.get(this.displayField).substring(0,1).toUpperCase() != k) {
18737                 cselitem = false;
18738             }
18739             
18740         }
18741         
18742         this.store.each(function(v) { 
18743             if (cselitem) {
18744                 // start at existing selection.
18745                 if (cselitem.id == v.id) {
18746                     cselitem = false;
18747                 }
18748                 return true;
18749             }
18750                 
18751             if (v.get(this.displayField) && v.get(this.displayField).substring(0,1).toUpperCase() == k) {
18752                 match = this.store.indexOf(v);
18753                 return false;
18754             }
18755             return true;
18756         }, this);
18757         
18758         if (match === false) {
18759             return true; // no more action?
18760         }
18761         // scroll to?
18762         this.view.select(match);
18763         var sn = Roo.get(this.view.getSelectedNodes()[0]);
18764         sn.scrollIntoView(sn.dom.parentNode, false);
18765     },
18766     
18767     onViewScroll : function(e, t){
18768         
18769         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){
18770             return;
18771         }
18772         
18773         this.hasQuery = true;
18774         
18775         this.loading = this.list.select('.loading', true).first();
18776         
18777         if(this.loading === null){
18778             this.list.createChild({
18779                 tag: 'div',
18780                 cls: 'loading roo-select2-more-results roo-select2-active',
18781                 html: 'Loading more results...'
18782             });
18783             
18784             this.loading = this.list.select('.loading', true).first();
18785             
18786             this.loading.setVisibilityMode(Roo.Element.DISPLAY);
18787             
18788             this.loading.hide();
18789         }
18790         
18791         this.loading.show();
18792         
18793         var _combo = this;
18794         
18795         this.page++;
18796         this.loadNext = true;
18797         
18798         (function() { _combo.doQuery(_combo.allQuery, true); }).defer(500);
18799         
18800         return;
18801     },
18802     
18803     addItem : function(o)
18804     {   
18805         var dv = ''; // display value
18806         
18807         if (this.displayField) {
18808             dv = !o || typeof(o[this.displayField]) == 'undefined' ? '' : o[this.displayField];
18809         } else {
18810             // this is an error condition!!!
18811             Roo.log('no  displayField value set for '+ (this.name ? this.name : this.id));
18812         }
18813         
18814         if(!dv.length){
18815             return;
18816         }
18817         
18818         var choice = this.choices.createChild({
18819             tag: 'li',
18820             cls: 'roo-select2-search-choice',
18821             cn: [
18822                 {
18823                     tag: 'div',
18824                     html: dv
18825                 },
18826                 {
18827                     tag: 'a',
18828                     href: '#',
18829                     cls: 'roo-select2-search-choice-close fa fa-times',
18830                     tabindex: '-1'
18831                 }
18832             ]
18833             
18834         }, this.searchField);
18835         
18836         var close = choice.select('a.roo-select2-search-choice-close', true).first();
18837         
18838         close.on('click', this.onRemoveItem, this, { item : choice, data : o} );
18839         
18840         this.item.push(o);
18841         
18842         this.lastData = o;
18843         
18844         this.syncValue();
18845         
18846         this.inputEl().dom.value = '';
18847         
18848         this.validate();
18849     },
18850     
18851     onRemoveItem : function(e, _self, o)
18852     {
18853         e.preventDefault();
18854         
18855         this.lastItem = Roo.apply([], this.item);
18856         
18857         var index = this.item.indexOf(o.data) * 1;
18858         
18859         if( index < 0){
18860             Roo.log('not this item?!');
18861             return;
18862         }
18863         
18864         this.item.splice(index, 1);
18865         o.item.remove();
18866         
18867         this.syncValue();
18868         
18869         this.fireEvent('remove', this, e);
18870         
18871         this.validate();
18872         
18873     },
18874     
18875     syncValue : function()
18876     {
18877         if(!this.item.length){
18878             this.clearValue();
18879             return;
18880         }
18881             
18882         var value = [];
18883         var _this = this;
18884         Roo.each(this.item, function(i){
18885             if(_this.valueField){
18886                 value.push(i[_this.valueField]);
18887                 return;
18888             }
18889
18890             value.push(i);
18891         });
18892
18893         this.value = value.join(',');
18894
18895         if(this.hiddenField){
18896             this.hiddenField.dom.value = this.value;
18897         }
18898         
18899         this.store.fireEvent("datachanged", this.store);
18900         
18901         this.validate();
18902     },
18903     
18904     clearItem : function()
18905     {
18906         if(!this.multiple){
18907             return;
18908         }
18909         
18910         this.item = [];
18911         
18912         Roo.each(this.choices.select('>li.roo-select2-search-choice', true).elements, function(c){
18913            c.remove();
18914         });
18915         
18916         this.syncValue();
18917         
18918         this.validate();
18919         
18920         if(this.tickable && !Roo.isTouch){
18921             this.view.refresh();
18922         }
18923     },
18924     
18925     inputEl: function ()
18926     {
18927         if(Roo.isIOS && this.useNativeIOS){
18928             return this.el.select('select.roo-ios-select', true).first();
18929         }
18930         
18931         if(Roo.isTouch && this.mobileTouchView){
18932             return this.el.select('input.form-control',true).first();
18933         }
18934         
18935         if(this.tickable){
18936             return this.searchField;
18937         }
18938         
18939         return this.el.select('input.form-control',true).first();
18940     },
18941     
18942     onTickableFooterButtonClick : function(e, btn, el)
18943     {
18944         e.preventDefault();
18945         
18946         this.lastItem = Roo.apply([], this.item);
18947         
18948         if(btn && btn.name == 'cancel'){
18949             this.tickItems = Roo.apply([], this.item);
18950             this.collapse();
18951             return;
18952         }
18953         
18954         this.clearItem();
18955         
18956         var _this = this;
18957         
18958         Roo.each(this.tickItems, function(o){
18959             _this.addItem(o);
18960         });
18961         
18962         this.collapse();
18963         
18964     },
18965     
18966     validate : function()
18967     {
18968         if(this.getVisibilityEl().hasClass('hidden')){
18969             return true;
18970         }
18971         
18972         var v = this.getRawValue();
18973         
18974         if(this.multiple){
18975             v = this.getValue();
18976         }
18977         
18978         if(this.disabled || this.allowBlank || v.length){
18979             this.markValid();
18980             return true;
18981         }
18982         
18983         this.markInvalid();
18984         return false;
18985     },
18986     
18987     tickableInputEl : function()
18988     {
18989         if(!this.tickable || !this.editable){
18990             return this.inputEl();
18991         }
18992         
18993         return this.inputEl().select('.roo-select2-search-field-input', true).first();
18994     },
18995     
18996     
18997     getAutoCreateTouchView : function()
18998     {
18999         var id = Roo.id();
19000         
19001         var cfg = {
19002             cls: 'form-group' //input-group
19003         };
19004         
19005         var input =  {
19006             tag: 'input',
19007             id : id,
19008             type : this.inputType,
19009             cls : 'form-control x-combo-noedit',
19010             autocomplete: 'new-password',
19011             placeholder : this.placeholder || '',
19012             readonly : true
19013         };
19014         
19015         if (this.name) {
19016             input.name = this.name;
19017         }
19018         
19019         if (this.size) {
19020             input.cls += ' input-' + this.size;
19021         }
19022         
19023         if (this.disabled) {
19024             input.disabled = true;
19025         }
19026         
19027         var inputblock = {
19028             cls : 'roo-combobox-wrap',
19029             cn : [
19030                 input
19031             ]
19032         };
19033         
19034         if(this.before){
19035             inputblock.cls += ' input-group';
19036             
19037             inputblock.cn.unshift({
19038                 tag :'span',
19039                 cls : 'input-group-addon input-group-prepend input-group-text',
19040                 html : this.before
19041             });
19042         }
19043         
19044         if(this.removable && !this.multiple){
19045             inputblock.cls += ' roo-removable';
19046             
19047             inputblock.cn.push({
19048                 tag: 'button',
19049                 html : 'x',
19050                 cls : 'roo-combo-removable-btn close'
19051             });
19052         }
19053
19054         if(this.hasFeedback && !this.allowBlank){
19055             
19056             inputblock.cls += ' has-feedback';
19057             
19058             inputblock.cn.push({
19059                 tag: 'span',
19060                 cls: 'glyphicon form-control-feedback'
19061             });
19062             
19063         }
19064         
19065         if (this.after) {
19066             
19067             inputblock.cls += (this.before) ? '' : ' input-group';
19068             
19069             inputblock.cn.push({
19070                 tag :'span',
19071                 cls : 'input-group-addon input-group-append input-group-text',
19072                 html : this.after
19073             });
19074         }
19075
19076         
19077         var ibwrap = inputblock;
19078         
19079         if(this.multiple){
19080             ibwrap = {
19081                 tag: 'ul',
19082                 cls: 'roo-select2-choices',
19083                 cn:[
19084                     {
19085                         tag: 'li',
19086                         cls: 'roo-select2-search-field',
19087                         cn: [
19088
19089                             inputblock
19090                         ]
19091                     }
19092                 ]
19093             };
19094         
19095             
19096         }
19097         
19098         var combobox = {
19099             cls: 'roo-select2-container input-group roo-touchview-combobox ',
19100             cn: [
19101                 {
19102                     tag: 'input',
19103                     type : 'hidden',
19104                     cls: 'form-hidden-field'
19105                 },
19106                 ibwrap
19107             ]
19108         };
19109         
19110         if(!this.multiple && this.showToggleBtn){
19111             
19112             var caret = {
19113                 cls: 'caret'
19114             };
19115             
19116             if (this.caret != false) {
19117                 caret = {
19118                      tag: 'i',
19119                      cls: 'fa fa-' + this.caret
19120                 };
19121                 
19122             }
19123             
19124             combobox.cn.push({
19125                 tag :'span',
19126                 cls : 'input-group-addon input-group-append input-group-text btn dropdown-toggle',
19127                 cn : [
19128                     Roo.bootstrap.version == 3 ? caret : '',
19129                     {
19130                         tag: 'span',
19131                         cls: 'combobox-clear',
19132                         cn  : [
19133                             {
19134                                 tag : 'i',
19135                                 cls: 'icon-remove'
19136                             }
19137                         ]
19138                     }
19139                 ]
19140
19141             })
19142         }
19143         
19144         if(this.multiple){
19145             combobox.cls += ' roo-select2-container-multi';
19146         }
19147         
19148         var required =  this.allowBlank ?  {
19149                     tag : 'i',
19150                     style: 'display: none'
19151                 } : {
19152                    tag : 'i',
19153                    cls : 'roo-required-indicator left-indicator text-danger fa fa-lg fa-star',
19154                    tooltip : 'This field is required'
19155                 };
19156         
19157         var align = this.labelAlign || this.parentLabelAlign();
19158         
19159         if (align ==='left' && this.fieldLabel.length) {
19160
19161             cfg.cn = [
19162                 required,
19163                 {
19164                     tag: 'label',
19165                     cls : 'control-label col-form-label',
19166                     html : this.fieldLabel
19167
19168                 },
19169                 {
19170                     cls : 'roo-combobox-wrap ', 
19171                     cn: [
19172                         combobox
19173                     ]
19174                 }
19175             ];
19176             
19177             var labelCfg = cfg.cn[1];
19178             var contentCfg = cfg.cn[2];
19179             
19180
19181             if(this.indicatorpos == 'right'){
19182                 cfg.cn = [
19183                     {
19184                         tag: 'label',
19185                         'for' :  id,
19186                         cls : 'control-label col-form-label',
19187                         cn : [
19188                             {
19189                                 tag : 'span',
19190                                 html : this.fieldLabel
19191                             },
19192                             required
19193                         ]
19194                     },
19195                     {
19196                         cls : "roo-combobox-wrap ",
19197                         cn: [
19198                             combobox
19199                         ]
19200                     }
19201
19202                 ];
19203                 
19204                 labelCfg = cfg.cn[0];
19205                 contentCfg = cfg.cn[1];
19206             }
19207             
19208            
19209             
19210             if(this.labelWidth > 12){
19211                 labelCfg.style = "width: " + this.labelWidth + 'px';
19212             }
19213            
19214             if(this.labelWidth < 13 && this.labelmd == 0){
19215                 this.labelmd = this.labelWidth;
19216             }
19217             
19218             if(this.labellg > 0){
19219                 labelCfg.cls += ' col-lg-' + this.labellg;
19220                 contentCfg.cls += ' col-lg-' + (12 - this.labellg);
19221             }
19222             
19223             if(this.labelmd > 0){
19224                 labelCfg.cls += ' col-md-' + this.labelmd;
19225                 contentCfg.cls += ' col-md-' + (12 - this.labelmd);
19226             }
19227             
19228             if(this.labelsm > 0){
19229                 labelCfg.cls += ' col-sm-' + this.labelsm;
19230                 contentCfg.cls += ' col-sm-' + (12 - this.labelsm);
19231             }
19232             
19233             if(this.labelxs > 0){
19234                 labelCfg.cls += ' col-xs-' + this.labelxs;
19235                 contentCfg.cls += ' col-xs-' + (12 - this.labelxs);
19236             }
19237                 
19238                 
19239         } else if ( this.fieldLabel.length) {
19240             cfg.cn = [
19241                required,
19242                 {
19243                     tag: 'label',
19244                     cls : 'control-label',
19245                     html : this.fieldLabel
19246
19247                 },
19248                 {
19249                     cls : '', 
19250                     cn: [
19251                         combobox
19252                     ]
19253                 }
19254             ];
19255             
19256             if(this.indicatorpos == 'right'){
19257                 cfg.cn = [
19258                     {
19259                         tag: 'label',
19260                         cls : 'control-label',
19261                         html : this.fieldLabel,
19262                         cn : [
19263                             required
19264                         ]
19265                     },
19266                     {
19267                         cls : '', 
19268                         cn: [
19269                             combobox
19270                         ]
19271                     }
19272                 ];
19273             }
19274         } else {
19275             cfg.cn = combobox;    
19276         }
19277         
19278         
19279         var settings = this;
19280         
19281         ['xs','sm','md','lg'].map(function(size){
19282             if (settings[size]) {
19283                 cfg.cls += ' col-' + size + '-' + settings[size];
19284             }
19285         });
19286         
19287         return cfg;
19288     },
19289     
19290     initTouchView : function()
19291     {
19292         this.renderTouchView();
19293         
19294         this.touchViewEl.on('scroll', function(){
19295             this.el.dom.scrollTop = 0;
19296         }, this);
19297         
19298         this.originalValue = this.getValue();
19299         
19300         this.triggerEl = this.el.select('span.dropdown-toggle',true).first();
19301         
19302         this.inputEl().on("click", this.showTouchView, this);
19303         if (this.triggerEl) {
19304             this.triggerEl.on("click", this.showTouchView, this);
19305         }
19306         
19307         
19308         this.touchViewFooterEl.select('.roo-touch-view-cancel', true).first().on('click', this.hideTouchView, this);
19309         this.touchViewFooterEl.select('.roo-touch-view-ok', true).first().on('click', this.setTouchViewValue, this);
19310         
19311         this.maskEl = new Roo.LoadMask(this.touchViewEl, { store : this.store, msgCls: 'roo-el-mask-msg' });
19312         
19313         this.store.on('beforeload', this.onTouchViewBeforeLoad, this);
19314         this.store.on('load', this.onTouchViewLoad, this);
19315         this.store.on('loadexception', this.onTouchViewLoadException, this);
19316         
19317         if(this.hiddenName){
19318             
19319             this.hiddenField = this.el.select('input.form-hidden-field',true).first();
19320             
19321             this.hiddenField.dom.value =
19322                 this.hiddenValue !== undefined ? this.hiddenValue :
19323                 this.value !== undefined ? this.value : '';
19324         
19325             this.el.dom.removeAttribute('name');
19326             this.hiddenField.dom.setAttribute('name', this.hiddenName);
19327         }
19328         
19329         if(this.multiple){
19330             this.choices = this.el.select('ul.roo-select2-choices', true).first();
19331             this.searchField = this.el.select('ul li.roo-select2-search-field', true).first();
19332         }
19333         
19334         if(this.removable && !this.multiple){
19335             var close = this.closeTriggerEl();
19336             if(close){
19337                 close.setVisibilityMode(Roo.Element.DISPLAY).hide();
19338                 close.on('click', this.removeBtnClick, this, close);
19339             }
19340         }
19341         /*
19342          * fix the bug in Safari iOS8
19343          */
19344         this.inputEl().on("focus", function(e){
19345             document.activeElement.blur();
19346         }, this);
19347         
19348         this._touchViewMask = Roo.DomHelper.append(document.body, {tag: "div", cls:"x-dlg-mask"}, true);
19349         
19350         return;
19351         
19352         
19353     },
19354     
19355     renderTouchView : function()
19356     {
19357         this.touchViewEl = Roo.get(document.body).createChild(Roo.bootstrap.form.ComboBox.touchViewTemplate);
19358         this.touchViewEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
19359         
19360         this.touchViewHeaderEl = this.touchViewEl.select('.modal-header', true).first();
19361         this.touchViewHeaderEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
19362         
19363         this.touchViewBodyEl = this.touchViewEl.select('.modal-body', true).first();
19364         this.touchViewBodyEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
19365         this.touchViewBodyEl.setStyle('overflow', 'auto');
19366         
19367         this.touchViewListGroup = this.touchViewBodyEl.select('.list-group', true).first();
19368         this.touchViewListGroup.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
19369         
19370         this.touchViewFooterEl = this.touchViewEl.select('.modal-footer', true).first();
19371         this.touchViewFooterEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
19372         
19373     },
19374     
19375     showTouchView : function()
19376     {
19377         if(this.disabled){
19378             return;
19379         }
19380         
19381         this.touchViewHeaderEl.hide();
19382
19383         if(this.modalTitle.length){
19384             this.touchViewHeaderEl.dom.innerHTML = this.modalTitle;
19385             this.touchViewHeaderEl.show();
19386         }
19387
19388         this.touchViewEl.setStyle('z-index', Roo.bootstrap.Modal.zIndex++);
19389         this.touchViewEl.show();
19390
19391         this.touchViewEl.select('.modal-dialog', true).first().setStyle({ margin : '0px', width : '100%'});
19392         
19393         //this.touchViewEl.select('.modal-dialog > .modal-content', true).first().setSize(
19394         //        Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
19395
19396         var bodyHeight = Roo.lib.Dom.getViewHeight() - this.touchViewFooterEl.getHeight() + this.touchViewBodyEl.getPadding('tb');
19397
19398         if(this.modalTitle.length){
19399             bodyHeight = bodyHeight - this.touchViewHeaderEl.getHeight();
19400         }
19401         
19402         this.touchViewBodyEl.setHeight(bodyHeight);
19403
19404         if(this.animate){
19405             var _this = this;
19406             (function(){ _this.touchViewEl.addClass(['in','show']); }).defer(50);
19407         }else{
19408             this.touchViewEl.addClass(['in','show']);
19409         }
19410         
19411         if(this._touchViewMask){
19412             Roo.get(document.body).addClass("x-body-masked");
19413             this._touchViewMask.setSize(Roo.lib.Dom.getViewWidth(true),   Roo.lib.Dom.getViewHeight(true));
19414             this._touchViewMask.setStyle('z-index', 10000);
19415             this._touchViewMask.addClass('show');
19416         }
19417         
19418         this.doTouchViewQuery();
19419         
19420     },
19421     
19422     hideTouchView : function()
19423     {
19424         this.touchViewEl.removeClass(['in','show']);
19425
19426         if(this.animate){
19427             var _this = this;
19428             (function(){ _this.touchViewEl.setStyle('display', 'none'); }).defer(150);
19429         }else{
19430             this.touchViewEl.setStyle('display', 'none');
19431         }
19432         
19433         if(this._touchViewMask){
19434             this._touchViewMask.removeClass('show');
19435             Roo.get(document.body).removeClass("x-body-masked");
19436         }
19437     },
19438     
19439     setTouchViewValue : function()
19440     {
19441         if(this.multiple){
19442             this.clearItem();
19443         
19444             var _this = this;
19445
19446             Roo.each(this.tickItems, function(o){
19447                 this.addItem(o);
19448             }, this);
19449         }
19450         
19451         this.hideTouchView();
19452     },
19453     
19454     doTouchViewQuery : function()
19455     {
19456         var qe = {
19457             query: '',
19458             forceAll: true,
19459             combo: this,
19460             cancel:false
19461         };
19462         
19463         if(this.fireEvent('beforequery', qe) ===false || qe.cancel){
19464             return false;
19465         }
19466         
19467         if(!this.alwaysQuery || this.mode == 'local'){
19468             this.onTouchViewLoad();
19469             return;
19470         }
19471         
19472         this.store.load();
19473     },
19474     
19475     onTouchViewBeforeLoad : function(combo,opts)
19476     {
19477         return;
19478     },
19479
19480     // private
19481     onTouchViewLoad : function()
19482     {
19483         if(this.store.getCount() < 1){
19484             this.onTouchViewEmptyResults();
19485             return;
19486         }
19487         
19488         this.clearTouchView();
19489         
19490         var rawValue = this.getRawValue();
19491         
19492         var template = (this.multiple) ? Roo.bootstrap.form.ComboBox.listItemCheckbox : Roo.bootstrap.form.ComboBox.listItemRadio;
19493         
19494         this.tickItems = [];
19495         
19496         this.store.data.each(function(d, rowIndex){
19497             var row = this.touchViewListGroup.createChild(template);
19498             
19499             if(typeof(d.data.cls) != 'undefined' && d.data.cls.length){
19500                 row.addClass(d.data.cls);
19501             }
19502             
19503             if(this.displayField && typeof(d.data[this.displayField]) != 'undefined'){
19504                 var cfg = {
19505                     data : d.data,
19506                     html : d.data[this.displayField]
19507                 };
19508                 
19509                 if(this.fireEvent('touchviewdisplay', this, cfg) !== false){
19510                     row.select('.roo-combobox-list-group-item-value', true).first().dom.innerHTML = cfg.html;
19511                 }
19512             }
19513             row.removeClass('selected');
19514             if(!this.multiple && this.valueField &&
19515                     typeof(d.data[this.valueField]) != 'undefined' && d.data[this.valueField] == this.getValue())
19516             {
19517                 // radio buttons..
19518                 row.select('.roo-combobox-list-group-item-box > input', true).first().attr('checked', true);
19519                 row.addClass('selected');
19520             }
19521             
19522             if(this.multiple && this.valueField &&
19523                     typeof(d.data[this.valueField]) != 'undefined' && this.getValue().indexOf(d.data[this.valueField]) != -1)
19524             {
19525                 
19526                 // checkboxes...
19527                 row.select('.roo-combobox-list-group-item-box > input', true).first().attr('checked', true);
19528                 this.tickItems.push(d.data);
19529             }
19530             
19531             row.on('click', this.onTouchViewClick, this, {row : row, rowIndex : rowIndex});
19532             
19533         }, this);
19534         
19535         var firstChecked = this.touchViewListGroup.select('.list-group-item > .roo-combobox-list-group-item-box > input:checked', true).first();
19536         
19537         var bodyHeight = Roo.lib.Dom.getViewHeight() - this.touchViewFooterEl.getHeight() + this.touchViewBodyEl.getPadding('tb');
19538
19539         if(this.modalTitle.length){
19540             bodyHeight = bodyHeight - this.touchViewHeaderEl.getHeight();
19541         }
19542
19543         var listHeight = this.touchViewListGroup.getHeight() + this.touchViewBodyEl.getPadding('tb') * 2;
19544         
19545         if(this.mobile_restrict_height && listHeight < bodyHeight){
19546             this.touchViewBodyEl.setHeight(listHeight);
19547         }
19548         
19549         var _this = this;
19550         
19551         if(firstChecked && listHeight > bodyHeight){
19552             (function() { firstChecked.findParent('li').scrollIntoView(_this.touchViewListGroup.dom); }).defer(500);
19553         }
19554         
19555     },
19556     
19557     onTouchViewLoadException : function()
19558     {
19559         this.hideTouchView();
19560     },
19561     
19562     onTouchViewEmptyResults : function()
19563     {
19564         this.clearTouchView();
19565         
19566         this.touchViewListGroup.createChild(Roo.bootstrap.form.ComboBox.emptyResult);
19567         
19568         this.touchViewListGroup.select('.roo-combobox-touch-view-empty-result', true).first().dom.innerHTML = this.emptyResultText;
19569         
19570     },
19571     
19572     clearTouchView : function()
19573     {
19574         this.touchViewListGroup.dom.innerHTML = '';
19575     },
19576     
19577     onTouchViewClick : function(e, el, o)
19578     {
19579         e.preventDefault();
19580         
19581         var row = o.row;
19582         var rowIndex = o.rowIndex;
19583         
19584         var r = this.store.getAt(rowIndex);
19585         
19586         if(this.fireEvent('beforeselect', this, r, rowIndex) !== false){
19587             
19588             if(!this.multiple){
19589                 Roo.each(this.touchViewListGroup.select('.list-group-item > .roo-combobox-list-group-item-box > input:checked', true).elements, function(c){
19590                     c.dom.removeAttribute('checked');
19591                 }, this);
19592
19593                 row.select('.roo-combobox-list-group-item-box > input', true).first().attr('checked', true);
19594
19595                 this.setFromData(r.data);
19596
19597                 var close = this.closeTriggerEl();
19598
19599                 if(close){
19600                     close.show();
19601                 }
19602
19603                 this.hideTouchView();
19604
19605                 this.fireEvent('select', this, r, rowIndex);
19606
19607                 return;
19608             }
19609
19610             if(this.valueField && typeof(r.data[this.valueField]) != 'undefined' && this.getValue().indexOf(r.data[this.valueField]) != -1){
19611                 row.select('.roo-combobox-list-group-item-box > input', true).first().dom.removeAttribute('checked');
19612                 this.tickItems.splice(this.tickItems.indexOf(r.data), 1);
19613                 return;
19614             }
19615
19616             row.select('.roo-combobox-list-group-item-box > input', true).first().attr('checked', true);
19617             this.addItem(r.data);
19618             this.tickItems.push(r.data);
19619         }
19620     },
19621     
19622     getAutoCreateNativeIOS : function()
19623     {
19624         var cfg = {
19625             cls: 'form-group' //input-group,
19626         };
19627         
19628         var combobox =  {
19629             tag: 'select',
19630             cls : 'roo-ios-select'
19631         };
19632         
19633         if (this.name) {
19634             combobox.name = this.name;
19635         }
19636         
19637         if (this.disabled) {
19638             combobox.disabled = true;
19639         }
19640         
19641         var settings = this;
19642         
19643         ['xs','sm','md','lg'].map(function(size){
19644             if (settings[size]) {
19645                 cfg.cls += ' col-' + size + '-' + settings[size];
19646             }
19647         });
19648         
19649         cfg.cn = combobox;
19650         
19651         return cfg;
19652         
19653     },
19654     
19655     initIOSView : function()
19656     {
19657         this.store.on('load', this.onIOSViewLoad, this);
19658         
19659         return;
19660     },
19661     
19662     onIOSViewLoad : function()
19663     {
19664         if(this.store.getCount() < 1){
19665             return;
19666         }
19667         
19668         this.clearIOSView();
19669         
19670         if(this.allowBlank) {
19671             
19672             var default_text = '-- SELECT --';
19673             
19674             if(this.placeholder.length){
19675                 default_text = this.placeholder;
19676             }
19677             
19678             if(this.emptyTitle.length){
19679                 default_text += ' - ' + this.emptyTitle + ' -';
19680             }
19681             
19682             var opt = this.inputEl().createChild({
19683                 tag: 'option',
19684                 value : 0,
19685                 html : default_text
19686             });
19687             
19688             var o = {};
19689             o[this.valueField] = 0;
19690             o[this.displayField] = default_text;
19691             
19692             this.ios_options.push({
19693                 data : o,
19694                 el : opt
19695             });
19696             
19697         }
19698         
19699         this.store.data.each(function(d, rowIndex){
19700             
19701             var html = '';
19702             
19703             if(this.displayField && typeof(d.data[this.displayField]) != 'undefined'){
19704                 html = d.data[this.displayField];
19705             }
19706             
19707             var value = '';
19708             
19709             if(this.valueField && typeof(d.data[this.valueField]) != 'undefined'){
19710                 value = d.data[this.valueField];
19711             }
19712             
19713             var option = {
19714                 tag: 'option',
19715                 value : value,
19716                 html : html
19717             };
19718             
19719             if(this.value == d.data[this.valueField]){
19720                 option['selected'] = true;
19721             }
19722             
19723             var opt = this.inputEl().createChild(option);
19724             
19725             this.ios_options.push({
19726                 data : d.data,
19727                 el : opt
19728             });
19729             
19730         }, this);
19731         
19732         this.inputEl().on('change', function(){
19733            this.fireEvent('select', this);
19734         }, this);
19735         
19736     },
19737     
19738     clearIOSView: function()
19739     {
19740         this.inputEl().dom.innerHTML = '';
19741         
19742         this.ios_options = [];
19743     },
19744     
19745     setIOSValue: function(v)
19746     {
19747         this.value = v;
19748         
19749         if(!this.ios_options){
19750             return;
19751         }
19752         
19753         Roo.each(this.ios_options, function(opts){
19754            
19755            opts.el.dom.removeAttribute('selected');
19756            
19757            if(opts.data[this.valueField] != v){
19758                return;
19759            }
19760            
19761            opts.el.dom.setAttribute('selected', true);
19762            
19763         }, this);
19764     }
19765
19766     /** 
19767     * @cfg {Boolean} grow 
19768     * @hide 
19769     */
19770     /** 
19771     * @cfg {Number} growMin 
19772     * @hide 
19773     */
19774     /** 
19775     * @cfg {Number} growMax 
19776     * @hide 
19777     */
19778     /**
19779      * @hide
19780      * @method autoSize
19781      */
19782 });
19783
19784 Roo.apply(Roo.bootstrap.form.ComboBox,  {
19785     
19786     header : {
19787         tag: 'div',
19788         cls: 'modal-header',
19789         cn: [
19790             {
19791                 tag: 'h4',
19792                 cls: 'modal-title'
19793             }
19794         ]
19795     },
19796     
19797     body : {
19798         tag: 'div',
19799         cls: 'modal-body',
19800         cn: [
19801             {
19802                 tag: 'ul',
19803                 cls: 'list-group'
19804             }
19805         ]
19806     },
19807     
19808     listItemRadio : {
19809         tag: 'li',
19810         cls: 'list-group-item',
19811         cn: [
19812             {
19813                 tag: 'span',
19814                 cls: 'roo-combobox-list-group-item-value'
19815             },
19816             {
19817                 tag: 'div',
19818                 cls: 'roo-combobox-list-group-item-box pull-xs-right radio-inline radio radio-info',
19819                 cn: [
19820                     {
19821                         tag: 'input',
19822                         type: 'radio'
19823                     },
19824                     {
19825                         tag: 'label'
19826                     }
19827                 ]
19828             }
19829         ]
19830     },
19831     
19832     listItemCheckbox : {
19833         tag: 'li',
19834         cls: 'list-group-item',
19835         cn: [
19836             {
19837                 tag: 'span',
19838                 cls: 'roo-combobox-list-group-item-value'
19839             },
19840             {
19841                 tag: 'div',
19842                 cls: 'roo-combobox-list-group-item-box pull-xs-right checkbox-inline checkbox checkbox-info',
19843                 cn: [
19844                     {
19845                         tag: 'input',
19846                         type: 'checkbox'
19847                     },
19848                     {
19849                         tag: 'label'
19850                     }
19851                 ]
19852             }
19853         ]
19854     },
19855     
19856     emptyResult : {
19857         tag: 'div',
19858         cls: 'alert alert-danger roo-combobox-touch-view-empty-result'
19859     },
19860     
19861     footer : {
19862         tag: 'div',
19863         cls: 'modal-footer',
19864         cn: [
19865             {
19866                 tag: 'div',
19867                 cls: 'row',
19868                 cn: [
19869                     {
19870                         tag: 'div',
19871                         cls: 'col-xs-6 text-left',
19872                         cn: {
19873                             tag: 'button',
19874                             cls: 'btn btn-danger roo-touch-view-cancel',
19875                             html: 'Cancel'
19876                         }
19877                     },
19878                     {
19879                         tag: 'div',
19880                         cls: 'col-xs-6 text-right',
19881                         cn: {
19882                             tag: 'button',
19883                             cls: 'btn btn-success roo-touch-view-ok',
19884                             html: 'OK'
19885                         }
19886                     }
19887                 ]
19888             }
19889         ]
19890         
19891     }
19892 });
19893
19894 Roo.apply(Roo.bootstrap.form.ComboBox,  {
19895     
19896     touchViewTemplate : {
19897         tag: 'div',
19898         cls: 'modal fade roo-combobox-touch-view',
19899         cn: [
19900             {
19901                 tag: 'div',
19902                 cls: 'modal-dialog',
19903                 style : 'position:fixed', // we have to fix position....
19904                 cn: [
19905                     {
19906                         tag: 'div',
19907                         cls: 'modal-content',
19908                         cn: [
19909                             Roo.bootstrap.form.ComboBox.header,
19910                             Roo.bootstrap.form.ComboBox.body,
19911                             Roo.bootstrap.form.ComboBox.footer
19912                         ]
19913                     }
19914                 ]
19915             }
19916         ]
19917     }
19918 });/*
19919  * Based on:
19920  * Ext JS Library 1.1.1
19921  * Copyright(c) 2006-2007, Ext JS, LLC.
19922  *
19923  * Originally Released Under LGPL - original licence link has changed is not relivant.
19924  *
19925  * Fork - LGPL
19926  * <script type="text/javascript">
19927  */
19928
19929 /**
19930  * @class Roo.View
19931  * @extends Roo.util.Observable
19932  * Create a "View" for an element based on a data model or UpdateManager and the supplied DomHelper template. 
19933  * This class also supports single and multi selection modes. <br>
19934  * Create a data model bound view:
19935  <pre><code>
19936  var store = new Roo.data.Store(...);
19937
19938  var view = new Roo.View({
19939     el : "my-element",
19940     tpl : '&lt;div id="{0}"&gt;{2} - {1}&lt;/div&gt;', // auto create template
19941  
19942     singleSelect: true,
19943     selectedClass: "ydataview-selected",
19944     store: store
19945  });
19946
19947  // listen for node click?
19948  view.on("click", function(vw, index, node, e){
19949  alert('Node "' + node.id + '" at index: ' + index + " was clicked.");
19950  });
19951
19952  // load XML data
19953  dataModel.load("foobar.xml");
19954  </code></pre>
19955  For an example of creating a JSON/UpdateManager view, see {@link Roo.JsonView}.
19956  * <br><br>
19957  * <b>Note: The root of your template must be a single node. Table/row implementations may work but are not supported due to
19958  * IE"s limited insertion support with tables and Opera"s faulty event bubbling.</b>
19959  * 
19960  * Note: old style constructor is still suported (container, template, config)
19961  * 
19962  * @constructor
19963  * Create a new View
19964  * @param {Object} config The config object
19965  * 
19966  */
19967 Roo.View = function(config, depreciated_tpl, depreciated_config){
19968     
19969     this.parent = false;
19970     
19971     if (typeof(depreciated_tpl) == 'undefined') {
19972         // new way.. - universal constructor.
19973         Roo.apply(this, config);
19974         this.el  = Roo.get(this.el);
19975     } else {
19976         // old format..
19977         this.el  = Roo.get(config);
19978         this.tpl = depreciated_tpl;
19979         Roo.apply(this, depreciated_config);
19980     }
19981     this.wrapEl  = this.el.wrap().wrap();
19982     ///this.el = this.wrapEla.appendChild(document.createElement("div"));
19983     
19984     
19985     if(typeof(this.tpl) == "string"){
19986         this.tpl = new Roo.Template(this.tpl);
19987     } else {
19988         // support xtype ctors..
19989         this.tpl = new Roo.factory(this.tpl, Roo);
19990     }
19991     
19992     
19993     this.tpl.compile();
19994     
19995     /** @private */
19996     this.addEvents({
19997         /**
19998          * @event beforeclick
19999          * Fires before a click is processed. Returns false to cancel the default action.
20000          * @param {Roo.View} this
20001          * @param {Number} index The index of the target node
20002          * @param {HTMLElement} node The target node
20003          * @param {Roo.EventObject} e The raw event object
20004          */
20005             "beforeclick" : true,
20006         /**
20007          * @event click
20008          * Fires when a template node is clicked.
20009          * @param {Roo.View} this
20010          * @param {Number} index The index of the target node
20011          * @param {HTMLElement} node The target node
20012          * @param {Roo.EventObject} e The raw event object
20013          */
20014             "click" : true,
20015         /**
20016          * @event dblclick
20017          * Fires when a template node is double clicked.
20018          * @param {Roo.View} this
20019          * @param {Number} index The index of the target node
20020          * @param {HTMLElement} node The target node
20021          * @param {Roo.EventObject} e The raw event object
20022          */
20023             "dblclick" : true,
20024         /**
20025          * @event contextmenu
20026          * Fires when a template node is right clicked.
20027          * @param {Roo.View} this
20028          * @param {Number} index The index of the target node
20029          * @param {HTMLElement} node The target node
20030          * @param {Roo.EventObject} e The raw event object
20031          */
20032             "contextmenu" : true,
20033         /**
20034          * @event selectionchange
20035          * Fires when the selected nodes change.
20036          * @param {Roo.View} this
20037          * @param {Array} selections Array of the selected nodes
20038          */
20039             "selectionchange" : true,
20040     
20041         /**
20042          * @event beforeselect
20043          * Fires before a selection is made. If any handlers return false, the selection is cancelled.
20044          * @param {Roo.View} this
20045          * @param {HTMLElement} node The node to be selected
20046          * @param {Array} selections Array of currently selected nodes
20047          */
20048             "beforeselect" : true,
20049         /**
20050          * @event preparedata
20051          * Fires on every row to render, to allow you to change the data.
20052          * @param {Roo.View} this
20053          * @param {Object} data to be rendered (change this)
20054          */
20055           "preparedata" : true
20056           
20057           
20058         });
20059
20060
20061
20062     this.el.on({
20063         "click": this.onClick,
20064         "dblclick": this.onDblClick,
20065         "contextmenu": this.onContextMenu,
20066         scope:this
20067     });
20068
20069     this.selections = [];
20070     this.nodes = [];
20071     this.cmp = new Roo.CompositeElementLite([]);
20072     if(this.store){
20073         this.store = Roo.factory(this.store, Roo.data);
20074         this.setStore(this.store, true);
20075     }
20076     
20077     if ( this.footer && this.footer.xtype) {
20078            
20079          var fctr = this.wrapEl.appendChild(document.createElement("div"));
20080         
20081         this.footer.dataSource = this.store;
20082         this.footer.container = fctr;
20083         this.footer = Roo.factory(this.footer, Roo);
20084         fctr.insertFirst(this.el);
20085         
20086         // this is a bit insane - as the paging toolbar seems to detach the el..
20087 //        dom.parentNode.parentNode.parentNode
20088          // they get detached?
20089     }
20090     
20091     
20092     Roo.View.superclass.constructor.call(this);
20093     
20094     
20095 };
20096
20097 Roo.extend(Roo.View, Roo.util.Observable, {
20098     
20099      /**
20100      * @cfg {Roo.data.Store} store Data store to load data from.
20101      */
20102     store : false,
20103     
20104     /**
20105      * @cfg {String|Roo.Element} el The container element.
20106      */
20107     el : '',
20108     
20109     /**
20110      * @cfg {String|Roo.Template} tpl The template used by this View 
20111      */
20112     tpl : false,
20113     /**
20114      * @cfg {String} dataName the named area of the template to use as the data area
20115      *                          Works with domtemplates roo-name="name"
20116      */
20117     dataName: false,
20118     /**
20119      * @cfg {String} selectedClass The css class to add to selected nodes
20120      */
20121     selectedClass : "x-view-selected",
20122      /**
20123      * @cfg {String} emptyText The empty text to show when nothing is loaded.
20124      */
20125     emptyText : "",
20126     
20127     /**
20128      * @cfg {String} text to display on mask (default Loading)
20129      */
20130     mask : false,
20131     /**
20132      * @cfg {Boolean} multiSelect Allow multiple selection
20133      */
20134     multiSelect : false,
20135     /**
20136      * @cfg {Boolean} singleSelect Allow single selection
20137      */
20138     singleSelect:  false,
20139     
20140     /**
20141      * @cfg {Boolean} toggleSelect - selecting 
20142      */
20143     toggleSelect : false,
20144     
20145     /**
20146      * @cfg {Boolean} tickable - selecting 
20147      */
20148     tickable : false,
20149     
20150     /**
20151      * Returns the element this view is bound to.
20152      * @return {Roo.Element}
20153      */
20154     getEl : function(){
20155         return this.wrapEl;
20156     },
20157     
20158     
20159
20160     /**
20161      * Refreshes the view. - called by datachanged on the store. - do not call directly.
20162      */
20163     refresh : function(){
20164         //Roo.log('refresh');
20165         var t = this.tpl;
20166         
20167         // if we are using something like 'domtemplate', then
20168         // the what gets used is:
20169         // t.applySubtemplate(NAME, data, wrapping data..)
20170         // the outer template then get' applied with
20171         //     the store 'extra data'
20172         // and the body get's added to the
20173         //      roo-name="data" node?
20174         //      <span class='roo-tpl-{name}'></span> ?????
20175         
20176         
20177         
20178         this.clearSelections();
20179         this.el.update("");
20180         var html = [];
20181         var records = this.store.getRange();
20182         if(records.length < 1) {
20183             
20184             // is this valid??  = should it render a template??
20185             
20186             this.el.update(this.emptyText);
20187             return;
20188         }
20189         var el = this.el;
20190         if (this.dataName) {
20191             this.el.update(t.apply(this.store.meta)); //????
20192             el = this.el.child('.roo-tpl-' + this.dataName);
20193         }
20194         
20195         for(var i = 0, len = records.length; i < len; i++){
20196             var data = this.prepareData(records[i].data, i, records[i]);
20197             this.fireEvent("preparedata", this, data, i, records[i]);
20198             
20199             var d = Roo.apply({}, data);
20200             
20201             if(this.tickable){
20202                 Roo.apply(d, {'roo-id' : Roo.id()});
20203                 
20204                 var _this = this;
20205             
20206                 Roo.each(this.parent.item, function(item){
20207                     if(item[_this.parent.valueField] != data[_this.parent.valueField]){
20208                         return;
20209                     }
20210                     Roo.apply(d, {'roo-data-checked' : 'checked'});
20211                 });
20212             }
20213             
20214             html[html.length] = Roo.util.Format.trim(
20215                 this.dataName ?
20216                     t.applySubtemplate(this.dataName, d, this.store.meta) :
20217                     t.apply(d)
20218             );
20219         }
20220         
20221         
20222         
20223         el.update(html.join(""));
20224         this.nodes = el.dom.childNodes;
20225         this.updateIndexes(0);
20226     },
20227     
20228
20229     /**
20230      * Function to override to reformat the data that is sent to
20231      * the template for each node.
20232      * DEPRICATED - use the preparedata event handler.
20233      * @param {Array/Object} data The raw data (array of colData for a data model bound view or
20234      * a JSON object for an UpdateManager bound view).
20235      */
20236     prepareData : function(data, index, record)
20237     {
20238         this.fireEvent("preparedata", this, data, index, record);
20239         return data;
20240     },
20241
20242     onUpdate : function(ds, record){
20243         // Roo.log('on update');   
20244         this.clearSelections();
20245         var index = this.store.indexOf(record);
20246         var n = this.nodes[index];
20247         this.tpl.insertBefore(n, this.prepareData(record.data, index, record));
20248         n.parentNode.removeChild(n);
20249         this.updateIndexes(index, index);
20250     },
20251
20252     
20253     
20254 // --------- FIXME     
20255     onAdd : function(ds, records, index)
20256     {
20257         //Roo.log(['on Add', ds, records, index] );        
20258         this.clearSelections();
20259         if(this.nodes.length == 0){
20260             this.refresh();
20261             return;
20262         }
20263         var n = this.nodes[index];
20264         for(var i = 0, len = records.length; i < len; i++){
20265             var d = this.prepareData(records[i].data, i, records[i]);
20266             if(n){
20267                 this.tpl.insertBefore(n, d);
20268             }else{
20269                 
20270                 this.tpl.append(this.el, d);
20271             }
20272         }
20273         this.updateIndexes(index);
20274     },
20275
20276     onRemove : function(ds, record, index){
20277        // Roo.log('onRemove');
20278         this.clearSelections();
20279         var el = this.dataName  ?
20280             this.el.child('.roo-tpl-' + this.dataName) :
20281             this.el; 
20282         
20283         el.dom.removeChild(this.nodes[index]);
20284         this.updateIndexes(index);
20285     },
20286
20287     /**
20288      * Refresh an individual node.
20289      * @param {Number} index
20290      */
20291     refreshNode : function(index){
20292         this.onUpdate(this.store, this.store.getAt(index));
20293     },
20294
20295     updateIndexes : function(startIndex, endIndex){
20296         var ns = this.nodes;
20297         startIndex = startIndex || 0;
20298         endIndex = endIndex || ns.length - 1;
20299         for(var i = startIndex; i <= endIndex; i++){
20300             ns[i].nodeIndex = i;
20301         }
20302     },
20303
20304     /**
20305      * Changes the data store this view uses and refresh the view.
20306      * @param {Store} store
20307      */
20308     setStore : function(store, initial){
20309         if(!initial && this.store){
20310             this.store.un("datachanged", this.refresh);
20311             this.store.un("add", this.onAdd);
20312             this.store.un("remove", this.onRemove);
20313             this.store.un("update", this.onUpdate);
20314             this.store.un("clear", this.refresh);
20315             this.store.un("beforeload", this.onBeforeLoad);
20316             this.store.un("load", this.onLoad);
20317             this.store.un("loadexception", this.onLoad);
20318         }
20319         if(store){
20320           
20321             store.on("datachanged", this.refresh, this);
20322             store.on("add", this.onAdd, this);
20323             store.on("remove", this.onRemove, this);
20324             store.on("update", this.onUpdate, this);
20325             store.on("clear", this.refresh, this);
20326             store.on("beforeload", this.onBeforeLoad, this);
20327             store.on("load", this.onLoad, this);
20328             store.on("loadexception", this.onLoad, this);
20329         }
20330         
20331         if(store){
20332             this.refresh();
20333         }
20334     },
20335     /**
20336      * onbeforeLoad - masks the loading area.
20337      *
20338      */
20339     onBeforeLoad : function(store,opts)
20340     {
20341          //Roo.log('onBeforeLoad');   
20342         if (!opts.add) {
20343             this.el.update("");
20344         }
20345         this.el.mask(this.mask ? this.mask : "Loading" ); 
20346     },
20347     onLoad : function ()
20348     {
20349         this.el.unmask();
20350     },
20351     
20352
20353     /**
20354      * Returns the template node the passed child belongs to or null if it doesn't belong to one.
20355      * @param {HTMLElement} node
20356      * @return {HTMLElement} The template node
20357      */
20358     findItemFromChild : function(node){
20359         var el = this.dataName  ?
20360             this.el.child('.roo-tpl-' + this.dataName,true) :
20361             this.el.dom; 
20362         
20363         if(!node || node.parentNode == el){
20364                     return node;
20365             }
20366             var p = node.parentNode;
20367             while(p && p != el){
20368             if(p.parentNode == el){
20369                 return p;
20370             }
20371             p = p.parentNode;
20372         }
20373             return null;
20374     },
20375
20376     /** @ignore */
20377     onClick : function(e){
20378         var item = this.findItemFromChild(e.getTarget());
20379         if(item){
20380             var index = this.indexOf(item);
20381             if(this.onItemClick(item, index, e) !== false){
20382                 this.fireEvent("click", this, index, item, e);
20383             }
20384         }else{
20385             this.clearSelections();
20386         }
20387     },
20388
20389     /** @ignore */
20390     onContextMenu : function(e){
20391         var item = this.findItemFromChild(e.getTarget());
20392         if(item){
20393             this.fireEvent("contextmenu", this, this.indexOf(item), item, e);
20394         }
20395     },
20396
20397     /** @ignore */
20398     onDblClick : function(e){
20399         var item = this.findItemFromChild(e.getTarget());
20400         if(item){
20401             this.fireEvent("dblclick", this, this.indexOf(item), item, e);
20402         }
20403     },
20404
20405     onItemClick : function(item, index, e)
20406     {
20407         if(this.fireEvent("beforeclick", this, index, item, e) === false){
20408             return false;
20409         }
20410         if (this.toggleSelect) {
20411             var m = this.isSelected(item) ? 'unselect' : 'select';
20412             //Roo.log(m);
20413             var _t = this;
20414             _t[m](item, true, false);
20415             return true;
20416         }
20417         if(this.multiSelect || this.singleSelect){
20418             if(this.multiSelect && e.shiftKey && this.lastSelection){
20419                 this.select(this.getNodes(this.indexOf(this.lastSelection), index), false);
20420             }else{
20421                 this.select(item, this.multiSelect && e.ctrlKey);
20422                 this.lastSelection = item;
20423             }
20424             
20425             if(!this.tickable){
20426                 e.preventDefault();
20427             }
20428             
20429         }
20430         return true;
20431     },
20432
20433     /**
20434      * Get the number of selected nodes.
20435      * @return {Number}
20436      */
20437     getSelectionCount : function(){
20438         return this.selections.length;
20439     },
20440
20441     /**
20442      * Get the currently selected nodes.
20443      * @return {Array} An array of HTMLElements
20444      */
20445     getSelectedNodes : function(){
20446         return this.selections;
20447     },
20448
20449     /**
20450      * Get the indexes of the selected nodes.
20451      * @return {Array}
20452      */
20453     getSelectedIndexes : function(){
20454         var indexes = [], s = this.selections;
20455         for(var i = 0, len = s.length; i < len; i++){
20456             indexes.push(s[i].nodeIndex);
20457         }
20458         return indexes;
20459     },
20460
20461     /**
20462      * Clear all selections
20463      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange event
20464      */
20465     clearSelections : function(suppressEvent){
20466         if(this.nodes && (this.multiSelect || this.singleSelect) && this.selections.length > 0){
20467             this.cmp.elements = this.selections;
20468             this.cmp.removeClass(this.selectedClass);
20469             this.selections = [];
20470             if(!suppressEvent){
20471                 this.fireEvent("selectionchange", this, this.selections);
20472             }
20473         }
20474     },
20475
20476     /**
20477      * Returns true if the passed node is selected
20478      * @param {HTMLElement/Number} node The node or node index
20479      * @return {Boolean}
20480      */
20481     isSelected : function(node){
20482         var s = this.selections;
20483         if(s.length < 1){
20484             return false;
20485         }
20486         node = this.getNode(node);
20487         return s.indexOf(node) !== -1;
20488     },
20489
20490     /**
20491      * Selects nodes.
20492      * @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
20493      * @param {Boolean} keepExisting (optional) true to keep existing selections
20494      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
20495      */
20496     select : function(nodeInfo, keepExisting, suppressEvent){
20497         if(nodeInfo instanceof Array){
20498             if(!keepExisting){
20499                 this.clearSelections(true);
20500             }
20501             for(var i = 0, len = nodeInfo.length; i < len; i++){
20502                 this.select(nodeInfo[i], true, true);
20503             }
20504             return;
20505         } 
20506         var node = this.getNode(nodeInfo);
20507         if(!node || this.isSelected(node)){
20508             return; // already selected.
20509         }
20510         if(!keepExisting){
20511             this.clearSelections(true);
20512         }
20513         
20514         if(this.fireEvent("beforeselect", this, node, this.selections) !== false){
20515             Roo.fly(node).addClass(this.selectedClass);
20516             this.selections.push(node);
20517             if(!suppressEvent){
20518                 this.fireEvent("selectionchange", this, this.selections);
20519             }
20520         }
20521         
20522         
20523     },
20524       /**
20525      * Unselects nodes.
20526      * @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
20527      * @param {Boolean} keepExisting (optional) true IGNORED (for campatibility with select)
20528      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
20529      */
20530     unselect : function(nodeInfo, keepExisting, suppressEvent)
20531     {
20532         if(nodeInfo instanceof Array){
20533             Roo.each(this.selections, function(s) {
20534                 this.unselect(s, nodeInfo);
20535             }, this);
20536             return;
20537         }
20538         var node = this.getNode(nodeInfo);
20539         if(!node || !this.isSelected(node)){
20540             //Roo.log("not selected");
20541             return; // not selected.
20542         }
20543         // fireevent???
20544         var ns = [];
20545         Roo.each(this.selections, function(s) {
20546             if (s == node ) {
20547                 Roo.fly(node).removeClass(this.selectedClass);
20548
20549                 return;
20550             }
20551             ns.push(s);
20552         },this);
20553         
20554         this.selections= ns;
20555         this.fireEvent("selectionchange", this, this.selections);
20556     },
20557
20558     /**
20559      * Gets a template node.
20560      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
20561      * @return {HTMLElement} The node or null if it wasn't found
20562      */
20563     getNode : function(nodeInfo){
20564         if(typeof nodeInfo == "string"){
20565             return document.getElementById(nodeInfo);
20566         }else if(typeof nodeInfo == "number"){
20567             return this.nodes[nodeInfo];
20568         }
20569         return nodeInfo;
20570     },
20571
20572     /**
20573      * Gets a range template nodes.
20574      * @param {Number} startIndex
20575      * @param {Number} endIndex
20576      * @return {Array} An array of nodes
20577      */
20578     getNodes : function(start, end){
20579         var ns = this.nodes;
20580         start = start || 0;
20581         end = typeof end == "undefined" ? ns.length - 1 : end;
20582         var nodes = [];
20583         if(start <= end){
20584             for(var i = start; i <= end; i++){
20585                 nodes.push(ns[i]);
20586             }
20587         } else{
20588             for(var i = start; i >= end; i--){
20589                 nodes.push(ns[i]);
20590             }
20591         }
20592         return nodes;
20593     },
20594
20595     /**
20596      * Finds the index of the passed node
20597      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
20598      * @return {Number} The index of the node or -1
20599      */
20600     indexOf : function(node){
20601         node = this.getNode(node);
20602         if(typeof node.nodeIndex == "number"){
20603             return node.nodeIndex;
20604         }
20605         var ns = this.nodes;
20606         for(var i = 0, len = ns.length; i < len; i++){
20607             if(ns[i] == node){
20608                 return i;
20609             }
20610         }
20611         return -1;
20612     }
20613 });
20614 /*
20615  * - LGPL
20616  *
20617  * based on jquery fullcalendar
20618  * 
20619  */
20620
20621 Roo.bootstrap = Roo.bootstrap || {};
20622 /**
20623  * @class Roo.bootstrap.Calendar
20624  * @extends Roo.bootstrap.Component
20625  * Bootstrap Calendar class
20626  * @cfg {Boolean} loadMask (true|false) default false
20627  * @cfg {Object} header generate the user specific header of the calendar, default false
20628
20629  * @constructor
20630  * Create a new Container
20631  * @param {Object} config The config object
20632  */
20633
20634
20635
20636 Roo.bootstrap.Calendar = function(config){
20637     Roo.bootstrap.Calendar.superclass.constructor.call(this, config);
20638      this.addEvents({
20639         /**
20640              * @event select
20641              * Fires when a date is selected
20642              * @param {DatePicker} this
20643              * @param {Date} date The selected date
20644              */
20645         'select': true,
20646         /**
20647              * @event monthchange
20648              * Fires when the displayed month changes 
20649              * @param {DatePicker} this
20650              * @param {Date} date The selected month
20651              */
20652         'monthchange': true,
20653         /**
20654              * @event evententer
20655              * Fires when mouse over an event
20656              * @param {Calendar} this
20657              * @param {event} Event
20658              */
20659         'evententer': true,
20660         /**
20661              * @event eventleave
20662              * Fires when the mouse leaves an
20663              * @param {Calendar} this
20664              * @param {event}
20665              */
20666         'eventleave': true,
20667         /**
20668              * @event eventclick
20669              * Fires when the mouse click an
20670              * @param {Calendar} this
20671              * @param {event}
20672              */
20673         'eventclick': true
20674         
20675     });
20676
20677 };
20678
20679 Roo.extend(Roo.bootstrap.Calendar, Roo.bootstrap.Component,  {
20680     
20681           /**
20682      * @cfg {Roo.data.Store} store
20683      * The data source for the calendar
20684      */
20685         store : false,
20686      /**
20687      * @cfg {Number} startDay
20688      * Day index at which the week should begin, 0-based (defaults to 0, which is Sunday)
20689      */
20690     startDay : 0,
20691     
20692     loadMask : false,
20693     
20694     header : false,
20695       
20696     getAutoCreate : function(){
20697         
20698         
20699         var fc_button = function(name, corner, style, content ) {
20700             return Roo.apply({},{
20701                 tag : 'span',
20702                 cls : 'fc-button fc-button-'+name+' fc-state-default ' + 
20703                          (corner.length ?
20704                             'fc-corner-' + corner.split(' ').join(' fc-corner-') :
20705                             ''
20706                         ),
20707                 html : '<SPAN class="fc-text-'+style+ '">'+content +'</SPAN>',
20708                 unselectable: 'on'
20709             });
20710         };
20711         
20712         var header = {};
20713         
20714         if(!this.header){
20715             header = {
20716                 tag : 'table',
20717                 cls : 'fc-header',
20718                 style : 'width:100%',
20719                 cn : [
20720                     {
20721                         tag: 'tr',
20722                         cn : [
20723                             {
20724                                 tag : 'td',
20725                                 cls : 'fc-header-left',
20726                                 cn : [
20727                                     fc_button('prev', 'left', 'arrow', '&#8249;' ),
20728                                     fc_button('next', 'right', 'arrow', '&#8250;' ),
20729                                     { tag: 'span', cls: 'fc-header-space' },
20730                                     fc_button('today', 'left right', '', 'today' )  // neds state disabled..
20731
20732
20733                                 ]
20734                             },
20735
20736                             {
20737                                 tag : 'td',
20738                                 cls : 'fc-header-center',
20739                                 cn : [
20740                                     {
20741                                         tag: 'span',
20742                                         cls: 'fc-header-title',
20743                                         cn : {
20744                                             tag: 'H2',
20745                                             html : 'month / year'
20746                                         }
20747                                     }
20748
20749                                 ]
20750                             },
20751                             {
20752                                 tag : 'td',
20753                                 cls : 'fc-header-right',
20754                                 cn : [
20755                               /*      fc_button('month', 'left', '', 'month' ),
20756                                     fc_button('week', '', '', 'week' ),
20757                                     fc_button('day', 'right', '', 'day' )
20758                                 */    
20759
20760                                 ]
20761                             }
20762
20763                         ]
20764                     }
20765                 ]
20766             };
20767         }
20768         
20769         header = this.header;
20770         
20771        
20772         var cal_heads = function() {
20773             var ret = [];
20774             // fixme - handle this.
20775             
20776             for (var i =0; i < Date.dayNames.length; i++) {
20777                 var d = Date.dayNames[i];
20778                 ret.push({
20779                     tag: 'th',
20780                     cls : 'fc-day-header fc-' + d.substring(0,3).toLowerCase() + ' fc-widget-header',
20781                     html : d.substring(0,3)
20782                 });
20783                 
20784             }
20785             ret[0].cls += ' fc-first';
20786             ret[6].cls += ' fc-last';
20787             return ret;
20788         };
20789         var cal_cell = function(n) {
20790             return  {
20791                 tag: 'td',
20792                 cls : 'fc-day fc-'+n + ' fc-widget-content', ///fc-other-month fc-past
20793                 cn : [
20794                     {
20795                         cn : [
20796                             {
20797                                 cls: 'fc-day-number',
20798                                 html: 'D'
20799                             },
20800                             {
20801                                 cls: 'fc-day-content',
20802                              
20803                                 cn : [
20804                                      {
20805                                         style: 'position: relative;' // height: 17px;
20806                                     }
20807                                 ]
20808                             }
20809                             
20810                             
20811                         ]
20812                     }
20813                 ]
20814                 
20815             }
20816         };
20817         var cal_rows = function() {
20818             
20819             var ret = [];
20820             for (var r = 0; r < 6; r++) {
20821                 var row= {
20822                     tag : 'tr',
20823                     cls : 'fc-week',
20824                     cn : []
20825                 };
20826                 
20827                 for (var i =0; i < Date.dayNames.length; i++) {
20828                     var d = Date.dayNames[i];
20829                     row.cn.push(cal_cell(d.substring(0,3).toLowerCase()));
20830
20831                 }
20832                 row.cn[0].cls+=' fc-first';
20833                 row.cn[0].cn[0].style = 'min-height:90px';
20834                 row.cn[6].cls+=' fc-last';
20835                 ret.push(row);
20836                 
20837             }
20838             ret[0].cls += ' fc-first';
20839             ret[4].cls += ' fc-prev-last';
20840             ret[5].cls += ' fc-last';
20841             return ret;
20842             
20843         };
20844         
20845         var cal_table = {
20846             tag: 'table',
20847             cls: 'fc-border-separate',
20848             style : 'width:100%',
20849             cellspacing  : 0,
20850             cn : [
20851                 { 
20852                     tag: 'thead',
20853                     cn : [
20854                         { 
20855                             tag: 'tr',
20856                             cls : 'fc-first fc-last',
20857                             cn : cal_heads()
20858                         }
20859                     ]
20860                 },
20861                 { 
20862                     tag: 'tbody',
20863                     cn : cal_rows()
20864                 }
20865                   
20866             ]
20867         };
20868          
20869          var cfg = {
20870             cls : 'fc fc-ltr',
20871             cn : [
20872                 header,
20873                 {
20874                     cls : 'fc-content',
20875                     style : "position: relative;",
20876                     cn : [
20877                         {
20878                             cls : 'fc-view fc-view-month fc-grid',
20879                             style : 'position: relative',
20880                             unselectable : 'on',
20881                             cn : [
20882                                 {
20883                                     cls : 'fc-event-container',
20884                                     style : 'position:absolute;z-index:8;top:0;left:0;'
20885                                 },
20886                                 cal_table
20887                             ]
20888                         }
20889                     ]
20890     
20891                 }
20892            ] 
20893             
20894         };
20895         
20896          
20897         
20898         return cfg;
20899     },
20900     
20901     
20902     initEvents : function()
20903     {
20904         if(!this.store){
20905             throw "can not find store for calendar";
20906         }
20907         
20908         var mark = {
20909             tag: "div",
20910             cls:"x-dlg-mask",
20911             style: "text-align:center",
20912             cn: [
20913                 {
20914                     tag: "div",
20915                     style: "background-color:white;width:50%;margin:250 auto",
20916                     cn: [
20917                         {
20918                             tag: "img",
20919                             src: Roo.rootURL + '/images/ux/lightbox/loading.gif' 
20920                         },
20921                         {
20922                             tag: "span",
20923                             html: "Loading"
20924                         }
20925                         
20926                     ]
20927                 }
20928             ]
20929         };
20930         this.maskEl = Roo.DomHelper.append(this.el.select('.fc-content', true).first(), mark, true);
20931         
20932         var size = this.el.select('.fc-content', true).first().getSize();
20933         this.maskEl.setSize(size.width, size.height);
20934         this.maskEl.enableDisplayMode("block");
20935         if(!this.loadMask){
20936             this.maskEl.hide();
20937         }
20938         
20939         this.store = Roo.factory(this.store, Roo.data);
20940         this.store.on('load', this.onLoad, this);
20941         this.store.on('beforeload', this.onBeforeLoad, this);
20942         
20943         this.resize();
20944         
20945         this.cells = this.el.select('.fc-day',true);
20946         //Roo.log(this.cells);
20947         this.textNodes = this.el.query('.fc-day-number');
20948         this.cells.addClassOnOver('fc-state-hover');
20949         
20950         this.el.select('.fc-button-prev',true).on('click', this.showPrevMonth, this);
20951         this.el.select('.fc-button-next',true).on('click', this.showNextMonth, this);
20952         this.el.select('.fc-button-today',true).on('click', this.showToday, this);
20953         this.el.select('.fc-button',true).addClassOnOver('fc-state-hover');
20954         
20955         this.on('monthchange', this.onMonthChange, this);
20956         
20957         this.update(new Date().clearTime());
20958     },
20959     
20960     resize : function() {
20961         var sz  = this.el.getSize();
20962         
20963         this.el.select('.fc-day-header',true).setWidth(sz.width / 7);
20964         this.el.select('.fc-day-content div',true).setHeight(34);
20965     },
20966     
20967     
20968     // private
20969     showPrevMonth : function(e){
20970         this.update(this.activeDate.add("mo", -1));
20971     },
20972     showToday : function(e){
20973         this.update(new Date().clearTime());
20974     },
20975     // private
20976     showNextMonth : function(e){
20977         this.update(this.activeDate.add("mo", 1));
20978     },
20979
20980     // private
20981     showPrevYear : function(){
20982         this.update(this.activeDate.add("y", -1));
20983     },
20984
20985     // private
20986     showNextYear : function(){
20987         this.update(this.activeDate.add("y", 1));
20988     },
20989
20990     
20991    // private
20992     update : function(date)
20993     {
20994         var vd = this.activeDate;
20995         this.activeDate = date;
20996 //        if(vd && this.el){
20997 //            var t = date.getTime();
20998 //            if(vd.getMonth() == date.getMonth() && vd.getFullYear() == date.getFullYear()){
20999 //                Roo.log('using add remove');
21000 //                
21001 //                this.fireEvent('monthchange', this, date);
21002 //                
21003 //                this.cells.removeClass("fc-state-highlight");
21004 //                this.cells.each(function(c){
21005 //                   if(c.dateValue == t){
21006 //                       c.addClass("fc-state-highlight");
21007 //                       setTimeout(function(){
21008 //                            try{c.dom.firstChild.focus();}catch(e){}
21009 //                       }, 50);
21010 //                       return false;
21011 //                   }
21012 //                   return true;
21013 //                });
21014 //                return;
21015 //            }
21016 //        }
21017         
21018         var days = date.getDaysInMonth();
21019         
21020         var firstOfMonth = date.getFirstDateOfMonth();
21021         var startingPos = firstOfMonth.getDay()-this.startDay;
21022         
21023         if(startingPos < this.startDay){
21024             startingPos += 7;
21025         }
21026         
21027         var pm = date.add(Date.MONTH, -1);
21028         var prevStart = pm.getDaysInMonth()-startingPos;
21029 //        
21030         this.cells = this.el.select('.fc-day',true);
21031         this.textNodes = this.el.query('.fc-day-number');
21032         this.cells.addClassOnOver('fc-state-hover');
21033         
21034         var cells = this.cells.elements;
21035         var textEls = this.textNodes;
21036         
21037         Roo.each(cells, function(cell){
21038             cell.removeClass([ 'fc-past', 'fc-other-month', 'fc-future', 'fc-state-highlight', 'fc-state-disabled']);
21039         });
21040         
21041         days += startingPos;
21042
21043         // convert everything to numbers so it's fast
21044         var day = 86400000;
21045         var d = (new Date(pm.getFullYear(), pm.getMonth(), prevStart)).clearTime();
21046         //Roo.log(d);
21047         //Roo.log(pm);
21048         //Roo.log(prevStart);
21049         
21050         var today = new Date().clearTime().getTime();
21051         var sel = date.clearTime().getTime();
21052         var min = this.minDate ? this.minDate.clearTime() : Number.NEGATIVE_INFINITY;
21053         var max = this.maxDate ? this.maxDate.clearTime() : Number.POSITIVE_INFINITY;
21054         var ddMatch = this.disabledDatesRE;
21055         var ddText = this.disabledDatesText;
21056         var ddays = this.disabledDays ? this.disabledDays.join("") : false;
21057         var ddaysText = this.disabledDaysText;
21058         var format = this.format;
21059         
21060         var setCellClass = function(cal, cell){
21061             cell.row = 0;
21062             cell.events = [];
21063             cell.more = [];
21064             //Roo.log('set Cell Class');
21065             cell.title = "";
21066             var t = d.getTime();
21067             
21068             //Roo.log(d);
21069             
21070             cell.dateValue = t;
21071             if(t == today){
21072                 cell.className += " fc-today";
21073                 cell.className += " fc-state-highlight";
21074                 cell.title = cal.todayText;
21075             }
21076             if(t == sel){
21077                 // disable highlight in other month..
21078                 //cell.className += " fc-state-highlight";
21079                 
21080             }
21081             // disabling
21082             if(t < min) {
21083                 cell.className = " fc-state-disabled";
21084                 cell.title = cal.minText;
21085                 return;
21086             }
21087             if(t > max) {
21088                 cell.className = " fc-state-disabled";
21089                 cell.title = cal.maxText;
21090                 return;
21091             }
21092             if(ddays){
21093                 if(ddays.indexOf(d.getDay()) != -1){
21094                     cell.title = ddaysText;
21095                     cell.className = " fc-state-disabled";
21096                 }
21097             }
21098             if(ddMatch && format){
21099                 var fvalue = d.dateFormat(format);
21100                 if(ddMatch.test(fvalue)){
21101                     cell.title = ddText.replace("%0", fvalue);
21102                     cell.className = " fc-state-disabled";
21103                 }
21104             }
21105             
21106             if (!cell.initialClassName) {
21107                 cell.initialClassName = cell.dom.className;
21108             }
21109             
21110             cell.dom.className = cell.initialClassName  + ' ' +  cell.className;
21111         };
21112
21113         var i = 0;
21114         
21115         for(; i < startingPos; i++) {
21116             textEls[i].innerHTML = (++prevStart);
21117             d.setDate(d.getDate()+1);
21118             
21119             cells[i].className = "fc-past fc-other-month";
21120             setCellClass(this, cells[i]);
21121         }
21122         
21123         var intDay = 0;
21124         
21125         for(; i < days; i++){
21126             intDay = i - startingPos + 1;
21127             textEls[i].innerHTML = (intDay);
21128             d.setDate(d.getDate()+1);
21129             
21130             cells[i].className = ''; // "x-date-active";
21131             setCellClass(this, cells[i]);
21132         }
21133         var extraDays = 0;
21134         
21135         for(; i < 42; i++) {
21136             textEls[i].innerHTML = (++extraDays);
21137             d.setDate(d.getDate()+1);
21138             
21139             cells[i].className = "fc-future fc-other-month";
21140             setCellClass(this, cells[i]);
21141         }
21142         
21143         this.el.select('.fc-header-title h2',true).update(Date.monthNames[date.getMonth()] + " " + date.getFullYear());
21144         
21145         var totalRows = Math.ceil((date.getDaysInMonth() + date.getFirstDateOfMonth().getDay()) / 7);
21146         
21147         this.el.select('tr.fc-week.fc-prev-last',true).removeClass('fc-last');
21148         this.el.select('tr.fc-week.fc-next-last',true).addClass('fc-last').show();
21149         
21150         if(totalRows != 6){
21151             this.el.select('tr.fc-week.fc-last',true).removeClass('fc-last').addClass('fc-next-last').hide();
21152             this.el.select('tr.fc-week.fc-prev-last',true).addClass('fc-last');
21153         }
21154         
21155         this.fireEvent('monthchange', this, date);
21156         
21157         
21158         /*
21159         if(!this.internalRender){
21160             var main = this.el.dom.firstChild;
21161             var w = main.offsetWidth;
21162             this.el.setWidth(w + this.el.getBorderWidth("lr"));
21163             Roo.fly(main).setWidth(w);
21164             this.internalRender = true;
21165             // opera does not respect the auto grow header center column
21166             // then, after it gets a width opera refuses to recalculate
21167             // without a second pass
21168             if(Roo.isOpera && !this.secondPass){
21169                 main.rows[0].cells[1].style.width = (w - (main.rows[0].cells[0].offsetWidth+main.rows[0].cells[2].offsetWidth)) + "px";
21170                 this.secondPass = true;
21171                 this.update.defer(10, this, [date]);
21172             }
21173         }
21174         */
21175         
21176     },
21177     
21178     findCell : function(dt) {
21179         dt = dt.clearTime().getTime();
21180         var ret = false;
21181         this.cells.each(function(c){
21182             //Roo.log("check " +c.dateValue + '?=' + dt);
21183             if(c.dateValue == dt){
21184                 ret = c;
21185                 return false;
21186             }
21187             return true;
21188         });
21189         
21190         return ret;
21191     },
21192     
21193     findCells : function(ev) {
21194         var s = ev.start.clone().clearTime().getTime();
21195        // Roo.log(s);
21196         var e= ev.end.clone().clearTime().getTime();
21197        // Roo.log(e);
21198         var ret = [];
21199         this.cells.each(function(c){
21200              ////Roo.log("check " +c.dateValue + '<' + e + ' > ' + s);
21201             
21202             if(c.dateValue > e){
21203                 return ;
21204             }
21205             if(c.dateValue < s){
21206                 return ;
21207             }
21208             ret.push(c);
21209         });
21210         
21211         return ret;    
21212     },
21213     
21214 //    findBestRow: function(cells)
21215 //    {
21216 //        var ret = 0;
21217 //        
21218 //        for (var i =0 ; i < cells.length;i++) {
21219 //            ret  = Math.max(cells[i].rows || 0,ret);
21220 //        }
21221 //        return ret;
21222 //        
21223 //    },
21224     
21225     
21226     addItem : function(ev)
21227     {
21228         // look for vertical location slot in
21229         var cells = this.findCells(ev);
21230         
21231 //        ev.row = this.findBestRow(cells);
21232         
21233         // work out the location.
21234         
21235         var crow = false;
21236         var rows = [];
21237         for(var i =0; i < cells.length; i++) {
21238             
21239             cells[i].row = cells[0].row;
21240             
21241             if(i == 0){
21242                 cells[i].row = cells[i].row + 1;
21243             }
21244             
21245             if (!crow) {
21246                 crow = {
21247                     start : cells[i],
21248                     end :  cells[i]
21249                 };
21250                 continue;
21251             }
21252             if (crow.start.getY() == cells[i].getY()) {
21253                 // on same row.
21254                 crow.end = cells[i];
21255                 continue;
21256             }
21257             // different row.
21258             rows.push(crow);
21259             crow = {
21260                 start: cells[i],
21261                 end : cells[i]
21262             };
21263             
21264         }
21265         
21266         rows.push(crow);
21267         ev.els = [];
21268         ev.rows = rows;
21269         ev.cells = cells;
21270         
21271         cells[0].events.push(ev);
21272         
21273         this.calevents.push(ev);
21274     },
21275     
21276     clearEvents: function() {
21277         
21278         if(!this.calevents){
21279             return;
21280         }
21281         
21282         Roo.each(this.cells.elements, function(c){
21283             c.row = 0;
21284             c.events = [];
21285             c.more = [];
21286         });
21287         
21288         Roo.each(this.calevents, function(e) {
21289             Roo.each(e.els, function(el) {
21290                 el.un('mouseenter' ,this.onEventEnter, this);
21291                 el.un('mouseleave' ,this.onEventLeave, this);
21292                 el.remove();
21293             },this);
21294         },this);
21295         
21296         Roo.each(Roo.select('.fc-more-event', true).elements, function(e){
21297             e.remove();
21298         });
21299         
21300     },
21301     
21302     renderEvents: function()
21303     {   
21304         var _this = this;
21305         
21306         this.cells.each(function(c) {
21307             
21308             if(c.row < 5){
21309                 return;
21310             }
21311             
21312             var ev = c.events;
21313             
21314             var r = 4;
21315             if(c.row != c.events.length){
21316                 r = 4 - (4 - (c.row - c.events.length));
21317             }
21318             
21319             c.events = ev.slice(0, r);
21320             c.more = ev.slice(r);
21321             
21322             if(c.more.length && c.more.length == 1){
21323                 c.events.push(c.more.pop());
21324             }
21325             
21326             c.row = (c.row - ev.length) + c.events.length + ((c.more.length) ? 1 : 0);
21327             
21328         });
21329             
21330         this.cells.each(function(c) {
21331             
21332             c.select('.fc-day-content div',true).first().setHeight(Math.max(34, c.row * 20));
21333             
21334             
21335             for (var e = 0; e < c.events.length; e++){
21336                 var ev = c.events[e];
21337                 var rows = ev.rows;
21338                 
21339                 for(var i = 0; i < rows.length; i++) {
21340                 
21341                     // how many rows should it span..
21342
21343                     var  cfg = {
21344                         cls : 'roo-dynamic fc-event fc-event-hori fc-event-draggable ui-draggable',
21345                         style : 'position: absolute', // left: 387px; width: 121px; top: 359px;
21346
21347                         unselectable : "on",
21348                         cn : [
21349                             {
21350                                 cls: 'fc-event-inner',
21351                                 cn : [
21352     //                                {
21353     //                                  tag:'span',
21354     //                                  cls: 'fc-event-time',
21355     //                                  html : cells.length > 1 ? '' : ev.time
21356     //                                },
21357                                     {
21358                                       tag:'span',
21359                                       cls: 'fc-event-title',
21360                                       html : String.format('{0}', ev.title)
21361                                     }
21362
21363
21364                                 ]
21365                             },
21366                             {
21367                                 cls: 'ui-resizable-handle ui-resizable-e',
21368                                 html : '&nbsp;&nbsp;&nbsp'
21369                             }
21370
21371                         ]
21372                     };
21373
21374                     if (i == 0) {
21375                         cfg.cls += ' fc-event-start';
21376                     }
21377                     if ((i+1) == rows.length) {
21378                         cfg.cls += ' fc-event-end';
21379                     }
21380
21381                     var ctr = _this.el.select('.fc-event-container',true).first();
21382                     var cg = ctr.createChild(cfg);
21383
21384                     var sbox = rows[i].start.select('.fc-day-content',true).first().getBox();
21385                     var ebox = rows[i].end.select('.fc-day-content',true).first().getBox();
21386
21387                     var r = (c.more.length) ? 1 : 0;
21388                     cg.setXY([sbox.x +2, sbox.y + ((c.row - c.events.length - r + e) * 20)]);    
21389                     cg.setWidth(ebox.right - sbox.x -2);
21390
21391                     cg.on('mouseenter' ,_this.onEventEnter, _this, ev);
21392                     cg.on('mouseleave' ,_this.onEventLeave, _this, ev);
21393                     cg.on('click', _this.onEventClick, _this, ev);
21394
21395                     ev.els.push(cg);
21396                     
21397                 }
21398                 
21399             }
21400             
21401             
21402             if(c.more.length){
21403                 var  cfg = {
21404                     cls : 'fc-more-event roo-dynamic fc-event fc-event-hori fc-event-draggable ui-draggable fc-event-start fc-event-end',
21405                     style : 'position: absolute',
21406                     unselectable : "on",
21407                     cn : [
21408                         {
21409                             cls: 'fc-event-inner',
21410                             cn : [
21411                                 {
21412                                   tag:'span',
21413                                   cls: 'fc-event-title',
21414                                   html : 'More'
21415                                 }
21416
21417
21418                             ]
21419                         },
21420                         {
21421                             cls: 'ui-resizable-handle ui-resizable-e',
21422                             html : '&nbsp;&nbsp;&nbsp'
21423                         }
21424
21425                     ]
21426                 };
21427
21428                 var ctr = _this.el.select('.fc-event-container',true).first();
21429                 var cg = ctr.createChild(cfg);
21430
21431                 var sbox = c.select('.fc-day-content',true).first().getBox();
21432                 var ebox = c.select('.fc-day-content',true).first().getBox();
21433                 //Roo.log(cg);
21434                 cg.setXY([sbox.x +2, sbox.y +((c.row - 1) * 20)]);    
21435                 cg.setWidth(ebox.right - sbox.x -2);
21436
21437                 cg.on('click', _this.onMoreEventClick, _this, c.more);
21438                 
21439             }
21440             
21441         });
21442         
21443         
21444         
21445     },
21446     
21447     onEventEnter: function (e, el,event,d) {
21448         this.fireEvent('evententer', this, el, event);
21449     },
21450     
21451     onEventLeave: function (e, el,event,d) {
21452         this.fireEvent('eventleave', this, el, event);
21453     },
21454     
21455     onEventClick: function (e, el,event,d) {
21456         this.fireEvent('eventclick', this, el, event);
21457     },
21458     
21459     onMonthChange: function () {
21460         this.store.load();
21461     },
21462     
21463     onMoreEventClick: function(e, el, more)
21464     {
21465         var _this = this;
21466         
21467         this.calpopover.placement = 'right';
21468         this.calpopover.setTitle('More');
21469         
21470         this.calpopover.setContent('');
21471         
21472         var ctr = this.calpopover.el.select('.popover-content', true).first();
21473         
21474         Roo.each(more, function(m){
21475             var cfg = {
21476                 cls : 'fc-event-hori fc-event-draggable',
21477                 html : m.title
21478             };
21479             var cg = ctr.createChild(cfg);
21480             
21481             cg.on('click', _this.onEventClick, _this, m);
21482         });
21483         
21484         this.calpopover.show(el);
21485         
21486         
21487     },
21488     
21489     onLoad: function () 
21490     {   
21491         this.calevents = [];
21492         var cal = this;
21493         
21494         if(this.store.getCount() > 0){
21495             this.store.data.each(function(d){
21496                cal.addItem({
21497                     id : d.data.id,
21498                     start: (typeof(d.data.start_dt) === 'string') ? new Date.parseDate(d.data.start_dt, 'Y-m-d H:i:s') : d.data.start_dt,
21499                     end : (typeof(d.data.end_dt) === 'string') ? new Date.parseDate(d.data.end_dt, 'Y-m-d H:i:s') : d.data.end_dt,
21500                     time : d.data.start_time,
21501                     title : d.data.title,
21502                     description : d.data.description,
21503                     venue : d.data.venue
21504                 });
21505             });
21506         }
21507         
21508         this.renderEvents();
21509         
21510         if(this.calevents.length && this.loadMask){
21511             this.maskEl.hide();
21512         }
21513     },
21514     
21515     onBeforeLoad: function()
21516     {
21517         this.clearEvents();
21518         if(this.loadMask){
21519             this.maskEl.show();
21520         }
21521     }
21522 });
21523
21524  
21525  /*
21526  * - LGPL
21527  *
21528  * element
21529  * 
21530  */
21531
21532 /**
21533  * @class Roo.bootstrap.Popover
21534  * @extends Roo.bootstrap.Component
21535  * @parent none builder
21536  * @children Roo.bootstrap.Component
21537  * Bootstrap Popover class
21538  * @cfg {String} html contents of the popover   (or false to use children..)
21539  * @cfg {String} title of popover (or false to hide)
21540  * @cfg {String|function} (right|top|bottom|left|auto) placement how it is placed
21541  * @cfg {String} trigger click || hover (or false to trigger manually)
21542  * @cfg {Boolean} modal - popovers that are modal will mask the screen, and must be closed with another event.
21543  * @cfg {String|Boolean|Roo.Element} add click hander to trigger show over what element
21544  *      - if false and it has a 'parent' then it will be automatically added to that element
21545  *      - if string - Roo.get  will be called 
21546  * @cfg {Number} delay - delay before showing
21547  
21548  * @constructor
21549  * Create a new Popover
21550  * @param {Object} config The config object
21551  */
21552
21553 Roo.bootstrap.Popover = function(config){
21554     Roo.bootstrap.Popover.superclass.constructor.call(this, config);
21555     
21556     this.addEvents({
21557         // raw events
21558          /**
21559          * @event show
21560          * After the popover show
21561          * 
21562          * @param {Roo.bootstrap.Popover} this
21563          */
21564         "show" : true,
21565         /**
21566          * @event hide
21567          * After the popover hide
21568          * 
21569          * @param {Roo.bootstrap.Popover} this
21570          */
21571         "hide" : true
21572     });
21573 };
21574
21575 Roo.extend(Roo.bootstrap.Popover, Roo.bootstrap.Component,  {
21576     
21577     title: false,
21578     html: false,
21579     
21580     placement : 'right',
21581     trigger : 'hover', // hover
21582     modal : false,
21583     delay : 0,
21584     
21585     over: false,
21586     
21587     can_build_overlaid : false,
21588     
21589     maskEl : false, // the mask element
21590     headerEl : false,
21591     contentEl : false,
21592     alignEl : false, // when show is called with an element - this get's stored.
21593     
21594     getChildContainer : function()
21595     {
21596         return this.contentEl;
21597         
21598     },
21599     getPopoverHeader : function()
21600     {
21601         this.title = true; // flag not to hide it..
21602         this.headerEl.addClass('p-0');
21603         return this.headerEl
21604     },
21605     
21606     
21607     getAutoCreate : function(){
21608          
21609         var cfg = {
21610            cls : 'popover roo-dynamic shadow roo-popover' + (this.modal ? '-modal' : ''),
21611            style: 'display:block',
21612            cn : [
21613                 {
21614                     cls : 'arrow'
21615                 },
21616                 {
21617                     cls : 'popover-inner ',
21618                     cn : [
21619                         {
21620                             tag: 'h3',
21621                             cls: 'popover-title popover-header',
21622                             html : this.title === false ? '' : this.title
21623                         },
21624                         {
21625                             cls : 'popover-content popover-body '  + (this.cls || ''),
21626                             html : this.html || ''
21627                         }
21628                     ]
21629                     
21630                 }
21631            ]
21632         };
21633         
21634         return cfg;
21635     },
21636     /**
21637      * @param {string} the title
21638      */
21639     setTitle: function(str)
21640     {
21641         this.title = str;
21642         if (this.el) {
21643             this.headerEl.dom.innerHTML = str;
21644         }
21645         
21646     },
21647     /**
21648      * @param {string} the body content
21649      */
21650     setContent: function(str)
21651     {
21652         this.html = str;
21653         if (this.contentEl) {
21654             this.contentEl.dom.innerHTML = str;
21655         }
21656         
21657     },
21658     // as it get's added to the bottom of the page.
21659     onRender : function(ct, position)
21660     {
21661         Roo.bootstrap.Component.superclass.onRender.call(this, ct, position);
21662         
21663         
21664         
21665         if(!this.el){
21666             var cfg = Roo.apply({},  this.getAutoCreate());
21667             cfg.id = Roo.id();
21668             
21669             if (this.cls) {
21670                 cfg.cls += ' ' + this.cls;
21671             }
21672             if (this.style) {
21673                 cfg.style = this.style;
21674             }
21675             //Roo.log("adding to ");
21676             this.el = Roo.get(document.body).createChild(cfg, position);
21677 //            Roo.log(this.el);
21678         }
21679         
21680         this.contentEl = this.el.select('.popover-content',true).first();
21681         this.headerEl =  this.el.select('.popover-title',true).first();
21682         
21683         var nitems = [];
21684         if(typeof(this.items) != 'undefined'){
21685             var items = this.items;
21686             delete this.items;
21687
21688             for(var i =0;i < items.length;i++) {
21689                 nitems.push(this.addxtype(Roo.apply({}, items[i])));
21690             }
21691         }
21692
21693         this.items = nitems;
21694         
21695         this.maskEl = Roo.DomHelper.append(document.body, {tag: "div", cls:"x-dlg-mask"}, true);
21696         Roo.EventManager.onWindowResize(this.resizeMask, this, true);
21697         
21698         
21699         
21700         this.initEvents();
21701     },
21702     
21703     resizeMask : function()
21704     {
21705         this.maskEl.setSize(
21706             Roo.lib.Dom.getViewWidth(true),
21707             Roo.lib.Dom.getViewHeight(true)
21708         );
21709     },
21710     
21711     initEvents : function()
21712     {
21713         
21714         if (!this.modal) { 
21715             Roo.bootstrap.Popover.register(this);
21716         }
21717          
21718         this.arrowEl = this.el.select('.arrow',true).first();
21719         this.headerEl.setVisibilityMode(Roo.Element.DISPLAY); // probably not needed as it's default in BS4
21720         this.el.enableDisplayMode('block');
21721         this.el.hide();
21722  
21723         
21724         if (this.over === false && !this.parent()) {
21725             return; 
21726         }
21727         if (this.triggers === false) {
21728             return;
21729         }
21730          
21731         // support parent
21732         var on_el = (this.over == 'parent' || this.over === false) ? this.parent().el : Roo.get(this.over);
21733         var triggers = this.trigger ? this.trigger.split(' ') : [];
21734         Roo.each(triggers, function(trigger) {
21735         
21736             if (trigger == 'click') {
21737                 on_el.on('click', this.toggle, this);
21738             } else if (trigger != 'manual') {
21739                 var eventIn  = trigger == 'hover' ? 'mouseenter' : 'focusin';
21740                 var eventOut = trigger == 'hover' ? 'mouseleave' : 'focusout';
21741       
21742                 on_el.on(eventIn  ,this.enter, this);
21743                 on_el.on(eventOut, this.leave, this);
21744             }
21745         }, this);
21746     },
21747     
21748     
21749     // private
21750     timeout : null,
21751     hoverState : null,
21752     
21753     toggle : function () {
21754         this.hoverState == 'in' ? this.leave() : this.enter();
21755     },
21756     
21757     enter : function () {
21758         
21759         clearTimeout(this.timeout);
21760     
21761         this.hoverState = 'in';
21762     
21763         if (!this.delay || !this.delay.show) {
21764             this.show();
21765             return;
21766         }
21767         var _t = this;
21768         this.timeout = setTimeout(function () {
21769             if (_t.hoverState == 'in') {
21770                 _t.show();
21771             }
21772         }, this.delay.show)
21773     },
21774     
21775     leave : function() {
21776         clearTimeout(this.timeout);
21777     
21778         this.hoverState = 'out';
21779     
21780         if (!this.delay || !this.delay.hide) {
21781             this.hide();
21782             return;
21783         }
21784         var _t = this;
21785         this.timeout = setTimeout(function () {
21786             if (_t.hoverState == 'out') {
21787                 _t.hide();
21788             }
21789         }, this.delay.hide)
21790     },
21791     
21792     /**
21793      * update the position of the dialog
21794      * normally this is needed if the popover get's bigger - due to a Table reload etc..
21795      * 
21796      *
21797      */
21798     
21799     doAlign : function()
21800     {
21801         
21802         if (this.alignEl) {
21803             this.updatePosition(this.placement, true);
21804              
21805         } else {
21806             // this is usually just done by the builder = to show the popoup in the middle of the scren.
21807             var es = this.el.getSize();
21808             var x = Roo.lib.Dom.getViewWidth()/2;
21809             var y = Roo.lib.Dom.getViewHeight()/2;
21810             this.el.setXY([ x-(es.width/2),  y-(es.height/2)] );
21811             
21812         }
21813
21814          
21815          
21816         
21817         
21818     },
21819     
21820     /**
21821      * Show the popover
21822      * @param {Roo.Element|string|Boolean} - element to align and point to. (set align to [ pos, offset ])
21823      * @param {string} (left|right|top|bottom) position
21824      */
21825     show : function (on_el, placement)
21826     {
21827         this.placement = typeof(placement) == 'undefined' ?  this.placement   : placement;
21828         on_el = on_el || false; // default to false
21829          
21830         if (!on_el) {
21831             if (this.parent() && (this.over == 'parent' || (this.over === false))) {
21832                 on_el = this.parent().el;
21833             } else if (this.over) {
21834                 on_el = Roo.get(this.over);
21835             }
21836             
21837         }
21838         
21839         this.alignEl = Roo.get( on_el );
21840
21841         if (!this.el) {
21842             this.render(document.body);
21843         }
21844         
21845         
21846          
21847         
21848         if (this.title === false) {
21849             this.headerEl.hide();
21850         }
21851         
21852        
21853         this.el.show();
21854         this.el.dom.style.display = 'block';
21855          
21856         this.doAlign();
21857         
21858         //var arrow = this.el.select('.arrow',true).first();
21859         //arrow.set(align[2], 
21860         
21861         this.el.addClass('in');
21862         
21863          
21864         
21865         this.hoverState = 'in';
21866         
21867         if (this.modal) {
21868             this.maskEl.setSize(Roo.lib.Dom.getViewWidth(true),   Roo.lib.Dom.getViewHeight(true));
21869             this.maskEl.setStyle('z-index', Roo.bootstrap.Popover.zIndex++);
21870             this.maskEl.dom.style.display = 'block';
21871             this.maskEl.addClass('show');
21872         }
21873         this.el.setStyle('z-index', Roo.bootstrap.Popover.zIndex++);
21874  
21875         this.fireEvent('show', this);
21876         
21877     },
21878     /**
21879      * fire this manually after loading a grid in the table for example
21880      * @param {string} (left|right|top|bottom) where to try and put it (use false to use the last one)
21881      * @param {Boolean} try and move it if we cant get right position.
21882      */
21883     updatePosition : function(placement, try_move)
21884     {
21885         // allow for calling with no parameters
21886         placement = placement   ? placement :  this.placement;
21887         try_move = typeof(try_move) == 'undefined' ? true : try_move;
21888         
21889         this.el.removeClass([
21890             'fade','top','bottom', 'left', 'right','in',
21891             'bs-popover-top','bs-popover-bottom', 'bs-popover-left', 'bs-popover-right'
21892         ]);
21893         this.el.addClass(placement + ' bs-popover-' + placement);
21894         
21895         if (!this.alignEl ) {
21896             return false;
21897         }
21898         
21899         switch (placement) {
21900             case 'right':
21901                 var exact = this.el.getAlignToXY(this.alignEl, 'tl-tr', [10,0]);
21902                 var offset = this.el.getAlignToXY(this.alignEl, 'tl-tr?',[10,0]);
21903                 if (!try_move || exact.equals(offset) || exact[0] == offset[0] ) {
21904                     //normal display... or moved up/down.
21905                     this.el.setXY(offset);
21906                     var xy = this.alignEl.getAnchorXY('tr', false);
21907                     xy[0]+=2;xy[1]+=5;
21908                     this.arrowEl.setXY(xy);
21909                     return true;
21910                 }
21911                 // continue through...
21912                 return this.updatePosition('left', false);
21913                 
21914             
21915             case 'left':
21916                 var exact = this.el.getAlignToXY(this.alignEl, 'tr-tl', [-10,0]);
21917                 var offset = this.el.getAlignToXY(this.alignEl, 'tr-tl?',[-10,0]);
21918                 if (!try_move || exact.equals(offset) || exact[0] == offset[0] ) {
21919                     //normal display... or moved up/down.
21920                     this.el.setXY(offset);
21921                     var xy = this.alignEl.getAnchorXY('tl', false);
21922                     xy[0]-=10;xy[1]+=5; // << fix me
21923                     this.arrowEl.setXY(xy);
21924                     return true;
21925                 }
21926                 // call self...
21927                 return this.updatePosition('right', false);
21928             
21929             case 'top':
21930                 var exact = this.el.getAlignToXY(this.alignEl, 'b-t', [0,-10]);
21931                 var offset = this.el.getAlignToXY(this.alignEl, 'b-t?',[0,-10]);
21932                 if (!try_move || exact.equals(offset) || exact[1] == offset[1] ) {
21933                     //normal display... or moved up/down.
21934                     this.el.setXY(offset);
21935                     var xy = this.alignEl.getAnchorXY('t', false);
21936                     xy[1]-=10; // << fix me
21937                     this.arrowEl.setXY(xy);
21938                     return true;
21939                 }
21940                 // fall through
21941                return this.updatePosition('bottom', false);
21942             
21943             case 'bottom':
21944                  var exact = this.el.getAlignToXY(this.alignEl, 't-b', [0,10]);
21945                 var offset = this.el.getAlignToXY(this.alignEl, 't-b?',[0,10]);
21946                 if (!try_move || exact.equals(offset) || exact[1] == offset[1] ) {
21947                     //normal display... or moved up/down.
21948                     this.el.setXY(offset);
21949                     var xy = this.alignEl.getAnchorXY('b', false);
21950                      xy[1]+=2; // << fix me
21951                     this.arrowEl.setXY(xy);
21952                     return true;
21953                 }
21954                 // fall through
21955                 return this.updatePosition('top', false);
21956                 
21957             
21958         }
21959         
21960         
21961         return false;
21962     },
21963     
21964     hide : function()
21965     {
21966         this.el.setXY([0,0]);
21967         this.el.removeClass('in');
21968         this.el.hide();
21969         this.hoverState = null;
21970         this.maskEl.hide(); // always..
21971         this.fireEvent('hide', this);
21972     }
21973     
21974 });
21975
21976
21977 Roo.apply(Roo.bootstrap.Popover, {
21978
21979     alignment : {
21980         'left' : ['r-l', [-10,0], 'left bs-popover-left'],
21981         'right' : ['l-br', [10,0], 'right bs-popover-right'],
21982         'bottom' : ['t-b', [0,10], 'top bs-popover-top'],
21983         'top' : [ 'b-t', [0,-10], 'bottom bs-popover-bottom']
21984     },
21985     
21986     zIndex : 20001,
21987
21988     clickHander : false,
21989     
21990     
21991
21992     onMouseDown : function(e)
21993     {
21994         if (this.popups.length &&  !e.getTarget(".roo-popover")) {
21995             /// what is nothing is showing..
21996             this.hideAll();
21997         }
21998          
21999     },
22000     
22001     
22002     popups : [],
22003     
22004     register : function(popup)
22005     {
22006         if (!Roo.bootstrap.Popover.clickHandler) {
22007             Roo.bootstrap.Popover.clickHandler = Roo.get(document).on("mousedown", Roo.bootstrap.Popover.onMouseDown, Roo.bootstrap.Popover);
22008         }
22009         // hide other popups.
22010         popup.on('show', Roo.bootstrap.Popover.onShow,  popup);
22011         popup.on('hide', Roo.bootstrap.Popover.onHide,  popup);
22012         this.hideAll(); //<< why?
22013         //this.popups.push(popup);
22014     },
22015     hideAll : function()
22016     {
22017         this.popups.forEach(function(p) {
22018             p.hide();
22019         });
22020     },
22021     onShow : function() {
22022         Roo.bootstrap.Popover.popups.push(this);
22023     },
22024     onHide : function() {
22025         Roo.bootstrap.Popover.popups.remove(this);
22026     } 
22027
22028 });
22029 /**
22030  * @class Roo.bootstrap.PopoverNav
22031  * @extends Roo.bootstrap.nav.Simplebar
22032  * @parent Roo.bootstrap.Popover
22033  * @children Roo.bootstrap.nav.Group Roo.bootstrap.Container
22034  * @licence LGPL
22035  * Bootstrap Popover header navigation class
22036  * FIXME? should this go under nav?
22037  *
22038  * 
22039  * @constructor
22040  * Create a new Popover Header Navigation 
22041  * @param {Object} config The config object
22042  */
22043
22044 Roo.bootstrap.PopoverNav = function(config){
22045     Roo.bootstrap.PopoverNav.superclass.constructor.call(this, config);
22046 };
22047
22048 Roo.extend(Roo.bootstrap.PopoverNav, Roo.bootstrap.nav.Simplebar,  {
22049     
22050     
22051     container_method : 'getPopoverHeader' 
22052     
22053      
22054     
22055     
22056    
22057 });
22058
22059  
22060
22061  /*
22062  * - LGPL
22063  *
22064  * Progress
22065  * 
22066  */
22067
22068 /**
22069  * @class Roo.bootstrap.Progress
22070  * @extends Roo.bootstrap.Component
22071  * @children Roo.bootstrap.ProgressBar
22072  * Bootstrap Progress class
22073  * @cfg {Boolean} striped striped of the progress bar
22074  * @cfg {Boolean} active animated of the progress bar
22075  * 
22076  * 
22077  * @constructor
22078  * Create a new Progress
22079  * @param {Object} config The config object
22080  */
22081
22082 Roo.bootstrap.Progress = function(config){
22083     Roo.bootstrap.Progress.superclass.constructor.call(this, config);
22084 };
22085
22086 Roo.extend(Roo.bootstrap.Progress, Roo.bootstrap.Component,  {
22087     
22088     striped : false,
22089     active: false,
22090     
22091     getAutoCreate : function(){
22092         var cfg = {
22093             tag: 'div',
22094             cls: 'progress'
22095         };
22096         
22097         
22098         if(this.striped){
22099             cfg.cls += ' progress-striped';
22100         }
22101       
22102         if(this.active){
22103             cfg.cls += ' active';
22104         }
22105         
22106         
22107         return cfg;
22108     }
22109    
22110 });
22111
22112  
22113
22114  /*
22115  * - LGPL
22116  *
22117  * ProgressBar
22118  * 
22119  */
22120
22121 /**
22122  * @class Roo.bootstrap.ProgressBar
22123  * @extends Roo.bootstrap.Component
22124  * Bootstrap ProgressBar class
22125  * @cfg {Number} aria_valuenow aria-value now
22126  * @cfg {Number} aria_valuemin aria-value min
22127  * @cfg {Number} aria_valuemax aria-value max
22128  * @cfg {String} label label for the progress bar
22129  * @cfg {String} panel (success | info | warning | danger )
22130  * @cfg {String} role role of the progress bar
22131  * @cfg {String} sr_only text
22132  * 
22133  * 
22134  * @constructor
22135  * Create a new ProgressBar
22136  * @param {Object} config The config object
22137  */
22138
22139 Roo.bootstrap.ProgressBar = function(config){
22140     Roo.bootstrap.ProgressBar.superclass.constructor.call(this, config);
22141 };
22142
22143 Roo.extend(Roo.bootstrap.ProgressBar, Roo.bootstrap.Component,  {
22144     
22145     aria_valuenow : 0,
22146     aria_valuemin : 0,
22147     aria_valuemax : 100,
22148     label : false,
22149     panel : false,
22150     role : false,
22151     sr_only: false,
22152     
22153     getAutoCreate : function()
22154     {
22155         
22156         var cfg = {
22157             tag: 'div',
22158             cls: 'progress-bar',
22159             style: 'width:' + Math.ceil((this.aria_valuenow / this.aria_valuemax) * 100) + '%'
22160         };
22161         
22162         if(this.sr_only){
22163             cfg.cn = {
22164                 tag: 'span',
22165                 cls: 'sr-only',
22166                 html: this.sr_only
22167             }
22168         }
22169         
22170         if(this.role){
22171             cfg.role = this.role;
22172         }
22173         
22174         if(this.aria_valuenow){
22175             cfg['aria-valuenow'] = this.aria_valuenow;
22176         }
22177         
22178         if(this.aria_valuemin){
22179             cfg['aria-valuemin'] = this.aria_valuemin;
22180         }
22181         
22182         if(this.aria_valuemax){
22183             cfg['aria-valuemax'] = this.aria_valuemax;
22184         }
22185         
22186         if(this.label && !this.sr_only){
22187             cfg.html = this.label;
22188         }
22189         
22190         if(this.panel){
22191             cfg.cls += ' progress-bar-' + this.panel;
22192         }
22193         
22194         return cfg;
22195     },
22196     
22197     update : function(aria_valuenow)
22198     {
22199         this.aria_valuenow = aria_valuenow;
22200         
22201         this.el.setStyle('width', Math.ceil((this.aria_valuenow / this.aria_valuemax) * 100) + '%');
22202     }
22203    
22204 });
22205
22206  
22207
22208  /**
22209  * @class Roo.bootstrap.TabGroup
22210  * @extends Roo.bootstrap.Column
22211  * @children Roo.bootstrap.TabPanel
22212  * Bootstrap Column class
22213  * @cfg {String} navId the navigation id (for use with navbars) - will be auto generated if it does not exist..
22214  * @cfg {Boolean} carousel true to make the group behave like a carousel
22215  * @cfg {Boolean} bullets show bullets for the panels
22216  * @cfg {Boolean} autoslide (true|false) auto slide .. default false
22217  * @cfg {Number} timer auto slide timer .. default 0 millisecond
22218  * @cfg {Boolean} showarrow (true|false) show arrow default true
22219  * 
22220  * @constructor
22221  * Create a new TabGroup
22222  * @param {Object} config The config object
22223  */
22224
22225 Roo.bootstrap.TabGroup = function(config){
22226     Roo.bootstrap.TabGroup.superclass.constructor.call(this, config);
22227     if (!this.navId) {
22228         this.navId = Roo.id();
22229     }
22230     this.tabs = [];
22231     Roo.bootstrap.TabGroup.register(this);
22232     
22233 };
22234
22235 Roo.extend(Roo.bootstrap.TabGroup, Roo.bootstrap.Column,  {
22236     
22237     carousel : false,
22238     transition : false,
22239     bullets : 0,
22240     timer : 0,
22241     autoslide : false,
22242     slideFn : false,
22243     slideOnTouch : false,
22244     showarrow : true,
22245     
22246     getAutoCreate : function()
22247     {
22248         var cfg = Roo.apply({}, Roo.bootstrap.TabGroup.superclass.getAutoCreate.call(this));
22249         
22250         cfg.cls += ' tab-content';
22251         
22252         if (this.carousel) {
22253             cfg.cls += ' carousel slide';
22254             
22255             cfg.cn = [{
22256                cls : 'carousel-inner',
22257                cn : []
22258             }];
22259         
22260             if(this.bullets  && !Roo.isTouch){
22261                 
22262                 var bullets = {
22263                     cls : 'carousel-bullets',
22264                     cn : []
22265                 };
22266                
22267                 if(this.bullets_cls){
22268                     bullets.cls = bullets.cls + ' ' + this.bullets_cls;
22269                 }
22270                 
22271                 bullets.cn.push({
22272                     cls : 'clear'
22273                 });
22274                 
22275                 cfg.cn[0].cn.push(bullets);
22276             }
22277             
22278             if(this.showarrow){
22279                 cfg.cn[0].cn.push({
22280                     tag : 'div',
22281                     class : 'carousel-arrow',
22282                     cn : [
22283                         {
22284                             tag : 'div',
22285                             class : 'carousel-prev',
22286                             cn : [
22287                                 {
22288                                     tag : 'i',
22289                                     class : 'fa fa-chevron-left'
22290                                 }
22291                             ]
22292                         },
22293                         {
22294                             tag : 'div',
22295                             class : 'carousel-next',
22296                             cn : [
22297                                 {
22298                                     tag : 'i',
22299                                     class : 'fa fa-chevron-right'
22300                                 }
22301                             ]
22302                         }
22303                     ]
22304                 });
22305             }
22306             
22307         }
22308         
22309         return cfg;
22310     },
22311     
22312     initEvents:  function()
22313     {
22314 //        if(Roo.isTouch && this.slideOnTouch && !this.showarrow){
22315 //            this.el.on("touchstart", this.onTouchStart, this);
22316 //        }
22317         
22318         if(this.autoslide){
22319             var _this = this;
22320             
22321             this.slideFn = window.setInterval(function() {
22322                 _this.showPanelNext();
22323             }, this.timer);
22324         }
22325         
22326         if(this.showarrow){
22327             this.el.select('.carousel-prev', true).first().on('click', this.showPanelPrev, this);
22328             this.el.select('.carousel-next', true).first().on('click', this.showPanelNext, this);
22329         }
22330         
22331         
22332     },
22333     
22334 //    onTouchStart : function(e, el, o)
22335 //    {
22336 //        if(!this.slideOnTouch || !Roo.isTouch || Roo.get(e.getTarget()).hasClass('roo-button-text')){
22337 //            return;
22338 //        }
22339 //        
22340 //        this.showPanelNext();
22341 //    },
22342     
22343     
22344     getChildContainer : function()
22345     {
22346         return this.carousel ? this.el.select('.carousel-inner', true).first() : this.el;
22347     },
22348     
22349     /**
22350     * register a Navigation item
22351     * @param {Roo.bootstrap.nav.Item} the navitem to add
22352     */
22353     register : function(item)
22354     {
22355         this.tabs.push( item);
22356         item.navId = this.navId; // not really needed..
22357         this.addBullet();
22358     
22359     },
22360     
22361     getActivePanel : function()
22362     {
22363         var r = false;
22364         Roo.each(this.tabs, function(t) {
22365             if (t.active) {
22366                 r = t;
22367                 return false;
22368             }
22369             return null;
22370         });
22371         return r;
22372         
22373     },
22374     getPanelByName : function(n)
22375     {
22376         var r = false;
22377         Roo.each(this.tabs, function(t) {
22378             if (t.tabId == n) {
22379                 r = t;
22380                 return false;
22381             }
22382             return null;
22383         });
22384         return r;
22385     },
22386     indexOfPanel : function(p)
22387     {
22388         var r = false;
22389         Roo.each(this.tabs, function(t,i) {
22390             if (t.tabId == p.tabId) {
22391                 r = i;
22392                 return false;
22393             }
22394             return null;
22395         });
22396         return r;
22397     },
22398     /**
22399      * show a specific panel
22400      * @param {Roo.bootstrap.TabPanel|number|string} panel to change to (use the tabId to specify a specific one)
22401      * @return {boolean} false if panel was not shown (invalid entry or beforedeactivate fails.)
22402      */
22403     showPanel : function (pan)
22404     {
22405         if(this.transition || typeof(pan) == 'undefined'){
22406             Roo.log("waiting for the transitionend");
22407             return false;
22408         }
22409         
22410         if (typeof(pan) == 'number') {
22411             pan = this.tabs[pan];
22412         }
22413         
22414         if (typeof(pan) == 'string') {
22415             pan = this.getPanelByName(pan);
22416         }
22417         
22418         var cur = this.getActivePanel();
22419         
22420         if(!pan || !cur){
22421             Roo.log('pan or acitve pan is undefined');
22422             return false;
22423         }
22424         
22425         if (pan.tabId == this.getActivePanel().tabId) {
22426             return true;
22427         }
22428         
22429         if (false === cur.fireEvent('beforedeactivate')) {
22430             return false;
22431         }
22432         
22433         if(this.bullets > 0 && !Roo.isTouch){
22434             this.setActiveBullet(this.indexOfPanel(pan));
22435         }
22436         
22437         if (this.carousel && typeof(Roo.get(document.body).dom.style.transition) != 'undefined') {
22438             
22439             //class="carousel-item carousel-item-next carousel-item-left"
22440             
22441             this.transition = true;
22442             var dir = this.indexOfPanel(pan) > this.indexOfPanel(cur)  ? 'next' : 'prev';
22443             var lr = dir == 'next' ? 'left' : 'right';
22444             pan.el.addClass(dir); // or prev
22445             pan.el.addClass('carousel-item-' + dir); // or prev
22446             pan.el.dom.offsetWidth; // find the offset with - causing a reflow?
22447             cur.el.addClass(lr); // or right
22448             pan.el.addClass(lr);
22449             cur.el.addClass('carousel-item-' +lr); // or right
22450             pan.el.addClass('carousel-item-' +lr);
22451             
22452             
22453             var _this = this;
22454             cur.el.on('transitionend', function() {
22455                 Roo.log("trans end?");
22456                 
22457                 pan.el.removeClass([lr,dir, 'carousel-item-' + lr, 'carousel-item-' + dir]);
22458                 pan.setActive(true);
22459                 
22460                 cur.el.removeClass([lr, 'carousel-item-' + lr]);
22461                 cur.setActive(false);
22462                 
22463                 _this.transition = false;
22464                 
22465             }, this, { single:  true } );
22466             
22467             return true;
22468         }
22469         
22470         cur.setActive(false);
22471         pan.setActive(true);
22472         
22473         return true;
22474         
22475     },
22476     showPanelNext : function()
22477     {
22478         var i = this.indexOfPanel(this.getActivePanel());
22479         
22480         if (i >= this.tabs.length - 1 && !this.autoslide) {
22481             return;
22482         }
22483         
22484         if (i >= this.tabs.length - 1 && this.autoslide) {
22485             i = -1;
22486         }
22487         
22488         this.showPanel(this.tabs[i+1]);
22489     },
22490     
22491     showPanelPrev : function()
22492     {
22493         var i = this.indexOfPanel(this.getActivePanel());
22494         
22495         if (i  < 1 && !this.autoslide) {
22496             return;
22497         }
22498         
22499         if (i < 1 && this.autoslide) {
22500             i = this.tabs.length;
22501         }
22502         
22503         this.showPanel(this.tabs[i-1]);
22504     },
22505     
22506     
22507     addBullet: function()
22508     {
22509         if(!this.bullets || Roo.isTouch){
22510             return;
22511         }
22512         var ctr = this.el.select('.carousel-bullets',true).first();
22513         var i = this.el.select('.carousel-bullets .bullet',true).getCount() ;
22514         var bullet = ctr.createChild({
22515             cls : 'bullet bullet-' + i
22516         },ctr.dom.lastChild);
22517         
22518         
22519         var _this = this;
22520         
22521         bullet.on('click', (function(e, el, o, ii, t){
22522
22523             e.preventDefault();
22524
22525             this.showPanel(ii);
22526
22527             if(this.autoslide && this.slideFn){
22528                 clearInterval(this.slideFn);
22529                 this.slideFn = window.setInterval(function() {
22530                     _this.showPanelNext();
22531                 }, this.timer);
22532             }
22533
22534         }).createDelegate(this, [i, bullet], true));
22535                 
22536         
22537     },
22538      
22539     setActiveBullet : function(i)
22540     {
22541         if(Roo.isTouch){
22542             return;
22543         }
22544         
22545         Roo.each(this.el.select('.bullet', true).elements, function(el){
22546             el.removeClass('selected');
22547         });
22548
22549         var bullet = this.el.select('.bullet-' + i, true).first();
22550         
22551         if(!bullet){
22552             return;
22553         }
22554         
22555         bullet.addClass('selected');
22556     }
22557     
22558     
22559   
22560 });
22561
22562  
22563
22564  
22565  
22566 Roo.apply(Roo.bootstrap.TabGroup, {
22567     
22568     groups: {},
22569      /**
22570     * register a Navigation Group
22571     * @param {Roo.bootstrap.nav.Group} the navgroup to add
22572     */
22573     register : function(navgrp)
22574     {
22575         this.groups[navgrp.navId] = navgrp;
22576         
22577     },
22578     /**
22579     * fetch a Navigation Group based on the navigation ID
22580     * if one does not exist , it will get created.
22581     * @param {string} the navgroup to add
22582     * @returns {Roo.bootstrap.nav.Group} the navgroup 
22583     */
22584     get: function(navId) {
22585         if (typeof(this.groups[navId]) == 'undefined') {
22586             this.register(new Roo.bootstrap.TabGroup({ navId : navId }));
22587         }
22588         return this.groups[navId] ;
22589     }
22590     
22591     
22592     
22593 });
22594
22595  /*
22596  * - LGPL
22597  *
22598  * TabPanel
22599  * 
22600  */
22601
22602 /**
22603  * @class Roo.bootstrap.TabPanel
22604  * @extends Roo.bootstrap.Component
22605  * @children Roo.bootstrap.Component
22606  * Bootstrap TabPanel class
22607  * @cfg {Boolean} active panel active
22608  * @cfg {String} html panel content
22609  * @cfg {String} tabId  unique tab ID (will be autogenerated if not set. - used to match TabItem to Panel)
22610  * @cfg {String} navId The Roo.bootstrap.nav.Group which triggers show hide ()
22611  * @cfg {String} href click to link..
22612  * @cfg {Boolean} touchSlide if swiping slides tab to next panel (default off)
22613  * 
22614  * 
22615  * @constructor
22616  * Create a new TabPanel
22617  * @param {Object} config The config object
22618  */
22619
22620 Roo.bootstrap.TabPanel = function(config){
22621     Roo.bootstrap.TabPanel.superclass.constructor.call(this, config);
22622     this.addEvents({
22623         /**
22624              * @event changed
22625              * Fires when the active status changes
22626              * @param {Roo.bootstrap.TabPanel} this
22627              * @param {Boolean} state the new state
22628             
22629          */
22630         'changed': true,
22631         /**
22632              * @event beforedeactivate
22633              * Fires before a tab is de-activated - can be used to do validation on a form.
22634              * @param {Roo.bootstrap.TabPanel} this
22635              * @return {Boolean} false if there is an error
22636             
22637          */
22638         'beforedeactivate': true
22639      });
22640     
22641     this.tabId = this.tabId || Roo.id();
22642   
22643 };
22644
22645 Roo.extend(Roo.bootstrap.TabPanel, Roo.bootstrap.Component,  {
22646     
22647     active: false,
22648     html: false,
22649     tabId: false,
22650     navId : false,
22651     href : '',
22652     touchSlide : false,
22653     getAutoCreate : function(){
22654         
22655         
22656         var cfg = {
22657             tag: 'div',
22658             // item is needed for carousel - not sure if it has any effect otherwise
22659             cls: 'carousel-item tab-pane item' + ((this.href.length) ? ' clickable ' : ''),
22660             html: this.html || ''
22661         };
22662         
22663         if(this.active){
22664             cfg.cls += ' active';
22665         }
22666         
22667         if(this.tabId){
22668             cfg.tabId = this.tabId;
22669         }
22670         
22671         
22672         
22673         return cfg;
22674     },
22675     
22676     initEvents:  function()
22677     {
22678         var p = this.parent();
22679         
22680         this.navId = this.navId || p.navId;
22681         
22682         if (typeof(this.navId) != 'undefined') {
22683             // not really needed.. but just in case.. parent should be a NavGroup.
22684             var tg = Roo.bootstrap.TabGroup.get(this.navId);
22685             
22686             tg.register(this);
22687             
22688             var i = tg.tabs.length - 1;
22689             
22690             if(this.active && tg.bullets > 0 && i < tg.bullets){
22691                 tg.setActiveBullet(i);
22692             }
22693         }
22694         
22695         this.el.on('click', this.onClick, this);
22696         
22697         if(Roo.isTouch && this.touchSlide){
22698             this.el.on("touchstart", this.onTouchStart, this);
22699             this.el.on("touchmove", this.onTouchMove, this);
22700             this.el.on("touchend", this.onTouchEnd, this);
22701         }
22702         
22703     },
22704     
22705     onRender : function(ct, position)
22706     {
22707         Roo.bootstrap.TabPanel.superclass.onRender.call(this, ct, position);
22708     },
22709     
22710     setActive : function(state)
22711     {
22712         Roo.log("panel - set active " + this.tabId + "=" + state);
22713         
22714         this.active = state;
22715         if (!state) {
22716             this.el.removeClass('active');
22717             
22718         } else  if (!this.el.hasClass('active')) {
22719             this.el.addClass('active');
22720         }
22721         
22722         this.fireEvent('changed', this, state);
22723     },
22724     
22725     onClick : function(e)
22726     {
22727         e.preventDefault();
22728         
22729         if(!this.href.length){
22730             return;
22731         }
22732         
22733         window.location.href = this.href;
22734     },
22735     
22736     startX : 0,
22737     startY : 0,
22738     endX : 0,
22739     endY : 0,
22740     swiping : false,
22741     
22742     onTouchStart : function(e)
22743     {
22744         this.swiping = false;
22745         
22746         this.startX = e.browserEvent.touches[0].clientX;
22747         this.startY = e.browserEvent.touches[0].clientY;
22748     },
22749     
22750     onTouchMove : function(e)
22751     {
22752         this.swiping = true;
22753         
22754         this.endX = e.browserEvent.touches[0].clientX;
22755         this.endY = e.browserEvent.touches[0].clientY;
22756     },
22757     
22758     onTouchEnd : function(e)
22759     {
22760         if(!this.swiping){
22761             this.onClick(e);
22762             return;
22763         }
22764         
22765         var tabGroup = this.parent();
22766         
22767         if(this.endX > this.startX){ // swiping right
22768             tabGroup.showPanelPrev();
22769             return;
22770         }
22771         
22772         if(this.startX > this.endX){ // swiping left
22773             tabGroup.showPanelNext();
22774             return;
22775         }
22776     }
22777     
22778     
22779 });
22780  
22781
22782  
22783
22784  /*
22785  * - LGPL
22786  *
22787  * DateField
22788  * 
22789  */
22790
22791 /**
22792  * @class Roo.bootstrap.form.DateField
22793  * @extends Roo.bootstrap.form.Input
22794  * Bootstrap DateField class
22795  * @cfg {Number} weekStart default 0
22796  * @cfg {String} viewMode default empty, (months|years)
22797  * @cfg {String} minViewMode default empty, (months|years)
22798  * @cfg {Number} startDate default -Infinity
22799  * @cfg {Number} endDate default Infinity
22800  * @cfg {Boolean} todayHighlight default false
22801  * @cfg {Boolean} todayBtn default false
22802  * @cfg {Boolean} calendarWeeks default false
22803  * @cfg {Object} daysOfWeekDisabled default empty
22804  * @cfg {Boolean} singleMode default false (true | false)
22805  * 
22806  * @cfg {Boolean} keyboardNavigation default true
22807  * @cfg {String} language default en
22808  * 
22809  * @constructor
22810  * Create a new DateField
22811  * @param {Object} config The config object
22812  */
22813
22814 Roo.bootstrap.form.DateField = function(config){
22815     Roo.bootstrap.form.DateField.superclass.constructor.call(this, config);
22816      this.addEvents({
22817             /**
22818              * @event show
22819              * Fires when this field show.
22820              * @param {Roo.bootstrap.form.DateField} this
22821              * @param {Mixed} date The date value
22822              */
22823             show : true,
22824             /**
22825              * @event show
22826              * Fires when this field hide.
22827              * @param {Roo.bootstrap.form.DateField} this
22828              * @param {Mixed} date The date value
22829              */
22830             hide : true,
22831             /**
22832              * @event select
22833              * Fires when select a date.
22834              * @param {Roo.bootstrap.form.DateField} this
22835              * @param {Mixed} date The date value
22836              */
22837             select : true,
22838             /**
22839              * @event beforeselect
22840              * Fires when before select a date.
22841              * @param {Roo.bootstrap.form.DateField} this
22842              * @param {Mixed} date The date value
22843              */
22844             beforeselect : true
22845         });
22846 };
22847
22848 Roo.extend(Roo.bootstrap.form.DateField, Roo.bootstrap.form.Input,  {
22849     
22850     /**
22851      * @cfg {String} format
22852      * The default date format string which can be overriden for localization support.  The format must be
22853      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
22854      */
22855     format : "m/d/y",
22856     /**
22857      * @cfg {String} altFormats
22858      * Multiple date formats separated by "|" to try when parsing a user input value and it doesn't match the defined
22859      * format (defaults to 'm/d/Y|m-d-y|m-d-Y|m/d|m-d|d').
22860      */
22861     altFormats : "m/d/Y|m-d-y|m-d-Y|m/d|m-d|md|mdy|mdY|d",
22862     
22863     weekStart : 0,
22864     
22865     viewMode : '',
22866     
22867     minViewMode : '',
22868     
22869     todayHighlight : false,
22870     
22871     todayBtn: false,
22872     
22873     language: 'en',
22874     
22875     keyboardNavigation: true,
22876     
22877     calendarWeeks: false,
22878     
22879     startDate: -Infinity,
22880     
22881     endDate: Infinity,
22882     
22883     daysOfWeekDisabled: [],
22884     
22885     _events: [],
22886     
22887     singleMode : false,
22888     
22889     UTCDate: function()
22890     {
22891         return new Date(Date.UTC.apply(Date, arguments));
22892     },
22893     
22894     UTCToday: function()
22895     {
22896         var today = new Date();
22897         return this.UTCDate(today.getUTCFullYear(), today.getUTCMonth(), today.getUTCDate());
22898     },
22899     
22900     getDate: function() {
22901             var d = this.getUTCDate();
22902             return new Date(d.getTime() + (d.getTimezoneOffset()*60000));
22903     },
22904     
22905     getUTCDate: function() {
22906             return this.date;
22907     },
22908     
22909     setDate: function(d) {
22910             this.setUTCDate(new Date(d.getTime() - (d.getTimezoneOffset()*60000)));
22911     },
22912     
22913     setUTCDate: function(d) {
22914             this.date = d;
22915             this.setValue(this.formatDate(this.date));
22916     },
22917         
22918     onRender: function(ct, position)
22919     {
22920         
22921         Roo.bootstrap.form.DateField.superclass.onRender.call(this, ct, position);
22922         
22923         this.language = this.language || 'en';
22924         this.language = this.language in Roo.bootstrap.form.DateField.dates ? this.language : this.language.split('-')[0];
22925         this.language = this.language in Roo.bootstrap.form.DateField.dates ? this.language : "en";
22926         
22927         this.isRTL = Roo.bootstrap.form.DateField.dates[this.language].rtl || false;
22928         this.format = this.format || 'm/d/y';
22929         this.isInline = false;
22930         this.isInput = true;
22931         this.component = this.el.select('.add-on', true).first() || false;
22932         this.component = (this.component && this.component.length === 0) ? false : this.component;
22933         this.hasInput = this.component && this.inputEl().length;
22934         
22935         if (typeof(this.minViewMode === 'string')) {
22936             switch (this.minViewMode) {
22937                 case 'months':
22938                     this.minViewMode = 1;
22939                     break;
22940                 case 'years':
22941                     this.minViewMode = 2;
22942                     break;
22943                 default:
22944                     this.minViewMode = 0;
22945                     break;
22946             }
22947         }
22948         
22949         if (typeof(this.viewMode === 'string')) {
22950             switch (this.viewMode) {
22951                 case 'months':
22952                     this.viewMode = 1;
22953                     break;
22954                 case 'years':
22955                     this.viewMode = 2;
22956                     break;
22957                 default:
22958                     this.viewMode = 0;
22959                     break;
22960             }
22961         }
22962                 
22963         this.pickerEl = Roo.get(document.body).createChild(Roo.bootstrap.form.DateField.template);
22964         
22965 //        this.el.select('>.input-group', true).first().createChild(Roo.bootstrap.form.DateField.template);
22966         
22967         this.picker().setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
22968         
22969         this.picker().on('mousedown', this.onMousedown, this);
22970         this.picker().on('click', this.onClick, this);
22971         
22972         this.picker().addClass('datepicker-dropdown');
22973         
22974         this.startViewMode = this.viewMode;
22975         
22976         if(this.singleMode){
22977             Roo.each(this.picker().select('thead > tr > th', true).elements, function(v){
22978                 v.setVisibilityMode(Roo.Element.DISPLAY);
22979                 v.hide();
22980             });
22981             
22982             Roo.each(this.picker().select('tbody > tr > td', true).elements, function(v){
22983                 v.setStyle('width', '189px');
22984             });
22985         }
22986         
22987         Roo.each(this.picker().select('tfoot th.today', true).elements, function(v){
22988             if(!this.calendarWeeks){
22989                 v.remove();
22990                 return;
22991             }
22992             
22993             v.dom.innerHTML = Roo.bootstrap.form.DateField.dates[this.language].today;
22994             v.attr('colspan', function(i, val){
22995                 return parseInt(val) + 1;
22996             });
22997         });
22998                         
22999         
23000         this.weekEnd = this.weekStart === 0 ? 6 : this.weekStart - 1;
23001         
23002         this.setStartDate(this.startDate);
23003         this.setEndDate(this.endDate);
23004         
23005         this.setDaysOfWeekDisabled(this.daysOfWeekDisabled);
23006         
23007         this.fillDow();
23008         this.fillMonths();
23009         this.update();
23010         this.showMode();
23011         
23012         if(this.isInline) {
23013             this.showPopup();
23014         }
23015     },
23016     
23017     picker : function()
23018     {
23019         return this.pickerEl;
23020 //        return this.el.select('.datepicker', true).first();
23021     },
23022     
23023     fillDow: function()
23024     {
23025         var dowCnt = this.weekStart;
23026         
23027         var dow = {
23028             tag: 'tr',
23029             cn: [
23030                 
23031             ]
23032         };
23033         
23034         if(this.calendarWeeks){
23035             dow.cn.push({
23036                 tag: 'th',
23037                 cls: 'cw',
23038                 html: '&nbsp;'
23039             })
23040         }
23041         
23042         while (dowCnt < this.weekStart + 7) {
23043             dow.cn.push({
23044                 tag: 'th',
23045                 cls: 'dow',
23046                 html: Roo.bootstrap.form.DateField.dates[this.language].daysMin[(dowCnt++)%7]
23047             });
23048         }
23049         
23050         this.picker().select('>.datepicker-days thead', true).first().createChild(dow);
23051     },
23052     
23053     fillMonths: function()
23054     {    
23055         var i = 0;
23056         var months = this.picker().select('>.datepicker-months td', true).first();
23057         
23058         months.dom.innerHTML = '';
23059         
23060         while (i < 12) {
23061             var month = {
23062                 tag: 'span',
23063                 cls: 'month',
23064                 html: Roo.bootstrap.form.DateField.dates[this.language].monthsShort[i++]
23065             };
23066             
23067             months.createChild(month);
23068         }
23069         
23070     },
23071     
23072     update: function()
23073     {
23074         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;
23075         
23076         if (this.date < this.startDate) {
23077             this.viewDate = new Date(this.startDate);
23078         } else if (this.date > this.endDate) {
23079             this.viewDate = new Date(this.endDate);
23080         } else {
23081             this.viewDate = new Date(this.date);
23082         }
23083         
23084         this.fill();
23085     },
23086     
23087     fill: function() 
23088     {
23089         var d = new Date(this.viewDate),
23090                 year = d.getUTCFullYear(),
23091                 month = d.getUTCMonth(),
23092                 startYear = this.startDate !== -Infinity ? this.startDate.getUTCFullYear() : -Infinity,
23093                 startMonth = this.startDate !== -Infinity ? this.startDate.getUTCMonth() : -Infinity,
23094                 endYear = this.endDate !== Infinity ? this.endDate.getUTCFullYear() : Infinity,
23095                 endMonth = this.endDate !== Infinity ? this.endDate.getUTCMonth() : Infinity,
23096                 currentDate = this.date && this.date.valueOf(),
23097                 today = this.UTCToday();
23098         
23099         this.picker().select('>.datepicker-days thead th.switch', true).first().dom.innerHTML = Roo.bootstrap.form.DateField.dates[this.language].months[month]+' '+year;
23100         
23101 //        this.picker().select('>tfoot th.today', true).first().dom.innerHTML = Roo.bootstrap.form.DateField.dates[this.language].today;
23102         
23103 //        this.picker.select('>tfoot th.today').
23104 //                                              .text(dates[this.language].today)
23105 //                                              .toggle(this.todayBtn !== false);
23106     
23107         this.updateNavArrows();
23108         this.fillMonths();
23109                                                 
23110         var prevMonth = this.UTCDate(year, month-1, 28,0,0,0,0),
23111         
23112         day = prevMonth.getDaysInMonth(prevMonth.getUTCFullYear(), prevMonth.getUTCMonth());
23113          
23114         prevMonth.setUTCDate(day);
23115         
23116         prevMonth.setUTCDate(day - (prevMonth.getUTCDay() - this.weekStart + 7)%7);
23117         
23118         var nextMonth = new Date(prevMonth);
23119         
23120         nextMonth.setUTCDate(nextMonth.getUTCDate() + 42);
23121         
23122         nextMonth = nextMonth.valueOf();
23123         
23124         var fillMonths = false;
23125         
23126         this.picker().select('>.datepicker-days tbody',true).first().dom.innerHTML = '';
23127         
23128         while(prevMonth.valueOf() <= nextMonth) {
23129             var clsName = '';
23130             
23131             if (prevMonth.getUTCDay() === this.weekStart) {
23132                 if(fillMonths){
23133                     this.picker().select('>.datepicker-days tbody',true).first().createChild(fillMonths);
23134                 }
23135                     
23136                 fillMonths = {
23137                     tag: 'tr',
23138                     cn: []
23139                 };
23140                 
23141                 if(this.calendarWeeks){
23142                     // ISO 8601: First week contains first thursday.
23143                     // ISO also states week starts on Monday, but we can be more abstract here.
23144                     var
23145                     // Start of current week: based on weekstart/current date
23146                     ws = new Date(+prevMonth + (this.weekStart - prevMonth.getUTCDay() - 7) % 7 * 864e5),
23147                     // Thursday of this week
23148                     th = new Date(+ws + (7 + 4 - ws.getUTCDay()) % 7 * 864e5),
23149                     // First Thursday of year, year from thursday
23150                     yth = new Date(+(yth = this.UTCDate(th.getUTCFullYear(), 0, 1)) + (7 + 4 - yth.getUTCDay())%7*864e5),
23151                     // Calendar week: ms between thursdays, div ms per day, div 7 days
23152                     calWeek =  (th - yth) / 864e5 / 7 + 1;
23153                     
23154                     fillMonths.cn.push({
23155                         tag: 'td',
23156                         cls: 'cw',
23157                         html: calWeek
23158                     });
23159                 }
23160             }
23161             
23162             if (prevMonth.getUTCFullYear() < year || (prevMonth.getUTCFullYear() == year && prevMonth.getUTCMonth() < month)) {
23163                 clsName += ' old';
23164             } else if (prevMonth.getUTCFullYear() > year || (prevMonth.getUTCFullYear() == year && prevMonth.getUTCMonth() > month)) {
23165                 clsName += ' new';
23166             }
23167             if (this.todayHighlight &&
23168                 prevMonth.getUTCFullYear() == today.getFullYear() &&
23169                 prevMonth.getUTCMonth() == today.getMonth() &&
23170                 prevMonth.getUTCDate() == today.getDate()) {
23171                 clsName += ' today';
23172             }
23173             
23174             if (currentDate && prevMonth.valueOf() === currentDate) {
23175                 clsName += ' active';
23176             }
23177             
23178             if (prevMonth.valueOf() < this.startDate || prevMonth.valueOf() > this.endDate ||
23179                     this.daysOfWeekDisabled.indexOf(prevMonth.getUTCDay()) !== -1) {
23180                     clsName += ' disabled';
23181             }
23182             
23183             fillMonths.cn.push({
23184                 tag: 'td',
23185                 cls: 'day ' + clsName,
23186                 html: prevMonth.getDate()
23187             });
23188             
23189             prevMonth.setDate(prevMonth.getDate()+1);
23190         }
23191           
23192         var currentYear = this.date && this.date.getUTCFullYear();
23193         var currentMonth = this.date && this.date.getUTCMonth();
23194         
23195         this.picker().select('>.datepicker-months th.switch',true).first().dom.innerHTML = year;
23196         
23197         Roo.each(this.picker().select('>.datepicker-months tbody span',true).elements, function(v,k){
23198             v.removeClass('active');
23199             
23200             if(currentYear === year && k === currentMonth){
23201                 v.addClass('active');
23202             }
23203             
23204             if (year < startYear || year > endYear || (year == startYear && k < startMonth) || (year == endYear && k > endMonth)) {
23205                 v.addClass('disabled');
23206             }
23207             
23208         });
23209         
23210         
23211         year = parseInt(year/10, 10) * 10;
23212         
23213         this.picker().select('>.datepicker-years th.switch', true).first().dom.innerHTML = year + '-' + (year + 9);
23214         
23215         this.picker().select('>.datepicker-years tbody td',true).first().dom.innerHTML = '';
23216         
23217         year -= 1;
23218         for (var i = -1; i < 11; i++) {
23219             this.picker().select('>.datepicker-years tbody td',true).first().createChild({
23220                 tag: 'span',
23221                 cls: 'year' + (i === -1 || i === 10 ? ' old' : '') + (currentYear === year ? ' active' : '') + (year < startYear || year > endYear ? ' disabled' : ''),
23222                 html: year
23223             });
23224             
23225             year += 1;
23226         }
23227     },
23228     
23229     showMode: function(dir) 
23230     {
23231         if (dir) {
23232             this.viewMode = Math.max(this.minViewMode, Math.min(2, this.viewMode + dir));
23233         }
23234         
23235         Roo.each(this.picker().select('>div',true).elements, function(v){
23236             v.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
23237             v.hide();
23238         });
23239         this.picker().select('>.datepicker-'+Roo.bootstrap.form.DateField.modes[this.viewMode].clsName, true).first().show();
23240     },
23241     
23242     place: function()
23243     {
23244         if(this.isInline) {
23245             return;
23246         }
23247         
23248         this.picker().removeClass(['bottom', 'top']);
23249         
23250         if((Roo.lib.Dom.getViewHeight() + Roo.get(document.body).getScroll().top) - (this.inputEl().getBottom() + this.picker().getHeight()) < 0){
23251             /*
23252              * place to the top of element!
23253              *
23254              */
23255             
23256             this.picker().addClass('top');
23257             this.picker().setTop(this.inputEl().getTop() - this.picker().getHeight()).setLeft(this.inputEl().getLeft());
23258             
23259             return;
23260         }
23261         
23262         this.picker().addClass('bottom');
23263         
23264         this.picker().setTop(this.inputEl().getBottom()).setLeft(this.inputEl().getLeft());
23265     },
23266     
23267     parseDate : function(value)
23268     {
23269         if(!value || value instanceof Date){
23270             return value;
23271         }
23272         var v = Date.parseDate(value, this.format);
23273         if (!v && (this.useIso || value.match(/^(\d{4})-0?(\d+)-0?(\d+)/))) {
23274             v = Date.parseDate(value, 'Y-m-d');
23275         }
23276         if(!v && this.altFormats){
23277             if(!this.altFormatsArray){
23278                 this.altFormatsArray = this.altFormats.split("|");
23279             }
23280             for(var i = 0, len = this.altFormatsArray.length; i < len && !v; i++){
23281                 v = Date.parseDate(value, this.altFormatsArray[i]);
23282             }
23283         }
23284         return v;
23285     },
23286     
23287     formatDate : function(date, fmt)
23288     {   
23289         return (!date || !(date instanceof Date)) ?
23290         date : date.dateFormat(fmt || this.format);
23291     },
23292     
23293     onFocus : function()
23294     {
23295         Roo.bootstrap.form.DateField.superclass.onFocus.call(this);
23296         this.showPopup();
23297     },
23298     
23299     onBlur : function()
23300     {
23301         Roo.bootstrap.form.DateField.superclass.onBlur.call(this);
23302         
23303         var d = this.inputEl().getValue();
23304         
23305         this.setValue(d);
23306                 
23307         this.hidePopup();
23308     },
23309     
23310     showPopup : function()
23311     {
23312         this.picker().show();
23313         this.update();
23314         this.place();
23315         
23316         this.fireEvent('showpopup', this, this.date);
23317     },
23318     
23319     hidePopup : function()
23320     {
23321         if(this.isInline) {
23322             return;
23323         }
23324         this.picker().hide();
23325         this.viewMode = this.startViewMode;
23326         this.showMode();
23327         
23328         this.fireEvent('hidepopup', this, this.date);
23329         
23330     },
23331     
23332     onMousedown: function(e)
23333     {
23334         e.stopPropagation();
23335         e.preventDefault();
23336     },
23337     
23338     keyup: function(e)
23339     {
23340         Roo.bootstrap.form.DateField.superclass.keyup.call(this);
23341         this.update();
23342     },
23343
23344     setValue: function(v)
23345     {
23346         if(this.fireEvent('beforeselect', this, v) !== false){
23347             var d = new Date(this.parseDate(v) ).clearTime();
23348         
23349             if(isNaN(d.getTime())){
23350                 this.date = this.viewDate = '';
23351                 Roo.bootstrap.form.DateField.superclass.setValue.call(this, '');
23352                 return;
23353             }
23354
23355             v = this.formatDate(d);
23356
23357             Roo.bootstrap.form.DateField.superclass.setValue.call(this, v);
23358
23359             this.date = new Date(d.getTime() - d.getTimezoneOffset()*60000);
23360
23361             this.update();
23362
23363             this.fireEvent('select', this, this.date);
23364         }
23365     },
23366     
23367     getValue: function()
23368     {
23369         return this.formatDate(this.date);
23370     },
23371     
23372     fireKey: function(e)
23373     {
23374         if (!this.picker().isVisible()){
23375             if (e.keyCode == 27) { // allow escape to hide and re-show picker
23376                 this.showPopup();
23377             }
23378             return;
23379         }
23380         
23381         var dateChanged = false,
23382         dir, day, month,
23383         newDate, newViewDate;
23384         
23385         switch(e.keyCode){
23386             case 27: // escape
23387                 this.hidePopup();
23388                 e.preventDefault();
23389                 break;
23390             case 37: // left
23391             case 39: // right
23392                 if (!this.keyboardNavigation) {
23393                     break;
23394                 }
23395                 dir = e.keyCode == 37 ? -1 : 1;
23396                 
23397                 if (e.ctrlKey){
23398                     newDate = this.moveYear(this.date, dir);
23399                     newViewDate = this.moveYear(this.viewDate, dir);
23400                 } else if (e.shiftKey){
23401                     newDate = this.moveMonth(this.date, dir);
23402                     newViewDate = this.moveMonth(this.viewDate, dir);
23403                 } else {
23404                     newDate = new Date(this.date);
23405                     newDate.setUTCDate(this.date.getUTCDate() + dir);
23406                     newViewDate = new Date(this.viewDate);
23407                     newViewDate.setUTCDate(this.viewDate.getUTCDate() + dir);
23408                 }
23409                 if (this.dateWithinRange(newDate)){
23410                     this.date = newDate;
23411                     this.viewDate = newViewDate;
23412                     this.setValue(this.formatDate(this.date));
23413 //                    this.update();
23414                     e.preventDefault();
23415                     dateChanged = true;
23416                 }
23417                 break;
23418             case 38: // up
23419             case 40: // down
23420                 if (!this.keyboardNavigation) {
23421                     break;
23422                 }
23423                 dir = e.keyCode == 38 ? -1 : 1;
23424                 if (e.ctrlKey){
23425                     newDate = this.moveYear(this.date, dir);
23426                     newViewDate = this.moveYear(this.viewDate, dir);
23427                 } else if (e.shiftKey){
23428                     newDate = this.moveMonth(this.date, dir);
23429                     newViewDate = this.moveMonth(this.viewDate, dir);
23430                 } else {
23431                     newDate = new Date(this.date);
23432                     newDate.setUTCDate(this.date.getUTCDate() + dir * 7);
23433                     newViewDate = new Date(this.viewDate);
23434                     newViewDate.setUTCDate(this.viewDate.getUTCDate() + dir * 7);
23435                 }
23436                 if (this.dateWithinRange(newDate)){
23437                     this.date = newDate;
23438                     this.viewDate = newViewDate;
23439                     this.setValue(this.formatDate(this.date));
23440 //                    this.update();
23441                     e.preventDefault();
23442                     dateChanged = true;
23443                 }
23444                 break;
23445             case 13: // enter
23446                 this.setValue(this.formatDate(this.date));
23447                 this.hidePopup();
23448                 e.preventDefault();
23449                 break;
23450             case 9: // tab
23451                 this.setValue(this.formatDate(this.date));
23452                 this.hidePopup();
23453                 break;
23454             case 16: // shift
23455             case 17: // ctrl
23456             case 18: // alt
23457                 break;
23458             default :
23459                 this.hidePopup();
23460                 
23461         }
23462     },
23463     
23464     
23465     onClick: function(e) 
23466     {
23467         e.stopPropagation();
23468         e.preventDefault();
23469         
23470         var target = e.getTarget();
23471         
23472         if(target.nodeName.toLowerCase() === 'i'){
23473             target = Roo.get(target).dom.parentNode;
23474         }
23475         
23476         var nodeName = target.nodeName;
23477         var className = target.className;
23478         var html = target.innerHTML;
23479         //Roo.log(nodeName);
23480         
23481         switch(nodeName.toLowerCase()) {
23482             case 'th':
23483                 switch(className) {
23484                     case 'switch':
23485                         this.showMode(1);
23486                         break;
23487                     case 'prev':
23488                     case 'next':
23489                         var dir = Roo.bootstrap.form.DateField.modes[this.viewMode].navStep * (className == 'prev' ? -1 : 1);
23490                         switch(this.viewMode){
23491                                 case 0:
23492                                         this.viewDate = this.moveMonth(this.viewDate, dir);
23493                                         break;
23494                                 case 1:
23495                                 case 2:
23496                                         this.viewDate = this.moveYear(this.viewDate, dir);
23497                                         break;
23498                         }
23499                         this.fill();
23500                         break;
23501                     case 'today':
23502                         var date = new Date();
23503                         this.date = this.UTCDate(date.getFullYear(), date.getMonth(), date.getDate(), 0, 0, 0);
23504 //                        this.fill()
23505                         this.setValue(this.formatDate(this.date));
23506                         
23507                         this.hidePopup();
23508                         break;
23509                 }
23510                 break;
23511             case 'span':
23512                 if (className.indexOf('disabled') < 0) {
23513                 if (!this.viewDate) {
23514                     this.viewDate = new Date();
23515                 }
23516                 this.viewDate.setUTCDate(1);
23517                     if (className.indexOf('month') > -1) {
23518                         this.viewDate.setUTCMonth(Roo.bootstrap.form.DateField.dates[this.language].monthsShort.indexOf(html));
23519                     } else {
23520                         var year = parseInt(html, 10) || 0;
23521                         this.viewDate.setUTCFullYear(year);
23522                         
23523                     }
23524                     
23525                     if(this.singleMode){
23526                         this.setValue(this.formatDate(this.viewDate));
23527                         this.hidePopup();
23528                         return;
23529                     }
23530                     
23531                     this.showMode(-1);
23532                     this.fill();
23533                 }
23534                 break;
23535                 
23536             case 'td':
23537                 //Roo.log(className);
23538                 if (className.indexOf('day') > -1 && className.indexOf('disabled') < 0 ){
23539                     var day = parseInt(html, 10) || 1;
23540                     var year =  (this.viewDate || new Date()).getUTCFullYear(),
23541                         month = (this.viewDate || new Date()).getUTCMonth();
23542
23543                     if (className.indexOf('old') > -1) {
23544                         if(month === 0 ){
23545                             month = 11;
23546                             year -= 1;
23547                         }else{
23548                             month -= 1;
23549                         }
23550                     } else if (className.indexOf('new') > -1) {
23551                         if (month == 11) {
23552                             month = 0;
23553                             year += 1;
23554                         } else {
23555                             month += 1;
23556                         }
23557                     }
23558                     //Roo.log([year,month,day]);
23559                     this.date = this.UTCDate(year, month, day,0,0,0,0);
23560                     this.viewDate = this.UTCDate(year, month, Math.min(28, day),0,0,0,0);
23561 //                    this.fill();
23562                     //Roo.log(this.formatDate(this.date));
23563                     this.setValue(this.formatDate(this.date));
23564                     this.hidePopup();
23565                 }
23566                 break;
23567         }
23568     },
23569     
23570     setStartDate: function(startDate)
23571     {
23572         this.startDate = startDate || -Infinity;
23573         if (this.startDate !== -Infinity) {
23574             this.startDate = this.parseDate(this.startDate);
23575         }
23576         this.update();
23577         this.updateNavArrows();
23578     },
23579
23580     setEndDate: function(endDate)
23581     {
23582         this.endDate = endDate || Infinity;
23583         if (this.endDate !== Infinity) {
23584             this.endDate = this.parseDate(this.endDate);
23585         }
23586         this.update();
23587         this.updateNavArrows();
23588     },
23589     
23590     setDaysOfWeekDisabled: function(daysOfWeekDisabled)
23591     {
23592         this.daysOfWeekDisabled = daysOfWeekDisabled || [];
23593         if (typeof(this.daysOfWeekDisabled) !== 'object') {
23594             this.daysOfWeekDisabled = this.daysOfWeekDisabled.split(/,\s*/);
23595         }
23596         this.daysOfWeekDisabled = this.daysOfWeekDisabled.map(function (d) {
23597             return parseInt(d, 10);
23598         });
23599         this.update();
23600         this.updateNavArrows();
23601     },
23602     
23603     updateNavArrows: function() 
23604     {
23605         if(this.singleMode){
23606             return;
23607         }
23608         
23609         var d = new Date(this.viewDate),
23610         year = d.getUTCFullYear(),
23611         month = d.getUTCMonth();
23612         
23613         Roo.each(this.picker().select('.prev', true).elements, function(v){
23614             v.show();
23615             switch (this.viewMode) {
23616                 case 0:
23617
23618                     if (this.startDate !== -Infinity && year <= this.startDate.getUTCFullYear() && month <= this.startDate.getUTCMonth()) {
23619                         v.hide();
23620                     }
23621                     break;
23622                 case 1:
23623                 case 2:
23624                     if (this.startDate !== -Infinity && year <= this.startDate.getUTCFullYear()) {
23625                         v.hide();
23626                     }
23627                     break;
23628             }
23629         });
23630         
23631         Roo.each(this.picker().select('.next', true).elements, function(v){
23632             v.show();
23633             switch (this.viewMode) {
23634                 case 0:
23635
23636                     if (this.endDate !== Infinity && year >= this.endDate.getUTCFullYear() && month >= this.endDate.getUTCMonth()) {
23637                         v.hide();
23638                     }
23639                     break;
23640                 case 1:
23641                 case 2:
23642                     if (this.endDate !== Infinity && year >= this.endDate.getUTCFullYear()) {
23643                         v.hide();
23644                     }
23645                     break;
23646             }
23647         })
23648     },
23649     
23650     moveMonth: function(date, dir)
23651     {
23652         if (!dir) {
23653             return date;
23654         }
23655         var new_date = new Date(date.valueOf()),
23656         day = new_date.getUTCDate(),
23657         month = new_date.getUTCMonth(),
23658         mag = Math.abs(dir),
23659         new_month, test;
23660         dir = dir > 0 ? 1 : -1;
23661         if (mag == 1){
23662             test = dir == -1
23663             // If going back one month, make sure month is not current month
23664             // (eg, Mar 31 -> Feb 31 == Feb 28, not Mar 02)
23665             ? function(){
23666                 return new_date.getUTCMonth() == month;
23667             }
23668             // If going forward one month, make sure month is as expected
23669             // (eg, Jan 31 -> Feb 31 == Feb 28, not Mar 02)
23670             : function(){
23671                 return new_date.getUTCMonth() != new_month;
23672             };
23673             new_month = month + dir;
23674             new_date.setUTCMonth(new_month);
23675             // Dec -> Jan (12) or Jan -> Dec (-1) -- limit expected date to 0-11
23676             if (new_month < 0 || new_month > 11) {
23677                 new_month = (new_month + 12) % 12;
23678             }
23679         } else {
23680             // For magnitudes >1, move one month at a time...
23681             for (var i=0; i<mag; i++) {
23682                 // ...which might decrease the day (eg, Jan 31 to Feb 28, etc)...
23683                 new_date = this.moveMonth(new_date, dir);
23684             }
23685             // ...then reset the day, keeping it in the new month
23686             new_month = new_date.getUTCMonth();
23687             new_date.setUTCDate(day);
23688             test = function(){
23689                 return new_month != new_date.getUTCMonth();
23690             };
23691         }
23692         // Common date-resetting loop -- if date is beyond end of month, make it
23693         // end of month
23694         while (test()){
23695             new_date.setUTCDate(--day);
23696             new_date.setUTCMonth(new_month);
23697         }
23698         return new_date;
23699     },
23700
23701     moveYear: function(date, dir)
23702     {
23703         return this.moveMonth(date, dir*12);
23704     },
23705
23706     dateWithinRange: function(date)
23707     {
23708         return date >= this.startDate && date <= this.endDate;
23709     },
23710
23711     
23712     remove: function() 
23713     {
23714         this.picker().remove();
23715     },
23716     
23717     validateValue : function(value)
23718     {
23719         if(this.getVisibilityEl().hasClass('hidden')){
23720             return true;
23721         }
23722         
23723         if(value.length < 1)  {
23724             if(this.allowBlank){
23725                 return true;
23726             }
23727             return false;
23728         }
23729         
23730         if(value.length < this.minLength){
23731             return false;
23732         }
23733         if(value.length > this.maxLength){
23734             return false;
23735         }
23736         if(this.vtype){
23737             var vt = Roo.form.VTypes;
23738             if(!vt[this.vtype](value, this)){
23739                 return false;
23740             }
23741         }
23742         if(typeof this.validator == "function"){
23743             var msg = this.validator(value);
23744             if(msg !== true){
23745                 return false;
23746             }
23747         }
23748         
23749         if(this.regex && !this.regex.test(value)){
23750             return false;
23751         }
23752         
23753         if(typeof(this.parseDate(value)) == 'undefined'){
23754             return false;
23755         }
23756         
23757         if (this.endDate !== Infinity && this.parseDate(value).getTime() > this.endDate.getTime()) {
23758             return false;
23759         }      
23760         
23761         if (this.startDate !== -Infinity && this.parseDate(value).getTime() < this.startDate.getTime()) {
23762             return false;
23763         } 
23764         
23765         
23766         return true;
23767     },
23768     
23769     reset : function()
23770     {
23771         this.date = this.viewDate = '';
23772         
23773         Roo.bootstrap.form.DateField.superclass.setValue.call(this, '');
23774     }
23775    
23776 });
23777
23778 Roo.apply(Roo.bootstrap.form.DateField,  {
23779     
23780     head : {
23781         tag: 'thead',
23782         cn: [
23783         {
23784             tag: 'tr',
23785             cn: [
23786             {
23787                 tag: 'th',
23788                 cls: 'prev',
23789                 html: '<i class="fa fa-arrow-left"/>'
23790             },
23791             {
23792                 tag: 'th',
23793                 cls: 'switch',
23794                 colspan: '5'
23795             },
23796             {
23797                 tag: 'th',
23798                 cls: 'next',
23799                 html: '<i class="fa fa-arrow-right"/>'
23800             }
23801
23802             ]
23803         }
23804         ]
23805     },
23806     
23807     content : {
23808         tag: 'tbody',
23809         cn: [
23810         {
23811             tag: 'tr',
23812             cn: [
23813             {
23814                 tag: 'td',
23815                 colspan: '7'
23816             }
23817             ]
23818         }
23819         ]
23820     },
23821     
23822     footer : {
23823         tag: 'tfoot',
23824         cn: [
23825         {
23826             tag: 'tr',
23827             cn: [
23828             {
23829                 tag: 'th',
23830                 colspan: '7',
23831                 cls: 'today'
23832             }
23833                     
23834             ]
23835         }
23836         ]
23837     },
23838     
23839     dates:{
23840         en: {
23841             days: ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"],
23842             daysShort: ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"],
23843             daysMin: ["Su", "Mo", "Tu", "We", "Th", "Fr", "Sa", "Su"],
23844             months: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"],
23845             monthsShort: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"],
23846             today: "Today"
23847         }
23848     },
23849     
23850     modes: [
23851     {
23852         clsName: 'days',
23853         navFnc: 'Month',
23854         navStep: 1
23855     },
23856     {
23857         clsName: 'months',
23858         navFnc: 'FullYear',
23859         navStep: 1
23860     },
23861     {
23862         clsName: 'years',
23863         navFnc: 'FullYear',
23864         navStep: 10
23865     }]
23866 });
23867
23868 Roo.apply(Roo.bootstrap.form.DateField,  {
23869   
23870     template : {
23871         tag: 'div',
23872         cls: 'datepicker dropdown-menu roo-dynamic shadow',
23873         cn: [
23874         {
23875             tag: 'div',
23876             cls: 'datepicker-days',
23877             cn: [
23878             {
23879                 tag: 'table',
23880                 cls: 'table-condensed',
23881                 cn:[
23882                 Roo.bootstrap.form.DateField.head,
23883                 {
23884                     tag: 'tbody'
23885                 },
23886                 Roo.bootstrap.form.DateField.footer
23887                 ]
23888             }
23889             ]
23890         },
23891         {
23892             tag: 'div',
23893             cls: 'datepicker-months',
23894             cn: [
23895             {
23896                 tag: 'table',
23897                 cls: 'table-condensed',
23898                 cn:[
23899                 Roo.bootstrap.form.DateField.head,
23900                 Roo.bootstrap.form.DateField.content,
23901                 Roo.bootstrap.form.DateField.footer
23902                 ]
23903             }
23904             ]
23905         },
23906         {
23907             tag: 'div',
23908             cls: 'datepicker-years',
23909             cn: [
23910             {
23911                 tag: 'table',
23912                 cls: 'table-condensed',
23913                 cn:[
23914                 Roo.bootstrap.form.DateField.head,
23915                 Roo.bootstrap.form.DateField.content,
23916                 Roo.bootstrap.form.DateField.footer
23917                 ]
23918             }
23919             ]
23920         }
23921         ]
23922     }
23923 });
23924
23925  
23926
23927  /*
23928  * - LGPL
23929  *
23930  * TimeField
23931  * 
23932  */
23933
23934 /**
23935  * @class Roo.bootstrap.form.TimeField
23936  * @extends Roo.bootstrap.form.Input
23937  * Bootstrap DateField class
23938  * @cfg {Number} minuteStep the minutes is always the multiple of a fixed number, default 1
23939  * 
23940  * 
23941  * @constructor
23942  * Create a new TimeField
23943  * @param {Object} config The config object
23944  */
23945
23946 Roo.bootstrap.form.TimeField = function(config){
23947     Roo.bootstrap.form.TimeField.superclass.constructor.call(this, config);
23948     this.addEvents({
23949             /**
23950              * @event show
23951              * Fires when this field show.
23952              * @param {Roo.bootstrap.form.DateField} thisthis
23953              * @param {Mixed} date The date value
23954              */
23955             show : true,
23956             /**
23957              * @event show
23958              * Fires when this field hide.
23959              * @param {Roo.bootstrap.form.DateField} this
23960              * @param {Mixed} date The date value
23961              */
23962             hide : true,
23963             /**
23964              * @event select
23965              * Fires when select a date.
23966              * @param {Roo.bootstrap.form.DateField} this
23967              * @param {Mixed} date The date value
23968              */
23969             select : true
23970         });
23971 };
23972
23973 Roo.extend(Roo.bootstrap.form.TimeField, Roo.bootstrap.form.Input,  {
23974     
23975     /**
23976      * @cfg {String} format
23977      * The default time format string which can be overriden for localization support.  The format must be
23978      * valid according to {@link Date#parseDate} (defaults to 'H:i').
23979      */
23980     format : "H:i",
23981     minuteStep : 1,
23982
23983     getAutoCreate : function()
23984     {
23985         this.after = '<i class="fa far fa-clock"></i>';
23986         return Roo.bootstrap.form.TimeField.superclass.getAutoCreate.call(this);
23987         
23988          
23989     },
23990     onRender: function(ct, position)
23991     {
23992         
23993         Roo.bootstrap.form.TimeField.superclass.onRender.call(this, ct, position);
23994                 
23995         this.pickerEl = Roo.get(document.body).createChild(Roo.bootstrap.form.TimeField.template);
23996         
23997         this.picker().setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
23998         
23999         this.pop = this.picker().select('>.datepicker-time',true).first();
24000         this.pop.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
24001         
24002         this.picker().on('mousedown', this.onMousedown, this);
24003         this.picker().on('click', this.onClick, this);
24004         
24005         this.picker().addClass('datepicker-dropdown');
24006     
24007         this.fillTime();
24008         this.update();
24009             
24010         this.pop.select('.hours-up', true).first().on('click', this.onIncrementHours, this);
24011         this.pop.select('.hours-down', true).first().on('click', this.onDecrementHours, this);
24012         this.pop.select('.minutes-up', true).first().on('click', this.onIncrementMinutes, this);
24013         this.pop.select('.minutes-down', true).first().on('click', this.onDecrementMinutes, this);
24014         this.pop.select('button.period', true).first().on('click', this.onTogglePeriod, this);
24015         this.pop.select('button.ok', true).first().on('click', this.setTime, this);
24016
24017     },
24018     
24019     fireKey: function(e){
24020         if (!this.picker().isVisible()){
24021             if (e.keyCode == 27) { // allow escape to hide and re-show picker
24022                 this.show();
24023             }
24024             return;
24025         }
24026
24027         e.preventDefault();
24028         
24029         switch(e.keyCode){
24030             case 27: // escape
24031                 this.hide();
24032                 break;
24033             case 37: // left
24034             case 39: // right
24035                 this.onTogglePeriod();
24036                 break;
24037             case 38: // up
24038                 this.onIncrementMinutes();
24039                 break;
24040             case 40: // down
24041                 this.onDecrementMinutes();
24042                 break;
24043             case 13: // enter
24044             case 9: // tab
24045                 this.setTime();
24046                 break;
24047         }
24048     },
24049     
24050     onClick: function(e) {
24051         e.stopPropagation();
24052         e.preventDefault();
24053     },
24054     
24055     picker : function()
24056     {
24057         return this.pickerEl;
24058     },
24059     
24060     fillTime: function()
24061     {    
24062         var time = this.pop.select('tbody', true).first();
24063         
24064         time.dom.innerHTML = '';
24065         
24066         time.createChild({
24067             tag: 'tr',
24068             cn: [
24069                 {
24070                     tag: 'td',
24071                     cn: [
24072                         {
24073                             tag: 'a',
24074                             href: '#',
24075                             cls: 'btn',
24076                             cn: [
24077                                 {
24078                                     tag: 'i',
24079                                     cls: 'hours-up fa fas fa-chevron-up'
24080                                 }
24081                             ]
24082                         } 
24083                     ]
24084                 },
24085                 {
24086                     tag: 'td',
24087                     cls: 'separator'
24088                 },
24089                 {
24090                     tag: 'td',
24091                     cn: [
24092                         {
24093                             tag: 'a',
24094                             href: '#',
24095                             cls: 'btn',
24096                             cn: [
24097                                 {
24098                                     tag: 'i',
24099                                     cls: 'minutes-up fa fas fa-chevron-up'
24100                                 }
24101                             ]
24102                         }
24103                     ]
24104                 },
24105                 {
24106                     tag: 'td',
24107                     cls: 'separator'
24108                 }
24109             ]
24110         });
24111         
24112         time.createChild({
24113             tag: 'tr',
24114             cn: [
24115                 {
24116                     tag: 'td',
24117                     cn: [
24118                         {
24119                             tag: 'span',
24120                             cls: 'timepicker-hour',
24121                             html: '00'
24122                         }  
24123                     ]
24124                 },
24125                 {
24126                     tag: 'td',
24127                     cls: 'separator',
24128                     html: ':'
24129                 },
24130                 {
24131                     tag: 'td',
24132                     cn: [
24133                         {
24134                             tag: 'span',
24135                             cls: 'timepicker-minute',
24136                             html: '00'
24137                         }  
24138                     ]
24139                 },
24140                 {
24141                     tag: 'td',
24142                     cls: 'separator'
24143                 },
24144                 {
24145                     tag: 'td',
24146                     cn: [
24147                         {
24148                             tag: 'button',
24149                             type: 'button',
24150                             cls: 'btn btn-primary period',
24151                             html: 'AM'
24152                             
24153                         }
24154                     ]
24155                 }
24156             ]
24157         });
24158         
24159         time.createChild({
24160             tag: 'tr',
24161             cn: [
24162                 {
24163                     tag: 'td',
24164                     cn: [
24165                         {
24166                             tag: 'a',
24167                             href: '#',
24168                             cls: 'btn',
24169                             cn: [
24170                                 {
24171                                     tag: 'span',
24172                                     cls: 'hours-down fa fas fa-chevron-down'
24173                                 }
24174                             ]
24175                         }
24176                     ]
24177                 },
24178                 {
24179                     tag: 'td',
24180                     cls: 'separator'
24181                 },
24182                 {
24183                     tag: 'td',
24184                     cn: [
24185                         {
24186                             tag: 'a',
24187                             href: '#',
24188                             cls: 'btn',
24189                             cn: [
24190                                 {
24191                                     tag: 'span',
24192                                     cls: 'minutes-down fa fas fa-chevron-down'
24193                                 }
24194                             ]
24195                         }
24196                     ]
24197                 },
24198                 {
24199                     tag: 'td',
24200                     cls: 'separator'
24201                 }
24202             ]
24203         });
24204         
24205     },
24206     
24207     update: function()
24208     {
24209         
24210         this.time = (typeof(this.time) === 'undefined') ? new Date() : this.time;
24211         
24212         this.fill();
24213     },
24214     
24215     fill: function() 
24216     {
24217         var hours = this.time.getHours();
24218         var minutes = this.time.getMinutes();
24219         var period = 'AM';
24220         
24221         if(hours > 11){
24222             period = 'PM';
24223         }
24224         
24225         if(hours == 0){
24226             hours = 12;
24227         }
24228         
24229         
24230         if(hours > 12){
24231             hours = hours - 12;
24232         }
24233         
24234         if(hours < 10){
24235             hours = '0' + hours;
24236         }
24237         
24238         if(minutes < 10){
24239             minutes = '0' + minutes;
24240         }
24241         
24242         this.pop.select('.timepicker-hour', true).first().dom.innerHTML = hours;
24243         this.pop.select('.timepicker-minute', true).first().dom.innerHTML = minutes;
24244         this.pop.select('button', true).first().dom.innerHTML = period;
24245         
24246     },
24247     
24248     place: function()
24249     {   
24250         this.picker().removeClass(['bottom-left', 'bottom-right', 'top-left', 'top-right']);
24251         
24252         var cls = ['bottom'];
24253         
24254         if((Roo.lib.Dom.getViewHeight() + Roo.get(document.body).getScroll().top) - (this.inputEl().getBottom() + this.picker().getHeight()) < 0){ // top
24255             cls.pop();
24256             cls.push('top');
24257         }
24258         
24259         cls.push('right');
24260         
24261         if((Roo.lib.Dom.getViewWidth() + Roo.get(document.body).getScroll().left) - (this.inputEl().getLeft() + this.picker().getWidth()) < 0){ // left
24262             cls.pop();
24263             cls.push('left');
24264         }
24265         //this.picker().setXY(20000,20000);
24266         this.picker().addClass(cls.join('-'));
24267         
24268         var _this = this;
24269         
24270         Roo.each(cls, function(c){
24271             if(c == 'bottom'){
24272                 (function() {
24273                  //  
24274                 }).defer(200);
24275                  _this.picker().alignTo(_this.inputEl(),   "tr-br", [0, 10], false);
24276                 //_this.picker().setTop(_this.inputEl().getHeight());
24277                 return;
24278             }
24279             if(c == 'top'){
24280                  _this.picker().alignTo(_this.inputEl(),   "br-tr", [0, 10], false);
24281                 
24282                 //_this.picker().setTop(0 - _this.picker().getHeight());
24283                 return;
24284             }
24285             /*
24286             if(c == 'left'){
24287                 _this.picker().setLeft(_this.inputEl().getLeft() + _this.inputEl().getWidth() - _this.el.getLeft() - _this.picker().getWidth());
24288                 return;
24289             }
24290             if(c == 'right'){
24291                 _this.picker().setLeft(_this.inputEl().getLeft() - _this.el.getLeft());
24292                 return;
24293             }
24294             */
24295         });
24296         
24297     },
24298   
24299     onFocus : function()
24300     {
24301         Roo.bootstrap.form.TimeField.superclass.onFocus.call(this);
24302         this.show();
24303     },
24304     
24305     onBlur : function()
24306     {
24307         Roo.bootstrap.form.TimeField.superclass.onBlur.call(this);
24308         this.hide();
24309     },
24310     
24311     show : function()
24312     {
24313         this.picker().show();
24314         this.pop.show();
24315         this.update();
24316         this.place();
24317         
24318         this.fireEvent('show', this, this.date);
24319     },
24320     
24321     hide : function()
24322     {
24323         this.picker().hide();
24324         this.pop.hide();
24325         
24326         this.fireEvent('hide', this, this.date);
24327     },
24328     
24329     setTime : function()
24330     {
24331         this.hide();
24332         this.setValue(this.time.format(this.format));
24333         
24334         this.fireEvent('select', this, this.date);
24335         
24336         
24337     },
24338     
24339     onMousedown: function(e){
24340         e.stopPropagation();
24341         e.preventDefault();
24342     },
24343     
24344     onIncrementHours: function()
24345     {
24346         Roo.log('onIncrementHours');
24347         this.time = this.time.add(Date.HOUR, 1);
24348         this.update();
24349         
24350     },
24351     
24352     onDecrementHours: function()
24353     {
24354         Roo.log('onDecrementHours');
24355         this.time = this.time.add(Date.HOUR, -1);
24356         this.update();
24357     },
24358     
24359     onIncrementMinutes: function()
24360     {
24361         Roo.log('onIncrementMinutes');
24362         var minutesToAdd = Math.round((parseInt(this.time.format('i')) + this.minuteStep) / this.minuteStep) * this.minuteStep - parseInt(this.time.format('i'));
24363         this.time = this.time.add(Date.MINUTE, minutesToAdd);
24364         this.update();
24365     },
24366     
24367     onDecrementMinutes: function()
24368     {
24369         Roo.log('onDecrementMinutes');
24370         var minutesToSubtract = parseInt(this.time.format('i')) - Math.round((parseInt(this.time.format('i')) - this.minuteStep) / this.minuteStep) * this.minuteStep;
24371         this.time = this.time.add(Date.MINUTE, -1 * minutesToSubtract);
24372         this.update();
24373     },
24374     
24375     onTogglePeriod: function()
24376     {
24377         Roo.log('onTogglePeriod');
24378         this.time = this.time.add(Date.HOUR, 12);
24379         this.update();
24380     }
24381     
24382    
24383 });
24384  
24385
24386 Roo.apply(Roo.bootstrap.form.TimeField,  {
24387   
24388     template : {
24389         tag: 'div',
24390         cls: 'datepicker dropdown-menu',
24391         cn: [
24392             {
24393                 tag: 'div',
24394                 cls: 'datepicker-time',
24395                 cn: [
24396                 {
24397                     tag: 'table',
24398                     cls: 'table-condensed',
24399                     cn:[
24400                         {
24401                             tag: 'tbody',
24402                             cn: [
24403                                 {
24404                                     tag: 'tr',
24405                                     cn: [
24406                                     {
24407                                         tag: 'td',
24408                                         colspan: '7'
24409                                     }
24410                                     ]
24411                                 }
24412                             ]
24413                         },
24414                         {
24415                             tag: 'tfoot',
24416                             cn: [
24417                                 {
24418                                     tag: 'tr',
24419                                     cn: [
24420                                     {
24421                                         tag: 'th',
24422                                         colspan: '7',
24423                                         cls: '',
24424                                         cn: [
24425                                             {
24426                                                 tag: 'button',
24427                                                 cls: 'btn btn-info ok',
24428                                                 html: 'OK'
24429                                             }
24430                                         ]
24431                                     }
24432                     
24433                                     ]
24434                                 }
24435                             ]
24436                         }
24437                     ]
24438                 }
24439                 ]
24440             }
24441         ]
24442     }
24443 });
24444
24445  
24446
24447  /*
24448  * - LGPL
24449  *
24450  * MonthField
24451  * 
24452  */
24453
24454 /**
24455  * @class Roo.bootstrap.form.MonthField
24456  * @extends Roo.bootstrap.form.Input
24457  * Bootstrap MonthField class
24458  * 
24459  * @cfg {String} language default en
24460  * 
24461  * @constructor
24462  * Create a new MonthField
24463  * @param {Object} config The config object
24464  */
24465
24466 Roo.bootstrap.form.MonthField = function(config){
24467     Roo.bootstrap.form.MonthField.superclass.constructor.call(this, config);
24468     
24469     this.addEvents({
24470         /**
24471          * @event show
24472          * Fires when this field show.
24473          * @param {Roo.bootstrap.form.MonthField} this
24474          * @param {Mixed} date The date value
24475          */
24476         show : true,
24477         /**
24478          * @event show
24479          * Fires when this field hide.
24480          * @param {Roo.bootstrap.form.MonthField} this
24481          * @param {Mixed} date The date value
24482          */
24483         hide : true,
24484         /**
24485          * @event select
24486          * Fires when select a date.
24487          * @param {Roo.bootstrap.form.MonthField} this
24488          * @param {String} oldvalue The old value
24489          * @param {String} newvalue The new value
24490          */
24491         select : true
24492     });
24493 };
24494
24495 Roo.extend(Roo.bootstrap.form.MonthField, Roo.bootstrap.form.Input,  {
24496     
24497     onRender: function(ct, position)
24498     {
24499         
24500         Roo.bootstrap.form.MonthField.superclass.onRender.call(this, ct, position);
24501         
24502         this.language = this.language || 'en';
24503         this.language = this.language in Roo.bootstrap.form.MonthField.dates ? this.language : this.language.split('-')[0];
24504         this.language = this.language in Roo.bootstrap.form.MonthField.dates ? this.language : "en";
24505         
24506         this.isRTL = Roo.bootstrap.form.MonthField.dates[this.language].rtl || false;
24507         this.isInline = false;
24508         this.isInput = true;
24509         this.component = this.el.select('.add-on', true).first() || false;
24510         this.component = (this.component && this.component.length === 0) ? false : this.component;
24511         this.hasInput = this.component && this.inputEL().length;
24512         
24513         this.pickerEl = Roo.get(document.body).createChild(Roo.bootstrap.form.MonthField.template);
24514         
24515         this.picker().setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
24516         
24517         this.picker().on('mousedown', this.onMousedown, this);
24518         this.picker().on('click', this.onClick, this);
24519         
24520         this.picker().addClass('datepicker-dropdown');
24521         
24522         Roo.each(this.picker().select('tbody > tr > td', true).elements, function(v){
24523             v.setStyle('width', '189px');
24524         });
24525         
24526         this.fillMonths();
24527         
24528         this.update();
24529         
24530         if(this.isInline) {
24531             this.show();
24532         }
24533         
24534     },
24535     
24536     setValue: function(v, suppressEvent)
24537     {   
24538         var o = this.getValue();
24539         
24540         Roo.bootstrap.form.MonthField.superclass.setValue.call(this, v);
24541         
24542         this.update();
24543
24544         if(suppressEvent !== true){
24545             this.fireEvent('select', this, o, v);
24546         }
24547         
24548     },
24549     
24550     getValue: function()
24551     {
24552         return this.value;
24553     },
24554     
24555     onClick: function(e) 
24556     {
24557         e.stopPropagation();
24558         e.preventDefault();
24559         
24560         var target = e.getTarget();
24561         
24562         if(target.nodeName.toLowerCase() === 'i'){
24563             target = Roo.get(target).dom.parentNode;
24564         }
24565         
24566         var nodeName = target.nodeName;
24567         var className = target.className;
24568         var html = target.innerHTML;
24569         
24570         if(nodeName.toLowerCase() != 'span' || className.indexOf('disabled') > -1 || className.indexOf('month') == -1){
24571             return;
24572         }
24573         
24574         this.vIndex = Roo.bootstrap.form.MonthField.dates[this.language].monthsShort.indexOf(html);
24575         
24576         this.setValue(Roo.bootstrap.form.MonthField.dates[this.language].months[this.vIndex]);
24577         
24578         this.hide();
24579                         
24580     },
24581     
24582     picker : function()
24583     {
24584         return this.pickerEl;
24585     },
24586     
24587     fillMonths: function()
24588     {    
24589         var i = 0;
24590         var months = this.picker().select('>.datepicker-months td', true).first();
24591         
24592         months.dom.innerHTML = '';
24593         
24594         while (i < 12) {
24595             var month = {
24596                 tag: 'span',
24597                 cls: 'month',
24598                 html: Roo.bootstrap.form.MonthField.dates[this.language].monthsShort[i++]
24599             };
24600             
24601             months.createChild(month);
24602         }
24603         
24604     },
24605     
24606     update: function()
24607     {
24608         var _this = this;
24609         
24610         if(typeof(this.vIndex) == 'undefined' && this.value.length){
24611             this.vIndex = Roo.bootstrap.form.MonthField.dates[this.language].months.indexOf(this.value);
24612         }
24613         
24614         Roo.each(this.pickerEl.select('> .datepicker-months tbody > tr > td > span', true).elements, function(e, k){
24615             e.removeClass('active');
24616             
24617             if(typeof(_this.vIndex) != 'undefined' && k == _this.vIndex){
24618                 e.addClass('active');
24619             }
24620         })
24621     },
24622     
24623     place: function()
24624     {
24625         if(this.isInline) {
24626             return;
24627         }
24628         
24629         this.picker().removeClass(['bottom', 'top']);
24630         
24631         if((Roo.lib.Dom.getViewHeight() + Roo.get(document.body).getScroll().top) - (this.inputEl().getBottom() + this.picker().getHeight()) < 0){
24632             /*
24633              * place to the top of element!
24634              *
24635              */
24636             
24637             this.picker().addClass('top');
24638             this.picker().setTop(this.inputEl().getTop() - this.picker().getHeight()).setLeft(this.inputEl().getLeft());
24639             
24640             return;
24641         }
24642         
24643         this.picker().addClass('bottom');
24644         
24645         this.picker().setTop(this.inputEl().getBottom()).setLeft(this.inputEl().getLeft());
24646     },
24647     
24648     onFocus : function()
24649     {
24650         Roo.bootstrap.form.MonthField.superclass.onFocus.call(this);
24651         this.show();
24652     },
24653     
24654     onBlur : function()
24655     {
24656         Roo.bootstrap.form.MonthField.superclass.onBlur.call(this);
24657         
24658         var d = this.inputEl().getValue();
24659         
24660         this.setValue(d);
24661                 
24662         this.hide();
24663     },
24664     
24665     show : function()
24666     {
24667         this.picker().show();
24668         this.picker().select('>.datepicker-months', true).first().show();
24669         this.update();
24670         this.place();
24671         
24672         this.fireEvent('show', this, this.date);
24673     },
24674     
24675     hide : function()
24676     {
24677         if(this.isInline) {
24678             return;
24679         }
24680         this.picker().hide();
24681         this.fireEvent('hide', this, this.date);
24682         
24683     },
24684     
24685     onMousedown: function(e)
24686     {
24687         e.stopPropagation();
24688         e.preventDefault();
24689     },
24690     
24691     keyup: function(e)
24692     {
24693         Roo.bootstrap.form.MonthField.superclass.keyup.call(this);
24694         this.update();
24695     },
24696
24697     fireKey: function(e)
24698     {
24699         if (!this.picker().isVisible()){
24700             if (e.keyCode == 27)   {// allow escape to hide and re-show picker
24701                 this.show();
24702             }
24703             return;
24704         }
24705         
24706         var dir;
24707         
24708         switch(e.keyCode){
24709             case 27: // escape
24710                 this.hide();
24711                 e.preventDefault();
24712                 break;
24713             case 37: // left
24714             case 39: // right
24715                 dir = e.keyCode == 37 ? -1 : 1;
24716                 
24717                 this.vIndex = this.vIndex + dir;
24718                 
24719                 if(this.vIndex < 0){
24720                     this.vIndex = 0;
24721                 }
24722                 
24723                 if(this.vIndex > 11){
24724                     this.vIndex = 11;
24725                 }
24726                 
24727                 if(isNaN(this.vIndex)){
24728                     this.vIndex = 0;
24729                 }
24730                 
24731                 this.setValue(Roo.bootstrap.form.MonthField.dates[this.language].months[this.vIndex]);
24732                 
24733                 break;
24734             case 38: // up
24735             case 40: // down
24736                 
24737                 dir = e.keyCode == 38 ? -1 : 1;
24738                 
24739                 this.vIndex = this.vIndex + dir * 4;
24740                 
24741                 if(this.vIndex < 0){
24742                     this.vIndex = 0;
24743                 }
24744                 
24745                 if(this.vIndex > 11){
24746                     this.vIndex = 11;
24747                 }
24748                 
24749                 if(isNaN(this.vIndex)){
24750                     this.vIndex = 0;
24751                 }
24752                 
24753                 this.setValue(Roo.bootstrap.form.MonthField.dates[this.language].months[this.vIndex]);
24754                 break;
24755                 
24756             case 13: // enter
24757                 
24758                 if(typeof(this.vIndex) != 'undefined' && !isNaN(this.vIndex)){
24759                     this.setValue(Roo.bootstrap.form.MonthField.dates[this.language].months[this.vIndex]);
24760                 }
24761                 
24762                 this.hide();
24763                 e.preventDefault();
24764                 break;
24765             case 9: // tab
24766                 if(typeof(this.vIndex) != 'undefined' && !isNaN(this.vIndex)){
24767                     this.setValue(Roo.bootstrap.form.MonthField.dates[this.language].months[this.vIndex]);
24768                 }
24769                 this.hide();
24770                 break;
24771             case 16: // shift
24772             case 17: // ctrl
24773             case 18: // alt
24774                 break;
24775             default :
24776                 this.hide();
24777                 
24778         }
24779     },
24780     
24781     remove: function() 
24782     {
24783         this.picker().remove();
24784     }
24785    
24786 });
24787
24788 Roo.apply(Roo.bootstrap.form.MonthField,  {
24789     
24790     content : {
24791         tag: 'tbody',
24792         cn: [
24793         {
24794             tag: 'tr',
24795             cn: [
24796             {
24797                 tag: 'td',
24798                 colspan: '7'
24799             }
24800             ]
24801         }
24802         ]
24803     },
24804     
24805     dates:{
24806         en: {
24807             months: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"],
24808             monthsShort: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"]
24809         }
24810     }
24811 });
24812
24813 Roo.apply(Roo.bootstrap.form.MonthField,  {
24814   
24815     template : {
24816         tag: 'div',
24817         cls: 'datepicker dropdown-menu roo-dynamic',
24818         cn: [
24819             {
24820                 tag: 'div',
24821                 cls: 'datepicker-months',
24822                 cn: [
24823                 {
24824                     tag: 'table',
24825                     cls: 'table-condensed',
24826                     cn:[
24827                         Roo.bootstrap.form.DateField.content
24828                     ]
24829                 }
24830                 ]
24831             }
24832         ]
24833     }
24834 });
24835
24836  
24837
24838  
24839  /*
24840  * - LGPL
24841  *
24842  * CheckBox
24843  * 
24844  */
24845
24846 /**
24847  * @class Roo.bootstrap.form.CheckBox
24848  * @extends Roo.bootstrap.form.Input
24849  * Bootstrap CheckBox class
24850  * 
24851  * @cfg {String} valueOff The value that should go into the generated input element's value when unchecked.
24852  * @cfg {String} inputValue The value that should go into the generated input element's value when checked.
24853  * @cfg {String} boxLabel The text that appears beside the checkbox
24854  * @cfg {String} weight (primary|warning|info|danger|success) The text that appears beside the checkbox
24855  * @cfg {Boolean} checked initnal the element
24856  * @cfg {Boolean} inline inline the element (default false)
24857  * @cfg {String} groupId the checkbox group id // normal just use for checkbox
24858  * @cfg {String} tooltip label tooltip
24859  * 
24860  * @constructor
24861  * Create a new CheckBox
24862  * @param {Object} config The config object
24863  */
24864
24865 Roo.bootstrap.form.CheckBox = function(config){
24866     Roo.bootstrap.form.CheckBox.superclass.constructor.call(this, config);
24867    
24868     this.addEvents({
24869         /**
24870         * @event check
24871         * Fires when the element is checked or unchecked.
24872         * @param {Roo.bootstrap.form.CheckBox} this This input
24873         * @param {Boolean} checked The new checked value
24874         */
24875        check : true,
24876        /**
24877         * @event click
24878         * Fires when the element is click.
24879         * @param {Roo.bootstrap.form.CheckBox} this This input
24880         */
24881        click : true
24882     });
24883     
24884 };
24885
24886 Roo.extend(Roo.bootstrap.form.CheckBox, Roo.bootstrap.form.Input,  {
24887   
24888     inputType: 'checkbox',
24889     inputValue: 1,
24890     valueOff: 0,
24891     boxLabel: false,
24892     checked: false,
24893     weight : false,
24894     inline: false,
24895     tooltip : '',
24896     
24897     // checkbox success does not make any sense really.. 
24898     invalidClass : "",
24899     validClass : "",
24900     
24901     
24902     getAutoCreate : function()
24903     {
24904         var align = (!this.labelAlign) ? this.parentLabelAlign() : this.labelAlign;
24905         
24906         var id = Roo.id();
24907         
24908         var cfg = {};
24909         
24910         cfg.cls = 'form-group form-check ' + this.inputType; //input-group
24911         
24912         if(this.inline){
24913             cfg.cls += ' ' + this.inputType + '-inline  form-check-inline';
24914         }
24915         
24916         var input =  {
24917             tag: 'input',
24918             id : id,
24919             type : this.inputType,
24920             value : this.inputValue,
24921             cls : 'roo-' + this.inputType, //'form-box',
24922             placeholder : this.placeholder || ''
24923             
24924         };
24925         
24926         if(this.inputType != 'radio'){
24927             var hidden =  {
24928                 tag: 'input',
24929                 type : 'hidden',
24930                 cls : 'roo-hidden-value',
24931                 value : this.checked ? this.inputValue : this.valueOff
24932             };
24933         }
24934         
24935             
24936         if (this.weight) { // Validity check?
24937             cfg.cls += " " + this.inputType + "-" + this.weight;
24938         }
24939         
24940         if (this.disabled) {
24941             input.disabled=true;
24942         }
24943         
24944         if(this.checked){
24945             input.checked = this.checked;
24946         }
24947         
24948         if (this.name) {
24949             
24950             input.name = this.name;
24951             
24952             if(this.inputType != 'radio'){
24953                 hidden.name = this.name;
24954                 input.name = '_hidden_' + this.name;
24955             }
24956         }
24957         
24958         if (this.size) {
24959             input.cls += ' input-' + this.size;
24960         }
24961         
24962         var settings=this;
24963         
24964         ['xs','sm','md','lg'].map(function(size){
24965             if (settings[size]) {
24966                 cfg.cls += ' col-' + size + '-' + settings[size];
24967             }
24968         });
24969         
24970         var inputblock = input;
24971          
24972         if (this.before || this.after) {
24973             
24974             inputblock = {
24975                 cls : 'input-group',
24976                 cn :  [] 
24977             };
24978             
24979             if (this.before) {
24980                 inputblock.cn.push({
24981                     tag :'span',
24982                     cls : 'input-group-addon',
24983                     html : this.before
24984                 });
24985             }
24986             
24987             inputblock.cn.push(input);
24988             
24989             if(this.inputType != 'radio'){
24990                 inputblock.cn.push(hidden);
24991             }
24992             
24993             if (this.after) {
24994                 inputblock.cn.push({
24995                     tag :'span',
24996                     cls : 'input-group-addon',
24997                     html : this.after
24998                 });
24999             }
25000             
25001         }
25002         var boxLabelCfg = false;
25003         
25004         if(this.boxLabel){
25005            
25006             boxLabelCfg = {
25007                 tag: 'label',
25008                 //'for': id, // box label is handled by onclick - so no for...
25009                 cls: 'box-label',
25010                 html: this.boxLabel
25011             };
25012             if(this.tooltip){
25013                 boxLabelCfg.tooltip = this.tooltip;
25014             }
25015              
25016         }
25017         
25018         
25019         if (align ==='left' && this.fieldLabel.length) {
25020 //                Roo.log("left and has label");
25021             cfg.cn = [
25022                 {
25023                     tag: 'label',
25024                     'for' :  id,
25025                     cls : 'control-label',
25026                     html : this.fieldLabel
25027                 },
25028                 {
25029                     cls : "", 
25030                     cn: [
25031                         inputblock
25032                     ]
25033                 }
25034             ];
25035             
25036             if (boxLabelCfg) {
25037                 cfg.cn[1].cn.push(boxLabelCfg);
25038             }
25039             
25040             if(this.labelWidth > 12){
25041                 cfg.cn[0].style = "width: " + this.labelWidth + 'px';
25042             }
25043             
25044             if(this.labelWidth < 13 && this.labelmd == 0){
25045                 this.labelmd = this.labelWidth;
25046             }
25047             
25048             if(this.labellg > 0){
25049                 cfg.cn[0].cls += ' col-lg-' + this.labellg;
25050                 cfg.cn[1].cls += ' col-lg-' + (12 - this.labellg);
25051             }
25052             
25053             if(this.labelmd > 0){
25054                 cfg.cn[0].cls += ' col-md-' + this.labelmd;
25055                 cfg.cn[1].cls += ' col-md-' + (12 - this.labelmd);
25056             }
25057             
25058             if(this.labelsm > 0){
25059                 cfg.cn[0].cls += ' col-sm-' + this.labelsm;
25060                 cfg.cn[1].cls += ' col-sm-' + (12 - this.labelsm);
25061             }
25062             
25063             if(this.labelxs > 0){
25064                 cfg.cn[0].cls += ' col-xs-' + this.labelxs;
25065                 cfg.cn[1].cls += ' col-xs-' + (12 - this.labelxs);
25066             }
25067             
25068         } else if ( this.fieldLabel.length) {
25069 //                Roo.log(" label");
25070                 cfg.cn = [
25071                    
25072                     {
25073                         tag: this.boxLabel ? 'span' : 'label',
25074                         'for': id,
25075                         cls: 'control-label box-input-label',
25076                         //cls : 'input-group-addon',
25077                         html : this.fieldLabel
25078                     },
25079                     
25080                     inputblock
25081                     
25082                 ];
25083                 if (boxLabelCfg) {
25084                     cfg.cn.push(boxLabelCfg);
25085                 }
25086
25087         } else {
25088             
25089 //                Roo.log(" no label && no align");
25090                 cfg.cn = [  inputblock ] ;
25091                 if (boxLabelCfg) {
25092                     cfg.cn.push(boxLabelCfg);
25093                 }
25094
25095                 
25096         }
25097         
25098        
25099         
25100         if(this.inputType != 'radio'){
25101             cfg.cn.push(hidden);
25102         }
25103         
25104         return cfg;
25105         
25106     },
25107     
25108     /**
25109      * return the real input element.
25110      */
25111     inputEl: function ()
25112     {
25113         return this.el.select('input.roo-' + this.inputType,true).first();
25114     },
25115     hiddenEl: function ()
25116     {
25117         return this.el.select('input.roo-hidden-value',true).first();
25118     },
25119     
25120     labelEl: function()
25121     {
25122         return this.el.select('label.control-label',true).first();
25123     },
25124     /* depricated... */
25125     
25126     label: function()
25127     {
25128         return this.labelEl();
25129     },
25130     
25131     boxLabelEl: function()
25132     {
25133         return this.el.select('label.box-label',true).first();
25134     },
25135     
25136     initEvents : function()
25137     {
25138 //        Roo.bootstrap.form.CheckBox.superclass.initEvents.call(this);
25139         
25140         this.inputEl().on('click', this.onClick,  this);
25141         
25142         if (this.boxLabel) { 
25143             this.el.select('label.box-label',true).first().on('click', this.onClick,  this);
25144         }
25145         
25146         this.startValue = this.getValue();
25147         
25148         if(this.groupId){
25149             Roo.bootstrap.form.CheckBox.register(this);
25150         }
25151     },
25152     
25153     onClick : function(e)
25154     {   
25155         if(this.fireEvent('click', this, e) !== false){
25156             this.setChecked(!this.checked);
25157         }
25158         
25159     },
25160     
25161     setChecked : function(state,suppressEvent)
25162     {
25163         this.startValue = this.getValue();
25164
25165         if(this.inputType == 'radio'){
25166             
25167             Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
25168                 e.dom.checked = false;
25169             });
25170             
25171             this.inputEl().dom.checked = true;
25172             
25173             this.inputEl().dom.value = this.inputValue;
25174             
25175             if(suppressEvent !== true){
25176                 this.fireEvent('check', this, true);
25177             }
25178             
25179             this.validate();
25180             
25181             return;
25182         }
25183         
25184         this.checked = state;
25185         
25186         this.inputEl().dom.checked = state;
25187         
25188         
25189         this.hiddenEl().dom.value = state ? this.inputValue : this.valueOff;
25190         
25191         if(suppressEvent !== true){
25192             this.fireEvent('check', this, state);
25193         }
25194         
25195         this.validate();
25196     },
25197     
25198     getValue : function()
25199     {
25200         if(this.inputType == 'radio'){
25201             return this.getGroupValue();
25202         }
25203         
25204         return this.hiddenEl().dom.value;
25205         
25206     },
25207     
25208     getGroupValue : function()
25209     {
25210         if(typeof(this.el.up('form').child('input[name='+this.name+']:checked', true)) == 'undefined'){
25211             return '';
25212         }
25213         
25214         return this.el.up('form').child('input[name='+this.name+']:checked', true).value;
25215     },
25216     
25217     setValue : function(v,suppressEvent)
25218     {
25219         if(this.inputType == 'radio'){
25220             this.setGroupValue(v, suppressEvent);
25221             return;
25222         }
25223         
25224         this.setChecked(((typeof(v) == 'undefined') ? this.checked : (String(v) === String(this.inputValue))), suppressEvent);
25225         
25226         this.validate();
25227     },
25228     
25229     setGroupValue : function(v, suppressEvent)
25230     {
25231         this.startValue = this.getValue();
25232         
25233         Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
25234             e.dom.checked = false;
25235             
25236             if(e.dom.value == v){
25237                 e.dom.checked = true;
25238             }
25239         });
25240         
25241         if(suppressEvent !== true){
25242             this.fireEvent('check', this, true);
25243         }
25244
25245         this.validate();
25246         
25247         return;
25248     },
25249     
25250     validate : function()
25251     {
25252         if(this.getVisibilityEl().hasClass('hidden')){
25253             return true;
25254         }
25255         
25256         if(
25257                 this.disabled || 
25258                 (this.inputType == 'radio' && this.validateRadio()) ||
25259                 (this.inputType == 'checkbox' && this.validateCheckbox())
25260         ){
25261             this.markValid();
25262             return true;
25263         }
25264         
25265         this.markInvalid();
25266         return false;
25267     },
25268     
25269     validateRadio : function()
25270     {
25271         if(this.getVisibilityEl().hasClass('hidden')){
25272             return true;
25273         }
25274         
25275         if(this.allowBlank){
25276             return true;
25277         }
25278         
25279         var valid = false;
25280         
25281         Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
25282             if(!e.dom.checked){
25283                 return;
25284             }
25285             
25286             valid = true;
25287             
25288             return false;
25289         });
25290         
25291         return valid;
25292     },
25293     
25294     validateCheckbox : function()
25295     {
25296         if(!this.groupId){
25297             return (this.getValue() == this.inputValue || this.allowBlank) ? true : false;
25298             //return (this.getValue() == this.inputValue) ? true : false;
25299         }
25300         
25301         var group = Roo.bootstrap.form.CheckBox.get(this.groupId);
25302         
25303         if(!group){
25304             return false;
25305         }
25306         
25307         var r = false;
25308         
25309         for(var i in group){
25310             if(group[i].el.isVisible(true)){
25311                 r = false;
25312                 break;
25313             }
25314             
25315             r = true;
25316         }
25317         
25318         for(var i in group){
25319             if(r){
25320                 break;
25321             }
25322             
25323             r = (group[i].getValue() == group[i].inputValue) ? true : false;
25324         }
25325         
25326         return r;
25327     },
25328     
25329     /**
25330      * Mark this field as valid
25331      */
25332     markValid : function()
25333     {
25334         var _this = this;
25335         
25336         this.fireEvent('valid', this);
25337         
25338         var label = Roo.bootstrap.form.FieldLabel.get(this.name + '-group');
25339         
25340         if(this.groupId){
25341             label = Roo.bootstrap.form.FieldLabel.get(this.groupId + '-group');
25342         }
25343         
25344         if(label){
25345             label.markValid();
25346         }
25347
25348         if(this.inputType == 'radio'){
25349             Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
25350                 var fg = e.findParent('.form-group', false, true);
25351                 if (Roo.bootstrap.version == 3) {
25352                     fg.removeClass([_this.invalidClass, _this.validClass]);
25353                     fg.addClass(_this.validClass);
25354                 } else {
25355                     fg.removeClass(['is-valid', 'is-invalid']);
25356                     fg.addClass('is-valid');
25357                 }
25358             });
25359             
25360             return;
25361         }
25362
25363         if(!this.groupId){
25364             var fg = this.el.findParent('.form-group', false, true);
25365             if (Roo.bootstrap.version == 3) {
25366                 fg.removeClass([this.invalidClass, this.validClass]);
25367                 fg.addClass(this.validClass);
25368             } else {
25369                 fg.removeClass(['is-valid', 'is-invalid']);
25370                 fg.addClass('is-valid');
25371             }
25372             return;
25373         }
25374         
25375         var group = Roo.bootstrap.form.CheckBox.get(this.groupId);
25376         
25377         if(!group){
25378             return;
25379         }
25380         
25381         for(var i in group){
25382             var fg = group[i].el.findParent('.form-group', false, true);
25383             if (Roo.bootstrap.version == 3) {
25384                 fg.removeClass([this.invalidClass, this.validClass]);
25385                 fg.addClass(this.validClass);
25386             } else {
25387                 fg.removeClass(['is-valid', 'is-invalid']);
25388                 fg.addClass('is-valid');
25389             }
25390         }
25391     },
25392     
25393      /**
25394      * Mark this field as invalid
25395      * @param {String} msg The validation message
25396      */
25397     markInvalid : function(msg)
25398     {
25399         if(this.allowBlank){
25400             return;
25401         }
25402         
25403         var _this = this;
25404         
25405         this.fireEvent('invalid', this, msg);
25406         
25407         var label = Roo.bootstrap.form.FieldLabel.get(this.name + '-group');
25408         
25409         if(this.groupId){
25410             label = Roo.bootstrap.form.FieldLabel.get(this.groupId + '-group');
25411         }
25412         
25413         if(label){
25414             label.markInvalid();
25415         }
25416             
25417         if(this.inputType == 'radio'){
25418             
25419             Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
25420                 var fg = e.findParent('.form-group', false, true);
25421                 if (Roo.bootstrap.version == 3) {
25422                     fg.removeClass([_this.invalidClass, _this.validClass]);
25423                     fg.addClass(_this.invalidClass);
25424                 } else {
25425                     fg.removeClass(['is-invalid', 'is-valid']);
25426                     fg.addClass('is-invalid');
25427                 }
25428             });
25429             
25430             return;
25431         }
25432         
25433         if(!this.groupId){
25434             var fg = this.el.findParent('.form-group', false, true);
25435             if (Roo.bootstrap.version == 3) {
25436                 fg.removeClass([_this.invalidClass, _this.validClass]);
25437                 fg.addClass(_this.invalidClass);
25438             } else {
25439                 fg.removeClass(['is-invalid', 'is-valid']);
25440                 fg.addClass('is-invalid');
25441             }
25442             return;
25443         }
25444         
25445         var group = Roo.bootstrap.form.CheckBox.get(this.groupId);
25446         
25447         if(!group){
25448             return;
25449         }
25450         
25451         for(var i in group){
25452             var fg = group[i].el.findParent('.form-group', false, true);
25453             if (Roo.bootstrap.version == 3) {
25454                 fg.removeClass([_this.invalidClass, _this.validClass]);
25455                 fg.addClass(_this.invalidClass);
25456             } else {
25457                 fg.removeClass(['is-invalid', 'is-valid']);
25458                 fg.addClass('is-invalid');
25459             }
25460         }
25461         
25462     },
25463     
25464     clearInvalid : function()
25465     {
25466         Roo.bootstrap.form.Input.prototype.clearInvalid.call(this);
25467         
25468         // this.el.findParent('.form-group', false, true).removeClass([this.invalidClass, this.validClass]);
25469         
25470         var label = Roo.bootstrap.form.FieldLabel.get(this.name + '-group');
25471         
25472         if (label && label.iconEl) {
25473             label.iconEl.removeClass([ label.validClass, label.invalidClass ]);
25474             label.iconEl.removeClass(['is-invalid', 'is-valid']);
25475         }
25476     },
25477     
25478     disable : function()
25479     {
25480         if(this.inputType != 'radio'){
25481             Roo.bootstrap.form.CheckBox.superclass.disable.call(this);
25482             return;
25483         }
25484         
25485         var _this = this;
25486         
25487         if(this.rendered){
25488             Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
25489                 _this.getActionEl().addClass(this.disabledClass);
25490                 e.dom.disabled = true;
25491             });
25492         }
25493         
25494         this.disabled = true;
25495         this.fireEvent("disable", this);
25496         return this;
25497     },
25498
25499     enable : function()
25500     {
25501         if(this.inputType != 'radio'){
25502             Roo.bootstrap.form.CheckBox.superclass.enable.call(this);
25503             return;
25504         }
25505         
25506         var _this = this;
25507         
25508         if(this.rendered){
25509             Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
25510                 _this.getActionEl().removeClass(this.disabledClass);
25511                 e.dom.disabled = false;
25512             });
25513         }
25514         
25515         this.disabled = false;
25516         this.fireEvent("enable", this);
25517         return this;
25518     },
25519     
25520     setBoxLabel : function(v)
25521     {
25522         this.boxLabel = v;
25523         
25524         if(this.rendered){
25525             this.el.select('label.box-label',true).first().dom.innerHTML = (v === null || v === undefined ? '' : v);
25526         }
25527     }
25528
25529 });
25530
25531 Roo.apply(Roo.bootstrap.form.CheckBox, {
25532     
25533     groups: {},
25534     
25535      /**
25536     * register a CheckBox Group
25537     * @param {Roo.bootstrap.form.CheckBox} the CheckBox to add
25538     */
25539     register : function(checkbox)
25540     {
25541         if(typeof(this.groups[checkbox.groupId]) == 'undefined'){
25542             this.groups[checkbox.groupId] = {};
25543         }
25544         
25545         if(this.groups[checkbox.groupId].hasOwnProperty(checkbox.name)){
25546             return;
25547         }
25548         
25549         this.groups[checkbox.groupId][checkbox.name] = checkbox;
25550         
25551     },
25552     /**
25553     * fetch a CheckBox Group based on the group ID
25554     * @param {string} the group ID
25555     * @returns {Roo.bootstrap.form.CheckBox} the CheckBox group
25556     */
25557     get: function(groupId) {
25558         if (typeof(this.groups[groupId]) == 'undefined') {
25559             return false;
25560         }
25561         
25562         return this.groups[groupId] ;
25563     }
25564     
25565     
25566 });
25567 /*
25568  * - LGPL
25569  *
25570  * RadioItem
25571  * 
25572  */
25573
25574 /**
25575  * @class Roo.bootstrap.form.Radio
25576  * @extends Roo.bootstrap.Component
25577  * Bootstrap Radio class
25578  * @cfg {String} boxLabel - the label associated
25579  * @cfg {String} value - the value of radio
25580  * 
25581  * @constructor
25582  * Create a new Radio
25583  * @param {Object} config The config object
25584  */
25585 Roo.bootstrap.form.Radio = function(config){
25586     Roo.bootstrap.form.Radio.superclass.constructor.call(this, config);
25587     
25588 };
25589
25590 Roo.extend(Roo.bootstrap.form.Radio, Roo.bootstrap.Component, {
25591     
25592     boxLabel : '',
25593     
25594     value : '',
25595     
25596     getAutoCreate : function()
25597     {
25598         var cfg = {
25599             tag : 'div',
25600             cls : 'form-group radio',
25601             cn : [
25602                 {
25603                     tag : 'label',
25604                     cls : 'box-label',
25605                     html : this.boxLabel
25606                 }
25607             ]
25608         };
25609         
25610         return cfg;
25611     },
25612     
25613     initEvents : function() 
25614     {
25615         this.parent().register(this);
25616         
25617         this.el.on('click', this.onClick, this);
25618         
25619     },
25620     
25621     onClick : function(e)
25622     {
25623         if(this.parent().fireEvent('click', this.parent(), this, e) !== false){
25624             this.setChecked(true);
25625         }
25626     },
25627     
25628     setChecked : function(state, suppressEvent)
25629     {
25630         this.parent().setValue(this.value, suppressEvent);
25631         
25632     },
25633     
25634     setBoxLabel : function(v)
25635     {
25636         this.boxLabel = v;
25637         
25638         if(this.rendered){
25639             this.el.select('label.box-label',true).first().dom.innerHTML = (v === null || v === undefined ? '' : v);
25640         }
25641     }
25642     
25643 });
25644  
25645
25646  /*
25647  * - LGPL
25648  *
25649  * Input
25650  * 
25651  */
25652
25653 /**
25654  * @class Roo.bootstrap.form.SecurePass
25655  * @extends Roo.bootstrap.form.Input
25656  * Bootstrap SecurePass class
25657  *
25658  * 
25659  * @constructor
25660  * Create a new SecurePass
25661  * @param {Object} config The config object
25662  */
25663  
25664 Roo.bootstrap.form.SecurePass = function (config) {
25665     // these go here, so the translation tool can replace them..
25666     this.errors = {
25667         PwdEmpty: "Please type a password, and then retype it to confirm.",
25668         PwdShort: "Your password must be at least 6 characters long. Please type a different password.",
25669         PwdLong: "Your password can't contain more than 16 characters. Please type a different password.",
25670         PwdBadChar: "The password contains characters that aren't allowed. Please type a different password.",
25671         IDInPwd: "Your password can't include the part of your ID. Please type a different password.",
25672         FNInPwd: "Your password can't contain your first name. Please type a different password.",
25673         LNInPwd: "Your password can't contain your last name. Please type a different password.",
25674         TooWeak: "Your password is Too Weak."
25675     },
25676     this.meterLabel = "Password strength:";
25677     this.pwdStrengths = ["Too Weak", "Weak", "Medium", "Strong"];
25678     this.meterClass = [
25679         "roo-password-meter-tooweak", 
25680         "roo-password-meter-weak", 
25681         "roo-password-meter-medium", 
25682         "roo-password-meter-strong", 
25683         "roo-password-meter-grey"
25684     ];
25685     
25686     this.errors = {};
25687     
25688     Roo.bootstrap.form.SecurePass.superclass.constructor.call(this, config);
25689 }
25690
25691 Roo.extend(Roo.bootstrap.form.SecurePass, Roo.bootstrap.form.Input, {
25692     /**
25693      * @cfg {String/Object} errors A Error spec, or true for a default spec (defaults to
25694      * {
25695      *  PwdEmpty: "Please type a password, and then retype it to confirm.",
25696      *  PwdShort: "Your password must be at least 6 characters long. Please type a different password.",
25697      *  PwdLong: "Your password can't contain more than 16 characters. Please type a different password.",
25698      *  PwdBadChar: "The password contains characters that aren't allowed. Please type a different password.",
25699      *  IDInPwd: "Your password can't include the part of your ID. Please type a different password.",
25700      *  FNInPwd: "Your password can't contain your first name. Please type a different password.",
25701      *  LNInPwd: "Your password can't contain your last name. Please type a different password."
25702      * })
25703      */
25704     // private
25705     
25706     meterWidth: 300,
25707     errorMsg :'',    
25708     errors: false,
25709     imageRoot: '/',
25710     /**
25711      * @cfg {String/Object} Label for the strength meter (defaults to
25712      * 'Password strength:')
25713      */
25714     // private
25715     meterLabel: '',
25716     /**
25717      * @cfg {String/Object} pwdStrengths A pwdStrengths spec, or true for a default spec (defaults to
25718      * ['Weak', 'Medium', 'Strong'])
25719      */
25720     // private    
25721     pwdStrengths: false,    
25722     // private
25723     strength: 0,
25724     // private
25725     _lastPwd: null,
25726     // private
25727     kCapitalLetter: 0,
25728     kSmallLetter: 1,
25729     kDigit: 2,
25730     kPunctuation: 3,
25731     
25732     insecure: false,
25733     // private
25734     initEvents: function ()
25735     {
25736         Roo.bootstrap.form.SecurePass.superclass.initEvents.call(this);
25737
25738         if (this.el.is('input[type=password]') && Roo.isSafari) {
25739             this.el.on('keydown', this.SafariOnKeyDown, this);
25740         }
25741
25742         this.el.on('keyup', this.checkStrength, this, {buffer: 50});
25743     },
25744     // private
25745     onRender: function (ct, position)
25746     {
25747         Roo.bootstrap.form.SecurePass.superclass.onRender.call(this, ct, position);
25748         this.wrap = this.el.wrap({cls: 'x-form-field-wrap'});
25749         this.trigger = this.wrap.createChild({tag: 'div', cls: 'StrengthMeter ' + this.triggerClass});
25750
25751         this.trigger.createChild({
25752                    cn: [
25753                     {
25754                     //id: 'PwdMeter',
25755                     tag: 'div',
25756                     cls: 'roo-password-meter-grey col-xs-12',
25757                     style: {
25758                         //width: 0,
25759                         //width: this.meterWidth + 'px'                                                
25760                         }
25761                     },
25762                     {                            
25763                          cls: 'roo-password-meter-text'                          
25764                     }
25765                 ]            
25766         });
25767
25768          
25769         if (this.hideTrigger) {
25770             this.trigger.setDisplayed(false);
25771         }
25772         this.setSize(this.width || '', this.height || '');
25773     },
25774     // private
25775     onDestroy: function ()
25776     {
25777         if (this.trigger) {
25778             this.trigger.removeAllListeners();
25779             this.trigger.remove();
25780         }
25781         if (this.wrap) {
25782             this.wrap.remove();
25783         }
25784         Roo.bootstrap.form.TriggerField.superclass.onDestroy.call(this);
25785     },
25786     // private
25787     checkStrength: function ()
25788     {
25789         var pwd = this.inputEl().getValue();
25790         if (pwd == this._lastPwd) {
25791             return;
25792         }
25793
25794         var strength;
25795         if (this.ClientSideStrongPassword(pwd)) {
25796             strength = 3;
25797         } else if (this.ClientSideMediumPassword(pwd)) {
25798             strength = 2;
25799         } else if (this.ClientSideWeakPassword(pwd)) {
25800             strength = 1;
25801         } else {
25802             strength = 0;
25803         }
25804         
25805         Roo.log('strength1: ' + strength);
25806         
25807         //var pm = this.trigger.child('div/div/div').dom;
25808         var pm = this.trigger.child('div/div');
25809         pm.removeClass(this.meterClass);
25810         pm.addClass(this.meterClass[strength]);
25811                 
25812         
25813         var pt = this.trigger.child('/div').child('>*[class=roo-password-meter-text]').dom;        
25814                 
25815         pt.innerHTML = this.meterLabel + '&nbsp;' + this.pwdStrengths[strength];
25816         
25817         this._lastPwd = pwd;
25818     },
25819     reset: function ()
25820     {
25821         Roo.bootstrap.form.SecurePass.superclass.reset.call(this);
25822         
25823         this._lastPwd = '';
25824         
25825         var pm = this.trigger.child('div/div');
25826         pm.removeClass(this.meterClass);
25827         pm.addClass('roo-password-meter-grey');        
25828         
25829         
25830         var pt = this.trigger.child('/div').child('>*[class=roo-password-meter-text]').dom;        
25831         
25832         pt.innerHTML = '';
25833         this.inputEl().dom.type='password';
25834     },
25835     // private
25836     validateValue: function (value)
25837     {
25838         if (!Roo.bootstrap.form.SecurePass.superclass.validateValue.call(this, value)) {
25839             return false;
25840         }
25841         if (value.length == 0) {
25842             if (this.allowBlank) {
25843                 this.clearInvalid();
25844                 return true;
25845             }
25846
25847             this.markInvalid(this.errors.PwdEmpty);
25848             this.errorMsg = this.errors.PwdEmpty;
25849             return false;
25850         }
25851         
25852         if(this.insecure){
25853             return true;
25854         }
25855         
25856         if (!value.match(/[\x21-\x7e]+/)) {
25857             this.markInvalid(this.errors.PwdBadChar);
25858             this.errorMsg = this.errors.PwdBadChar;
25859             return false;
25860         }
25861         if (value.length < 6) {
25862             this.markInvalid(this.errors.PwdShort);
25863             this.errorMsg = this.errors.PwdShort;
25864             return false;
25865         }
25866         if (value.length > 16) {
25867             this.markInvalid(this.errors.PwdLong);
25868             this.errorMsg = this.errors.PwdLong;
25869             return false;
25870         }
25871         var strength;
25872         if (this.ClientSideStrongPassword(value)) {
25873             strength = 3;
25874         } else if (this.ClientSideMediumPassword(value)) {
25875             strength = 2;
25876         } else if (this.ClientSideWeakPassword(value)) {
25877             strength = 1;
25878         } else {
25879             strength = 0;
25880         }
25881
25882         
25883         if (strength < 2) {
25884             //this.markInvalid(this.errors.TooWeak);
25885             this.errorMsg = this.errors.TooWeak;
25886             //return false;
25887         }
25888         
25889         
25890         console.log('strength2: ' + strength);
25891         
25892         //var pm = this.trigger.child('div/div/div').dom;
25893         
25894         var pm = this.trigger.child('div/div');
25895         pm.removeClass(this.meterClass);
25896         pm.addClass(this.meterClass[strength]);
25897                 
25898         var pt = this.trigger.child('/div').child('>*[class=roo-password-meter-text]').dom;        
25899                 
25900         pt.innerHTML = this.meterLabel + '&nbsp;' + this.pwdStrengths[strength];
25901         
25902         this.errorMsg = ''; 
25903         return true;
25904     },
25905     // private
25906     CharacterSetChecks: function (type)
25907     {
25908         this.type = type;
25909         this.fResult = false;
25910     },
25911     // private
25912     isctype: function (character, type)
25913     {
25914         switch (type) {  
25915             case this.kCapitalLetter:
25916                 if (character >= 'A' && character <= 'Z') {
25917                     return true;
25918                 }
25919                 break;
25920             
25921             case this.kSmallLetter:
25922                 if (character >= 'a' && character <= 'z') {
25923                     return true;
25924                 }
25925                 break;
25926             
25927             case this.kDigit:
25928                 if (character >= '0' && character <= '9') {
25929                     return true;
25930                 }
25931                 break;
25932             
25933             case this.kPunctuation:
25934                 if ('!@#$%^&*()_+-=\'";:[{]}|.>,</?`~'.indexOf(character) >= 0) {
25935                     return true;
25936                 }
25937                 break;
25938             
25939             default:
25940                 return false;
25941         }
25942
25943     },
25944     // private
25945     IsLongEnough: function (pwd, size)
25946     {
25947         return !(pwd == null || isNaN(size) || pwd.length < size);
25948     },
25949     // private
25950     SpansEnoughCharacterSets: function (word, nb)
25951     {
25952         if (!this.IsLongEnough(word, nb))
25953         {
25954             return false;
25955         }
25956
25957         var characterSetChecks = new Array(
25958             new this.CharacterSetChecks(this.kCapitalLetter), new this.CharacterSetChecks(this.kSmallLetter),
25959             new this.CharacterSetChecks(this.kDigit), new this.CharacterSetChecks(this.kPunctuation)
25960         );
25961         
25962         for (var index = 0; index < word.length; ++index) {
25963             for (var nCharSet = 0; nCharSet < characterSetChecks.length; ++nCharSet) {
25964                 if (!characterSetChecks[nCharSet].fResult && this.isctype(word.charAt(index), characterSetChecks[nCharSet].type)) {
25965                     characterSetChecks[nCharSet].fResult = true;
25966                     break;
25967                 }
25968             }
25969         }
25970
25971         var nCharSets = 0;
25972         for (var nCharSet = 0; nCharSet < characterSetChecks.length; ++nCharSet) {
25973             if (characterSetChecks[nCharSet].fResult) {
25974                 ++nCharSets;
25975             }
25976         }
25977
25978         if (nCharSets < nb) {
25979             return false;
25980         }
25981         return true;
25982     },
25983     // private
25984     ClientSideStrongPassword: function (pwd)
25985     {
25986         return this.IsLongEnough(pwd, 8) && this.SpansEnoughCharacterSets(pwd, 3);
25987     },
25988     // private
25989     ClientSideMediumPassword: function (pwd)
25990     {
25991         return this.IsLongEnough(pwd, 7) && this.SpansEnoughCharacterSets(pwd, 2);
25992     },
25993     // private
25994     ClientSideWeakPassword: function (pwd)
25995     {
25996         return this.IsLongEnough(pwd, 6) || !this.IsLongEnough(pwd, 0);
25997     }
25998           
25999 });Roo.rtf = {}; // namespace
26000 Roo.rtf.Hex = function(hex)
26001 {
26002     this.hexstr = hex;
26003 };
26004 Roo.rtf.Paragraph = function(opts)
26005 {
26006     this.content = []; ///??? is that used?
26007 };Roo.rtf.Span = function(opts)
26008 {
26009     this.value = opts.value;
26010 };
26011
26012 Roo.rtf.Group = function(parent)
26013 {
26014     // we dont want to acutally store parent - it will make debug a nightmare..
26015     this.content = [];
26016     this.cn  = [];
26017      
26018        
26019     
26020 };
26021
26022 Roo.rtf.Group.prototype = {
26023     ignorable : false,
26024     content: false,
26025     cn: false,
26026     addContent : function(node) {
26027         // could set styles...
26028         this.content.push(node);
26029     },
26030     addChild : function(cn)
26031     {
26032         this.cn.push(cn);
26033     },
26034     // only for images really...
26035     toDataURL : function()
26036     {
26037         var mimetype = false;
26038         switch(true) {
26039             case this.content.filter(function(a) { return a.value == 'pngblip' } ).length > 0: 
26040                 mimetype = "image/png";
26041                 break;
26042              case this.content.filter(function(a) { return a.value == 'jpegblip' } ).length > 0:
26043                 mimetype = "image/jpeg";
26044                 break;
26045             default :
26046                 return 'about:blank'; // ?? error?
26047         }
26048         
26049         
26050         var hexstring = this.content[this.content.length-1].value;
26051         
26052         return 'data:' + mimetype + ';base64,' + btoa(hexstring.match(/\w{2}/g).map(function(a) {
26053             return String.fromCharCode(parseInt(a, 16));
26054         }).join(""));
26055     }
26056     
26057 };
26058 // this looks like it's normally the {rtf{ .... }}
26059 Roo.rtf.Document = function()
26060 {
26061     // we dont want to acutally store parent - it will make debug a nightmare..
26062     this.rtlch  = [];
26063     this.content = [];
26064     this.cn = [];
26065     
26066 };
26067 Roo.extend(Roo.rtf.Document, Roo.rtf.Group, { 
26068     addChild : function(cn)
26069     {
26070         this.cn.push(cn);
26071         switch(cn.type) {
26072             case 'rtlch': // most content seems to be inside this??
26073             case 'listtext':
26074             case 'shpinst':
26075                 this.rtlch.push(cn);
26076                 return;
26077             default:
26078                 this[cn.type] = cn;
26079         }
26080         
26081     },
26082     
26083     getElementsByType : function(type)
26084     {
26085         var ret =  [];
26086         this._getElementsByType(type, ret, this.cn, 'rtf');
26087         return ret;
26088     },
26089     _getElementsByType : function (type, ret, search_array, path)
26090     {
26091         search_array.forEach(function(n,i) {
26092             if (n.type == type) {
26093                 n.path = path + '/' + n.type + ':' + i;
26094                 ret.push(n);
26095             }
26096             if (n.cn.length > 0) {
26097                 this._getElementsByType(type, ret, n.cn, path + '/' + n.type+':'+i);
26098             }
26099         },this);
26100     }
26101     
26102 });
26103  
26104 Roo.rtf.Ctrl = function(opts)
26105 {
26106     this.value = opts.value;
26107     this.param = opts.param;
26108 };
26109 /**
26110  *
26111  *
26112  * based on this https://github.com/iarna/rtf-parser
26113  * it's really only designed to extract pict from pasted RTF 
26114  *
26115  * usage:
26116  *
26117  *  var images = new Roo.rtf.Parser().parse(a_string).filter(function(g) { return g.type == 'pict'; });
26118  *  
26119  *
26120  */
26121
26122  
26123
26124
26125
26126 Roo.rtf.Parser = function(text) {
26127     //super({objectMode: true})
26128     this.text = '';
26129     this.parserState = this.parseText;
26130     
26131     // these are for interpeter...
26132     this.doc = {};
26133     ///this.parserState = this.parseTop
26134     this.groupStack = [];
26135     this.hexStore = [];
26136     this.doc = false;
26137     
26138     this.groups = []; // where we put the return.
26139     
26140     for (var ii = 0; ii < text.length; ++ii) {
26141         ++this.cpos;
26142         
26143         if (text[ii] === '\n') {
26144             ++this.row;
26145             this.col = 1;
26146         } else {
26147             ++this.col;
26148         }
26149         this.parserState(text[ii]);
26150     }
26151     
26152     
26153     
26154 };
26155 Roo.rtf.Parser.prototype = {
26156     text : '', // string being parsed..
26157     controlWord : '',
26158     controlWordParam :  '',
26159     hexChar : '',
26160     doc : false,
26161     group: false,
26162     groupStack : false,
26163     hexStore : false,
26164     
26165     
26166     cpos : 0, 
26167     row : 1, // reportin?
26168     col : 1, //
26169
26170      
26171     push : function (el)
26172     {
26173         var m = 'cmd'+ el.type;
26174         if (typeof(this[m]) == 'undefined') {
26175             Roo.log('invalid cmd:' + el.type);
26176             return;
26177         }
26178         this[m](el);
26179         //Roo.log(el);
26180     },
26181     flushHexStore : function()
26182     {
26183         if (this.hexStore.length < 1) {
26184             return;
26185         }
26186         var hexstr = this.hexStore.map(
26187             function(cmd) {
26188                 return cmd.value;
26189         }).join('');
26190         
26191         this.group.addContent( new Roo.rtf.Hex( hexstr ));
26192               
26193             
26194         this.hexStore.splice(0)
26195         
26196     },
26197     
26198     cmdgroupstart : function()
26199     {
26200         this.flushHexStore();
26201         if (this.group) {
26202             this.groupStack.push(this.group);
26203         }
26204          // parent..
26205         if (this.doc === false) {
26206             this.group = this.doc = new Roo.rtf.Document();
26207             return;
26208             
26209         }
26210         this.group = new Roo.rtf.Group(this.group);
26211     },
26212     cmdignorable : function()
26213     {
26214         this.flushHexStore();
26215         this.group.ignorable = true;
26216     },
26217     cmdendparagraph : function()
26218     {
26219         this.flushHexStore();
26220         this.group.addContent(new Roo.rtf.Paragraph());
26221     },
26222     cmdgroupend : function ()
26223     {
26224         this.flushHexStore();
26225         var endingGroup = this.group;
26226         
26227         
26228         this.group = this.groupStack.pop();
26229         if (this.group) {
26230             this.group.addChild(endingGroup);
26231         }
26232         
26233         
26234         
26235         var doc = this.group || this.doc;
26236         //if (endingGroup instanceof FontTable) {
26237         //  doc.fonts = endingGroup.table
26238         //} else if (endingGroup instanceof ColorTable) {
26239         //  doc.colors = endingGroup.table
26240         //} else if (endingGroup !== this.doc && !endingGroup.get('ignorable')) {
26241         if (endingGroup.ignorable === false) {
26242             //code
26243             this.groups.push(endingGroup);
26244            // Roo.log( endingGroup );
26245         }
26246             //Roo.each(endingGroup.content, function(item)) {
26247             //    doc.addContent(item);
26248             //}
26249             //process.emit('debug', 'GROUP END', endingGroup.type, endingGroup.get('ignorable'))
26250         //}
26251     },
26252     cmdtext : function (cmd)
26253     {
26254         this.flushHexStore();
26255         if (!this.group) { // an RTF fragment, missing the {\rtf1 header
26256             //this.group = this.doc
26257             return;  // we really don't care about stray text...
26258         }
26259         this.group.addContent(new Roo.rtf.Span(cmd));
26260     },
26261     cmdcontrolword : function (cmd)
26262     {
26263         this.flushHexStore();
26264         if (!this.group.type) {
26265             this.group.type = cmd.value;
26266             return;
26267         }
26268         this.group.addContent(new Roo.rtf.Ctrl(cmd));
26269         // we actually don't care about ctrl words...
26270         return ;
26271         /*
26272         var method = 'ctrl$' + cmd.value.replace(/-(.)/g, (_, char) => char.toUpperCase())
26273         if (this[method]) {
26274             this[method](cmd.param)
26275         } else {
26276             if (!this.group.get('ignorable')) process.emit('debug', method, cmd.param)
26277         }
26278         */
26279     },
26280     cmdhexchar : function(cmd) {
26281         this.hexStore.push(cmd);
26282     },
26283     cmderror : function(cmd) {
26284         throw cmd.value;
26285     },
26286     
26287     /*
26288       _flush (done) {
26289         if (this.text !== '\u0000') this.emitText()
26290         done()
26291       }
26292       */
26293       
26294       
26295     parseText : function(c)
26296     {
26297         if (c === '\\') {
26298             this.parserState = this.parseEscapes;
26299         } else if (c === '{') {
26300             this.emitStartGroup();
26301         } else if (c === '}') {
26302             this.emitEndGroup();
26303         } else if (c === '\x0A' || c === '\x0D') {
26304             // cr/lf are noise chars
26305         } else {
26306             this.text += c;
26307         }
26308     },
26309     
26310     parseEscapes: function (c)
26311     {
26312         if (c === '\\' || c === '{' || c === '}') {
26313             this.text += c;
26314             this.parserState = this.parseText;
26315         } else {
26316             this.parserState = this.parseControlSymbol;
26317             this.parseControlSymbol(c);
26318         }
26319     },
26320     parseControlSymbol: function(c)
26321     {
26322         if (c === '~') {
26323             this.text += '\u00a0'; // nbsp
26324             this.parserState = this.parseText
26325         } else if (c === '-') {
26326              this.text += '\u00ad'; // soft hyphen
26327         } else if (c === '_') {
26328             this.text += '\u2011'; // non-breaking hyphen
26329         } else if (c === '*') {
26330             this.emitIgnorable();
26331             this.parserState = this.parseText;
26332         } else if (c === "'") {
26333             this.parserState = this.parseHexChar;
26334         } else if (c === '|') { // formula cacter
26335             this.emitFormula();
26336             this.parserState = this.parseText;
26337         } else if (c === ':') { // subentry in an index entry
26338             this.emitIndexSubEntry();
26339             this.parserState = this.parseText;
26340         } else if (c === '\x0a') {
26341             this.emitEndParagraph();
26342             this.parserState = this.parseText;
26343         } else if (c === '\x0d') {
26344             this.emitEndParagraph();
26345             this.parserState = this.parseText;
26346         } else {
26347             this.parserState = this.parseControlWord;
26348             this.parseControlWord(c);
26349         }
26350     },
26351     parseHexChar: function (c)
26352     {
26353         if (/^[A-Fa-f0-9]$/.test(c)) {
26354             this.hexChar += c;
26355             if (this.hexChar.length >= 2) {
26356               this.emitHexChar();
26357               this.parserState = this.parseText;
26358             }
26359             return;
26360         }
26361         this.emitError("Invalid character \"" + c + "\" in hex literal.");
26362         this.parserState = this.parseText;
26363         
26364     },
26365     parseControlWord : function(c)
26366     {
26367         if (c === ' ') {
26368             this.emitControlWord();
26369             this.parserState = this.parseText;
26370         } else if (/^[-\d]$/.test(c)) {
26371             this.parserState = this.parseControlWordParam;
26372             this.controlWordParam += c;
26373         } else if (/^[A-Za-z]$/.test(c)) {
26374           this.controlWord += c;
26375         } else {
26376           this.emitControlWord();
26377           this.parserState = this.parseText;
26378           this.parseText(c);
26379         }
26380     },
26381     parseControlWordParam : function (c) {
26382         if (/^\d$/.test(c)) {
26383           this.controlWordParam += c;
26384         } else if (c === ' ') {
26385           this.emitControlWord();
26386           this.parserState = this.parseText;
26387         } else {
26388           this.emitControlWord();
26389           this.parserState = this.parseText;
26390           this.parseText(c);
26391         }
26392     },
26393     
26394     
26395     
26396     
26397     emitText : function () {
26398         if (this.text === '') {
26399             return;
26400         }
26401         this.push({
26402             type: 'text',
26403             value: this.text,
26404             pos: this.cpos,
26405             row: this.row,
26406             col: this.col
26407         });
26408         this.text = ''
26409     },
26410     emitControlWord : function ()
26411     {
26412         this.emitText();
26413         if (this.controlWord === '') {
26414             // do we want to track this - it seems just to cause problems.
26415             //this.emitError('empty control word');
26416         } else {
26417             this.push({
26418                   type: 'controlword',
26419                   value: this.controlWord,
26420                   param: this.controlWordParam !== '' && Number(this.controlWordParam),
26421                   pos: this.cpos,
26422                   row: this.row,
26423                   col: this.col
26424             });
26425         }
26426         this.controlWord = '';
26427         this.controlWordParam = '';
26428     },
26429     emitStartGroup : function ()
26430     {
26431         this.emitText();
26432         this.push({
26433             type: 'groupstart',
26434             pos: this.cpos,
26435             row: this.row,
26436             col: this.col
26437         });
26438     },
26439     emitEndGroup : function ()
26440     {
26441         this.emitText();
26442         this.push({
26443             type: 'groupend',
26444             pos: this.cpos,
26445             row: this.row,
26446             col: this.col
26447         });
26448     },
26449     emitIgnorable : function ()
26450     {
26451         this.emitText();
26452         this.push({
26453             type: 'ignorable',
26454             pos: this.cpos,
26455             row: this.row,
26456             col: this.col
26457         });
26458     },
26459     emitHexChar : function ()
26460     {
26461         this.emitText();
26462         this.push({
26463             type: 'hexchar',
26464             value: this.hexChar,
26465             pos: this.cpos,
26466             row: this.row,
26467             col: this.col
26468         });
26469         this.hexChar = ''
26470     },
26471     emitError : function (message)
26472     {
26473       this.emitText();
26474       this.push({
26475             type: 'error',
26476             value: message,
26477             row: this.row,
26478             col: this.col,
26479             char: this.cpos //,
26480             //stack: new Error().stack
26481         });
26482     },
26483     emitEndParagraph : function () {
26484         this.emitText();
26485         this.push({
26486             type: 'endparagraph',
26487             pos: this.cpos,
26488             row: this.row,
26489             col: this.col
26490         });
26491     }
26492      
26493 } ;
26494 Roo.htmleditor = {};
26495  
26496 /**
26497  * @class Roo.htmleditor.Filter
26498  * Base Class for filtering htmleditor stuff. - do not use this directly - extend it.
26499  * @cfg {DomElement} node The node to iterate and filter
26500  * @cfg {boolean|String|Array} tag Tags to replace 
26501  * @constructor
26502  * Create a new Filter.
26503  * @param {Object} config Configuration options
26504  */
26505
26506
26507
26508 Roo.htmleditor.Filter = function(cfg) {
26509     Roo.apply(this.cfg);
26510     // this does not actually call walk as it's really just a abstract class
26511 }
26512
26513
26514 Roo.htmleditor.Filter.prototype = {
26515     
26516     node: false,
26517     
26518     tag: false,
26519
26520     // overrride to do replace comments.
26521     replaceComment : false,
26522     
26523     // overrride to do replace or do stuff with tags..
26524     replaceTag : false,
26525     
26526     walk : function(dom)
26527     {
26528         Roo.each( Array.from(dom.childNodes), function( e ) {
26529             switch(true) {
26530                 
26531                 case e.nodeType == 8 &&  this.replaceComment  !== false: // comment
26532                     this.replaceComment(e);
26533                     return;
26534                 
26535                 case e.nodeType != 1: //not a node.
26536                     return;
26537                 
26538                 case this.tag === true: // everything
26539                 case e.tagName.indexOf(":") > -1 && typeof(this.tag) == 'object' && this.tag.indexOf(":") > -1:
26540                 case e.tagName.indexOf(":") > -1 && typeof(this.tag) == 'string' && this.tag == ":":
26541                 case typeof(this.tag) == 'object' && this.tag.indexOf(e.tagName) > -1: // array and it matches.
26542                 case typeof(this.tag) == 'string' && this.tag == e.tagName: // array and it matches.
26543                     if (this.replaceTag && false === this.replaceTag(e)) {
26544                         return;
26545                     }
26546                     if (e.hasChildNodes()) {
26547                         this.walk(e);
26548                     }
26549                     return;
26550                 
26551                 default:    // tags .. that do not match.
26552                     if (e.hasChildNodes()) {
26553                         this.walk(e);
26554                     }
26555             }
26556             
26557         }, this);
26558         
26559     },
26560     
26561     
26562     removeNodeKeepChildren : function( node)
26563     {
26564     
26565         ar = Array.from(node.childNodes);
26566         for (var i = 0; i < ar.length; i++) {
26567          
26568             node.removeChild(ar[i]);
26569             // what if we need to walk these???
26570             node.parentNode.insertBefore(ar[i], node);
26571            
26572         }
26573         node.parentNode.removeChild(node);
26574     }
26575 }; 
26576
26577 /**
26578  * @class Roo.htmleditor.FilterAttributes
26579  * clean attributes and  styles including http:// etc.. in attribute
26580  * @constructor
26581 * Run a new Attribute Filter
26582 * @param {Object} config Configuration options
26583  */
26584 Roo.htmleditor.FilterAttributes = function(cfg)
26585 {
26586     Roo.apply(this, cfg);
26587     this.attrib_black = this.attrib_black || [];
26588     this.attrib_white = this.attrib_white || [];
26589
26590     this.attrib_clean = this.attrib_clean || [];
26591     this.style_white = this.style_white || [];
26592     this.style_black = this.style_black || [];
26593     this.walk(cfg.node);
26594 }
26595
26596 Roo.extend(Roo.htmleditor.FilterAttributes, Roo.htmleditor.Filter,
26597 {
26598     tag: true, // all tags
26599     
26600     attrib_black : false, // array
26601     attrib_clean : false,
26602     attrib_white : false,
26603
26604     style_white : false,
26605     style_black : false,
26606      
26607      
26608     replaceTag : function(node)
26609     {
26610         if (!node.attributes || !node.attributes.length) {
26611             return true;
26612         }
26613         
26614         for (var i = node.attributes.length-1; i > -1 ; i--) {
26615             var a = node.attributes[i];
26616             //console.log(a);
26617             if (this.attrib_white.length && this.attrib_white.indexOf(a.name.toLowerCase()) < 0) {
26618                 node.removeAttribute(a.name);
26619                 continue;
26620             }
26621             
26622             
26623             
26624             if (a.name.toLowerCase().substr(0,2)=='on')  {
26625                 node.removeAttribute(a.name);
26626                 continue;
26627             }
26628             
26629             
26630             if (this.attrib_black.indexOf(a.name.toLowerCase()) > -1) {
26631                 node.removeAttribute(a.name);
26632                 continue;
26633             }
26634             if (this.attrib_clean.indexOf(a.name.toLowerCase()) > -1) {
26635                 this.cleanAttr(node,a.name,a.value); // fixme..
26636                 continue;
26637             }
26638             if (a.name == 'style') {
26639                 this.cleanStyle(node,a.name,a.value);
26640                 continue;
26641             }
26642             /// clean up MS crap..
26643             // tecnically this should be a list of valid class'es..
26644             
26645             
26646             if (a.name == 'class') {
26647                 if (a.value.match(/^Mso/)) {
26648                     node.removeAttribute('class');
26649                 }
26650                 
26651                 if (a.value.match(/^body$/)) {
26652                     node.removeAttribute('class');
26653                 }
26654                 continue;
26655             }
26656             
26657             
26658             // style cleanup!?
26659             // class cleanup?
26660             
26661         }
26662         return true; // clean children
26663     },
26664         
26665     cleanAttr: function(node, n,v)
26666     {
26667         
26668         if (v.match(/^\./) || v.match(/^\//)) {
26669             return;
26670         }
26671         if (v.match(/^(http|https):\/\//)
26672             || v.match(/^mailto:/) 
26673             || v.match(/^ftp:/)
26674             || v.match(/^data:/)
26675             ) {
26676             return;
26677         }
26678         if (v.match(/^#/)) {
26679             return;
26680         }
26681         if (v.match(/^\{/)) { // allow template editing.
26682             return;
26683         }
26684 //            Roo.log("(REMOVE TAG)"+ node.tagName +'.' + n + '=' + v);
26685         node.removeAttribute(n);
26686         
26687     },
26688     cleanStyle : function(node,  n,v)
26689     {
26690         if (v.match(/expression/)) { //XSS?? should we even bother..
26691             node.removeAttribute(n);
26692             return;
26693         }
26694         
26695         var parts = v.split(/;/);
26696         var clean = [];
26697         
26698         Roo.each(parts, function(p) {
26699             p = p.replace(/^\s+/g,'').replace(/\s+$/g,'');
26700             if (!p.length) {
26701                 return true;
26702             }
26703             var l = p.split(':').shift().replace(/\s+/g,'');
26704             l = l.replace(/^\s+/g,'').replace(/\s+$/g,'');
26705             
26706             if ( this.style_black.length && (this.style_black.indexOf(l) > -1 || this.style_black.indexOf(l.toLowerCase()) > -1)) {
26707                 return true;
26708             }
26709             //Roo.log()
26710             // only allow 'c whitelisted system attributes'
26711             if ( this.style_white.length &&  style_white.indexOf(l) < 0 && style_white.indexOf(l.toLowerCase()) < 0 ) {
26712                 return true;
26713             }
26714             
26715             
26716             clean.push(p);
26717             return true;
26718         },this);
26719         if (clean.length) { 
26720             node.setAttribute(n, clean.join(';'));
26721         } else {
26722             node.removeAttribute(n);
26723         }
26724         
26725     }
26726         
26727         
26728         
26729     
26730 });/**
26731  * @class Roo.htmleditor.FilterBlack
26732  * remove blacklisted elements.
26733  * @constructor
26734  * Run a new Blacklisted Filter
26735  * @param {Object} config Configuration options
26736  */
26737
26738 Roo.htmleditor.FilterBlack = function(cfg)
26739 {
26740     Roo.apply(this, cfg);
26741     this.walk(cfg.node);
26742 }
26743
26744 Roo.extend(Roo.htmleditor.FilterBlack, Roo.htmleditor.Filter,
26745 {
26746     tag : true, // all elements.
26747    
26748     replaceTag : function(n)
26749     {
26750         n.parentNode.removeChild(n);
26751     }
26752 });
26753 /**
26754  * @class Roo.htmleditor.FilterComment
26755  * remove comments.
26756  * @constructor
26757 * Run a new Comments Filter
26758 * @param {Object} config Configuration options
26759  */
26760 Roo.htmleditor.FilterComment = function(cfg)
26761 {
26762     this.walk(cfg.node);
26763 }
26764
26765 Roo.extend(Roo.htmleditor.FilterComment, Roo.htmleditor.Filter,
26766 {
26767   
26768     replaceComment : function(n)
26769     {
26770         n.parentNode.removeChild(n);
26771     }
26772 });/**
26773  * @class Roo.htmleditor.FilterKeepChildren
26774  * remove tags but keep children
26775  * @constructor
26776  * Run a new Keep Children Filter
26777  * @param {Object} config Configuration options
26778  */
26779
26780 Roo.htmleditor.FilterKeepChildren = function(cfg)
26781 {
26782     Roo.apply(this, cfg);
26783     if (this.tag === false) {
26784         return; // dont walk.. (you can use this to use this just to do a child removal on a single tag )
26785     }
26786     // hacky?
26787     if ((typeof(this.tag) == 'object' && this.tag.indexOf(":") > -1)) {
26788         this.cleanNamespace = true;
26789     }
26790         
26791     this.walk(cfg.node);
26792 }
26793
26794 Roo.extend(Roo.htmleditor.FilterKeepChildren, Roo.htmleditor.FilterBlack,
26795 {
26796     cleanNamespace : false, // should really be an option, rather than using ':' inside of this tag.
26797   
26798     replaceTag : function(node)
26799     {
26800         // walk children...
26801         //Roo.log(node.tagName);
26802         var ar = Array.from(node.childNodes);
26803         //remove first..
26804         
26805         for (var i = 0; i < ar.length; i++) {
26806             var e = ar[i];
26807             if (e.nodeType == 1) {
26808                 if (
26809                     (typeof(this.tag) == 'object' && this.tag.indexOf(e.tagName) > -1)
26810                     || // array and it matches
26811                     (typeof(this.tag) == 'string' && this.tag == e.tagName)
26812                     ||
26813                     (e.tagName.indexOf(":") > -1 && typeof(this.tag) == 'object' && this.tag.indexOf(":") > -1)
26814                     ||
26815                     (e.tagName.indexOf(":") > -1 && typeof(this.tag) == 'string' && this.tag == ":")
26816                 ) {
26817                     this.replaceTag(ar[i]); // child is blacklisted as well...
26818                     continue;
26819                 }
26820             }
26821         }  
26822         ar = Array.from(node.childNodes);
26823         for (var i = 0; i < ar.length; i++) {
26824          
26825             node.removeChild(ar[i]);
26826             // what if we need to walk these???
26827             node.parentNode.insertBefore(ar[i], node);
26828             if (this.tag !== false) {
26829                 this.walk(ar[i]);
26830                 
26831             }
26832         }
26833         //Roo.log("REMOVE:" + node.tagName);
26834         node.parentNode.removeChild(node);
26835         return false; // don't walk children
26836         
26837         
26838     }
26839 });/**
26840  * @class Roo.htmleditor.FilterParagraph
26841  * paragraphs cause a nightmare for shared content - this filter is designed to be called ? at various points when editing
26842  * like on 'push' to remove the <p> tags and replace them with line breaks.
26843  * @constructor
26844  * Run a new Paragraph Filter
26845  * @param {Object} config Configuration options
26846  */
26847
26848 Roo.htmleditor.FilterParagraph = function(cfg)
26849 {
26850     // no need to apply config.
26851     this.walk(cfg.node);
26852 }
26853
26854 Roo.extend(Roo.htmleditor.FilterParagraph, Roo.htmleditor.Filter,
26855 {
26856     
26857      
26858     tag : 'P',
26859     
26860      
26861     replaceTag : function(node)
26862     {
26863         
26864         if (node.childNodes.length == 1 &&
26865             node.childNodes[0].nodeType == 3 &&
26866             node.childNodes[0].textContent.trim().length < 1
26867             ) {
26868             // remove and replace with '<BR>';
26869             node.parentNode.replaceChild(node.ownerDocument.createElement('BR'),node);
26870             return false; // no need to walk..
26871         }
26872         var ar = Array.from(node.childNodes);
26873         for (var i = 0; i < ar.length; i++) {
26874             node.removeChild(ar[i]);
26875             // what if we need to walk these???
26876             node.parentNode.insertBefore(ar[i], node);
26877         }
26878         // now what about this?
26879         // <p> &nbsp; </p>
26880         
26881         // double BR.
26882         node.parentNode.insertBefore(node.ownerDocument.createElement('BR'), node);
26883         node.parentNode.insertBefore(node.ownerDocument.createElement('BR'), node);
26884         node.parentNode.removeChild(node);
26885         
26886         return false;
26887
26888     }
26889     
26890 });/**
26891  * @class Roo.htmleditor.FilterSpan
26892  * filter span's with no attributes out..
26893  * @constructor
26894  * Run a new Span Filter
26895  * @param {Object} config Configuration options
26896  */
26897
26898 Roo.htmleditor.FilterSpan = function(cfg)
26899 {
26900     // no need to apply config.
26901     this.walk(cfg.node);
26902 }
26903
26904 Roo.extend(Roo.htmleditor.FilterSpan, Roo.htmleditor.FilterKeepChildren,
26905 {
26906      
26907     tag : 'SPAN',
26908      
26909  
26910     replaceTag : function(node)
26911     {
26912         if (node.attributes && node.attributes.length > 0) {
26913             return true; // walk if there are any.
26914         }
26915         Roo.htmleditor.FilterKeepChildren.prototype.replaceTag.call(this, node);
26916         return false;
26917      
26918     }
26919     
26920 });/**
26921  * @class Roo.htmleditor.FilterTableWidth
26922   try and remove table width data - as that frequently messes up other stuff.
26923  * 
26924  *      was cleanTableWidths.
26925  *
26926  * Quite often pasting from word etc.. results in tables with column and widths.
26927  * This does not work well on fluid HTML layouts - like emails. - so this code should hunt an destroy them..
26928  *
26929  * @constructor
26930  * Run a new Table Filter
26931  * @param {Object} config Configuration options
26932  */
26933
26934 Roo.htmleditor.FilterTableWidth = function(cfg)
26935 {
26936     // no need to apply config.
26937     this.tag = ['TABLE', 'TD', 'TR', 'TH', 'THEAD', 'TBODY' ];
26938     this.walk(cfg.node);
26939 }
26940
26941 Roo.extend(Roo.htmleditor.FilterTableWidth, Roo.htmleditor.Filter,
26942 {
26943      
26944      
26945     
26946     replaceTag: function(node) {
26947         
26948         
26949       
26950         if (node.hasAttribute('width')) {
26951             node.removeAttribute('width');
26952         }
26953         
26954          
26955         if (node.hasAttribute("style")) {
26956             // pretty basic...
26957             
26958             var styles = node.getAttribute("style").split(";");
26959             var nstyle = [];
26960             Roo.each(styles, function(s) {
26961                 if (!s.match(/:/)) {
26962                     return;
26963                 }
26964                 var kv = s.split(":");
26965                 if (kv[0].match(/^\s*(width|min-width)\s*$/)) {
26966                     return;
26967                 }
26968                 // what ever is left... we allow.
26969                 nstyle.push(s);
26970             });
26971             node.setAttribute("style", nstyle.length ? nstyle.join(';') : '');
26972             if (!nstyle.length) {
26973                 node.removeAttribute('style');
26974             }
26975         }
26976         
26977         return true; // continue doing children..
26978     }
26979 });/**
26980  * @class Roo.htmleditor.FilterWord
26981  * try and clean up all the mess that Word generates.
26982  * 
26983  * This is the 'nice version' - see 'Heavy' that white lists a very short list of elements, and multi-filters 
26984  
26985  * @constructor
26986  * Run a new Span Filter
26987  * @param {Object} config Configuration options
26988  */
26989
26990 Roo.htmleditor.FilterWord = function(cfg)
26991 {
26992     // no need to apply config.
26993     this.replaceDocBullets(cfg.node);
26994     
26995     this.replaceAname(cfg.node);
26996     // this is disabled as the removal is done by other filters;
26997    // this.walk(cfg.node);
26998     
26999     
27000 }
27001
27002 Roo.extend(Roo.htmleditor.FilterWord, Roo.htmleditor.Filter,
27003 {
27004     tag: true,
27005      
27006     
27007     /**
27008      * Clean up MS wordisms...
27009      */
27010     replaceTag : function(node)
27011     {
27012          
27013         // no idea what this does - span with text, replaceds with just text.
27014         if(
27015                 node.nodeName == 'SPAN' &&
27016                 !node.hasAttributes() &&
27017                 node.childNodes.length == 1 &&
27018                 node.firstChild.nodeName == "#text"  
27019         ) {
27020             var textNode = node.firstChild;
27021             node.removeChild(textNode);
27022             if (node.getAttribute('lang') != 'zh-CN') {   // do not space pad on chinese characters..
27023                 node.parentNode.insertBefore(node.ownerDocument.createTextNode(" "), node);
27024             }
27025             node.parentNode.insertBefore(textNode, node);
27026             if (node.getAttribute('lang') != 'zh-CN') {   // do not space pad on chinese characters..
27027                 node.parentNode.insertBefore(node.ownerDocument.createTextNode(" ") , node);
27028             }
27029             
27030             node.parentNode.removeChild(node);
27031             return false; // dont do chidren - we have remove our node - so no need to do chdhilren?
27032         }
27033         
27034    
27035         
27036         if (node.tagName.toLowerCase().match(/^(style|script|applet|embed|noframes|noscript)$/)) {
27037             node.parentNode.removeChild(node);
27038             return false; // dont do chidlren
27039         }
27040         //Roo.log(node.tagName);
27041         // remove - but keep children..
27042         if (node.tagName.toLowerCase().match(/^(meta|link|\\?xml:|st1:|o:|v:|font)/)) {
27043             //Roo.log('-- removed');
27044             while (node.childNodes.length) {
27045                 var cn = node.childNodes[0];
27046                 node.removeChild(cn);
27047                 node.parentNode.insertBefore(cn, node);
27048                 // move node to parent - and clean it..
27049                 if (cn.nodeType == 1) {
27050                     this.replaceTag(cn);
27051                 }
27052                 
27053             }
27054             node.parentNode.removeChild(node);
27055             /// no need to iterate chidlren = it's got none..
27056             //this.iterateChildren(node, this.cleanWord);
27057             return false; // no need to iterate children.
27058         }
27059         // clean styles
27060         if (node.className.length) {
27061             
27062             var cn = node.className.split(/\W+/);
27063             var cna = [];
27064             Roo.each(cn, function(cls) {
27065                 if (cls.match(/Mso[a-zA-Z]+/)) {
27066                     return;
27067                 }
27068                 cna.push(cls);
27069             });
27070             node.className = cna.length ? cna.join(' ') : '';
27071             if (!cna.length) {
27072                 node.removeAttribute("class");
27073             }
27074         }
27075         
27076         if (node.hasAttribute("lang")) {
27077             node.removeAttribute("lang");
27078         }
27079         
27080         if (node.hasAttribute("style")) {
27081             
27082             var styles = node.getAttribute("style").split(";");
27083             var nstyle = [];
27084             Roo.each(styles, function(s) {
27085                 if (!s.match(/:/)) {
27086                     return;
27087                 }
27088                 var kv = s.split(":");
27089                 if (kv[0].match(/^(mso-|line|font|background|margin|padding|color)/)) {
27090                     return;
27091                 }
27092                 // what ever is left... we allow.
27093                 nstyle.push(s);
27094             });
27095             node.setAttribute("style", nstyle.length ? nstyle.join(';') : '');
27096             if (!nstyle.length) {
27097                 node.removeAttribute('style');
27098             }
27099         }
27100         return true; // do children
27101         
27102         
27103         
27104     },
27105     
27106     styleToObject: function(node)
27107     {
27108         var styles = (node.getAttribute("style") || '').split(";");
27109         var ret = {};
27110         Roo.each(styles, function(s) {
27111             if (!s.match(/:/)) {
27112                 return;
27113             }
27114             var kv = s.split(":");
27115              
27116             // what ever is left... we allow.
27117             ret[kv[0].trim()] = kv[1];
27118         });
27119         return ret;
27120     },
27121     
27122     
27123     replaceAname : function (doc)
27124     {
27125         // replace all the a/name without..
27126         var aa = Array.from(doc.getElementsByTagName('a'));
27127         for (var i = 0; i  < aa.length; i++) {
27128             var a = aa[i];
27129             if (a.hasAttribute("name")) {
27130                 a.removeAttribute("name");
27131             }
27132             if (a.hasAttribute("href")) {
27133                 continue;
27134             }
27135             // reparent children.
27136             this.removeNodeKeepChildren(a);
27137             
27138         }
27139         
27140         
27141         
27142     },
27143
27144     
27145     
27146     replaceDocBullets : function(doc)
27147     {
27148         // this is a bit odd - but it appears some indents use ql-indent-1
27149          //Roo.log(doc.innerHTML);
27150         
27151         var listpara = Array.from(doc.getElementsByClassName('MsoListParagraphCxSpFirst'));
27152         for( var i = 0; i < listpara.length; i ++) {
27153             listpara[i].className = "MsoListParagraph";
27154         }
27155         
27156         listpara =  Array.from(doc.getElementsByClassName('MsoListParagraphCxSpMiddle'));
27157         for( var i = 0; i < listpara.length; i ++) {
27158             listpara[i].className = "MsoListParagraph";
27159         }
27160         listpara =  Array.from(doc.getElementsByClassName('MsoListParagraphCxSpLast'));
27161         for( var i = 0; i < listpara.length; i ++) {
27162             listpara[i].className = "MsoListParagraph";
27163         }
27164         listpara =  Array.from(doc.getElementsByClassName('ql-indent-1'));
27165         for( var i = 0; i < listpara.length; i ++) {
27166             listpara[i].className = "MsoListParagraph";
27167         }
27168         
27169         // this is a bit hacky - we had one word document where h2 had a miso-list attribute.
27170         var htwo =  Array.from(doc.getElementsByTagName('h2'));
27171         for( var i = 0; i < htwo.length; i ++) {
27172             if (htwo[i].hasAttribute('style') && htwo[i].getAttribute('style').match(/mso-list:/)) {
27173                 htwo[i].className = "MsoListParagraph";
27174             }
27175         }
27176         listpara =  Array.from(doc.getElementsByClassName('MsoNormal'));
27177         for( var i = 0; i < listpara.length; i ++) {
27178             if (listpara[i].hasAttribute('style') && listpara[i].getAttribute('style').match(/mso-list:/)) {
27179                 listpara[i].className = "MsoListParagraph";
27180             } else {
27181                 listpara[i].className = "MsoNormalx";
27182             }
27183         }
27184        
27185         listpara = doc.getElementsByClassName('MsoListParagraph');
27186         // Roo.log(doc.innerHTML);
27187         
27188         
27189         
27190         while(listpara.length) {
27191             
27192             this.replaceDocBullet(listpara.item(0));
27193         }
27194       
27195     },
27196     
27197      
27198     
27199     replaceDocBullet : function(p)
27200     {
27201         // gather all the siblings.
27202         var ns = p,
27203             parent = p.parentNode,
27204             doc = parent.ownerDocument,
27205             items = [];
27206             
27207         var listtype = 'ul';   
27208         while (ns) {
27209             if (ns.nodeType != 1) {
27210                 ns = ns.nextSibling;
27211                 continue;
27212             }
27213             if (!ns.className.match(/(MsoListParagraph|ql-indent-1)/i)) {
27214                 break;
27215             }
27216             var spans = ns.getElementsByTagName('span');
27217             if (ns.hasAttribute('style') && ns.getAttribute('style').match(/mso-list/)) {
27218                 items.push(ns);
27219                 ns = ns.nextSibling;
27220                 has_list = true;
27221                 if (spans.length && spans[0].hasAttribute('style')) {
27222                     var  style = this.styleToObject(spans[0]);
27223                     if (typeof(style['font-family']) != 'undefined' && !style['font-family'].match(/Symbol/)) {
27224                         listtype = 'ol';
27225                     }
27226                 }
27227                 
27228                 continue;
27229             }
27230             var spans = ns.getElementsByTagName('span');
27231             if (!spans.length) {
27232                 break;
27233             }
27234             var has_list  = false;
27235             for(var i = 0; i < spans.length; i++) {
27236                 if (spans[i].hasAttribute('style') && spans[i].getAttribute('style').match(/mso-list/)) {
27237                     has_list = true;
27238                     break;
27239                 }
27240             }
27241             if (!has_list) {
27242                 break;
27243             }
27244             items.push(ns);
27245             ns = ns.nextSibling;
27246             
27247             
27248         }
27249         if (!items.length) {
27250             ns.className = "";
27251             return;
27252         }
27253         
27254         var ul = parent.ownerDocument.createElement(listtype); // what about number lists...
27255         parent.insertBefore(ul, p);
27256         var lvl = 0;
27257         var stack = [ ul ];
27258         var last_li = false;
27259         
27260         var margin_to_depth = {};
27261         max_margins = -1;
27262         
27263         items.forEach(function(n, ipos) {
27264             //Roo.log("got innertHMLT=" + n.innerHTML);
27265             
27266             var spans = n.getElementsByTagName('span');
27267             if (!spans.length) {
27268                 //Roo.log("No spans found");
27269                  
27270                 parent.removeChild(n);
27271                 
27272                 
27273                 return; // skip it...
27274             }
27275            
27276                 
27277             var num = 1;
27278             var style = {};
27279             for(var i = 0; i < spans.length; i++) {
27280             
27281                 style = this.styleToObject(spans[i]);
27282                 if (typeof(style['mso-list']) == 'undefined') {
27283                     continue;
27284                 }
27285                 if (listtype == 'ol') {
27286                    num = spans[i].innerText.replace(/[^0-9]+]/g,'')  * 1;
27287                 }
27288                 spans[i].parentNode.removeChild(spans[i]); // remove the fake bullet.
27289                 break;
27290             }
27291             //Roo.log("NOW GOT innertHMLT=" + n.innerHTML);
27292             style = this.styleToObject(n); // mo-list is from the parent node.
27293             if (typeof(style['mso-list']) == 'undefined') {
27294                 //Roo.log("parent is missing level");
27295                   
27296                 parent.removeChild(n);
27297                  
27298                 return;
27299             }
27300             
27301             var margin = style['margin-left'];
27302             if (typeof(margin_to_depth[margin]) == 'undefined') {
27303                 max_margins++;
27304                 margin_to_depth[margin] = max_margins;
27305             }
27306             nlvl = margin_to_depth[margin] ;
27307              
27308             if (nlvl > lvl) {
27309                 //new indent
27310                 var nul = doc.createElement(listtype); // what about number lists...
27311                 if (!last_li) {
27312                     last_li = doc.createElement('li');
27313                     stack[lvl].appendChild(last_li);
27314                 }
27315                 last_li.appendChild(nul);
27316                 stack[nlvl] = nul;
27317                 
27318             }
27319             lvl = nlvl;
27320             
27321             // not starting at 1..
27322             if (!stack[nlvl].hasAttribute("start") && listtype == "ol") {
27323                 stack[nlvl].setAttribute("start", num);
27324             }
27325             
27326             var nli = stack[nlvl].appendChild(doc.createElement('li'));
27327             last_li = nli;
27328             nli.innerHTML = n.innerHTML;
27329             //Roo.log("innerHTML = " + n.innerHTML);
27330             parent.removeChild(n);
27331             
27332              
27333              
27334             
27335         },this);
27336         
27337         
27338         
27339         
27340     }
27341     
27342     
27343     
27344 });
27345 /**
27346  * @class Roo.htmleditor.FilterStyleToTag
27347  * part of the word stuff... - certain 'styles' should be converted to tags.
27348  * eg.
27349  *   font-weight: bold -> bold
27350  *   ?? super / subscrit etc..
27351  * 
27352  * @constructor
27353 * Run a new style to tag filter.
27354 * @param {Object} config Configuration options
27355  */
27356 Roo.htmleditor.FilterStyleToTag = function(cfg)
27357 {
27358     
27359     this.tags = {
27360         B  : [ 'fontWeight' , 'bold'],
27361         I :  [ 'fontStyle' , 'italic'],
27362         //pre :  [ 'font-style' , 'italic'],
27363         // h1.. h6 ?? font-size?
27364         SUP : [ 'verticalAlign' , 'super' ],
27365         SUB : [ 'verticalAlign' , 'sub' ]
27366         
27367         
27368     };
27369     
27370     Roo.apply(this, cfg);
27371      
27372     
27373     this.walk(cfg.node);
27374     
27375     
27376     
27377 }
27378
27379
27380 Roo.extend(Roo.htmleditor.FilterStyleToTag, Roo.htmleditor.Filter,
27381 {
27382     tag: true, // all tags
27383     
27384     tags : false,
27385     
27386     
27387     replaceTag : function(node)
27388     {
27389         
27390         
27391         if (node.getAttribute("style") === null) {
27392             return true;
27393         }
27394         var inject = [];
27395         for (var k in this.tags) {
27396             if (node.style[this.tags[k][0]] == this.tags[k][1]) {
27397                 inject.push(k);
27398                 node.style.removeProperty(this.tags[k][0]);
27399             }
27400         }
27401         if (!inject.length) {
27402             return true; 
27403         }
27404         var cn = Array.from(node.childNodes);
27405         var nn = node;
27406         Roo.each(inject, function(t) {
27407             var nc = node.ownerDocument.createElement(t);
27408             nn.appendChild(nc);
27409             nn = nc;
27410         });
27411         for(var i = 0;i < cn.length;cn++) {
27412             node.removeChild(cn[i]);
27413             nn.appendChild(cn[i]);
27414         }
27415         return true /// iterate thru
27416     }
27417     
27418 })/**
27419  * @class Roo.htmleditor.FilterLongBr
27420  * BR/BR/BR - keep a maximum of 2...
27421  * @constructor
27422  * Run a new Long BR Filter
27423  * @param {Object} config Configuration options
27424  */
27425
27426 Roo.htmleditor.FilterLongBr = function(cfg)
27427 {
27428     // no need to apply config.
27429     this.walk(cfg.node);
27430 }
27431
27432 Roo.extend(Roo.htmleditor.FilterLongBr, Roo.htmleditor.Filter,
27433 {
27434     
27435      
27436     tag : 'BR',
27437     
27438      
27439     replaceTag : function(node)
27440     {
27441         
27442         var ps = node.nextSibling;
27443         while (ps && ps.nodeType == 3 && ps.nodeValue.trim().length < 1) {
27444             ps = ps.nextSibling;
27445         }
27446         
27447         if (!ps &&  [ 'TD', 'TH', 'LI', 'H1', 'H2', 'H3', 'H4', 'H5', 'H6' ].indexOf(node.parentNode.tagName) > -1) { 
27448             node.parentNode.removeChild(node); // remove last BR inside one fo these tags
27449             return false;
27450         }
27451         
27452         if (!ps || ps.nodeType != 1) {
27453             return false;
27454         }
27455         
27456         if (!ps || ps.tagName != 'BR') {
27457            
27458             return false;
27459         }
27460         
27461         
27462         
27463         
27464         
27465         if (!node.previousSibling) {
27466             return false;
27467         }
27468         var ps = node.previousSibling;
27469         
27470         while (ps && ps.nodeType == 3 && ps.nodeValue.trim().length < 1) {
27471             ps = ps.previousSibling;
27472         }
27473         if (!ps || ps.nodeType != 1) {
27474             return false;
27475         }
27476         // if header or BR before.. then it's a candidate for removal.. - as we only want '2' of these..
27477         if (!ps || [ 'BR', 'H1', 'H2', 'H3', 'H4', 'H5', 'H6' ].indexOf(ps.tagName) < 0) {
27478             return false;
27479         }
27480         
27481         node.parentNode.removeChild(node); // remove me...
27482         
27483         return false; // no need to do children
27484
27485     }
27486     
27487 }); 
27488
27489 /**
27490  * @class Roo.htmleditor.FilterBlock
27491  * removes id / data-block and contenteditable that are associated with blocks
27492  * usage should be done on a cloned copy of the dom
27493  * @constructor
27494 * Run a new Attribute Filter { node : xxxx }}
27495 * @param {Object} config Configuration options
27496  */
27497 Roo.htmleditor.FilterBlock = function(cfg)
27498 {
27499     Roo.apply(this, cfg);
27500     var qa = cfg.node.querySelectorAll;
27501     this.removeAttributes('data-block');
27502     this.removeAttributes('contenteditable');
27503     this.removeAttributes('id');
27504     
27505 }
27506
27507 Roo.apply(Roo.htmleditor.FilterBlock.prototype,
27508 {
27509     node: true, // all tags
27510      
27511      
27512     removeAttributes : function(attr)
27513     {
27514         var ar = this.node.querySelectorAll('*[' + attr + ']');
27515         for (var i =0;i<ar.length;i++) {
27516             ar[i].removeAttribute(attr);
27517         }
27518     }
27519         
27520         
27521         
27522     
27523 });
27524 /***
27525  * This is based loosely on tinymce 
27526  * @class Roo.htmleditor.TidySerializer
27527  * https://github.com/thorn0/tinymce.html/blob/master/tinymce.html.js
27528  * @constructor
27529  * @method Serializer
27530  * @param {Object} settings Name/value settings object.
27531  */
27532
27533
27534 Roo.htmleditor.TidySerializer = function(settings)
27535 {
27536     Roo.apply(this, settings);
27537     
27538     this.writer = new Roo.htmleditor.TidyWriter(settings);
27539     
27540     
27541
27542 };
27543 Roo.htmleditor.TidySerializer.prototype = {
27544     
27545     /**
27546      * @param {boolean} inner do the inner of the node.
27547      */
27548     inner : false,
27549     
27550     writer : false,
27551     
27552     /**
27553     * Serializes the specified node into a string.
27554     *
27555     * @example
27556     * new tinymce.html.Serializer().serialize(new tinymce.html.DomParser().parse('<p>text</p>'));
27557     * @method serialize
27558     * @param {DomElement} node Node instance to serialize.
27559     * @return {String} String with HTML based on DOM tree.
27560     */
27561     serialize : function(node) {
27562         
27563         // = settings.validate;
27564         var writer = this.writer;
27565         var self  = this;
27566         this.handlers = {
27567             // #text
27568             3: function(node) {
27569                 
27570                 writer.text(node.nodeValue, node);
27571             },
27572             // #comment
27573             8: function(node) {
27574                 writer.comment(node.nodeValue);
27575             },
27576             // Processing instruction
27577             7: function(node) {
27578                 writer.pi(node.name, node.nodeValue);
27579             },
27580             // Doctype
27581             10: function(node) {
27582                 writer.doctype(node.nodeValue);
27583             },
27584             // CDATA
27585             4: function(node) {
27586                 writer.cdata(node.nodeValue);
27587             },
27588             // Document fragment
27589             11: function(node) {
27590                 node = node.firstChild;
27591                 if (!node) {
27592                     return;
27593                 }
27594                 while(node) {
27595                     self.walk(node);
27596                     node = node.nextSibling
27597                 }
27598             }
27599         };
27600         writer.reset();
27601         1 != node.nodeType || this.inner ? this.handlers[11](node) : this.walk(node);
27602         return writer.getContent();
27603     },
27604
27605     walk: function(node)
27606     {
27607         var attrName, attrValue, sortedAttrs, i, l, elementRule,
27608             handler = this.handlers[node.nodeType];
27609             
27610         if (handler) {
27611             handler(node);
27612             return;
27613         }
27614     
27615         var name = node.nodeName;
27616         var isEmpty = node.childNodes.length < 1;
27617       
27618         var writer = this.writer;
27619         var attrs = node.attributes;
27620         // Sort attributes
27621         
27622         writer.start(node.nodeName, attrs, isEmpty, node);
27623         if (isEmpty) {
27624             return;
27625         }
27626         node = node.firstChild;
27627         if (!node) {
27628             writer.end(name);
27629             return;
27630         }
27631         while (node) {
27632             this.walk(node);
27633             node = node.nextSibling;
27634         }
27635         writer.end(name);
27636         
27637     
27638     }
27639     // Serialize element and treat all non elements as fragments
27640    
27641 }; 
27642
27643 /***
27644  * This is based loosely on tinymce 
27645  * @class Roo.htmleditor.TidyWriter
27646  * https://github.com/thorn0/tinymce.html/blob/master/tinymce.html.js
27647  *
27648  * Known issues?
27649  * - not tested much with 'PRE' formated elements.
27650  * 
27651  *
27652  *
27653  */
27654
27655 Roo.htmleditor.TidyWriter = function(settings)
27656 {
27657     
27658     // indent, indentBefore, indentAfter, encode, htmlOutput, html = [];
27659     Roo.apply(this, settings);
27660     this.html = [];
27661     this.state = [];
27662      
27663     this.encode = Roo.htmleditor.TidyEntities.getEncodeFunc(settings.entity_encoding || 'raw', settings.entities);
27664   
27665 }
27666 Roo.htmleditor.TidyWriter.prototype = {
27667
27668  
27669     state : false,
27670     
27671     indent :  '  ',
27672     
27673     // part of state...
27674     indentstr : '',
27675     in_pre: false,
27676     in_inline : false,
27677     last_inline : false,
27678     encode : false,
27679      
27680     
27681             /**
27682     * Writes the a start element such as <p id="a">.
27683     *
27684     * @method start
27685     * @param {String} name Name of the element.
27686     * @param {Array} attrs Optional attribute array or undefined if it hasn't any.
27687     * @param {Boolean} empty Optional empty state if the tag should end like <br />.
27688     */
27689     start: function(name, attrs, empty, node)
27690     {
27691         var i, l, attr, value;
27692         
27693         // there are some situations where adding line break && indentation will not work. will not work.
27694         // <span / b / i ... formating?
27695         
27696         var in_inline = this.in_inline || Roo.htmleditor.TidyWriter.inline_elements.indexOf(name) > -1;
27697         var in_pre    = this.in_pre    || Roo.htmleditor.TidyWriter.whitespace_elements.indexOf(name) > -1;
27698         
27699         var is_short   = empty ? Roo.htmleditor.TidyWriter.shortend_elements.indexOf(name) > -1 : false;
27700         
27701         var add_lb = name == 'BR' ? false : in_inline;
27702         
27703         if (!add_lb && !this.in_pre && this.lastElementEndsWS()) {
27704             i_inline = false;
27705         }
27706
27707         var indentstr =  this.indentstr;
27708         
27709         // e_inline = elements that can be inline, but still allow \n before and after?
27710         // only 'BR' ??? any others?
27711         
27712         // ADD LINE BEFORE tage
27713         if (!this.in_pre) {
27714             if (in_inline) {
27715                 //code
27716                 if (name == 'BR') {
27717                     this.addLine();
27718                 } else if (this.lastElementEndsWS()) {
27719                     this.addLine();
27720                 } else{
27721                     // otherwise - no new line. (and dont indent.)
27722                     indentstr = '';
27723                 }
27724                 
27725             } else {
27726                 this.addLine();
27727             }
27728         } else {
27729             indentstr = '';
27730         }
27731         
27732         this.html.push(indentstr + '<', name.toLowerCase());
27733         
27734         if (attrs) {
27735             for (i = 0, l = attrs.length; i < l; i++) {
27736                 attr = attrs[i];
27737                 this.html.push(' ', attr.name, '="', this.encode(attr.value, true), '"');
27738             }
27739         }
27740      
27741         if (empty) {
27742             if (is_short) {
27743                 this.html[this.html.length] = '/>';
27744             } else {
27745                 this.html[this.html.length] = '></' + name.toLowerCase() + '>';
27746             }
27747             var e_inline = name == 'BR' ? false : this.in_inline;
27748             
27749             if (!e_inline && !this.in_pre) {
27750                 this.addLine();
27751             }
27752             return;
27753         
27754         }
27755         // not empty..
27756         this.html[this.html.length] = '>';
27757         
27758         // there is a special situation, where we need to turn on in_inline - if any of the imediate chidlren are one of these.
27759         /*
27760         if (!in_inline && !in_pre) {
27761             var cn = node.firstChild;
27762             while(cn) {
27763                 if (Roo.htmleditor.TidyWriter.inline_elements.indexOf(cn.nodeName) > -1) {
27764                     in_inline = true
27765                     break;
27766                 }
27767                 cn = cn.nextSibling;
27768             }
27769              
27770         }
27771         */
27772         
27773         
27774         this.pushState({
27775             indentstr : in_pre   ? '' : (this.indentstr + this.indent),
27776             in_pre : in_pre,
27777             in_inline :  in_inline
27778         });
27779         // add a line after if we are not in a
27780         
27781         if (!in_inline && !in_pre) {
27782             this.addLine();
27783         }
27784         
27785             
27786          
27787         
27788     },
27789     
27790     lastElementEndsWS : function()
27791     {
27792         var value = this.html.length > 0 ? this.html[this.html.length-1] : false;
27793         if (value === false) {
27794             return true;
27795         }
27796         return value.match(/\s+$/);
27797         
27798     },
27799     
27800     /**
27801      * Writes the a end element such as </p>.
27802      *
27803      * @method end
27804      * @param {String} name Name of the element.
27805      */
27806     end: function(name) {
27807         var value;
27808         this.popState();
27809         var indentstr = '';
27810         var in_inline = this.in_inline || Roo.htmleditor.TidyWriter.inline_elements.indexOf(name) > -1;
27811         
27812         if (!this.in_pre && !in_inline) {
27813             this.addLine();
27814             indentstr  = this.indentstr;
27815         }
27816         this.html.push(indentstr + '</', name.toLowerCase(), '>');
27817         this.last_inline = in_inline;
27818         
27819         // pop the indent state..
27820     },
27821     /**
27822      * Writes a text node.
27823      *
27824      * In pre - we should not mess with the contents.
27825      * 
27826      *
27827      * @method text
27828      * @param {String} text String to write out.
27829      * @param {Boolean} raw Optional raw state if true the contents wont get encoded.
27830      */
27831     text: function(in_text, node)
27832     {
27833         // if not in whitespace critical
27834         if (in_text.length < 1) {
27835             return;
27836         }
27837         var text = new XMLSerializer().serializeToString(document.createTextNode(in_text)); // escape it properly?
27838         
27839         if (this.in_pre) {
27840             this.html[this.html.length] =  text;
27841             return;   
27842         }
27843         
27844         if (this.in_inline) {
27845             text = text.replace(/\s+/g,' '); // all white space inc line breaks to a slingle' '
27846             if (text != ' ') {
27847                 text = text.replace(/\s+/,' ');  // all white space to single white space
27848                 
27849                     
27850                 // if next tag is '<BR>', then we can trim right..
27851                 if (node.nextSibling &&
27852                     node.nextSibling.nodeType == 1 &&
27853                     node.nextSibling.nodeName == 'BR' )
27854                 {
27855                     text = text.replace(/\s+$/g,'');
27856                 }
27857                 // if previous tag was a BR, we can also trim..
27858                 if (node.previousSibling &&
27859                     node.previousSibling.nodeType == 1 &&
27860                     node.previousSibling.nodeName == 'BR' )
27861                 {
27862                     text = this.indentstr +  text.replace(/^\s+/g,'');
27863                 }
27864                 if (text.match(/\n/)) {
27865                     text = text.replace(
27866                         /(?![^\n]{1,64}$)([^\n]{1,64})\s/g, '$1\n' + this.indentstr
27867                     );
27868                     // remoeve the last whitespace / line break.
27869                     text = text.replace(/\n\s+$/,'');
27870                 }
27871                 // repace long lines
27872                 
27873             }
27874              
27875             this.html[this.html.length] =  text;
27876             return;   
27877         }
27878         // see if previous element was a inline element.
27879         var indentstr = this.indentstr;
27880    
27881         text = text.replace(/\s+/g," "); // all whitespace into single white space.
27882         
27883         // should trim left?
27884         if (node.previousSibling &&
27885             node.previousSibling.nodeType == 1 &&
27886             Roo.htmleditor.TidyWriter.inline_elements.indexOf(node.previousSibling.nodeName) > -1)
27887         {
27888             indentstr = '';
27889             
27890         } else {
27891             this.addLine();
27892             text = text.replace(/^\s+/,''); // trim left
27893           
27894         }
27895         // should trim right?
27896         if (node.nextSibling &&
27897             node.nextSibling.nodeType == 1 &&
27898             Roo.htmleditor.TidyWriter.inline_elements.indexOf(node.nextSibling.nodeName) > -1)
27899         {
27900           // noop
27901             
27902         }  else {
27903             text = text.replace(/\s+$/,''); // trim right
27904         }
27905          
27906               
27907         
27908         
27909         
27910         if (text.length < 1) {
27911             return;
27912         }
27913         if (!text.match(/\n/)) {
27914             this.html.push(indentstr + text);
27915             return;
27916         }
27917         
27918         text = this.indentstr + text.replace(
27919             /(?![^\n]{1,64}$)([^\n]{1,64})\s/g, '$1\n' + this.indentstr
27920         );
27921         // remoeve the last whitespace / line break.
27922         text = text.replace(/\s+$/,''); 
27923         
27924         this.html.push(text);
27925         
27926         // split and indent..
27927         
27928         
27929     },
27930     /**
27931      * Writes a cdata node such as <![CDATA[data]]>.
27932      *
27933      * @method cdata
27934      * @param {String} text String to write out inside the cdata.
27935      */
27936     cdata: function(text) {
27937         this.html.push('<![CDATA[', text, ']]>');
27938     },
27939     /**
27940     * Writes a comment node such as <!-- Comment -->.
27941     *
27942     * @method cdata
27943     * @param {String} text String to write out inside the comment.
27944     */
27945    comment: function(text) {
27946        this.html.push('<!--', text, '-->');
27947    },
27948     /**
27949      * Writes a PI node such as <?xml attr="value" ?>.
27950      *
27951      * @method pi
27952      * @param {String} name Name of the pi.
27953      * @param {String} text String to write out inside the pi.
27954      */
27955     pi: function(name, text) {
27956         text ? this.html.push('<?', name, ' ', this.encode(text), '?>') : this.html.push('<?', name, '?>');
27957         this.indent != '' && this.html.push('\n');
27958     },
27959     /**
27960      * Writes a doctype node such as <!DOCTYPE data>.
27961      *
27962      * @method doctype
27963      * @param {String} text String to write out inside the doctype.
27964      */
27965     doctype: function(text) {
27966         this.html.push('<!DOCTYPE', text, '>', this.indent != '' ? '\n' : '');
27967     },
27968     /**
27969      * Resets the internal buffer if one wants to reuse the writer.
27970      *
27971      * @method reset
27972      */
27973     reset: function() {
27974         this.html.length = 0;
27975         this.state = [];
27976         this.pushState({
27977             indentstr : '',
27978             in_pre : false, 
27979             in_inline : false
27980         })
27981     },
27982     /**
27983      * Returns the contents that got serialized.
27984      *
27985      * @method getContent
27986      * @return {String} HTML contents that got written down.
27987      */
27988     getContent: function() {
27989         return this.html.join('').replace(/\n$/, '');
27990     },
27991     
27992     pushState : function(cfg)
27993     {
27994         this.state.push(cfg);
27995         Roo.apply(this, cfg);
27996     },
27997     
27998     popState : function()
27999     {
28000         if (this.state.length < 1) {
28001             return; // nothing to push
28002         }
28003         var cfg = {
28004             in_pre: false,
28005             indentstr : ''
28006         };
28007         this.state.pop();
28008         if (this.state.length > 0) {
28009             cfg = this.state[this.state.length-1]; 
28010         }
28011         Roo.apply(this, cfg);
28012     },
28013     
28014     addLine: function()
28015     {
28016         if (this.html.length < 1) {
28017             return;
28018         }
28019         
28020         
28021         var value = this.html[this.html.length - 1];
28022         if (value.length > 0 && '\n' !== value) {
28023             this.html.push('\n');
28024         }
28025     }
28026     
28027     
28028 //'pre script noscript style textarea video audio iframe object code'
28029 // shortended... 'area base basefont br col frame hr img input isindex link  meta param embed source wbr track');
28030 // inline 
28031 };
28032
28033 Roo.htmleditor.TidyWriter.inline_elements = [
28034         'SPAN','STRONG','B','EM','I','FONT','STRIKE','U','VAR',
28035         'CITE','DFN','CODE','MARK','Q','SUP','SUB','SAMP', 'A'
28036 ];
28037 Roo.htmleditor.TidyWriter.shortend_elements = [
28038     'AREA','BASE','BASEFONT','BR','COL','FRAME','HR','IMG','INPUT',
28039     'ISINDEX','LINK','','META','PARAM','EMBED','SOURCE','WBR','TRACK'
28040 ];
28041
28042 Roo.htmleditor.TidyWriter.whitespace_elements = [
28043     'PRE','SCRIPT','NOSCRIPT','STYLE','TEXTAREA','VIDEO','AUDIO','IFRAME','OBJECT','CODE'
28044 ];/***
28045  * This is based loosely on tinymce 
28046  * @class Roo.htmleditor.TidyEntities
28047  * @static
28048  * https://github.com/thorn0/tinymce.html/blob/master/tinymce.html.js
28049  *
28050  * Not 100% sure this is actually used or needed.
28051  */
28052
28053 Roo.htmleditor.TidyEntities = {
28054     
28055     /**
28056      * initialize data..
28057      */
28058     init : function (){
28059      
28060         this.namedEntities = this.buildEntitiesLookup(this.namedEntitiesData, 32);
28061        
28062     },
28063
28064
28065     buildEntitiesLookup: function(items, radix) {
28066         var i, chr, entity, lookup = {};
28067         if (!items) {
28068             return {};
28069         }
28070         items = typeof(items) == 'string' ? items.split(',') : items;
28071         radix = radix || 10;
28072         // Build entities lookup table
28073         for (i = 0; i < items.length; i += 2) {
28074             chr = String.fromCharCode(parseInt(items[i], radix));
28075             // Only add non base entities
28076             if (!this.baseEntities[chr]) {
28077                 entity = '&' + items[i + 1] + ';';
28078                 lookup[chr] = entity;
28079                 lookup[entity] = chr;
28080             }
28081         }
28082         return lookup;
28083         
28084     },
28085     
28086     asciiMap : {
28087             128: '€',
28088             130: '‚',
28089             131: 'ƒ',
28090             132: '„',
28091             133: '…',
28092             134: '†',
28093             135: '‡',
28094             136: 'ˆ',
28095             137: '‰',
28096             138: 'Š',
28097             139: '‹',
28098             140: 'Œ',
28099             142: 'Ž',
28100             145: '‘',
28101             146: '’',
28102             147: '“',
28103             148: '”',
28104             149: '•',
28105             150: '–',
28106             151: '—',
28107             152: '˜',
28108             153: '™',
28109             154: 'š',
28110             155: '›',
28111             156: 'œ',
28112             158: 'ž',
28113             159: 'Ÿ'
28114     },
28115     // Raw entities
28116     baseEntities : {
28117         '"': '&quot;',
28118         // Needs to be escaped since the YUI compressor would otherwise break the code
28119         '\'': '&#39;',
28120         '<': '&lt;',
28121         '>': '&gt;',
28122         '&': '&amp;',
28123         '`': '&#96;'
28124     },
28125     // Reverse lookup table for raw entities
28126     reverseEntities : {
28127         '&lt;': '<',
28128         '&gt;': '>',
28129         '&amp;': '&',
28130         '&quot;': '"',
28131         '&apos;': '\''
28132     },
28133     
28134     attrsCharsRegExp : /[&<>\"\u0060\u007E-\uD7FF\uE000-\uFFEF]|[\uD800-\uDBFF][\uDC00-\uDFFF]/g,
28135     textCharsRegExp : /[<>&\u007E-\uD7FF\uE000-\uFFEF]|[\uD800-\uDBFF][\uDC00-\uDFFF]/g,
28136     rawCharsRegExp : /[<>&\"\']/g,
28137     entityRegExp : /&#([a-z0-9]+);?|&([a-z0-9]+);/gi,
28138     namedEntities  : false,
28139     namedEntitiesData : [ 
28140         '50',
28141         'nbsp',
28142         '51',
28143         'iexcl',
28144         '52',
28145         'cent',
28146         '53',
28147         'pound',
28148         '54',
28149         'curren',
28150         '55',
28151         'yen',
28152         '56',
28153         'brvbar',
28154         '57',
28155         'sect',
28156         '58',
28157         'uml',
28158         '59',
28159         'copy',
28160         '5a',
28161         'ordf',
28162         '5b',
28163         'laquo',
28164         '5c',
28165         'not',
28166         '5d',
28167         'shy',
28168         '5e',
28169         'reg',
28170         '5f',
28171         'macr',
28172         '5g',
28173         'deg',
28174         '5h',
28175         'plusmn',
28176         '5i',
28177         'sup2',
28178         '5j',
28179         'sup3',
28180         '5k',
28181         'acute',
28182         '5l',
28183         'micro',
28184         '5m',
28185         'para',
28186         '5n',
28187         'middot',
28188         '5o',
28189         'cedil',
28190         '5p',
28191         'sup1',
28192         '5q',
28193         'ordm',
28194         '5r',
28195         'raquo',
28196         '5s',
28197         'frac14',
28198         '5t',
28199         'frac12',
28200         '5u',
28201         'frac34',
28202         '5v',
28203         'iquest',
28204         '60',
28205         'Agrave',
28206         '61',
28207         'Aacute',
28208         '62',
28209         'Acirc',
28210         '63',
28211         'Atilde',
28212         '64',
28213         'Auml',
28214         '65',
28215         'Aring',
28216         '66',
28217         'AElig',
28218         '67',
28219         'Ccedil',
28220         '68',
28221         'Egrave',
28222         '69',
28223         'Eacute',
28224         '6a',
28225         'Ecirc',
28226         '6b',
28227         'Euml',
28228         '6c',
28229         'Igrave',
28230         '6d',
28231         'Iacute',
28232         '6e',
28233         'Icirc',
28234         '6f',
28235         'Iuml',
28236         '6g',
28237         'ETH',
28238         '6h',
28239         'Ntilde',
28240         '6i',
28241         'Ograve',
28242         '6j',
28243         'Oacute',
28244         '6k',
28245         'Ocirc',
28246         '6l',
28247         'Otilde',
28248         '6m',
28249         'Ouml',
28250         '6n',
28251         'times',
28252         '6o',
28253         'Oslash',
28254         '6p',
28255         'Ugrave',
28256         '6q',
28257         'Uacute',
28258         '6r',
28259         'Ucirc',
28260         '6s',
28261         'Uuml',
28262         '6t',
28263         'Yacute',
28264         '6u',
28265         'THORN',
28266         '6v',
28267         'szlig',
28268         '70',
28269         'agrave',
28270         '71',
28271         'aacute',
28272         '72',
28273         'acirc',
28274         '73',
28275         'atilde',
28276         '74',
28277         'auml',
28278         '75',
28279         'aring',
28280         '76',
28281         'aelig',
28282         '77',
28283         'ccedil',
28284         '78',
28285         'egrave',
28286         '79',
28287         'eacute',
28288         '7a',
28289         'ecirc',
28290         '7b',
28291         'euml',
28292         '7c',
28293         'igrave',
28294         '7d',
28295         'iacute',
28296         '7e',
28297         'icirc',
28298         '7f',
28299         'iuml',
28300         '7g',
28301         'eth',
28302         '7h',
28303         'ntilde',
28304         '7i',
28305         'ograve',
28306         '7j',
28307         'oacute',
28308         '7k',
28309         'ocirc',
28310         '7l',
28311         'otilde',
28312         '7m',
28313         'ouml',
28314         '7n',
28315         'divide',
28316         '7o',
28317         'oslash',
28318         '7p',
28319         'ugrave',
28320         '7q',
28321         'uacute',
28322         '7r',
28323         'ucirc',
28324         '7s',
28325         'uuml',
28326         '7t',
28327         'yacute',
28328         '7u',
28329         'thorn',
28330         '7v',
28331         'yuml',
28332         'ci',
28333         'fnof',
28334         'sh',
28335         'Alpha',
28336         'si',
28337         'Beta',
28338         'sj',
28339         'Gamma',
28340         'sk',
28341         'Delta',
28342         'sl',
28343         'Epsilon',
28344         'sm',
28345         'Zeta',
28346         'sn',
28347         'Eta',
28348         'so',
28349         'Theta',
28350         'sp',
28351         'Iota',
28352         'sq',
28353         'Kappa',
28354         'sr',
28355         'Lambda',
28356         'ss',
28357         'Mu',
28358         'st',
28359         'Nu',
28360         'su',
28361         'Xi',
28362         'sv',
28363         'Omicron',
28364         't0',
28365         'Pi',
28366         't1',
28367         'Rho',
28368         't3',
28369         'Sigma',
28370         't4',
28371         'Tau',
28372         't5',
28373         'Upsilon',
28374         't6',
28375         'Phi',
28376         't7',
28377         'Chi',
28378         't8',
28379         'Psi',
28380         't9',
28381         'Omega',
28382         'th',
28383         'alpha',
28384         'ti',
28385         'beta',
28386         'tj',
28387         'gamma',
28388         'tk',
28389         'delta',
28390         'tl',
28391         'epsilon',
28392         'tm',
28393         'zeta',
28394         'tn',
28395         'eta',
28396         'to',
28397         'theta',
28398         'tp',
28399         'iota',
28400         'tq',
28401         'kappa',
28402         'tr',
28403         'lambda',
28404         'ts',
28405         'mu',
28406         'tt',
28407         'nu',
28408         'tu',
28409         'xi',
28410         'tv',
28411         'omicron',
28412         'u0',
28413         'pi',
28414         'u1',
28415         'rho',
28416         'u2',
28417         'sigmaf',
28418         'u3',
28419         'sigma',
28420         'u4',
28421         'tau',
28422         'u5',
28423         'upsilon',
28424         'u6',
28425         'phi',
28426         'u7',
28427         'chi',
28428         'u8',
28429         'psi',
28430         'u9',
28431         'omega',
28432         'uh',
28433         'thetasym',
28434         'ui',
28435         'upsih',
28436         'um',
28437         'piv',
28438         '812',
28439         'bull',
28440         '816',
28441         'hellip',
28442         '81i',
28443         'prime',
28444         '81j',
28445         'Prime',
28446         '81u',
28447         'oline',
28448         '824',
28449         'frasl',
28450         '88o',
28451         'weierp',
28452         '88h',
28453         'image',
28454         '88s',
28455         'real',
28456         '892',
28457         'trade',
28458         '89l',
28459         'alefsym',
28460         '8cg',
28461         'larr',
28462         '8ch',
28463         'uarr',
28464         '8ci',
28465         'rarr',
28466         '8cj',
28467         'darr',
28468         '8ck',
28469         'harr',
28470         '8dl',
28471         'crarr',
28472         '8eg',
28473         'lArr',
28474         '8eh',
28475         'uArr',
28476         '8ei',
28477         'rArr',
28478         '8ej',
28479         'dArr',
28480         '8ek',
28481         'hArr',
28482         '8g0',
28483         'forall',
28484         '8g2',
28485         'part',
28486         '8g3',
28487         'exist',
28488         '8g5',
28489         'empty',
28490         '8g7',
28491         'nabla',
28492         '8g8',
28493         'isin',
28494         '8g9',
28495         'notin',
28496         '8gb',
28497         'ni',
28498         '8gf',
28499         'prod',
28500         '8gh',
28501         'sum',
28502         '8gi',
28503         'minus',
28504         '8gn',
28505         'lowast',
28506         '8gq',
28507         'radic',
28508         '8gt',
28509         'prop',
28510         '8gu',
28511         'infin',
28512         '8h0',
28513         'ang',
28514         '8h7',
28515         'and',
28516         '8h8',
28517         'or',
28518         '8h9',
28519         'cap',
28520         '8ha',
28521         'cup',
28522         '8hb',
28523         'int',
28524         '8hk',
28525         'there4',
28526         '8hs',
28527         'sim',
28528         '8i5',
28529         'cong',
28530         '8i8',
28531         'asymp',
28532         '8j0',
28533         'ne',
28534         '8j1',
28535         'equiv',
28536         '8j4',
28537         'le',
28538         '8j5',
28539         'ge',
28540         '8k2',
28541         'sub',
28542         '8k3',
28543         'sup',
28544         '8k4',
28545         'nsub',
28546         '8k6',
28547         'sube',
28548         '8k7',
28549         'supe',
28550         '8kl',
28551         'oplus',
28552         '8kn',
28553         'otimes',
28554         '8l5',
28555         'perp',
28556         '8m5',
28557         'sdot',
28558         '8o8',
28559         'lceil',
28560         '8o9',
28561         'rceil',
28562         '8oa',
28563         'lfloor',
28564         '8ob',
28565         'rfloor',
28566         '8p9',
28567         'lang',
28568         '8pa',
28569         'rang',
28570         '9ea',
28571         'loz',
28572         '9j0',
28573         'spades',
28574         '9j3',
28575         'clubs',
28576         '9j5',
28577         'hearts',
28578         '9j6',
28579         'diams',
28580         'ai',
28581         'OElig',
28582         'aj',
28583         'oelig',
28584         'b0',
28585         'Scaron',
28586         'b1',
28587         'scaron',
28588         'bo',
28589         'Yuml',
28590         'm6',
28591         'circ',
28592         'ms',
28593         'tilde',
28594         '802',
28595         'ensp',
28596         '803',
28597         'emsp',
28598         '809',
28599         'thinsp',
28600         '80c',
28601         'zwnj',
28602         '80d',
28603         'zwj',
28604         '80e',
28605         'lrm',
28606         '80f',
28607         'rlm',
28608         '80j',
28609         'ndash',
28610         '80k',
28611         'mdash',
28612         '80o',
28613         'lsquo',
28614         '80p',
28615         'rsquo',
28616         '80q',
28617         'sbquo',
28618         '80s',
28619         'ldquo',
28620         '80t',
28621         'rdquo',
28622         '80u',
28623         'bdquo',
28624         '810',
28625         'dagger',
28626         '811',
28627         'Dagger',
28628         '81g',
28629         'permil',
28630         '81p',
28631         'lsaquo',
28632         '81q',
28633         'rsaquo',
28634         '85c',
28635         'euro'
28636     ],
28637
28638          
28639     /**
28640      * Encodes the specified string using raw entities. This means only the required XML base entities will be encoded.
28641      *
28642      * @method encodeRaw
28643      * @param {String} text Text to encode.
28644      * @param {Boolean} attr Optional flag to specify if the text is attribute contents.
28645      * @return {String} Entity encoded text.
28646      */
28647     encodeRaw: function(text, attr)
28648     {
28649         var t = this;
28650         return text.replace(attr ? this.attrsCharsRegExp : this.textCharsRegExp, function(chr) {
28651             return t.baseEntities[chr] || chr;
28652         });
28653     },
28654     /**
28655      * Encoded the specified text with both the attributes and text entities. This function will produce larger text contents
28656      * since it doesn't know if the context is within a attribute or text node. This was added for compatibility
28657      * and is exposed as the DOMUtils.encode function.
28658      *
28659      * @method encodeAllRaw
28660      * @param {String} text Text to encode.
28661      * @return {String} Entity encoded text.
28662      */
28663     encodeAllRaw: function(text) {
28664         var t = this;
28665         return ('' + text).replace(this.rawCharsRegExp, function(chr) {
28666             return t.baseEntities[chr] || chr;
28667         });
28668     },
28669     /**
28670      * Encodes the specified string using numeric entities. The core entities will be
28671      * encoded as named ones but all non lower ascii characters will be encoded into numeric entities.
28672      *
28673      * @method encodeNumeric
28674      * @param {String} text Text to encode.
28675      * @param {Boolean} attr Optional flag to specify if the text is attribute contents.
28676      * @return {String} Entity encoded text.
28677      */
28678     encodeNumeric: function(text, attr) {
28679         var t = this;
28680         return text.replace(attr ? this.attrsCharsRegExp : this.textCharsRegExp, function(chr) {
28681             // Multi byte sequence convert it to a single entity
28682             if (chr.length > 1) {
28683                 return '&#' + (1024 * (chr.charCodeAt(0) - 55296) + (chr.charCodeAt(1) - 56320) + 65536) + ';';
28684             }
28685             return t.baseEntities[chr] || '&#' + chr.charCodeAt(0) + ';';
28686         });
28687     },
28688     /**
28689      * Encodes the specified string using named entities. The core entities will be encoded
28690      * as named ones but all non lower ascii characters will be encoded into named entities.
28691      *
28692      * @method encodeNamed
28693      * @param {String} text Text to encode.
28694      * @param {Boolean} attr Optional flag to specify if the text is attribute contents.
28695      * @param {Object} entities Optional parameter with entities to use.
28696      * @return {String} Entity encoded text.
28697      */
28698     encodeNamed: function(text, attr, entities) {
28699         var t = this;
28700         entities = entities || this.namedEntities;
28701         return text.replace(attr ? this.attrsCharsRegExp : this.textCharsRegExp, function(chr) {
28702             return t.baseEntities[chr] || entities[chr] || chr;
28703         });
28704     },
28705     /**
28706      * Returns an encode function based on the name(s) and it's optional entities.
28707      *
28708      * @method getEncodeFunc
28709      * @param {String} name Comma separated list of encoders for example named,numeric.
28710      * @param {String} entities Optional parameter with entities to use instead of the built in set.
28711      * @return {function} Encode function to be used.
28712      */
28713     getEncodeFunc: function(name, entities) {
28714         entities = this.buildEntitiesLookup(entities) || this.namedEntities;
28715         var t = this;
28716         function encodeNamedAndNumeric(text, attr) {
28717             return text.replace(attr ? t.attrsCharsRegExp : t.textCharsRegExp, function(chr) {
28718                 return t.baseEntities[chr] || entities[chr] || '&#' + chr.charCodeAt(0) + ';' || chr;
28719             });
28720         }
28721
28722         function encodeCustomNamed(text, attr) {
28723             return t.encodeNamed(text, attr, entities);
28724         }
28725         // Replace + with , to be compatible with previous TinyMCE versions
28726         name = this.makeMap(name.replace(/\+/g, ','));
28727         // Named and numeric encoder
28728         if (name.named && name.numeric) {
28729             return this.encodeNamedAndNumeric;
28730         }
28731         // Named encoder
28732         if (name.named) {
28733             // Custom names
28734             if (entities) {
28735                 return encodeCustomNamed;
28736             }
28737             return this.encodeNamed;
28738         }
28739         // Numeric
28740         if (name.numeric) {
28741             return this.encodeNumeric;
28742         }
28743         // Raw encoder
28744         return this.encodeRaw;
28745     },
28746     /**
28747      * Decodes the specified string, this will replace entities with raw UTF characters.
28748      *
28749      * @method decode
28750      * @param {String} text Text to entity decode.
28751      * @return {String} Entity decoded string.
28752      */
28753     decode: function(text)
28754     {
28755         var  t = this;
28756         return text.replace(this.entityRegExp, function(all, numeric) {
28757             if (numeric) {
28758                 numeric = 'x' === numeric.charAt(0).toLowerCase() ? parseInt(numeric.substr(1), 16) : parseInt(numeric, 10);
28759                 // Support upper UTF
28760                 if (numeric > 65535) {
28761                     numeric -= 65536;
28762                     return String.fromCharCode(55296 + (numeric >> 10), 56320 + (1023 & numeric));
28763                 }
28764                 return t.asciiMap[numeric] || String.fromCharCode(numeric);
28765             }
28766             return t.reverseEntities[all] || t.namedEntities[all] || t.nativeDecode(all);
28767         });
28768     },
28769     nativeDecode : function (text) {
28770         return text;
28771     },
28772     makeMap : function (items, delim, map) {
28773                 var i;
28774                 items = items || [];
28775                 delim = delim || ',';
28776                 if (typeof items == "string") {
28777                         items = items.split(delim);
28778                 }
28779                 map = map || {};
28780                 i = items.length;
28781                 while (i--) {
28782                         map[items[i]] = {};
28783                 }
28784                 return map;
28785         }
28786 };
28787     
28788     
28789     
28790 Roo.htmleditor.TidyEntities.init();
28791 /**
28792  * @class Roo.htmleditor.KeyEnter
28793  * Handle Enter press..
28794  * @cfg {Roo.HtmlEditorCore} core the editor.
28795  * @constructor
28796  * Create a new Filter.
28797  * @param {Object} config Configuration options
28798  */
28799
28800
28801
28802
28803
28804 Roo.htmleditor.KeyEnter = function(cfg) {
28805     Roo.apply(this, cfg);
28806     // this does not actually call walk as it's really just a abstract class
28807  
28808     Roo.get(this.core.doc.body).on('keypress', this.keypress, this);
28809 }
28810
28811 //Roo.htmleditor.KeyEnter.i = 0;
28812
28813
28814 Roo.htmleditor.KeyEnter.prototype = {
28815     
28816     core : false,
28817     
28818     keypress : function(e)
28819     {
28820         if (e.charCode != 13 && e.charCode != 10) {
28821             Roo.log([e.charCode,e]);
28822             return true;
28823         }
28824         e.preventDefault();
28825         // https://stackoverflow.com/questions/18552336/prevent-contenteditable-adding-div-on-enter-chrome
28826         var doc = this.core.doc;
28827           //add a new line
28828        
28829     
28830         var sel = this.core.getSelection();
28831         var range = sel.getRangeAt(0);
28832         var n = range.commonAncestorContainer;
28833         var pc = range.closest([ 'ol', 'ul']);
28834         var pli = range.closest('li');
28835         if (!pc || e.ctrlKey) {
28836             // on it list, or ctrl pressed.
28837             if (!e.ctrlKey) {
28838                 sel.insertNode('br', 'after'); 
28839             } else {
28840                 // only do this if we have ctrl key..
28841                 var br = doc.createElement('br');
28842                 br.className = 'clear';
28843                 br.setAttribute('style', 'clear: both');
28844                 sel.insertNode(br, 'after'); 
28845             }
28846             
28847          
28848             this.core.undoManager.addEvent();
28849             this.core.fireEditorEvent(e);
28850             return false;
28851         }
28852         
28853         // deal with <li> insetion
28854         if (pli.innerText.trim() == '' &&
28855             pli.previousSibling &&
28856             pli.previousSibling.nodeName == 'LI' &&
28857             pli.previousSibling.innerText.trim() ==  '') {
28858             pli.parentNode.removeChild(pli.previousSibling);
28859             sel.cursorAfter(pc);
28860             this.core.undoManager.addEvent();
28861             this.core.fireEditorEvent(e);
28862             return false;
28863         }
28864     
28865         var li = doc.createElement('LI');
28866         li.innerHTML = '&nbsp;';
28867         if (!pli || !pli.firstSibling) {
28868             pc.appendChild(li);
28869         } else {
28870             pli.parentNode.insertBefore(li, pli.firstSibling);
28871         }
28872         sel.cursorText (li.firstChild);
28873       
28874         this.core.undoManager.addEvent();
28875         this.core.fireEditorEvent(e);
28876
28877         return false;
28878         
28879     
28880         
28881         
28882          
28883     }
28884 };
28885      
28886 /**
28887  * @class Roo.htmleditor.Block
28888  * Base class for html editor blocks - do not use it directly .. extend it..
28889  * @cfg {DomElement} node The node to apply stuff to.
28890  * @cfg {String} friendly_name the name that appears in the context bar about this block
28891  * @cfg {Object} Context menu - see Roo.form.HtmlEditor.ToolbarContext
28892  
28893  * @constructor
28894  * Create a new Filter.
28895  * @param {Object} config Configuration options
28896  */
28897
28898 Roo.htmleditor.Block  = function(cfg)
28899 {
28900     // do nothing .. should not be called really.
28901 }
28902 /**
28903  * factory method to get the block from an element (using cache if necessary)
28904  * @static
28905  * @param {HtmlElement} the dom element
28906  */
28907 Roo.htmleditor.Block.factory = function(node)
28908 {
28909     var cc = Roo.htmleditor.Block.cache;
28910     var id = Roo.get(node).id;
28911     if (typeof(cc[id]) != 'undefined' && (!cc[id].node || cc[id].node.closest('body'))) {
28912         Roo.htmleditor.Block.cache[id].readElement(node);
28913         return Roo.htmleditor.Block.cache[id];
28914     }
28915     var db  = node.getAttribute('data-block');
28916     if (!db) {
28917         db = node.nodeName.toLowerCase().toUpperCaseFirst();
28918     }
28919     var cls = Roo.htmleditor['Block' + db];
28920     if (typeof(cls) == 'undefined') {
28921         //Roo.log(node.getAttribute('data-block'));
28922         Roo.log("OOps missing block : " + 'Block' + db);
28923         return false;
28924     }
28925     Roo.htmleditor.Block.cache[id] = new cls({ node: node });
28926     return Roo.htmleditor.Block.cache[id];  /// should trigger update element
28927 };
28928
28929 /**
28930  * initalize all Elements from content that are 'blockable'
28931  * @static
28932  * @param the body element
28933  */
28934 Roo.htmleditor.Block.initAll = function(body, type)
28935 {
28936     if (typeof(type) == 'undefined') {
28937         var ia = Roo.htmleditor.Block.initAll;
28938         ia(body,'table');
28939         ia(body,'td');
28940         ia(body,'figure');
28941         return;
28942     }
28943     Roo.each(Roo.get(body).query(type), function(e) {
28944         Roo.htmleditor.Block.factory(e);    
28945     },this);
28946 };
28947 // question goes here... do we need to clear out this cache sometimes?
28948 // or show we make it relivant to the htmleditor.
28949 Roo.htmleditor.Block.cache = {};
28950
28951 Roo.htmleditor.Block.prototype = {
28952     
28953     node : false,
28954     
28955      // used by context menu
28956     friendly_name : 'Based Block',
28957     
28958     // text for button to delete this element
28959     deleteTitle : false,
28960     
28961     context : false,
28962     /**
28963      * Update a node with values from this object
28964      * @param {DomElement} node
28965      */
28966     updateElement : function(node)
28967     {
28968         Roo.DomHelper.update(node === undefined ? this.node : node, this.toObject());
28969     },
28970      /**
28971      * convert to plain HTML for calling insertAtCursor..
28972      */
28973     toHTML : function()
28974     {
28975         return Roo.DomHelper.markup(this.toObject());
28976     },
28977     /**
28978      * used by readEleemnt to extract data from a node
28979      * may need improving as it's pretty basic
28980      
28981      * @param {DomElement} node
28982      * @param {String} tag - tag to find, eg. IMG ?? might be better to use DomQuery ?
28983      * @param {String} attribute (use html - for contents, style for using next param as style, or false to return the node)
28984      * @param {String} style the style property - eg. text-align
28985      */
28986     getVal : function(node, tag, attr, style)
28987     {
28988         var n = node;
28989         if (tag !== true && n.tagName != tag.toUpperCase()) {
28990             // in theory we could do figure[3] << 3rd figure? or some more complex search..?
28991             // but kiss for now.
28992             n = node.getElementsByTagName(tag).item(0);
28993         }
28994         if (!n) {
28995             return '';
28996         }
28997         if (attr === false) {
28998             return n;
28999         }
29000         if (attr == 'html') {
29001             return n.innerHTML;
29002         }
29003         if (attr == 'style') {
29004             return n.style[style]; 
29005         }
29006         
29007         return n.hasAttribute(attr) ? n.getAttribute(attr) : '';
29008             
29009     },
29010     /**
29011      * create a DomHelper friendly object - for use with 
29012      * Roo.DomHelper.markup / overwrite / etc..
29013      * (override this)
29014      */
29015     toObject : function()
29016     {
29017         return {};
29018     },
29019       /**
29020      * Read a node that has a 'data-block' property - and extract the values from it.
29021      * @param {DomElement} node - the node
29022      */
29023     readElement : function(node)
29024     {
29025         
29026     } 
29027     
29028     
29029 };
29030
29031  
29032
29033 /**
29034  * @class Roo.htmleditor.BlockFigure
29035  * Block that has an image and a figcaption
29036  * @cfg {String} image_src the url for the image
29037  * @cfg {String} align (left|right) alignment for the block default left
29038  * @cfg {String} caption the text to appear below  (and in the alt tag)
29039  * @cfg {String} caption_display (block|none) display or not the caption
29040  * @cfg {String|number} image_width the width of the image number or %?
29041  * @cfg {String|number} image_height the height of the image number or %?
29042  * 
29043  * @constructor
29044  * Create a new Filter.
29045  * @param {Object} config Configuration options
29046  */
29047
29048 Roo.htmleditor.BlockFigure = function(cfg)
29049 {
29050     if (cfg.node) {
29051         this.readElement(cfg.node);
29052         this.updateElement(cfg.node);
29053     }
29054     Roo.apply(this, cfg);
29055 }
29056 Roo.extend(Roo.htmleditor.BlockFigure, Roo.htmleditor.Block, {
29057  
29058     
29059     // setable values.
29060     image_src: '',
29061     align: 'center',
29062     caption : '',
29063     caption_display : 'block',
29064     width : '100%',
29065     cls : '',
29066     href: '',
29067     video_url : '',
29068     
29069     // margin: '2%', not used
29070     
29071     text_align: 'left', //   (left|right) alignment for the text caption default left. - not used at present
29072
29073     
29074     // used by context menu
29075     friendly_name : 'Image with caption',
29076     deleteTitle : "Delete Image and Caption",
29077     
29078     contextMenu : function(toolbar)
29079     {
29080         
29081         var block = function() {
29082             return Roo.htmleditor.Block.factory(toolbar.tb.selectedNode);
29083         };
29084         
29085         
29086         var rooui =  typeof(Roo.bootstrap) == 'undefined' ? Roo : Roo.bootstrap;
29087         
29088         var syncValue = toolbar.editorcore.syncValue;
29089         
29090         var fields = {};
29091         
29092         return [
29093              {
29094                 xtype : 'TextItem',
29095                 text : "Source: ",
29096                 xns : rooui.Toolbar  //Boostrap?
29097             },
29098             {
29099                 xtype : 'Button',
29100                 text: 'Change Image URL',
29101                  
29102                 listeners : {
29103                     click: function (btn, state)
29104                     {
29105                         var b = block();
29106                         
29107                         Roo.MessageBox.show({
29108                             title : "Image Source URL",
29109                             msg : "Enter the url for the image",
29110                             buttons: Roo.MessageBox.OKCANCEL,
29111                             fn: function(btn, val){
29112                                 if (btn != 'ok') {
29113                                     return;
29114                                 }
29115                                 b.image_src = val;
29116                                 b.updateElement();
29117                                 syncValue();
29118                                 toolbar.editorcore.onEditorEvent();
29119                             },
29120                             minWidth:250,
29121                             prompt:true,
29122                             //multiline: multiline,
29123                             modal : true,
29124                             value : b.image_src
29125                         });
29126                     }
29127                 },
29128                 xns : rooui.Toolbar
29129             },
29130          
29131             {
29132                 xtype : 'Button',
29133                 text: 'Change Link URL',
29134                  
29135                 listeners : {
29136                     click: function (btn, state)
29137                     {
29138                         var b = block();
29139                         
29140                         Roo.MessageBox.show({
29141                             title : "Link URL",
29142                             msg : "Enter the url for the link - leave blank to have no link",
29143                             buttons: Roo.MessageBox.OKCANCEL,
29144                             fn: function(btn, val){
29145                                 if (btn != 'ok') {
29146                                     return;
29147                                 }
29148                                 b.href = val;
29149                                 b.updateElement();
29150                                 syncValue();
29151                                 toolbar.editorcore.onEditorEvent();
29152                             },
29153                             minWidth:250,
29154                             prompt:true,
29155                             //multiline: multiline,
29156                             modal : true,
29157                             value : b.href
29158                         });
29159                     }
29160                 },
29161                 xns : rooui.Toolbar
29162             },
29163             {
29164                 xtype : 'Button',
29165                 text: 'Show Video URL',
29166                  
29167                 listeners : {
29168                     click: function (btn, state)
29169                     {
29170                         Roo.MessageBox.alert("Video URL",
29171                             block().video_url == '' ? 'This image is not linked ot a video' :
29172                                 'The image is linked to: <a target="_new" href="' + block().video_url + '">' + block().video_url + '</a>');
29173                     }
29174                 },
29175                 xns : rooui.Toolbar
29176             },
29177             
29178             
29179             {
29180                 xtype : 'TextItem',
29181                 text : "Width: ",
29182                 xns : rooui.Toolbar  //Boostrap?
29183             },
29184             {
29185                 xtype : 'ComboBox',
29186                 allowBlank : false,
29187                 displayField : 'val',
29188                 editable : true,
29189                 listWidth : 100,
29190                 triggerAction : 'all',
29191                 typeAhead : true,
29192                 valueField : 'val',
29193                 width : 70,
29194                 name : 'width',
29195                 listeners : {
29196                     select : function (combo, r, index)
29197                     {
29198                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
29199                         var b = block();
29200                         b.width = r.get('val');
29201                         b.updateElement();
29202                         syncValue();
29203                         toolbar.editorcore.onEditorEvent();
29204                     }
29205                 },
29206                 xns : rooui.form,
29207                 store : {
29208                     xtype : 'SimpleStore',
29209                     data : [
29210                         ['100%'],
29211                         ['80%'],
29212                         ['50%'],
29213                         ['20%'],
29214                         ['10%']
29215                     ],
29216                     fields : [ 'val'],
29217                     xns : Roo.data
29218                 }
29219             },
29220             {
29221                 xtype : 'TextItem',
29222                 text : "Align: ",
29223                 xns : rooui.Toolbar  //Boostrap?
29224             },
29225             {
29226                 xtype : 'ComboBox',
29227                 allowBlank : false,
29228                 displayField : 'val',
29229                 editable : true,
29230                 listWidth : 100,
29231                 triggerAction : 'all',
29232                 typeAhead : true,
29233                 valueField : 'val',
29234                 width : 70,
29235                 name : 'align',
29236                 listeners : {
29237                     select : function (combo, r, index)
29238                     {
29239                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
29240                         var b = block();
29241                         b.align = r.get('val');
29242                         b.updateElement();
29243                         syncValue();
29244                         toolbar.editorcore.onEditorEvent();
29245                     }
29246                 },
29247                 xns : rooui.form,
29248                 store : {
29249                     xtype : 'SimpleStore',
29250                     data : [
29251                         ['left'],
29252                         ['right'],
29253                         ['center']
29254                     ],
29255                     fields : [ 'val'],
29256                     xns : Roo.data
29257                 }
29258             },
29259             
29260             
29261             {
29262                 xtype : 'Button',
29263                 text: 'Hide Caption',
29264                 name : 'caption_display',
29265                 pressed : false,
29266                 enableToggle : true,
29267                 setValue : function(v) {
29268                     // this trigger toggle.
29269                      
29270                     this.setText(v ? "Hide Caption" : "Show Caption");
29271                     this.setPressed(v != 'block');
29272                 },
29273                 listeners : {
29274                     toggle: function (btn, state)
29275                     {
29276                         var b  = block();
29277                         b.caption_display = b.caption_display == 'block' ? 'none' : 'block';
29278                         this.setText(b.caption_display == 'block' ? "Hide Caption" : "Show Caption");
29279                         b.updateElement();
29280                         syncValue();
29281                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
29282                         toolbar.editorcore.onEditorEvent();
29283                     }
29284                 },
29285                 xns : rooui.Toolbar
29286             }
29287         ];
29288         
29289     },
29290     /**
29291      * create a DomHelper friendly object - for use with
29292      * Roo.DomHelper.markup / overwrite / etc..
29293      */
29294     toObject : function()
29295     {
29296         var d = document.createElement('div');
29297         d.innerHTML = this.caption;
29298         
29299         var m = this.width != '100%' && this.align == 'center' ? '0 auto' : 0; 
29300         
29301         var iw = this.align == 'center' ? this.width : '100%';
29302         var img =   {
29303             tag : 'img',
29304             contenteditable : 'false',
29305             src : this.image_src,
29306             alt : d.innerText.replace(/\n/g, " ").replace(/\s+/g, ' ').trim(), // removeHTML and reduce spaces..
29307             style: {
29308                 width : iw,
29309                 maxWidth : iw + ' !important', // this is not getting rendered?
29310                 margin : m  
29311                 
29312             }
29313         };
29314         /*
29315         '<div class="{0}" width="420" height="315" src="{1}" frameborder="0" allowfullscreen>' +
29316                     '<a href="{2}">' + 
29317                         '<img class="{0}-thumbnail" src="{3}/Images/{4}/{5}#image-{4}" />' + 
29318                     '</a>' + 
29319                 '</div>',
29320         */
29321                 
29322         if (this.href.length > 0) {
29323             img = {
29324                 tag : 'a',
29325                 href: this.href,
29326                 contenteditable : 'true',
29327                 cn : [
29328                     img
29329                 ]
29330             };
29331         }
29332         
29333         
29334         if (this.video_url.length > 0) {
29335             img = {
29336                 tag : 'div',
29337                 cls : this.cls,
29338                 frameborder : 0,
29339                 allowfullscreen : true,
29340                 width : 420,  // these are for video tricks - that we replace the outer
29341                 height : 315,
29342                 src : this.video_url,
29343                 cn : [
29344                     img
29345                 ]
29346             };
29347         }
29348         // we remove caption totally if its hidden... - will delete data.. but otherwise we end up with fake caption
29349         var captionhtml = this.caption_display == 'none' ? '' : (this.caption.length ? this.caption : "Caption");
29350         
29351   
29352         var ret =   {
29353             tag: 'figure',
29354             'data-block' : 'Figure',
29355             'data-width' : this.width, 
29356             contenteditable : 'false',
29357             
29358             style : {
29359                 display: 'block',
29360                 float :  this.align ,
29361                 maxWidth :  this.align == 'center' ? '100% !important' : (this.width + ' !important'),
29362                 width : this.align == 'center' ? '100%' : this.width,
29363                 margin:  '0px',
29364                 padding: this.align == 'center' ? '0' : '0 10px' ,
29365                 textAlign : this.align   // seems to work for email..
29366                 
29367             },
29368            
29369             
29370             align : this.align,
29371             cn : [
29372                 img,
29373               
29374                 {
29375                     tag: 'figcaption',
29376                     'data-display' : this.caption_display,
29377                     style : {
29378                         textAlign : 'left',
29379                         fontSize : '16px',
29380                         lineHeight : '24px',
29381                         display : this.caption_display,
29382                         maxWidth : (this.align == 'center' ?  this.width : '100%' ) + ' !important',
29383                         margin: m,
29384                         width: this.align == 'center' ?  this.width : '100%' 
29385                     
29386                          
29387                     },
29388                     cls : this.cls.length > 0 ? (this.cls  + '-thumbnail' ) : '',
29389                     cn : [
29390                         {
29391                             tag: 'div',
29392                             style  : {
29393                                 marginTop : '16px',
29394                                 textAlign : 'left'
29395                             },
29396                             align: 'left',
29397                             cn : [
29398                                 {
29399                                     // we can not rely on yahoo syndication to use CSS elements - so have to use  '<i>' to encase stuff.
29400                                     tag : 'i',
29401                                     contenteditable : true,
29402                                     html : captionhtml
29403                                 }
29404                                 
29405                             ]
29406                         }
29407                         
29408                     ]
29409                     
29410                 }
29411             ]
29412         };
29413         return ret;
29414          
29415     },
29416     
29417     readElement : function(node)
29418     {
29419         // this should not really come from the link...
29420         this.video_url = this.getVal(node, 'div', 'src');
29421         this.cls = this.getVal(node, 'div', 'class');
29422         this.href = this.getVal(node, 'a', 'href');
29423         
29424         
29425         this.image_src = this.getVal(node, 'img', 'src');
29426          
29427         this.align = this.getVal(node, 'figure', 'align');
29428         var figcaption = this.getVal(node, 'figcaption', false);
29429         if (figcaption !== '') {
29430             this.caption = this.getVal(figcaption, 'i', 'html');
29431         }
29432         
29433
29434         this.caption_display = this.getVal(node, 'figcaption', 'data-display');
29435         //this.text_align = this.getVal(node, 'figcaption', 'style','text-align');
29436         this.width = this.getVal(node, true, 'data-width');
29437         //this.margin = this.getVal(node, 'figure', 'style', 'margin');
29438         
29439     },
29440     removeNode : function()
29441     {
29442         return this.node;
29443     }
29444     
29445   
29446    
29447      
29448     
29449     
29450     
29451     
29452 })
29453
29454  
29455
29456 /**
29457  * @class Roo.htmleditor.BlockTable
29458  * Block that manages a table
29459  * 
29460  * @constructor
29461  * Create a new Filter.
29462  * @param {Object} config Configuration options
29463  */
29464
29465 Roo.htmleditor.BlockTable = function(cfg)
29466 {
29467     if (cfg.node) {
29468         this.readElement(cfg.node);
29469         this.updateElement(cfg.node);
29470     }
29471     Roo.apply(this, cfg);
29472     if (!cfg.node) {
29473         this.rows = [];
29474         for(var r = 0; r < this.no_row; r++) {
29475             this.rows[r] = [];
29476             for(var c = 0; c < this.no_col; c++) {
29477                 this.rows[r][c] = this.emptyCell();
29478             }
29479         }
29480     }
29481     
29482     
29483 }
29484 Roo.extend(Roo.htmleditor.BlockTable, Roo.htmleditor.Block, {
29485  
29486     rows : false,
29487     no_col : 1,
29488     no_row : 1,
29489     
29490     
29491     width: '100%',
29492     
29493     // used by context menu
29494     friendly_name : 'Table',
29495     deleteTitle : 'Delete Table',
29496     // context menu is drawn once..
29497     
29498     contextMenu : function(toolbar)
29499     {
29500         
29501         var block = function() {
29502             return Roo.htmleditor.Block.factory(toolbar.tb.selectedNode);
29503         };
29504         
29505         
29506         var rooui =  typeof(Roo.bootstrap) == 'undefined' ? Roo : Roo.bootstrap;
29507         
29508         var syncValue = toolbar.editorcore.syncValue;
29509         
29510         var fields = {};
29511         
29512         return [
29513             {
29514                 xtype : 'TextItem',
29515                 text : "Width: ",
29516                 xns : rooui.Toolbar  //Boostrap?
29517             },
29518             {
29519                 xtype : 'ComboBox',
29520                 allowBlank : false,
29521                 displayField : 'val',
29522                 editable : true,
29523                 listWidth : 100,
29524                 triggerAction : 'all',
29525                 typeAhead : true,
29526                 valueField : 'val',
29527                 width : 100,
29528                 name : 'width',
29529                 listeners : {
29530                     select : function (combo, r, index)
29531                     {
29532                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
29533                         var b = block();
29534                         b.width = r.get('val');
29535                         b.updateElement();
29536                         syncValue();
29537                         toolbar.editorcore.onEditorEvent();
29538                     }
29539                 },
29540                 xns : rooui.form,
29541                 store : {
29542                     xtype : 'SimpleStore',
29543                     data : [
29544                         ['100%'],
29545                         ['auto']
29546                     ],
29547                     fields : [ 'val'],
29548                     xns : Roo.data
29549                 }
29550             },
29551             // -------- Cols
29552             
29553             {
29554                 xtype : 'TextItem',
29555                 text : "Columns: ",
29556                 xns : rooui.Toolbar  //Boostrap?
29557             },
29558          
29559             {
29560                 xtype : 'Button',
29561                 text: '-',
29562                 listeners : {
29563                     click : function (_self, e)
29564                     {
29565                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
29566                         block().removeColumn();
29567                         syncValue();
29568                         toolbar.editorcore.onEditorEvent();
29569                     }
29570                 },
29571                 xns : rooui.Toolbar
29572             },
29573             {
29574                 xtype : 'Button',
29575                 text: '+',
29576                 listeners : {
29577                     click : function (_self, e)
29578                     {
29579                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
29580                         block().addColumn();
29581                         syncValue();
29582                         toolbar.editorcore.onEditorEvent();
29583                     }
29584                 },
29585                 xns : rooui.Toolbar
29586             },
29587             // -------- ROWS
29588             {
29589                 xtype : 'TextItem',
29590                 text : "Rows: ",
29591                 xns : rooui.Toolbar  //Boostrap?
29592             },
29593          
29594             {
29595                 xtype : 'Button',
29596                 text: '-',
29597                 listeners : {
29598                     click : function (_self, e)
29599                     {
29600                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
29601                         block().removeRow();
29602                         syncValue();
29603                         toolbar.editorcore.onEditorEvent();
29604                     }
29605                 },
29606                 xns : rooui.Toolbar
29607             },
29608             {
29609                 xtype : 'Button',
29610                 text: '+',
29611                 listeners : {
29612                     click : function (_self, e)
29613                     {
29614                         block().addRow();
29615                         syncValue();
29616                         toolbar.editorcore.onEditorEvent();
29617                     }
29618                 },
29619                 xns : rooui.Toolbar
29620             },
29621             // -------- ROWS
29622             {
29623                 xtype : 'Button',
29624                 text: 'Reset Column Widths',
29625                 listeners : {
29626                     
29627                     click : function (_self, e)
29628                     {
29629                         block().resetWidths();
29630                         syncValue();
29631                         toolbar.editorcore.onEditorEvent();
29632                     }
29633                 },
29634                 xns : rooui.Toolbar
29635             } 
29636             
29637             
29638             
29639         ];
29640         
29641     },
29642     
29643     
29644   /**
29645      * create a DomHelper friendly object - for use with
29646      * Roo.DomHelper.markup / overwrite / etc..
29647      * ?? should it be called with option to hide all editing features?
29648      */
29649     toObject : function()
29650     {
29651         
29652         var ret = {
29653             tag : 'table',
29654             contenteditable : 'false', // this stops cell selection from picking the table.
29655             'data-block' : 'Table',
29656             style : {
29657                 width:  this.width,
29658                 border : 'solid 1px #000', // ??? hard coded?
29659                 'border-collapse' : 'collapse' 
29660             },
29661             cn : [
29662                 { tag : 'tbody' , cn : [] }
29663             ]
29664         };
29665         
29666         // do we have a head = not really 
29667         var ncols = 0;
29668         Roo.each(this.rows, function( row ) {
29669             var tr = {
29670                 tag: 'tr',
29671                 style : {
29672                     margin: '6px',
29673                     border : 'solid 1px #000',
29674                     textAlign : 'left' 
29675                 },
29676                 cn : [ ]
29677             };
29678             
29679             ret.cn[0].cn.push(tr);
29680             // does the row have any properties? ?? height?
29681             var nc = 0;
29682             Roo.each(row, function( cell ) {
29683                 
29684                 var td = {
29685                     tag : 'td',
29686                     contenteditable :  'true',
29687                     'data-block' : 'Td',
29688                     html : cell.html,
29689                     style : cell.style
29690                 };
29691                 if (cell.colspan > 1) {
29692                     td.colspan = cell.colspan ;
29693                     nc += cell.colspan;
29694                 } else {
29695                     nc++;
29696                 }
29697                 if (cell.rowspan > 1) {
29698                     td.rowspan = cell.rowspan ;
29699                 }
29700                 
29701                 
29702                 // widths ?
29703                 tr.cn.push(td);
29704                     
29705                 
29706             }, this);
29707             ncols = Math.max(nc, ncols);
29708             
29709             
29710         }, this);
29711         // add the header row..
29712         
29713         ncols++;
29714          
29715         
29716         return ret;
29717          
29718     },
29719     
29720     readElement : function(node)
29721     {
29722         node  = node ? node : this.node ;
29723         this.width = this.getVal(node, true, 'style', 'width') || '100%';
29724         
29725         this.rows = [];
29726         this.no_row = 0;
29727         var trs = Array.from(node.rows);
29728         trs.forEach(function(tr) {
29729             var row =  [];
29730             this.rows.push(row);
29731             
29732             this.no_row++;
29733             var no_column = 0;
29734             Array.from(tr.cells).forEach(function(td) {
29735                 
29736                 var add = {
29737                     colspan : td.hasAttribute('colspan') ? td.getAttribute('colspan')*1 : 1,
29738                     rowspan : td.hasAttribute('rowspan') ? td.getAttribute('rowspan')*1 : 1,
29739                     style : td.hasAttribute('style') ? td.getAttribute('style') : '',
29740                     html : td.innerHTML
29741                 };
29742                 no_column += add.colspan;
29743                      
29744                 
29745                 row.push(add);
29746                 
29747                 
29748             },this);
29749             this.no_col = Math.max(this.no_col, no_column);
29750             
29751             
29752         },this);
29753         
29754         
29755     },
29756     normalizeRows: function()
29757     {
29758         var ret= [];
29759         var rid = -1;
29760         this.rows.forEach(function(row) {
29761             rid++;
29762             ret[rid] = [];
29763             row = this.normalizeRow(row);
29764             var cid = 0;
29765             row.forEach(function(c) {
29766                 while (typeof(ret[rid][cid]) != 'undefined') {
29767                     cid++;
29768                 }
29769                 if (typeof(ret[rid]) == 'undefined') {
29770                     ret[rid] = [];
29771                 }
29772                 ret[rid][cid] = c;
29773                 c.row = rid;
29774                 c.col = cid;
29775                 if (c.rowspan < 2) {
29776                     return;
29777                 }
29778                 
29779                 for(var i = 1 ;i < c.rowspan; i++) {
29780                     if (typeof(ret[rid+i]) == 'undefined') {
29781                         ret[rid+i] = [];
29782                     }
29783                     ret[rid+i][cid] = c;
29784                 }
29785             });
29786         }, this);
29787         return ret;
29788     
29789     },
29790     
29791     normalizeRow: function(row)
29792     {
29793         var ret= [];
29794         row.forEach(function(c) {
29795             if (c.colspan < 2) {
29796                 ret.push(c);
29797                 return;
29798             }
29799             for(var i =0 ;i < c.colspan; i++) {
29800                 ret.push(c);
29801             }
29802         });
29803         return ret;
29804     
29805     },
29806     
29807     deleteColumn : function(sel)
29808     {
29809         if (!sel || sel.type != 'col') {
29810             return;
29811         }
29812         if (this.no_col < 2) {
29813             return;
29814         }
29815         
29816         this.rows.forEach(function(row) {
29817             var cols = this.normalizeRow(row);
29818             var col = cols[sel.col];
29819             if (col.colspan > 1) {
29820                 col.colspan --;
29821             } else {
29822                 row.remove(col);
29823             }
29824             
29825         }, this);
29826         this.no_col--;
29827         
29828     },
29829     removeColumn : function()
29830     {
29831         this.deleteColumn({
29832             type: 'col',
29833             col : this.no_col-1
29834         });
29835         this.updateElement();
29836     },
29837     
29838      
29839     addColumn : function()
29840     {
29841         
29842         this.rows.forEach(function(row) {
29843             row.push(this.emptyCell());
29844            
29845         }, this);
29846         this.updateElement();
29847     },
29848     
29849     deleteRow : function(sel)
29850     {
29851         if (!sel || sel.type != 'row') {
29852             return;
29853         }
29854         
29855         if (this.no_row < 2) {
29856             return;
29857         }
29858         
29859         var rows = this.normalizeRows();
29860         
29861         
29862         rows[sel.row].forEach(function(col) {
29863             if (col.rowspan > 1) {
29864                 col.rowspan--;
29865             } else {
29866                 col.remove = 1; // flage it as removed.
29867             }
29868             
29869         }, this);
29870         var newrows = [];
29871         this.rows.forEach(function(row) {
29872             newrow = [];
29873             row.forEach(function(c) {
29874                 if (typeof(c.remove) == 'undefined') {
29875                     newrow.push(c);
29876                 }
29877                 
29878             });
29879             if (newrow.length > 0) {
29880                 newrows.push(row);
29881             }
29882         });
29883         this.rows =  newrows;
29884         
29885         
29886         
29887         this.no_row--;
29888         this.updateElement();
29889         
29890     },
29891     removeRow : function()
29892     {
29893         this.deleteRow({
29894             type: 'row',
29895             row : this.no_row-1
29896         });
29897         
29898     },
29899     
29900      
29901     addRow : function()
29902     {
29903         
29904         var row = [];
29905         for (var i = 0; i < this.no_col; i++ ) {
29906             
29907             row.push(this.emptyCell());
29908            
29909         }
29910         this.rows.push(row);
29911         this.updateElement();
29912         
29913     },
29914      
29915     // the default cell object... at present...
29916     emptyCell : function() {
29917         return (new Roo.htmleditor.BlockTd({})).toObject();
29918         
29919      
29920     },
29921     
29922     removeNode : function()
29923     {
29924         return this.node;
29925     },
29926     
29927     
29928     
29929     resetWidths : function()
29930     {
29931         Array.from(this.node.getElementsByTagName('td')).forEach(function(n) {
29932             var nn = Roo.htmleditor.Block.factory(n);
29933             nn.width = '';
29934             nn.updateElement(n);
29935         });
29936     }
29937     
29938     
29939     
29940     
29941 })
29942
29943 /**
29944  *
29945  * editing a TD?
29946  *
29947  * since selections really work on the table cell, then editing really should work from there
29948  *
29949  * The original plan was to support merging etc... - but that may not be needed yet..
29950  *
29951  * So this simple version will support:
29952  *   add/remove cols
29953  *   adjust the width +/-
29954  *   reset the width...
29955  *   
29956  *
29957  */
29958
29959
29960  
29961
29962 /**
29963  * @class Roo.htmleditor.BlockTable
29964  * Block that manages a table
29965  * 
29966  * @constructor
29967  * Create a new Filter.
29968  * @param {Object} config Configuration options
29969  */
29970
29971 Roo.htmleditor.BlockTd = function(cfg)
29972 {
29973     if (cfg.node) {
29974         this.readElement(cfg.node);
29975         this.updateElement(cfg.node);
29976     }
29977     Roo.apply(this, cfg);
29978      
29979     
29980     
29981 }
29982 Roo.extend(Roo.htmleditor.BlockTd, Roo.htmleditor.Block, {
29983  
29984     node : false,
29985     
29986     width: '',
29987     textAlign : 'left',
29988     valign : 'top',
29989     
29990     colspan : 1,
29991     rowspan : 1,
29992     
29993     
29994     // used by context menu
29995     friendly_name : 'Table Cell',
29996     deleteTitle : false, // use our customer delete
29997     
29998     // context menu is drawn once..
29999     
30000     contextMenu : function(toolbar)
30001     {
30002         
30003         var cell = function() {
30004             return Roo.htmleditor.Block.factory(toolbar.tb.selectedNode);
30005         };
30006         
30007         var table = function() {
30008             return Roo.htmleditor.Block.factory(toolbar.tb.selectedNode.closest('table'));
30009         };
30010         
30011         var lr = false;
30012         var saveSel = function()
30013         {
30014             lr = toolbar.editorcore.getSelection().getRangeAt(0);
30015         }
30016         var restoreSel = function()
30017         {
30018             if (lr) {
30019                 (function() {
30020                     toolbar.editorcore.focus();
30021                     var cr = toolbar.editorcore.getSelection();
30022                     cr.removeAllRanges();
30023                     cr.addRange(lr);
30024                     toolbar.editorcore.onEditorEvent();
30025                 }).defer(10, this);
30026                 
30027                 
30028             }
30029         }
30030         
30031         var rooui =  typeof(Roo.bootstrap) == 'undefined' ? Roo : Roo.bootstrap;
30032         
30033         var syncValue = toolbar.editorcore.syncValue;
30034         
30035         var fields = {};
30036         
30037         return [
30038             {
30039                 xtype : 'Button',
30040                 text : 'Edit Table',
30041                 listeners : {
30042                     click : function() {
30043                         var t = toolbar.tb.selectedNode.closest('table');
30044                         toolbar.editorcore.selectNode(t);
30045                         toolbar.editorcore.onEditorEvent();                        
30046                     }
30047                 }
30048                 
30049             },
30050               
30051            
30052              
30053             {
30054                 xtype : 'TextItem',
30055                 text : "Column Width: ",
30056                  xns : rooui.Toolbar 
30057                
30058             },
30059             {
30060                 xtype : 'Button',
30061                 text: '-',
30062                 listeners : {
30063                     click : function (_self, e)
30064                     {
30065                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
30066                         cell().shrinkColumn();
30067                         syncValue();
30068                          toolbar.editorcore.onEditorEvent();
30069                     }
30070                 },
30071                 xns : rooui.Toolbar
30072             },
30073             {
30074                 xtype : 'Button',
30075                 text: '+',
30076                 listeners : {
30077                     click : function (_self, e)
30078                     {
30079                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
30080                         cell().growColumn();
30081                         syncValue();
30082                         toolbar.editorcore.onEditorEvent();
30083                     }
30084                 },
30085                 xns : rooui.Toolbar
30086             },
30087             
30088             {
30089                 xtype : 'TextItem',
30090                 text : "Vertical Align: ",
30091                 xns : rooui.Toolbar  //Boostrap?
30092             },
30093             {
30094                 xtype : 'ComboBox',
30095                 allowBlank : false,
30096                 displayField : 'val',
30097                 editable : true,
30098                 listWidth : 100,
30099                 triggerAction : 'all',
30100                 typeAhead : true,
30101                 valueField : 'val',
30102                 width : 100,
30103                 name : 'valign',
30104                 listeners : {
30105                     select : function (combo, r, index)
30106                     {
30107                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
30108                         var b = cell();
30109                         b.valign = r.get('val');
30110                         b.updateElement();
30111                         syncValue();
30112                         toolbar.editorcore.onEditorEvent();
30113                     }
30114                 },
30115                 xns : rooui.form,
30116                 store : {
30117                     xtype : 'SimpleStore',
30118                     data : [
30119                         ['top'],
30120                         ['middle'],
30121                         ['bottom'] // there are afew more... 
30122                     ],
30123                     fields : [ 'val'],
30124                     xns : Roo.data
30125                 }
30126             },
30127             
30128             {
30129                 xtype : 'TextItem',
30130                 text : "Merge Cells: ",
30131                  xns : rooui.Toolbar 
30132                
30133             },
30134             
30135             
30136             {
30137                 xtype : 'Button',
30138                 text: 'Right',
30139                 listeners : {
30140                     click : function (_self, e)
30141                     {
30142                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
30143                         cell().mergeRight();
30144                         //block().growColumn();
30145                         syncValue();
30146                         toolbar.editorcore.onEditorEvent();
30147                     }
30148                 },
30149                 xns : rooui.Toolbar
30150             },
30151              
30152             {
30153                 xtype : 'Button',
30154                 text: 'Below',
30155                 listeners : {
30156                     click : function (_self, e)
30157                     {
30158                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
30159                         cell().mergeBelow();
30160                         //block().growColumn();
30161                         syncValue();
30162                         toolbar.editorcore.onEditorEvent();
30163                     }
30164                 },
30165                 xns : rooui.Toolbar
30166             },
30167             {
30168                 xtype : 'TextItem',
30169                 text : "| ",
30170                  xns : rooui.Toolbar 
30171                
30172             },
30173             
30174             {
30175                 xtype : 'Button',
30176                 text: 'Split',
30177                 listeners : {
30178                     click : function (_self, e)
30179                     {
30180                         //toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
30181                         cell().split();
30182                         syncValue();
30183                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
30184                         toolbar.editorcore.onEditorEvent();
30185                                              
30186                     }
30187                 },
30188                 xns : rooui.Toolbar
30189             },
30190             {
30191                 xtype : 'Fill',
30192                 xns : rooui.Toolbar 
30193                
30194             },
30195         
30196           
30197             {
30198                 xtype : 'Button',
30199                 text: 'Delete',
30200                  
30201                 xns : rooui.Toolbar,
30202                 menu : {
30203                     xtype : 'Menu',
30204                     xns : rooui.menu,
30205                     items : [
30206                         {
30207                             xtype : 'Item',
30208                             html: 'Column',
30209                             listeners : {
30210                                 click : function (_self, e)
30211                                 {
30212                                     var t = table();
30213                                     
30214                                     cell().deleteColumn();
30215                                     syncValue();
30216                                     toolbar.editorcore.selectNode(t.node);
30217                                     toolbar.editorcore.onEditorEvent();   
30218                                 }
30219                             },
30220                             xns : rooui.menu
30221                         },
30222                         {
30223                             xtype : 'Item',
30224                             html: 'Row',
30225                             listeners : {
30226                                 click : function (_self, e)
30227                                 {
30228                                     var t = table();
30229                                     cell().deleteRow();
30230                                     syncValue();
30231                                     
30232                                     toolbar.editorcore.selectNode(t.node);
30233                                     toolbar.editorcore.onEditorEvent();   
30234                                                          
30235                                 }
30236                             },
30237                             xns : rooui.menu
30238                         },
30239                        {
30240                             xtype : 'Separator',
30241                             xns : rooui.menu
30242                         },
30243                         {
30244                             xtype : 'Item',
30245                             html: 'Table',
30246                             listeners : {
30247                                 click : function (_self, e)
30248                                 {
30249                                     var t = table();
30250                                     var nn = t.node.nextSibling || t.node.previousSibling;
30251                                     t.node.parentNode.removeChild(t.node);
30252                                     if (nn) { 
30253                                         toolbar.editorcore.selectNode(nn, true);
30254                                     }
30255                                     toolbar.editorcore.onEditorEvent();   
30256                                                          
30257                                 }
30258                             },
30259                             xns : rooui.menu
30260                         }
30261                     ]
30262                 }
30263             }
30264             
30265             // align... << fixme
30266             
30267         ];
30268         
30269     },
30270     
30271     
30272   /**
30273      * create a DomHelper friendly object - for use with
30274      * Roo.DomHelper.markup / overwrite / etc..
30275      * ?? should it be called with option to hide all editing features?
30276      */
30277  /**
30278      * create a DomHelper friendly object - for use with
30279      * Roo.DomHelper.markup / overwrite / etc..
30280      * ?? should it be called with option to hide all editing features?
30281      */
30282     toObject : function()
30283     {
30284         var ret = {
30285             tag : 'td',
30286             contenteditable : 'true', // this stops cell selection from picking the table.
30287             'data-block' : 'Td',
30288             valign : this.valign,
30289             style : {  
30290                 'text-align' :  this.textAlign,
30291                 border : 'solid 1px rgb(0, 0, 0)', // ??? hard coded?
30292                 'border-collapse' : 'collapse',
30293                 padding : '6px', // 8 for desktop / 4 for mobile
30294                 'vertical-align': this.valign
30295             },
30296             html : this.html
30297         };
30298         if (this.width != '') {
30299             ret.width = this.width;
30300             ret.style.width = this.width;
30301         }
30302         
30303         
30304         if (this.colspan > 1) {
30305             ret.colspan = this.colspan ;
30306         } 
30307         if (this.rowspan > 1) {
30308             ret.rowspan = this.rowspan ;
30309         }
30310         
30311            
30312         
30313         return ret;
30314          
30315     },
30316     
30317     readElement : function(node)
30318     {
30319         node  = node ? node : this.node ;
30320         this.width = node.style.width;
30321         this.colspan = Math.max(1,1*node.getAttribute('colspan'));
30322         this.rowspan = Math.max(1,1*node.getAttribute('rowspan'));
30323         this.html = node.innerHTML;
30324         if (node.style.textAlign != '') {
30325             this.textAlign = node.style.textAlign;
30326         }
30327         
30328         
30329     },
30330      
30331     // the default cell object... at present...
30332     emptyCell : function() {
30333         return {
30334             colspan :  1,
30335             rowspan :  1,
30336             textAlign : 'left',
30337             html : "&nbsp;" // is this going to be editable now?
30338         };
30339      
30340     },
30341     
30342     removeNode : function()
30343     {
30344         return this.node.closest('table');
30345          
30346     },
30347     
30348     cellData : false,
30349     
30350     colWidths : false,
30351     
30352     toTableArray  : function()
30353     {
30354         var ret = [];
30355         var tab = this.node.closest('tr').closest('table');
30356         Array.from(tab.rows).forEach(function(r, ri){
30357             ret[ri] = [];
30358         });
30359         var rn = 0;
30360         this.colWidths = [];
30361         var all_auto = true;
30362         Array.from(tab.rows).forEach(function(r, ri){
30363             
30364             var cn = 0;
30365             Array.from(r.cells).forEach(function(ce, ci){
30366                 var c =  {
30367                     cell : ce,
30368                     row : rn,
30369                     col: cn,
30370                     colspan : ce.colSpan,
30371                     rowspan : ce.rowSpan
30372                 };
30373                 if (ce.isEqualNode(this.node)) {
30374                     this.cellData = c;
30375                 }
30376                 // if we have been filled up by a row?
30377                 if (typeof(ret[rn][cn]) != 'undefined') {
30378                     while(typeof(ret[rn][cn]) != 'undefined') {
30379                         cn++;
30380                     }
30381                     c.col = cn;
30382                 }
30383                 
30384                 if (typeof(this.colWidths[cn]) == 'undefined' && c.colspan < 2) {
30385                     this.colWidths[cn] =   ce.style.width;
30386                     if (this.colWidths[cn] != '') {
30387                         all_auto = false;
30388                     }
30389                 }
30390                 
30391                 
30392                 if (c.colspan < 2 && c.rowspan < 2 ) {
30393                     ret[rn][cn] = c;
30394                     cn++;
30395                     return;
30396                 }
30397                 for(var j = 0; j < c.rowspan; j++) {
30398                     if (typeof(ret[rn+j]) == 'undefined') {
30399                         continue; // we have a problem..
30400                     }
30401                     ret[rn+j][cn] = c;
30402                     for(var i = 0; i < c.colspan; i++) {
30403                         ret[rn+j][cn+i] = c;
30404                     }
30405                 }
30406                 
30407                 cn += c.colspan;
30408             }, this);
30409             rn++;
30410         }, this);
30411         
30412         // initalize widths.?
30413         // either all widths or no widths..
30414         if (all_auto) {
30415             this.colWidths[0] = false; // no widths flag.
30416         }
30417         
30418         
30419         return ret;
30420         
30421     },
30422     
30423     
30424     
30425     
30426     mergeRight: function()
30427     {
30428          
30429         // get the contents of the next cell along..
30430         var tr = this.node.closest('tr');
30431         var i = Array.prototype.indexOf.call(tr.childNodes, this.node);
30432         if (i >= tr.childNodes.length - 1) {
30433             return; // no cells on right to merge with.
30434         }
30435         var table = this.toTableArray();
30436         
30437         if (typeof(table[this.cellData.row][this.cellData.col+this.cellData.colspan]) == 'undefined') {
30438             return; // nothing right?
30439         }
30440         var rc = table[this.cellData.row][this.cellData.col+this.cellData.colspan];
30441         // right cell - must be same rowspan and on the same row.
30442         if (rc.rowspan != this.cellData.rowspan || rc.row != this.cellData.row) {
30443             return; // right hand side is not same rowspan.
30444         }
30445         
30446         
30447         
30448         this.node.innerHTML += ' ' + rc.cell.innerHTML;
30449         tr.removeChild(rc.cell);
30450         this.colspan += rc.colspan;
30451         this.node.setAttribute('colspan', this.colspan);
30452
30453         var table = this.toTableArray();
30454         this.normalizeWidths(table);
30455         this.updateWidths(table);
30456     },
30457     
30458     
30459     mergeBelow : function()
30460     {
30461         var table = this.toTableArray();
30462         if (typeof(table[this.cellData.row+this.cellData.rowspan]) == 'undefined') {
30463             return; // no row below
30464         }
30465         if (typeof(table[this.cellData.row+this.cellData.rowspan][this.cellData.col]) == 'undefined') {
30466             return; // nothing right?
30467         }
30468         var rc = table[this.cellData.row+this.cellData.rowspan][this.cellData.col];
30469         
30470         if (rc.colspan != this.cellData.colspan || rc.col != this.cellData.col) {
30471             return; // right hand side is not same rowspan.
30472         }
30473         this.node.innerHTML =  this.node.innerHTML + rc.cell.innerHTML ;
30474         rc.cell.parentNode.removeChild(rc.cell);
30475         this.rowspan += rc.rowspan;
30476         this.node.setAttribute('rowspan', this.rowspan);
30477     },
30478     
30479     split: function()
30480     {
30481         if (this.node.rowSpan < 2 && this.node.colSpan < 2) {
30482             return;
30483         }
30484         var table = this.toTableArray();
30485         var cd = this.cellData;
30486         this.rowspan = 1;
30487         this.colspan = 1;
30488         
30489         for(var r = cd.row; r < cd.row + cd.rowspan; r++) {
30490              
30491             
30492             for(var c = cd.col; c < cd.col + cd.colspan; c++) {
30493                 if (r == cd.row && c == cd.col) {
30494                     this.node.removeAttribute('rowspan');
30495                     this.node.removeAttribute('colspan');
30496                 }
30497                  
30498                 var ntd = this.node.cloneNode(); // which col/row should be 0..
30499                 ntd.removeAttribute('id'); 
30500                 ntd.style.width  = this.colWidths[c];
30501                 ntd.innerHTML = '';
30502                 table[r][c] = { cell : ntd, col : c, row: r , colspan : 1 , rowspan : 1   };
30503             }
30504             
30505         }
30506         this.redrawAllCells(table);
30507         
30508     },
30509     
30510     
30511     
30512     redrawAllCells: function(table)
30513     {
30514         
30515          
30516         var tab = this.node.closest('tr').closest('table');
30517         var ctr = tab.rows[0].parentNode;
30518         Array.from(tab.rows).forEach(function(r, ri){
30519             
30520             Array.from(r.cells).forEach(function(ce, ci){
30521                 ce.parentNode.removeChild(ce);
30522             });
30523             r.parentNode.removeChild(r);
30524         });
30525         for(var r = 0 ; r < table.length; r++) {
30526             var re = tab.rows[r];
30527             
30528             var re = tab.ownerDocument.createElement('tr');
30529             ctr.appendChild(re);
30530             for(var c = 0 ; c < table[r].length; c++) {
30531                 if (table[r][c].cell === false) {
30532                     continue;
30533                 }
30534                 
30535                 re.appendChild(table[r][c].cell);
30536                  
30537                 table[r][c].cell = false;
30538             }
30539         }
30540         
30541     },
30542     updateWidths : function(table)
30543     {
30544         for(var r = 0 ; r < table.length; r++) {
30545            
30546             for(var c = 0 ; c < table[r].length; c++) {
30547                 if (table[r][c].cell === false) {
30548                     continue;
30549                 }
30550                 
30551                 if (this.colWidths[0] != false && table[r][c].colspan < 2) {
30552                     var el = Roo.htmleditor.Block.factory(table[r][c].cell);
30553                     el.width = Math.floor(this.colWidths[c])  +'%';
30554                     el.updateElement(el.node);
30555                 }
30556                 if (this.colWidths[0] != false && table[r][c].colspan > 1) {
30557                     var el = Roo.htmleditor.Block.factory(table[r][c].cell);
30558                     var width = 0;
30559                     for(var i = 0; i < table[r][c].colspan; i ++) {
30560                         width += Math.floor(this.colWidths[c + i]);
30561                     }
30562                     el.width = width  +'%';
30563                     el.updateElement(el.node);
30564                 }
30565                 table[r][c].cell = false; // done
30566             }
30567         }
30568     },
30569     normalizeWidths : function(table)
30570     {
30571         if (this.colWidths[0] === false) {
30572             var nw = 100.0 / this.colWidths.length;
30573             this.colWidths.forEach(function(w,i) {
30574                 this.colWidths[i] = nw;
30575             },this);
30576             return;
30577         }
30578     
30579         var t = 0, missing = [];
30580         
30581         this.colWidths.forEach(function(w,i) {
30582             //if you mix % and
30583             this.colWidths[i] = this.colWidths[i] == '' ? 0 : (this.colWidths[i]+'').replace(/[^0-9]+/g,'')*1;
30584             var add =  this.colWidths[i];
30585             if (add > 0) {
30586                 t+=add;
30587                 return;
30588             }
30589             missing.push(i);
30590             
30591             
30592         },this);
30593         var nc = this.colWidths.length;
30594         if (missing.length) {
30595             var mult = (nc - missing.length) / (1.0 * nc);
30596             var t = mult * t;
30597             var ew = (100 -t) / (1.0 * missing.length);
30598             this.colWidths.forEach(function(w,i) {
30599                 if (w > 0) {
30600                     this.colWidths[i] = w * mult;
30601                     return;
30602                 }
30603                 
30604                 this.colWidths[i] = ew;
30605             }, this);
30606             // have to make up numbers..
30607              
30608         }
30609         // now we should have all the widths..
30610         
30611     
30612     },
30613     
30614     shrinkColumn : function()
30615     {
30616         var table = this.toTableArray();
30617         this.normalizeWidths(table);
30618         var col = this.cellData.col;
30619         var nw = this.colWidths[col] * 0.8;
30620         if (nw < 5) {
30621             return;
30622         }
30623         var otherAdd = (this.colWidths[col]  * 0.2) / (this.colWidths.length -1);
30624         this.colWidths.forEach(function(w,i) {
30625             if (i == col) {
30626                  this.colWidths[i] = nw;
30627                 return;
30628             }
30629             this.colWidths[i] += otherAdd
30630         }, this);
30631         this.updateWidths(table);
30632          
30633     },
30634     growColumn : function()
30635     {
30636         var table = this.toTableArray();
30637         this.normalizeWidths(table);
30638         var col = this.cellData.col;
30639         var nw = this.colWidths[col] * 1.2;
30640         if (nw > 90) {
30641             return;
30642         }
30643         var otherSub = (this.colWidths[col]  * 0.2) / (this.colWidths.length -1);
30644         this.colWidths.forEach(function(w,i) {
30645             if (i == col) {
30646                 this.colWidths[i] = nw;
30647                 return;
30648             }
30649             this.colWidths[i] -= otherSub
30650         }, this);
30651         this.updateWidths(table);
30652          
30653     },
30654     deleteRow : function()
30655     {
30656         // delete this rows 'tr'
30657         // if any of the cells in this row have a rowspan > 1 && row!= this row..
30658         // then reduce the rowspan.
30659         var table = this.toTableArray();
30660         // this.cellData.row;
30661         for (var i =0;i< table[this.cellData.row].length ; i++) {
30662             var c = table[this.cellData.row][i];
30663             if (c.row != this.cellData.row) {
30664                 
30665                 c.rowspan--;
30666                 c.cell.setAttribute('rowspan', c.rowspan);
30667                 continue;
30668             }
30669             if (c.rowspan > 1) {
30670                 c.rowspan--;
30671                 c.cell.setAttribute('rowspan', c.rowspan);
30672             }
30673         }
30674         table.splice(this.cellData.row,1);
30675         this.redrawAllCells(table);
30676         
30677     },
30678     deleteColumn : function()
30679     {
30680         var table = this.toTableArray();
30681         
30682         for (var i =0;i< table.length ; i++) {
30683             var c = table[i][this.cellData.col];
30684             if (c.col != this.cellData.col) {
30685                 table[i][this.cellData.col].colspan--;
30686             } else if (c.colspan > 1) {
30687                 c.colspan--;
30688                 c.cell.setAttribute('colspan', c.colspan);
30689             }
30690             table[i].splice(this.cellData.col,1);
30691         }
30692         
30693         this.redrawAllCells(table);
30694     }
30695     
30696     
30697     
30698     
30699 })
30700
30701 //<script type="text/javascript">
30702
30703 /*
30704  * Based  Ext JS Library 1.1.1
30705  * Copyright(c) 2006-2007, Ext JS, LLC.
30706  * LGPL
30707  *
30708  */
30709  
30710 /**
30711  * @class Roo.HtmlEditorCore
30712  * @extends Roo.Component
30713  * Provides a the editing component for the HTML editors in Roo. (bootstrap and Roo.form)
30714  *
30715  * any element that has display set to 'none' can cause problems in Safari and Firefox.<br/><br/>
30716  */
30717
30718 Roo.HtmlEditorCore = function(config){
30719     
30720     
30721     Roo.HtmlEditorCore.superclass.constructor.call(this, config);
30722     
30723     
30724     this.addEvents({
30725         /**
30726          * @event initialize
30727          * Fires when the editor is fully initialized (including the iframe)
30728          * @param {Roo.HtmlEditorCore} this
30729          */
30730         initialize: true,
30731         /**
30732          * @event activate
30733          * Fires when the editor is first receives the focus. Any insertion must wait
30734          * until after this event.
30735          * @param {Roo.HtmlEditorCore} this
30736          */
30737         activate: true,
30738          /**
30739          * @event beforesync
30740          * Fires before the textarea is updated with content from the editor iframe. Return false
30741          * to cancel the sync.
30742          * @param {Roo.HtmlEditorCore} this
30743          * @param {String} html
30744          */
30745         beforesync: true,
30746          /**
30747          * @event beforepush
30748          * Fires before the iframe editor is updated with content from the textarea. Return false
30749          * to cancel the push.
30750          * @param {Roo.HtmlEditorCore} this
30751          * @param {String} html
30752          */
30753         beforepush: true,
30754          /**
30755          * @event sync
30756          * Fires when the textarea is updated with content from the editor iframe.
30757          * @param {Roo.HtmlEditorCore} this
30758          * @param {String} html
30759          */
30760         sync: true,
30761          /**
30762          * @event push
30763          * Fires when the iframe editor is updated with content from the textarea.
30764          * @param {Roo.HtmlEditorCore} this
30765          * @param {String} html
30766          */
30767         push: true,
30768         
30769         /**
30770          * @event editorevent
30771          * Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks.
30772          * @param {Roo.HtmlEditorCore} this
30773          */
30774         editorevent: true 
30775          
30776         
30777     });
30778     
30779     // at this point this.owner is set, so we can start working out the whitelisted / blacklisted elements
30780     
30781     // defaults : white / black...
30782     this.applyBlacklists();
30783     
30784     
30785     
30786 };
30787
30788
30789 Roo.extend(Roo.HtmlEditorCore, Roo.Component,  {
30790
30791
30792      /**
30793      * @cfg {Roo.form.HtmlEditor|Roo.bootstrap.HtmlEditor} the owner field 
30794      */
30795     
30796     owner : false,
30797     
30798      /**
30799      * @cfg {String} css styling for resizing. (used on bootstrap only)
30800      */
30801     resize : false,
30802      /**
30803      * @cfg {Number} height (in pixels)
30804      */   
30805     height: 300,
30806    /**
30807      * @cfg {Number} width (in pixels)
30808      */   
30809     width: 500,
30810      /**
30811      * @cfg {boolean} autoClean - default true - loading and saving will remove quite a bit of formating,
30812      *         if you are doing an email editor, this probably needs disabling, it's designed
30813      */
30814     autoClean: true,
30815     
30816     /**
30817      * @cfg {boolean} enableBlocks - default true - if the block editor (table and figure should be enabled)
30818      */
30819     enableBlocks : true,
30820     /**
30821      * @cfg {Array} stylesheets url of stylesheets. set to [] to disable stylesheets.
30822      * 
30823      */
30824     stylesheets: false,
30825      /**
30826      * @cfg {String} language default en - language of text (usefull for rtl languages)
30827      * 
30828      */
30829     language: 'en',
30830     
30831     /**
30832      * @cfg {boolean} allowComments - default false - allow comments in HTML source
30833      *          - by default they are stripped - if you are editing email you may need this.
30834      */
30835     allowComments: false,
30836     // id of frame..
30837     frameId: false,
30838     
30839     // private properties
30840     validationEvent : false,
30841     deferHeight: true,
30842     initialized : false,
30843     activated : false,
30844     sourceEditMode : false,
30845     onFocus : Roo.emptyFn,
30846     iframePad:3,
30847     hideMode:'offsets',
30848     
30849     clearUp: true,
30850     
30851     // blacklist + whitelisted elements..
30852     black: false,
30853     white: false,
30854      
30855     bodyCls : '',
30856
30857     
30858     undoManager : false,
30859     /**
30860      * Protected method that will not generally be called directly. It
30861      * is called when the editor initializes the iframe with HTML contents. Override this method if you
30862      * want to change the initialization markup of the iframe (e.g. to add stylesheets).
30863      */
30864     getDocMarkup : function(){
30865         // body styles..
30866         var st = '';
30867         
30868         // inherit styels from page...?? 
30869         if (this.stylesheets === false) {
30870             
30871             Roo.get(document.head).select('style').each(function(node) {
30872                 st += node.dom.outerHTML || new XMLSerializer().serializeToString(node.dom);
30873             });
30874             
30875             Roo.get(document.head).select('link').each(function(node) { 
30876                 st += node.dom.outerHTML || new XMLSerializer().serializeToString(node.dom);
30877             });
30878             
30879         } else if (!this.stylesheets.length) {
30880                 // simple..
30881                 st = '<style type="text/css">' +
30882                     'body{border:0;margin:0;padding:3px;height:98%;cursor:text;}' +
30883                    '</style>';
30884         } else {
30885             for (var i in this.stylesheets) {
30886                 if (typeof(this.stylesheets[i]) != 'string') {
30887                     continue;
30888                 }
30889                 st += '<link rel="stylesheet" href="' + this.stylesheets[i] +'" type="text/css">';
30890             }
30891             
30892         }
30893         
30894         st +=  '<style type="text/css">' +
30895             'IMG { cursor: pointer } ' +
30896         '</style>';
30897         
30898         st += '<meta name="google" content="notranslate">';
30899         
30900         var cls = 'notranslate roo-htmleditor-body';
30901         
30902         if(this.bodyCls.length){
30903             cls += ' ' + this.bodyCls;
30904         }
30905         
30906         return '<html  class="notranslate" translate="no"><head>' + st  +
30907             //<style type="text/css">' +
30908             //'body{border:0;margin:0;padding:3px;height:98%;cursor:text;}' +
30909             //'</style>' +
30910             ' </head><body contenteditable="true" data-enable-grammerly="true" class="' +  cls + '"></body></html>';
30911     },
30912
30913     // private
30914     onRender : function(ct, position)
30915     {
30916         var _t = this;
30917         //Roo.HtmlEditorCore.superclass.onRender.call(this, ct, position);
30918         this.el = this.owner.inputEl ? this.owner.inputEl() : this.owner.el;
30919         
30920         
30921         this.el.dom.style.border = '0 none';
30922         this.el.dom.setAttribute('tabIndex', -1);
30923         this.el.addClass('x-hidden hide');
30924         
30925         
30926         
30927         if(Roo.isIE){ // fix IE 1px bogus margin
30928             this.el.applyStyles('margin-top:-1px;margin-bottom:-1px;')
30929         }
30930        
30931         
30932         this.frameId = Roo.id();
30933         
30934         var ifcfg = {
30935             tag: 'iframe',
30936             cls: 'form-control', // bootstrap..
30937             id: this.frameId,
30938             name: this.frameId,
30939             frameBorder : 'no',
30940             'src' : Roo.SSL_SECURE_URL ? Roo.SSL_SECURE_URL  :  "javascript:false"
30941         };
30942         if (this.resize) {
30943             ifcfg.style = { resize : this.resize };
30944         }
30945         
30946         var iframe = this.owner.wrap.createChild(ifcfg, this.el); 
30947         
30948         
30949         this.iframe = iframe.dom;
30950
30951         this.assignDocWin();
30952         
30953         this.doc.designMode = 'on';
30954        
30955         this.doc.open();
30956         this.doc.write(this.getDocMarkup());
30957         this.doc.close();
30958
30959         
30960         var task = { // must defer to wait for browser to be ready
30961             run : function(){
30962                 //console.log("run task?" + this.doc.readyState);
30963                 this.assignDocWin();
30964                 if(this.doc.body || this.doc.readyState == 'complete'){
30965                     try {
30966                         this.doc.designMode="on";
30967                         
30968                     } catch (e) {
30969                         return;
30970                     }
30971                     Roo.TaskMgr.stop(task);
30972                     this.initEditor.defer(10, this);
30973                 }
30974             },
30975             interval : 10,
30976             duration: 10000,
30977             scope: this
30978         };
30979         Roo.TaskMgr.start(task);
30980
30981     },
30982
30983     // private
30984     onResize : function(w, h)
30985     {
30986          Roo.log('resize: ' +w + ',' + h );
30987         //Roo.HtmlEditorCore.superclass.onResize.apply(this, arguments);
30988         if(!this.iframe){
30989             return;
30990         }
30991         if(typeof w == 'number'){
30992             
30993             this.iframe.style.width = w + 'px';
30994         }
30995         if(typeof h == 'number'){
30996             
30997             this.iframe.style.height = h + 'px';
30998             if(this.doc){
30999                 (this.doc.body || this.doc.documentElement).style.height = (h - (this.iframePad*2)) + 'px';
31000             }
31001         }
31002         
31003     },
31004
31005     /**
31006      * Toggles the editor between standard and source edit mode.
31007      * @param {Boolean} sourceEdit (optional) True for source edit, false for standard
31008      */
31009     toggleSourceEdit : function(sourceEditMode){
31010         
31011         this.sourceEditMode = sourceEditMode === true;
31012         
31013         if(this.sourceEditMode){
31014  
31015             Roo.get(this.iframe).addClass(['x-hidden','hide', 'd-none']);     //FIXME - what's the BS styles for these
31016             
31017         }else{
31018             Roo.get(this.iframe).removeClass(['x-hidden','hide', 'd-none']);
31019             //this.iframe.className = '';
31020             this.deferFocus();
31021         }
31022         //this.setSize(this.owner.wrap.getSize());
31023         //this.fireEvent('editmodechange', this, this.sourceEditMode);
31024     },
31025
31026     
31027   
31028
31029     /**
31030      * Protected method that will not generally be called directly. If you need/want
31031      * custom HTML cleanup, this is the method you should override.
31032      * @param {String} html The HTML to be cleaned
31033      * return {String} The cleaned HTML
31034      */
31035     cleanHtml : function(html)
31036     {
31037         html = String(html);
31038         if(html.length > 5){
31039             if(Roo.isSafari){ // strip safari nonsense
31040                 html = html.replace(/\sclass="(?:Apple-style-span|khtml-block-placeholder)"/gi, '');
31041             }
31042         }
31043         if(html == '&nbsp;'){
31044             html = '';
31045         }
31046         return html;
31047     },
31048
31049     /**
31050      * HTML Editor -> Textarea
31051      * Protected method that will not generally be called directly. Syncs the contents
31052      * of the editor iframe with the textarea.
31053      */
31054     syncValue : function()
31055     {
31056         //Roo.log("HtmlEditorCore:syncValue (EDITOR->TEXT)");
31057         if(this.initialized){
31058             
31059             if (this.undoManager) {
31060                 this.undoManager.addEvent();
31061             }
31062
31063             
31064             var bd = (this.doc.body || this.doc.documentElement);
31065            
31066             
31067             var sel = this.win.getSelection();
31068             
31069             var div = document.createElement('div');
31070             div.innerHTML = bd.innerHTML;
31071             var gtx = div.getElementsByClassName('gtx-trans-icon'); // google translate - really annoying and difficult to get rid of.
31072             if (gtx.length > 0) {
31073                 var rm = gtx.item(0).parentNode;
31074                 rm.parentNode.removeChild(rm);
31075             }
31076             
31077            
31078             if (this.enableBlocks) {
31079                 new Roo.htmleditor.FilterBlock({ node : div });
31080             }
31081             
31082             var html = div.innerHTML;
31083             
31084             //?? tidy?
31085             if (this.autoClean) {
31086                 
31087                 new Roo.htmleditor.FilterAttributes({
31088                     node : div,
31089                     attrib_white : [
31090                             'href',
31091                             'src',
31092                             'name',
31093                             'align',
31094                             'colspan',
31095                             'rowspan',
31096                             'data-display',
31097                             'data-width',
31098                             'start' ,
31099                             'style',
31100                             // youtube embed.
31101                             'class',
31102                             'allowfullscreen',
31103                             'frameborder',
31104                             'width',
31105                             'height',
31106                             'alt'
31107                             ],
31108                     attrib_clean : ['href', 'src' ] 
31109                 });
31110                 
31111                 var tidy = new Roo.htmleditor.TidySerializer({
31112                     inner:  true
31113                 });
31114                 html  = tidy.serialize(div);
31115                 
31116             }
31117             
31118             
31119             if(Roo.isSafari){
31120                 var bs = bd.getAttribute('style'); // Safari puts text-align styles on the body element!
31121                 var m = bs ? bs.match(/text-align:(.*?);/i) : false;
31122                 if(m && m[1]){
31123                     html = '<div style="'+m[0]+'">' + html + '</div>';
31124                 }
31125             }
31126             html = this.cleanHtml(html);
31127             // fix up the special chars.. normaly like back quotes in word...
31128             // however we do not want to do this with chinese..
31129             html = html.replace(/[\uD800-\uDBFF][\uDC00-\uDFFF]|[\u0080-\uFFFF]/g, function(match) {
31130                 
31131                 var cc = match.charCodeAt();
31132
31133                 // Get the character value, handling surrogate pairs
31134                 if (match.length == 2) {
31135                     // It's a surrogate pair, calculate the Unicode code point
31136                     var high = match.charCodeAt(0) - 0xD800;
31137                     var low  = match.charCodeAt(1) - 0xDC00;
31138                     cc = (high * 0x400) + low + 0x10000;
31139                 }  else if (
31140                     (cc >= 0x4E00 && cc < 0xA000 ) ||
31141                     (cc >= 0x3400 && cc < 0x4E00 ) ||
31142                     (cc >= 0xf900 && cc < 0xfb00 )
31143                 ) {
31144                         return match;
31145                 }  
31146          
31147                 // No, use a numeric entity. Here we brazenly (and possibly mistakenly)
31148                 return "&#" + cc + ";";
31149                 
31150                 
31151             });
31152             
31153             
31154              
31155             if(this.owner.fireEvent('beforesync', this, html) !== false){
31156                 this.el.dom.value = html;
31157                 this.owner.fireEvent('sync', this, html);
31158             }
31159         }
31160     },
31161
31162     /**
31163      * TEXTAREA -> EDITABLE
31164      * Protected method that will not generally be called directly. Pushes the value of the textarea
31165      * into the iframe editor.
31166      */
31167     pushValue : function()
31168     {
31169         //Roo.log("HtmlEditorCore:pushValue (TEXT->EDITOR)");
31170         if(this.initialized){
31171             var v = this.el.dom.value.trim();
31172             
31173             
31174             if(this.owner.fireEvent('beforepush', this, v) !== false){
31175                 var d = (this.doc.body || this.doc.documentElement);
31176                 d.innerHTML = v;
31177                  
31178                 this.el.dom.value = d.innerHTML;
31179                 this.owner.fireEvent('push', this, v);
31180             }
31181             if (this.autoClean) {
31182                 new Roo.htmleditor.FilterParagraph({node : this.doc.body}); // paragraphs
31183                 new Roo.htmleditor.FilterSpan({node : this.doc.body}); // empty spans
31184             }
31185             if (this.enableBlocks) {
31186                 Roo.htmleditor.Block.initAll(this.doc.body);
31187             }
31188             
31189             this.updateLanguage();
31190             
31191             var lc = this.doc.body.lastChild;
31192             if (lc && lc.nodeType == 1 && lc.getAttribute("contenteditable") == "false") {
31193                 // add an extra line at the end.
31194                 this.doc.body.appendChild(this.doc.createElement('br'));
31195             }
31196             
31197             
31198         }
31199     },
31200
31201     // private
31202     deferFocus : function(){
31203         this.focus.defer(10, this);
31204     },
31205
31206     // doc'ed in Field
31207     focus : function(){
31208         if(this.win && !this.sourceEditMode){
31209             this.win.focus();
31210         }else{
31211             this.el.focus();
31212         }
31213     },
31214     
31215     assignDocWin: function()
31216     {
31217         var iframe = this.iframe;
31218         
31219          if(Roo.isIE){
31220             this.doc = iframe.contentWindow.document;
31221             this.win = iframe.contentWindow;
31222         } else {
31223 //            if (!Roo.get(this.frameId)) {
31224 //                return;
31225 //            }
31226 //            this.doc = (iframe.contentDocument || Roo.get(this.frameId).dom.document);
31227 //            this.win = Roo.get(this.frameId).dom.contentWindow;
31228             
31229             if (!Roo.get(this.frameId) && !iframe.contentDocument) {
31230                 return;
31231             }
31232             
31233             this.doc = (iframe.contentDocument || Roo.get(this.frameId).dom.document);
31234             this.win = (iframe.contentWindow || Roo.get(this.frameId).dom.contentWindow);
31235         }
31236     },
31237     
31238     // private
31239     initEditor : function(){
31240         //console.log("INIT EDITOR");
31241         this.assignDocWin();
31242         
31243         
31244         
31245         this.doc.designMode="on";
31246         this.doc.open();
31247         this.doc.write(this.getDocMarkup());
31248         this.doc.close();
31249         
31250         var dbody = (this.doc.body || this.doc.documentElement);
31251         //var ss = this.el.getStyles('font-size', 'font-family', 'background-image', 'background-repeat');
31252         // this copies styles from the containing element into thsi one..
31253         // not sure why we need all of this..
31254         //var ss = this.el.getStyles('font-size', 'background-image', 'background-repeat');
31255         
31256         //var ss = this.el.getStyles( 'background-image', 'background-repeat');
31257         //ss['background-attachment'] = 'fixed'; // w3c
31258         dbody.bgProperties = 'fixed'; // ie
31259         dbody.setAttribute("translate", "no");
31260         
31261         //Roo.DomHelper.applyStyles(dbody, ss);
31262         Roo.EventManager.on(this.doc, {
31263              
31264             'mouseup': this.onEditorEvent,
31265             'dblclick': this.onEditorEvent,
31266             'click': this.onEditorEvent,
31267             'keyup': this.onEditorEvent,
31268             
31269             buffer:100,
31270             scope: this
31271         });
31272         Roo.EventManager.on(this.doc, {
31273             'paste': this.onPasteEvent,
31274             scope : this
31275         });
31276         if(Roo.isGecko){
31277             Roo.EventManager.on(this.doc, 'keypress', this.mozKeyPress, this);
31278         }
31279         //??? needed???
31280         if(Roo.isIE || Roo.isSafari || Roo.isOpera){
31281             Roo.EventManager.on(this.doc, 'keydown', this.fixKeys, this);
31282         }
31283         this.initialized = true;
31284
31285         
31286         // initialize special key events - enter
31287         new Roo.htmleditor.KeyEnter({core : this});
31288         
31289          
31290         
31291         this.owner.fireEvent('initialize', this);
31292         this.pushValue();
31293     },
31294     // this is to prevent a href clicks resulting in a redirect?
31295    
31296     onPasteEvent : function(e,v)
31297     {
31298         // I think we better assume paste is going to be a dirty load of rubish from word..
31299         
31300         // even pasting into a 'email version' of this widget will have to clean up that mess.
31301         var cd = (e.browserEvent.clipboardData || window.clipboardData);
31302         
31303         // check what type of paste - if it's an image, then handle it differently.
31304         if (cd.files && cd.files.length > 0) {
31305             // pasting images?
31306             var urlAPI = (window.createObjectURL && window) || 
31307                 (window.URL && URL.revokeObjectURL && URL) || 
31308                 (window.webkitURL && webkitURL);
31309     
31310             var url = urlAPI.createObjectURL( cd.files[0]);
31311             this.insertAtCursor('<img src=" + url + ">');
31312             return false;
31313         }
31314         if (cd.types.indexOf('text/html') < 0 ) {
31315             return false;
31316         }
31317         var images = [];
31318         var html = cd.getData('text/html'); // clipboard event
31319         if (cd.types.indexOf('text/rtf') > -1) {
31320             var parser = new Roo.rtf.Parser(cd.getData('text/rtf'));
31321             images = parser.doc ? parser.doc.getElementsByType('pict') : [];
31322         }
31323         //Roo.log(images);
31324         //Roo.log(imgs);
31325         // fixme..
31326         images = images.filter(function(g) { return !g.path.match(/^rtf\/(head|pgdsctbl|listtable|footerf)/); }) // ignore headers/footers etc.
31327                        .map(function(g) { return g.toDataURL(); })
31328                        .filter(function(g) { return g != 'about:blank'; });
31329         
31330         //Roo.log(html);
31331         html = this.cleanWordChars(html);
31332         
31333         var d = (new DOMParser().parseFromString(html, 'text/html')).body;
31334         
31335         
31336         var sn = this.getParentElement();
31337         // check if d contains a table, and prevent nesting??
31338         //Roo.log(d.getElementsByTagName('table'));
31339         //Roo.log(sn);
31340         //Roo.log(sn.closest('table'));
31341         if (d.getElementsByTagName('table').length && sn && sn.closest('table')) {
31342             e.preventDefault();
31343             this.insertAtCursor("You can not nest tables");
31344             //Roo.log("prevent?"); // fixme - 
31345             return false;
31346         }
31347         
31348         
31349         
31350         if (images.length > 0) {
31351             // replace all v:imagedata - with img.
31352             var ar = Array.from(d.getElementsByTagName('v:imagedata'));
31353             Roo.each(ar, function(node) {
31354                 node.parentNode.insertBefore(d.ownerDocument.createElement('img'), node );
31355                 node.parentNode.removeChild(node);
31356             });
31357             
31358             
31359             Roo.each(d.getElementsByTagName('img'), function(img, i) {
31360                 img.setAttribute('src', images[i]);
31361             });
31362         }
31363         if (this.autoClean) {
31364             new Roo.htmleditor.FilterWord({ node : d });
31365             
31366             new Roo.htmleditor.FilterStyleToTag({ node : d });
31367             new Roo.htmleditor.FilterAttributes({
31368                 node : d,
31369                 attrib_white : ['href', 'src', 'name', 'align', 'colspan', 'rowspan', 'data-display', 'data-width', 'start'],
31370                 attrib_clean : ['href', 'src' ] 
31371             });
31372             new Roo.htmleditor.FilterBlack({ node : d, tag : this.black});
31373             // should be fonts..
31374             new Roo.htmleditor.FilterKeepChildren({node : d, tag : [ 'FONT', ':' ]} );
31375             new Roo.htmleditor.FilterParagraph({ node : d });
31376             new Roo.htmleditor.FilterSpan({ node : d });
31377             new Roo.htmleditor.FilterLongBr({ node : d });
31378             new Roo.htmleditor.FilterComment({ node : d });
31379             
31380             
31381         }
31382         if (this.enableBlocks) {
31383                 
31384             Array.from(d.getElementsByTagName('img')).forEach(function(img) {
31385                 if (img.closest('figure')) { // assume!! that it's aready
31386                     return;
31387                 }
31388                 var fig  = new Roo.htmleditor.BlockFigure({
31389                     image_src  : img.src
31390                 });
31391                 fig.updateElement(img); // replace it..
31392                 
31393             });
31394         }
31395         
31396         
31397         this.insertAtCursor(d.innerHTML.replace(/&nbsp;/g,' '));
31398         if (this.enableBlocks) {
31399             Roo.htmleditor.Block.initAll(this.doc.body);
31400         }
31401          
31402         
31403         e.preventDefault();
31404         this.owner.fireEvent('paste', this);
31405         return false;
31406         // default behaveiour should be our local cleanup paste? (optional?)
31407         // for simple editor - we want to hammer the paste and get rid of everything... - so over-rideable..
31408         //this.owner.fireEvent('paste', e, v);
31409     },
31410     // private
31411     onDestroy : function(){
31412         
31413         
31414         
31415         if(this.rendered){
31416             
31417             //for (var i =0; i < this.toolbars.length;i++) {
31418             //    // fixme - ask toolbars for heights?
31419             //    this.toolbars[i].onDestroy();
31420            // }
31421             
31422             //this.wrap.dom.innerHTML = '';
31423             //this.wrap.remove();
31424         }
31425     },
31426
31427     // private
31428     onFirstFocus : function(){
31429         
31430         this.assignDocWin();
31431         this.undoManager = new Roo.lib.UndoManager(100,(this.doc.body || this.doc.documentElement));
31432         
31433         this.activated = true;
31434          
31435     
31436         if(Roo.isGecko){ // prevent silly gecko errors
31437             this.win.focus();
31438             var s = this.win.getSelection();
31439             if(!s.focusNode || s.focusNode.nodeType != 3){
31440                 var r = s.getRangeAt(0);
31441                 r.selectNodeContents((this.doc.body || this.doc.documentElement));
31442                 r.collapse(true);
31443                 this.deferFocus();
31444             }
31445             try{
31446                 this.execCmd('useCSS', true);
31447                 this.execCmd('styleWithCSS', false);
31448             }catch(e){}
31449         }
31450         this.owner.fireEvent('activate', this);
31451     },
31452
31453     // private
31454     adjustFont: function(btn){
31455         var adjust = btn.cmd == 'increasefontsize' ? 1 : -1;
31456         //if(Roo.isSafari){ // safari
31457         //    adjust *= 2;
31458        // }
31459         var v = parseInt(this.doc.queryCommandValue('FontSize')|| 3, 10);
31460         if(Roo.isSafari){ // safari
31461             var sm = { 10 : 1, 13: 2, 16:3, 18:4, 24: 5, 32:6, 48: 7 };
31462             v =  (v < 10) ? 10 : v;
31463             v =  (v > 48) ? 48 : v;
31464             v = typeof(sm[v]) == 'undefined' ? 1 : sm[v];
31465             
31466         }
31467         
31468         
31469         v = Math.max(1, v+adjust);
31470         
31471         this.execCmd('FontSize', v  );
31472     },
31473
31474     onEditorEvent : function(e)
31475     {
31476          
31477         
31478         if (e && (e.ctrlKey || e.metaKey) && e.keyCode === 90) {
31479             return; // we do not handle this.. (undo manager does..)
31480         }
31481         // in theory this detects if the last element is not a br, then we try and do that.
31482         // its so clicking in space at bottom triggers adding a br and moving the cursor.
31483         if (e &&
31484             e.target.nodeName == 'BODY' &&
31485             e.type == "mouseup" &&
31486             this.doc.body.lastChild
31487            ) {
31488             var lc = this.doc.body.lastChild;
31489             // gtx-trans is google translate plugin adding crap.
31490             while ((lc.nodeType == 3 && lc.nodeValue == '') || lc.id == 'gtx-trans') {
31491                 lc = lc.previousSibling;
31492             }
31493             if (lc.nodeType == 1 && lc.nodeName != 'BR') {
31494             // if last element is <BR> - then dont do anything.
31495             
31496                 var ns = this.doc.createElement('br');
31497                 this.doc.body.appendChild(ns);
31498                 range = this.doc.createRange();
31499                 range.setStartAfter(ns);
31500                 range.collapse(true);
31501                 var sel = this.win.getSelection();
31502                 sel.removeAllRanges();
31503                 sel.addRange(range);
31504             }
31505         }
31506         
31507         
31508         
31509         this.fireEditorEvent(e);
31510       //  this.updateToolbar();
31511         this.syncValue(); //we can not sync so often.. sync cleans, so this breaks stuff
31512     },
31513     
31514     fireEditorEvent: function(e)
31515     {
31516         this.owner.fireEvent('editorevent', this, e);
31517     },
31518
31519     insertTag : function(tg)
31520     {
31521         // could be a bit smarter... -> wrap the current selected tRoo..
31522         if (tg.toLowerCase() == 'span' ||
31523             tg.toLowerCase() == 'code' ||
31524             tg.toLowerCase() == 'sup' ||
31525             tg.toLowerCase() == 'sub' 
31526             ) {
31527             
31528             range = this.createRange(this.getSelection());
31529             var wrappingNode = this.doc.createElement(tg.toLowerCase());
31530             wrappingNode.appendChild(range.extractContents());
31531             range.insertNode(wrappingNode);
31532
31533             return;
31534             
31535             
31536             
31537         }
31538         this.execCmd("formatblock",   tg);
31539         this.undoManager.addEvent(); 
31540     },
31541     
31542     insertText : function(txt)
31543     {
31544         
31545         
31546         var range = this.createRange();
31547         range.deleteContents();
31548                //alert(Sender.getAttribute('label'));
31549                
31550         range.insertNode(this.doc.createTextNode(txt));
31551         this.undoManager.addEvent();
31552     } ,
31553     
31554      
31555
31556     /**
31557      * Executes a Midas editor command on the editor document and performs necessary focus and
31558      * toolbar updates. <b>This should only be called after the editor is initialized.</b>
31559      * @param {String} cmd The Midas command
31560      * @param {String/Boolean} value (optional) The value to pass to the command (defaults to null)
31561      */
31562     relayCmd : function(cmd, value)
31563     {
31564         
31565         switch (cmd) {
31566             case 'justifyleft':
31567             case 'justifyright':
31568             case 'justifycenter':
31569                 // if we are in a cell, then we will adjust the
31570                 var n = this.getParentElement();
31571                 var td = n.closest('td');
31572                 if (td) {
31573                     var bl = Roo.htmleditor.Block.factory(td);
31574                     bl.textAlign = cmd.replace('justify','');
31575                     bl.updateElement();
31576                     this.owner.fireEvent('editorevent', this);
31577                     return;
31578                 }
31579                 this.execCmd('styleWithCSS', true); // 
31580                 break;
31581             case 'bold':
31582             case 'italic':
31583                 // if there is no selection, then we insert, and set the curson inside it..
31584                 this.execCmd('styleWithCSS', false); 
31585                 break;
31586                 
31587         
31588             default:
31589                 break;
31590         }
31591         
31592         
31593         this.win.focus();
31594         this.execCmd(cmd, value);
31595         this.owner.fireEvent('editorevent', this);
31596         //this.updateToolbar();
31597         this.owner.deferFocus();
31598     },
31599
31600     /**
31601      * Executes a Midas editor command directly on the editor document.
31602      * For visual commands, you should use {@link #relayCmd} instead.
31603      * <b>This should only be called after the editor is initialized.</b>
31604      * @param {String} cmd The Midas command
31605      * @param {String/Boolean} value (optional) The value to pass to the command (defaults to null)
31606      */
31607     execCmd : function(cmd, value){
31608         this.doc.execCommand(cmd, false, value === undefined ? null : value);
31609         this.syncValue();
31610     },
31611  
31612  
31613    
31614     /**
31615      * Inserts the passed text at the current cursor position. Note: the editor must be initialized and activated
31616      * to insert tRoo.
31617      * @param {String} text | dom node.. 
31618      */
31619     insertAtCursor : function(text)
31620     {
31621         
31622         if(!this.activated){
31623             return;
31624         }
31625          
31626         if(Roo.isGecko || Roo.isOpera || Roo.isSafari){
31627             this.win.focus();
31628             
31629             
31630             // from jquery ui (MIT licenced)
31631             var range, node;
31632             var win = this.win;
31633             
31634             if (win.getSelection && win.getSelection().getRangeAt) {
31635                 
31636                 // delete the existing?
31637                 
31638                 this.createRange(this.getSelection()).deleteContents();
31639                 range = win.getSelection().getRangeAt(0);
31640                 node = typeof(text) == 'string' ? range.createContextualFragment(text) : text;
31641                 range.insertNode(node);
31642                 range = range.cloneRange();
31643                 range.collapse(false);
31644                  
31645                 win.getSelection().removeAllRanges();
31646                 win.getSelection().addRange(range);
31647                 
31648                 
31649                 
31650             } else if (win.document.selection && win.document.selection.createRange) {
31651                 // no firefox support
31652                 var txt = typeof(text) == 'string' ? text : text.outerHTML;
31653                 win.document.selection.createRange().pasteHTML(txt);
31654             
31655             } else {
31656                 // no firefox support
31657                 var txt = typeof(text) == 'string' ? text : text.outerHTML;
31658                 this.execCmd('InsertHTML', txt);
31659             } 
31660             this.syncValue();
31661             
31662             this.deferFocus();
31663         }
31664     },
31665  // private
31666     mozKeyPress : function(e){
31667         if(e.ctrlKey){
31668             var c = e.getCharCode(), cmd;
31669           
31670             if(c > 0){
31671                 c = String.fromCharCode(c).toLowerCase();
31672                 switch(c){
31673                     case 'b':
31674                         cmd = 'bold';
31675                         break;
31676                     case 'i':
31677                         cmd = 'italic';
31678                         break;
31679                     
31680                     case 'u':
31681                         cmd = 'underline';
31682                         break;
31683                     
31684                     //case 'v':
31685                       //  this.cleanUpPaste.defer(100, this);
31686                       //  return;
31687                         
31688                 }
31689                 if(cmd){
31690                     
31691                     this.relayCmd(cmd);
31692                     //this.win.focus();
31693                     //this.execCmd(cmd);
31694                     //this.deferFocus();
31695                     e.preventDefault();
31696                 }
31697                 
31698             }
31699         }
31700     },
31701
31702     // private
31703     fixKeys : function(){ // load time branching for fastest keydown performance
31704         
31705         
31706         if(Roo.isIE){
31707             return function(e){
31708                 var k = e.getKey(), r;
31709                 if(k == e.TAB){
31710                     e.stopEvent();
31711                     r = this.doc.selection.createRange();
31712                     if(r){
31713                         r.collapse(true);
31714                         r.pasteHTML('&#160;&#160;&#160;&#160;');
31715                         this.deferFocus();
31716                     }
31717                     return;
31718                 }
31719                 /// this is handled by Roo.htmleditor.KeyEnter
31720                  /*
31721                 if(k == e.ENTER){
31722                     r = this.doc.selection.createRange();
31723                     if(r){
31724                         var target = r.parentElement();
31725                         if(!target || target.tagName.toLowerCase() != 'li'){
31726                             e.stopEvent();
31727                             r.pasteHTML('<br/>');
31728                             r.collapse(false);
31729                             r.select();
31730                         }
31731                     }
31732                 }
31733                 */
31734                 //if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
31735                 //    this.cleanUpPaste.defer(100, this);
31736                 //    return;
31737                 //}
31738                 
31739                 
31740             };
31741         }else if(Roo.isOpera){
31742             return function(e){
31743                 var k = e.getKey();
31744                 if(k == e.TAB){
31745                     e.stopEvent();
31746                     this.win.focus();
31747                     this.execCmd('InsertHTML','&#160;&#160;&#160;&#160;');
31748                     this.deferFocus();
31749                 }
31750                
31751                 //if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
31752                 //    this.cleanUpPaste.defer(100, this);
31753                  //   return;
31754                 //}
31755                 
31756             };
31757         }else if(Roo.isSafari){
31758             return function(e){
31759                 var k = e.getKey();
31760                 
31761                 if(k == e.TAB){
31762                     e.stopEvent();
31763                     this.execCmd('InsertText','\t');
31764                     this.deferFocus();
31765                     return;
31766                 }
31767                  this.mozKeyPress(e);
31768                 
31769                //if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
31770                  //   this.cleanUpPaste.defer(100, this);
31771                  //   return;
31772                // }
31773                 
31774              };
31775         }
31776     }(),
31777     
31778     getAllAncestors: function()
31779     {
31780         var p = this.getSelectedNode();
31781         var a = [];
31782         if (!p) {
31783             a.push(p); // push blank onto stack..
31784             p = this.getParentElement();
31785         }
31786         
31787         
31788         while (p && (p.nodeType == 1) && (p.tagName.toLowerCase() != 'body')) {
31789             a.push(p);
31790             p = p.parentNode;
31791         }
31792         a.push(this.doc.body);
31793         return a;
31794     },
31795     lastSel : false,
31796     lastSelNode : false,
31797     
31798     
31799     getSelection : function() 
31800     {
31801         this.assignDocWin();
31802         return Roo.lib.Selection.wrap(Roo.isIE ? this.doc.selection : this.win.getSelection(), this.doc);
31803     },
31804     /**
31805      * Select a dom node
31806      * @param {DomElement} node the node to select
31807      */
31808     selectNode : function(node, collapse)
31809     {
31810         var nodeRange = node.ownerDocument.createRange();
31811         try {
31812             nodeRange.selectNode(node);
31813         } catch (e) {
31814             nodeRange.selectNodeContents(node);
31815         }
31816         if (collapse === true) {
31817             nodeRange.collapse(true);
31818         }
31819         //
31820         var s = this.win.getSelection();
31821         s.removeAllRanges();
31822         s.addRange(nodeRange);
31823     },
31824     
31825     getSelectedNode: function() 
31826     {
31827         // this may only work on Gecko!!!
31828         
31829         // should we cache this!!!!
31830         
31831          
31832          
31833         var range = this.createRange(this.getSelection()).cloneRange();
31834         
31835         if (Roo.isIE) {
31836             var parent = range.parentElement();
31837             while (true) {
31838                 var testRange = range.duplicate();
31839                 testRange.moveToElementText(parent);
31840                 if (testRange.inRange(range)) {
31841                     break;
31842                 }
31843                 if ((parent.nodeType != 1) || (parent.tagName.toLowerCase() == 'body')) {
31844                     break;
31845                 }
31846                 parent = parent.parentElement;
31847             }
31848             return parent;
31849         }
31850         
31851         // is ancestor a text element.
31852         var ac =  range.commonAncestorContainer;
31853         if (ac.nodeType == 3) {
31854             ac = ac.parentNode;
31855         }
31856         
31857         var ar = ac.childNodes;
31858          
31859         var nodes = [];
31860         var other_nodes = [];
31861         var has_other_nodes = false;
31862         for (var i=0;i<ar.length;i++) {
31863             if ((ar[i].nodeType == 3) && (!ar[i].data.length)) { // empty text ? 
31864                 continue;
31865             }
31866             // fullly contained node.
31867             
31868             if (this.rangeIntersectsNode(range,ar[i]) && this.rangeCompareNode(range,ar[i]) == 3) {
31869                 nodes.push(ar[i]);
31870                 continue;
31871             }
31872             
31873             // probably selected..
31874             if ((ar[i].nodeType == 1) && this.rangeIntersectsNode(range,ar[i]) && (this.rangeCompareNode(range,ar[i]) > 0)) {
31875                 other_nodes.push(ar[i]);
31876                 continue;
31877             }
31878             // outer..
31879             if (!this.rangeIntersectsNode(range,ar[i])|| (this.rangeCompareNode(range,ar[i]) == 0))  {
31880                 continue;
31881             }
31882             
31883             
31884             has_other_nodes = true;
31885         }
31886         if (!nodes.length && other_nodes.length) {
31887             nodes= other_nodes;
31888         }
31889         if (has_other_nodes || !nodes.length || (nodes.length > 1)) {
31890             return false;
31891         }
31892         
31893         return nodes[0];
31894     },
31895     
31896     
31897     createRange: function(sel)
31898     {
31899         // this has strange effects when using with 
31900         // top toolbar - not sure if it's a great idea.
31901         //this.editor.contentWindow.focus();
31902         if (typeof sel != "undefined") {
31903             try {
31904                 return sel.getRangeAt ? sel.getRangeAt(0) : sel.createRange();
31905             } catch(e) {
31906                 return this.doc.createRange();
31907             }
31908         } else {
31909             return this.doc.createRange();
31910         }
31911     },
31912     getParentElement: function()
31913     {
31914         
31915         this.assignDocWin();
31916         var sel = Roo.isIE ? this.doc.selection : this.win.getSelection();
31917         
31918         var range = this.createRange(sel);
31919          
31920         try {
31921             var p = range.commonAncestorContainer;
31922             while (p.nodeType == 3) { // text node
31923                 p = p.parentNode;
31924             }
31925             return p;
31926         } catch (e) {
31927             return null;
31928         }
31929     
31930     },
31931     /***
31932      *
31933      * Range intersection.. the hard stuff...
31934      *  '-1' = before
31935      *  '0' = hits..
31936      *  '1' = after.
31937      *         [ -- selected range --- ]
31938      *   [fail]                        [fail]
31939      *
31940      *    basically..
31941      *      if end is before start or  hits it. fail.
31942      *      if start is after end or hits it fail.
31943      *
31944      *   if either hits (but other is outside. - then it's not 
31945      *   
31946      *    
31947      **/
31948     
31949     
31950     // @see http://www.thismuchiknow.co.uk/?p=64.
31951     rangeIntersectsNode : function(range, node)
31952     {
31953         var nodeRange = node.ownerDocument.createRange();
31954         try {
31955             nodeRange.selectNode(node);
31956         } catch (e) {
31957             nodeRange.selectNodeContents(node);
31958         }
31959     
31960         var rangeStartRange = range.cloneRange();
31961         rangeStartRange.collapse(true);
31962     
31963         var rangeEndRange = range.cloneRange();
31964         rangeEndRange.collapse(false);
31965     
31966         var nodeStartRange = nodeRange.cloneRange();
31967         nodeStartRange.collapse(true);
31968     
31969         var nodeEndRange = nodeRange.cloneRange();
31970         nodeEndRange.collapse(false);
31971     
31972         return rangeStartRange.compareBoundaryPoints(
31973                  Range.START_TO_START, nodeEndRange) == -1 &&
31974                rangeEndRange.compareBoundaryPoints(
31975                  Range.START_TO_START, nodeStartRange) == 1;
31976         
31977          
31978     },
31979     rangeCompareNode : function(range, node)
31980     {
31981         var nodeRange = node.ownerDocument.createRange();
31982         try {
31983             nodeRange.selectNode(node);
31984         } catch (e) {
31985             nodeRange.selectNodeContents(node);
31986         }
31987         
31988         
31989         range.collapse(true);
31990     
31991         nodeRange.collapse(true);
31992      
31993         var ss = range.compareBoundaryPoints( Range.START_TO_START, nodeRange);
31994         var ee = range.compareBoundaryPoints(  Range.END_TO_END, nodeRange);
31995          
31996         //Roo.log(node.tagName + ': ss='+ss +', ee='+ee)
31997         
31998         var nodeIsBefore   =  ss == 1;
31999         var nodeIsAfter    = ee == -1;
32000         
32001         if (nodeIsBefore && nodeIsAfter) {
32002             return 0; // outer
32003         }
32004         if (!nodeIsBefore && nodeIsAfter) {
32005             return 1; //right trailed.
32006         }
32007         
32008         if (nodeIsBefore && !nodeIsAfter) {
32009             return 2;  // left trailed.
32010         }
32011         // fully contined.
32012         return 3;
32013     },
32014  
32015     cleanWordChars : function(input) {// change the chars to hex code
32016         
32017        var swapCodes  = [ 
32018             [    8211, "&#8211;" ], 
32019             [    8212, "&#8212;" ], 
32020             [    8216,  "'" ],  
32021             [    8217, "'" ],  
32022             [    8220, '"' ],  
32023             [    8221, '"' ],  
32024             [    8226, "*" ],  
32025             [    8230, "..." ]
32026         ]; 
32027         var output = input;
32028         Roo.each(swapCodes, function(sw) { 
32029             var swapper = new RegExp("\\u" + sw[0].toString(16), "g"); // hex codes
32030             
32031             output = output.replace(swapper, sw[1]);
32032         });
32033         
32034         return output;
32035     },
32036     
32037      
32038     
32039         
32040     
32041     cleanUpChild : function (node)
32042     {
32043         
32044         new Roo.htmleditor.FilterComment({node : node});
32045         new Roo.htmleditor.FilterAttributes({
32046                 node : node,
32047                 attrib_black : this.ablack,
32048                 attrib_clean : this.aclean,
32049                 style_white : this.cwhite,
32050                 style_black : this.cblack
32051         });
32052         new Roo.htmleditor.FilterBlack({ node : node, tag : this.black});
32053         new Roo.htmleditor.FilterKeepChildren({node : node, tag : this.tag_remove} );
32054          
32055         
32056     },
32057     
32058     /**
32059      * Clean up MS wordisms...
32060      * @deprecated - use filter directly
32061      */
32062     cleanWord : function(node)
32063     {
32064         new Roo.htmleditor.FilterWord({ node : node ? node : this.doc.body });
32065         new Roo.htmleditor.FilterKeepChildren({node : node ? node : this.doc.body, tag : [ 'FONT', ':' ]} );
32066         
32067     },
32068    
32069     
32070     /**
32071
32072      * @deprecated - use filters
32073      */
32074     cleanTableWidths : function(node)
32075     {
32076         new Roo.htmleditor.FilterTableWidth({ node : node ? node : this.doc.body});
32077         
32078  
32079     },
32080     
32081      
32082         
32083     applyBlacklists : function()
32084     {
32085         var w = typeof(this.owner.white) != 'undefined' && this.owner.white ? this.owner.white  : [];
32086         var b = typeof(this.owner.black) != 'undefined' && this.owner.black ? this.owner.black :  [];
32087         
32088         this.aclean = typeof(this.owner.aclean) != 'undefined' && this.owner.aclean ? this.owner.aclean :  Roo.HtmlEditorCore.aclean;
32089         this.ablack = typeof(this.owner.ablack) != 'undefined' && this.owner.ablack ? this.owner.ablack :  Roo.HtmlEditorCore.ablack;
32090         this.tag_remove = typeof(this.owner.tag_remove) != 'undefined' && this.owner.tag_remove ? this.owner.tag_remove :  Roo.HtmlEditorCore.tag_remove;
32091         
32092         this.white = [];
32093         this.black = [];
32094         Roo.each(Roo.HtmlEditorCore.white, function(tag) {
32095             if (b.indexOf(tag) > -1) {
32096                 return;
32097             }
32098             this.white.push(tag);
32099             
32100         }, this);
32101         
32102         Roo.each(w, function(tag) {
32103             if (b.indexOf(tag) > -1) {
32104                 return;
32105             }
32106             if (this.white.indexOf(tag) > -1) {
32107                 return;
32108             }
32109             this.white.push(tag);
32110             
32111         }, this);
32112         
32113         
32114         Roo.each(Roo.HtmlEditorCore.black, function(tag) {
32115             if (w.indexOf(tag) > -1) {
32116                 return;
32117             }
32118             this.black.push(tag);
32119             
32120         }, this);
32121         
32122         Roo.each(b, function(tag) {
32123             if (w.indexOf(tag) > -1) {
32124                 return;
32125             }
32126             if (this.black.indexOf(tag) > -1) {
32127                 return;
32128             }
32129             this.black.push(tag);
32130             
32131         }, this);
32132         
32133         
32134         w = typeof(this.owner.cwhite) != 'undefined' && this.owner.cwhite ? this.owner.cwhite  : [];
32135         b = typeof(this.owner.cblack) != 'undefined' && this.owner.cblack ? this.owner.cblack :  [];
32136         
32137         this.cwhite = [];
32138         this.cblack = [];
32139         Roo.each(Roo.HtmlEditorCore.cwhite, function(tag) {
32140             if (b.indexOf(tag) > -1) {
32141                 return;
32142             }
32143             this.cwhite.push(tag);
32144             
32145         }, this);
32146         
32147         Roo.each(w, function(tag) {
32148             if (b.indexOf(tag) > -1) {
32149                 return;
32150             }
32151             if (this.cwhite.indexOf(tag) > -1) {
32152                 return;
32153             }
32154             this.cwhite.push(tag);
32155             
32156         }, this);
32157         
32158         
32159         Roo.each(Roo.HtmlEditorCore.cblack, function(tag) {
32160             if (w.indexOf(tag) > -1) {
32161                 return;
32162             }
32163             this.cblack.push(tag);
32164             
32165         }, this);
32166         
32167         Roo.each(b, function(tag) {
32168             if (w.indexOf(tag) > -1) {
32169                 return;
32170             }
32171             if (this.cblack.indexOf(tag) > -1) {
32172                 return;
32173             }
32174             this.cblack.push(tag);
32175             
32176         }, this);
32177     },
32178     
32179     setStylesheets : function(stylesheets)
32180     {
32181         if(typeof(stylesheets) == 'string'){
32182             Roo.get(this.iframe.contentDocument.head).createChild({
32183                 tag : 'link',
32184                 rel : 'stylesheet',
32185                 type : 'text/css',
32186                 href : stylesheets
32187             });
32188             
32189             return;
32190         }
32191         var _this = this;
32192      
32193         Roo.each(stylesheets, function(s) {
32194             if(!s.length){
32195                 return;
32196             }
32197             
32198             Roo.get(_this.iframe.contentDocument.head).createChild({
32199                 tag : 'link',
32200                 rel : 'stylesheet',
32201                 type : 'text/css',
32202                 href : s
32203             });
32204         });
32205
32206         
32207     },
32208     
32209     
32210     updateLanguage : function()
32211     {
32212         if (!this.iframe || !this.iframe.contentDocument) {
32213             return;
32214         }
32215         Roo.get(this.iframe.contentDocument.body).attr("lang", this.language);
32216     },
32217     
32218     
32219     removeStylesheets : function()
32220     {
32221         var _this = this;
32222         
32223         Roo.each(Roo.get(_this.iframe.contentDocument.head).select('link[rel=stylesheet]', true).elements, function(s){
32224             s.remove();
32225         });
32226     },
32227     
32228     setStyle : function(style)
32229     {
32230         Roo.get(this.iframe.contentDocument.head).createChild({
32231             tag : 'style',
32232             type : 'text/css',
32233             html : style
32234         });
32235
32236         return;
32237     }
32238     
32239     // hide stuff that is not compatible
32240     /**
32241      * @event blur
32242      * @hide
32243      */
32244     /**
32245      * @event change
32246      * @hide
32247      */
32248     /**
32249      * @event focus
32250      * @hide
32251      */
32252     /**
32253      * @event specialkey
32254      * @hide
32255      */
32256     /**
32257      * @cfg {String} fieldClass @hide
32258      */
32259     /**
32260      * @cfg {String} focusClass @hide
32261      */
32262     /**
32263      * @cfg {String} autoCreate @hide
32264      */
32265     /**
32266      * @cfg {String} inputType @hide
32267      */
32268     /**
32269      * @cfg {String} invalidClass @hide
32270      */
32271     /**
32272      * @cfg {String} invalidText @hide
32273      */
32274     /**
32275      * @cfg {String} msgFx @hide
32276      */
32277     /**
32278      * @cfg {String} validateOnBlur @hide
32279      */
32280 });
32281
32282 Roo.HtmlEditorCore.white = [
32283         'AREA', 'BR', 'IMG', 'INPUT', 'HR', 'WBR',
32284         
32285        'ADDRESS', 'BLOCKQUOTE', 'CENTER', 'DD',      'DIR',       'DIV', 
32286        'DL',      'DT',         'H1',     'H2',      'H3',        'H4', 
32287        'H5',      'H6',         'HR',     'ISINDEX', 'LISTING',   'MARQUEE', 
32288        'MENU',    'MULTICOL',   'OL',     'P',       'PLAINTEXT', 'PRE', 
32289        'TABLE',   'UL',         'XMP', 
32290        
32291        'CAPTION', 'COL', 'COLGROUP', 'TBODY', 'TD', 'TFOOT', 'TH', 
32292       'THEAD',   'TR', 
32293      
32294       'DIR', 'MENU', 'OL', 'UL', 'DL',
32295        
32296       'EMBED',  'OBJECT'
32297 ];
32298
32299
32300 Roo.HtmlEditorCore.black = [
32301     //    'embed',  'object', // enable - backend responsiblity to clean thiese
32302         'APPLET', // 
32303         'BASE',   'BASEFONT', 'BGSOUND', 'BLINK',  'BODY', 
32304         'FRAME',  'FRAMESET', 'HEAD',    'HTML',   'ILAYER', 
32305         'IFRAME', 'LAYER',  'LINK',     'META',    'OBJECT',   
32306         'SCRIPT', 'STYLE' ,'TITLE',  'XML',
32307         //'FONT' // CLEAN LATER..
32308         'COLGROUP', 'COL'   // messy tables.
32309         
32310         
32311 ];
32312 Roo.HtmlEditorCore.clean = [ // ?? needed???
32313      'SCRIPT', 'STYLE', 'TITLE', 'XML'
32314 ];
32315 Roo.HtmlEditorCore.tag_remove = [
32316     'FONT', 'TBODY'  
32317 ];
32318 // attributes..
32319
32320 Roo.HtmlEditorCore.ablack = [
32321     'on'
32322 ];
32323     
32324 Roo.HtmlEditorCore.aclean = [ 
32325     'action', 'background', 'codebase', 'dynsrc', 'href', 'lowsrc' 
32326 ];
32327
32328 // protocols..
32329 Roo.HtmlEditorCore.pwhite= [
32330         'http',  'https',  'mailto'
32331 ];
32332
32333 // white listed style attributes.
32334 Roo.HtmlEditorCore.cwhite= [
32335       //  'text-align', /// default is to allow most things..
32336       
32337          
32338 //        'font-size'//??
32339 ];
32340
32341 // black listed style attributes.
32342 Roo.HtmlEditorCore.cblack= [
32343       //  'font-size' -- this can be set by the project 
32344 ];
32345
32346
32347
32348
32349     /*
32350  * - LGPL
32351  *
32352  * HtmlEditor
32353  * 
32354  */
32355
32356 /**
32357  * @class Roo.bootstrap.form.HtmlEditor
32358  * @extends Roo.bootstrap.form.TextArea
32359  * Bootstrap HtmlEditor class
32360
32361  * @constructor
32362  * Create a new HtmlEditor
32363  * @param {Object} config The config object
32364  */
32365
32366 Roo.bootstrap.form.HtmlEditor = function(config){
32367     Roo.bootstrap.form.HtmlEditor.superclass.constructor.call(this, config);
32368     if (!this.toolbars) {
32369         this.toolbars = [];
32370     }
32371     
32372     this.editorcore = new Roo.HtmlEditorCore(Roo.apply({ owner : this} , config));
32373     this.addEvents({
32374             /**
32375              * @event initialize
32376              * Fires when the editor is fully initialized (including the iframe)
32377              * @param {HtmlEditor} this
32378              */
32379             initialize: true,
32380             /**
32381              * @event activate
32382              * Fires when the editor is first receives the focus. Any insertion must wait
32383              * until after this event.
32384              * @param {HtmlEditor} this
32385              */
32386             activate: true,
32387              /**
32388              * @event beforesync
32389              * Fires before the textarea is updated with content from the editor iframe. Return false
32390              * to cancel the sync.
32391              * @param {HtmlEditor} this
32392              * @param {String} html
32393              */
32394             beforesync: true,
32395              /**
32396              * @event beforepush
32397              * Fires before the iframe editor is updated with content from the textarea. Return false
32398              * to cancel the push.
32399              * @param {HtmlEditor} this
32400              * @param {String} html
32401              */
32402             beforepush: true,
32403              /**
32404              * @event sync
32405              * Fires when the textarea is updated with content from the editor iframe.
32406              * @param {HtmlEditor} this
32407              * @param {String} html
32408              */
32409             sync: true,
32410              /**
32411              * @event push
32412              * Fires when the iframe editor is updated with content from the textarea.
32413              * @param {HtmlEditor} this
32414              * @param {String} html
32415              */
32416             push: true,
32417              /**
32418              * @event editmodechange
32419              * Fires when the editor switches edit modes
32420              * @param {HtmlEditor} this
32421              * @param {Boolean} sourceEdit True if source edit, false if standard editing.
32422              */
32423             editmodechange: true,
32424             /**
32425              * @event editorevent
32426              * Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks.
32427              * @param {HtmlEditor} this
32428              */
32429             editorevent: true,
32430             /**
32431              * @event firstfocus
32432              * Fires when on first focus - needed by toolbars..
32433              * @param {HtmlEditor} this
32434              */
32435             firstfocus: true,
32436             /**
32437              * @event autosave
32438              * Auto save the htmlEditor value as a file into Events
32439              * @param {HtmlEditor} this
32440              */
32441             autosave: true,
32442             /**
32443              * @event savedpreview
32444              * preview the saved version of htmlEditor
32445              * @param {HtmlEditor} this
32446              */
32447             savedpreview: true
32448         });
32449 };
32450
32451
32452 Roo.extend(Roo.bootstrap.form.HtmlEditor, Roo.bootstrap.form.TextArea,  {
32453     
32454     
32455       /**
32456      * @cfg {Array} toolbars Array of toolbars. - defaults to just the Standard one
32457      */
32458     toolbars : false,
32459     
32460      /**
32461     * @cfg {Array} buttons Array of toolbar's buttons. - defaults to empty
32462     */
32463     btns : [],
32464    
32465      /**
32466      * @cfg {String} resize  (none|both|horizontal|vertical) - css resize of element
32467      */
32468     resize : false,
32469      /**
32470      * @cfg {Number} height (in pixels)
32471      */   
32472     height: 300,
32473    /**
32474      * @cfg {Number} width (in pixels)
32475      */   
32476     width: false,
32477     
32478     /**
32479      * @cfg {Array} stylesheets url of stylesheets. set to [] to disable stylesheets.
32480      * 
32481      */
32482     stylesheets: false,
32483     
32484     // id of frame..
32485     frameId: false,
32486     
32487     // private properties
32488     validationEvent : false,
32489     deferHeight: true,
32490     initialized : false,
32491     activated : false,
32492     
32493     onFocus : Roo.emptyFn,
32494     iframePad:3,
32495     hideMode:'offsets',
32496     
32497     tbContainer : false,
32498     
32499     bodyCls : '',
32500     
32501     toolbarContainer :function() {
32502         return this.wrap.select('.x-html-editor-tb',true).first();
32503     },
32504
32505     /**
32506      * Protected method that will not generally be called directly. It
32507      * is called when the editor creates its toolbar. Override this method if you need to
32508      * add custom toolbar buttons.
32509      * @param {HtmlEditor} editor
32510      */
32511     createToolbar : function(){
32512         Roo.log('renewing');
32513         Roo.log("create toolbars");
32514         
32515         this.toolbars = [ new Roo.bootstrap.form.HtmlEditorToolbarStandard({editor: this} ) ];
32516         this.toolbars[0].render(this.toolbarContainer());
32517         
32518         return;
32519         
32520 //        if (!editor.toolbars || !editor.toolbars.length) {
32521 //            editor.toolbars = [ new Roo.bootstrap.form.HtmlEditorToolbarStandard() ]; // can be empty?
32522 //        }
32523 //        
32524 //        for (var i =0 ; i < editor.toolbars.length;i++) {
32525 //            editor.toolbars[i] = Roo.factory(
32526 //                    typeof(editor.toolbars[i]) == 'string' ?
32527 //                        { xtype: editor.toolbars[i]} : editor.toolbars[i],
32528 //                Roo.bootstrap.form.HtmlEditor);
32529 //            editor.toolbars[i].init(editor);
32530 //        }
32531     },
32532
32533      
32534     // private
32535     onRender : function(ct, position)
32536     {
32537        // Roo.log("Call onRender: " + this.xtype);
32538         var _t = this;
32539         Roo.bootstrap.form.HtmlEditor.superclass.onRender.call(this, ct, position);
32540       
32541         this.wrap = this.inputEl().wrap({
32542             cls:'x-html-editor-wrap', cn:{cls:'x-html-editor-tb'}
32543         });
32544         
32545         this.editorcore.onRender(ct, position);
32546          
32547          
32548         this.createToolbar(this);
32549        
32550         
32551           
32552         
32553     },
32554
32555     // private
32556     onResize : function(w, h)
32557     {
32558         Roo.log('resize: ' +w + ',' + h );
32559         Roo.bootstrap.form.HtmlEditor.superclass.onResize.apply(this, arguments);
32560         var ew = false;
32561         var eh = false;
32562         
32563         if(this.inputEl() ){
32564             if(typeof w == 'number'){
32565                 var aw = w - this.wrap.getFrameWidth('lr');
32566                 this.inputEl().setWidth(this.adjustWidth('textarea', aw));
32567                 ew = aw;
32568             }
32569             if(typeof h == 'number'){
32570                  var tbh = -11;  // fixme it needs to tool bar size!
32571                 for (var i =0; i < this.toolbars.length;i++) {
32572                     // fixme - ask toolbars for heights?
32573                     tbh += this.toolbars[i].el.getHeight();
32574                     //if (this.toolbars[i].footer) {
32575                     //    tbh += this.toolbars[i].footer.el.getHeight();
32576                     //}
32577                 }
32578               
32579                 
32580                 
32581                 
32582                 
32583                 var ah = h - this.wrap.getFrameWidth('tb') - tbh;// this.tb.el.getHeight();
32584                 ah -= 5; // knock a few pixes off for look..
32585                 this.inputEl().setHeight(this.adjustWidth('textarea', ah));
32586                 var eh = ah;
32587             }
32588         }
32589         Roo.log('onResize:' + [w,h,ew,eh].join(',') );
32590         this.editorcore.onResize(ew,eh);
32591         
32592     },
32593
32594     /**
32595      * Toggles the editor between standard and source edit mode.
32596      * @param {Boolean} sourceEdit (optional) True for source edit, false for standard
32597      */
32598     toggleSourceEdit : function(sourceEditMode)
32599     {
32600         this.editorcore.toggleSourceEdit(sourceEditMode);
32601         
32602         if(this.editorcore.sourceEditMode){
32603             Roo.log('editor - showing textarea');
32604             
32605 //            Roo.log('in');
32606 //            Roo.log(this.syncValue());
32607             this.syncValue();
32608             this.inputEl().removeClass(['hide', 'x-hidden']);
32609             this.inputEl().dom.removeAttribute('tabIndex');
32610             this.inputEl().focus();
32611         }else{
32612             Roo.log('editor - hiding textarea');
32613 //            Roo.log('out')
32614 //            Roo.log(this.pushValue()); 
32615             this.pushValue();
32616             
32617             this.inputEl().addClass(['hide', 'x-hidden']);
32618             this.inputEl().dom.setAttribute('tabIndex', -1);
32619             //this.deferFocus();
32620         }
32621          
32622         //if(this.resizable){
32623         //    this.setSize(this.wrap.getSize());
32624         //}
32625         
32626         this.fireEvent('editmodechange', this, this.editorcore.sourceEditMode);
32627     },
32628  
32629     // private (for BoxComponent)
32630     adjustSize : Roo.BoxComponent.prototype.adjustSize,
32631
32632     // private (for BoxComponent)
32633     getResizeEl : function(){
32634         return this.wrap;
32635     },
32636
32637     // private (for BoxComponent)
32638     getPositionEl : function(){
32639         return this.wrap;
32640     },
32641
32642     // private
32643     initEvents : function(){
32644         this.originalValue = this.getValue();
32645     },
32646
32647 //    /**
32648 //     * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
32649 //     * @method
32650 //     */
32651 //    markInvalid : Roo.emptyFn,
32652 //    /**
32653 //     * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
32654 //     * @method
32655 //     */
32656 //    clearInvalid : Roo.emptyFn,
32657
32658     setValue : function(v){
32659         Roo.bootstrap.form.HtmlEditor.superclass.setValue.call(this, v);
32660         this.editorcore.pushValue();
32661     },
32662
32663      
32664     // private
32665     deferFocus : function(){
32666         this.focus.defer(10, this);
32667     },
32668
32669     // doc'ed in Field
32670     focus : function(){
32671         this.editorcore.focus();
32672         
32673     },
32674       
32675
32676     // private
32677     onDestroy : function(){
32678         
32679         
32680         
32681         if(this.rendered){
32682             
32683             for (var i =0; i < this.toolbars.length;i++) {
32684                 // fixme - ask toolbars for heights?
32685                 this.toolbars[i].onDestroy();
32686             }
32687             
32688             this.wrap.dom.innerHTML = '';
32689             this.wrap.remove();
32690         }
32691     },
32692
32693     // private
32694     onFirstFocus : function(){
32695         //Roo.log("onFirstFocus");
32696         this.editorcore.onFirstFocus();
32697          for (var i =0; i < this.toolbars.length;i++) {
32698             this.toolbars[i].onFirstFocus();
32699         }
32700         
32701     },
32702     
32703     // private
32704     syncValue : function()
32705     {   
32706         this.editorcore.syncValue();
32707     },
32708     
32709     pushValue : function()
32710     {   
32711         this.editorcore.pushValue();
32712     }
32713      
32714     
32715     // hide stuff that is not compatible
32716     /**
32717      * @event blur
32718      * @hide
32719      */
32720     /**
32721      * @event change
32722      * @hide
32723      */
32724     /**
32725      * @event focus
32726      * @hide
32727      */
32728     /**
32729      * @event specialkey
32730      * @hide
32731      */
32732     /**
32733      * @cfg {String} fieldClass @hide
32734      */
32735     /**
32736      * @cfg {String} focusClass @hide
32737      */
32738     /**
32739      * @cfg {String} autoCreate @hide
32740      */
32741     /**
32742      * @cfg {String} inputType @hide
32743      */
32744      
32745     /**
32746      * @cfg {String} invalidText @hide
32747      */
32748     /**
32749      * @cfg {String} msgFx @hide
32750      */
32751     /**
32752      * @cfg {String} validateOnBlur @hide
32753      */
32754 });
32755  
32756     
32757    
32758    
32759    
32760       
32761 Roo.namespace('Roo.bootstrap.form.HtmlEditor');
32762 /**
32763  * @class Roo.bootstrap.form.HtmlEditorToolbarStandard
32764  * @parent Roo.bootstrap.form.HtmlEditor
32765  * @extends Roo.bootstrap.nav.Simplebar
32766  * Basic Toolbar
32767  * 
32768  * @example
32769  * Usage:
32770  *
32771  new Roo.bootstrap.form.HtmlEditor({
32772     ....
32773     toolbars : [
32774         new Roo.bootstrap.form.HtmlEditorToolbarStandard({
32775             disable : { fonts: 1 , format: 1, ..., ... , ...],
32776             btns : [ .... ]
32777         })
32778     }
32779      
32780  * 
32781  * @cfg {Object} disable List of elements to disable..
32782  * @cfg {Array} btns List of additional buttons.
32783  * 
32784  * 
32785  * NEEDS Extra CSS? 
32786  * .x-html-editor-tb .x-edit-none .x-btn-text { background: none; }
32787  */
32788  
32789 Roo.bootstrap.form.HtmlEditorToolbarStandard = function(config)
32790 {
32791     
32792     Roo.apply(this, config);
32793     
32794     // default disabled, based on 'good practice'..
32795     this.disable = this.disable || {};
32796     Roo.applyIf(this.disable, {
32797         fontSize : true,
32798         colors : true,
32799         specialElements : true
32800     });
32801     Roo.bootstrap.form.HtmlEditorToolbarStandard.superclass.constructor.call(this, config);
32802     
32803     this.editor = config.editor;
32804     this.editorcore = config.editor.editorcore;
32805     
32806     this.buttons   = new Roo.util.MixedCollection(false, function(o) { return o.cmd; });
32807     
32808     //Roo.form.HtmlEditorToolbar1.superclass.constructor.call(this, editor.wrap.dom.firstChild, [], config);
32809     // dont call parent... till later.
32810 }
32811 Roo.extend(Roo.bootstrap.form.HtmlEditorToolbarStandard, Roo.bootstrap.nav.Simplebar,  {
32812      
32813     bar : true,
32814     
32815     editor : false,
32816     editorcore : false,
32817     
32818     
32819     formats : [
32820         "p" ,  
32821         "h1","h2","h3","h4","h5","h6", 
32822         "pre", "code", 
32823         "abbr", "acronym", "address", "cite", "samp", "var",
32824         'div','span'
32825     ],
32826     
32827     onRender : function(ct, position)
32828     {
32829        // Roo.log("Call onRender: " + this.xtype);
32830         
32831        Roo.bootstrap.form.HtmlEditorToolbarStandard.superclass.onRender.call(this, ct, position);
32832        Roo.log(this.el);
32833        this.el.dom.style.marginBottom = '0';
32834        var _this = this;
32835        var editorcore = this.editorcore;
32836        var editor= this.editor;
32837        
32838        var children = [];
32839        var btn = function(id,cmd , toggle, handler, html){
32840        
32841             var  event = toggle ? 'toggle' : 'click';
32842        
32843             var a = {
32844                 size : 'sm',
32845                 xtype: 'Button',
32846                 xns: Roo.bootstrap,
32847                 //glyphicon : id,
32848                 fa: id,
32849                 cmd : id || cmd,
32850                 enableToggle:toggle !== false,
32851                 html : html || '',
32852                 pressed : toggle ? false : null,
32853                 listeners : {}
32854             };
32855             a.listeners[toggle ? 'toggle' : 'click'] = function() {
32856                 handler ? handler.call(_this,this) :_this.onBtnClick.call(_this, cmd ||  id);
32857             };
32858             children.push(a);
32859             return a;
32860        }
32861        
32862     //    var cb_box = function...
32863         
32864         var style = {
32865                 xtype: 'Button',
32866                 size : 'sm',
32867                 xns: Roo.bootstrap,
32868                 fa : 'font',
32869                 //html : 'submit'
32870                 menu : {
32871                     xtype: 'Menu',
32872                     xns: Roo.bootstrap,
32873                     items:  []
32874                 }
32875         };
32876         Roo.each(this.formats, function(f) {
32877             style.menu.items.push({
32878                 xtype :'MenuItem',
32879                 xns: Roo.bootstrap,
32880                 html : '<'+ f+' style="margin:2px">'+f +'</'+ f+'>',
32881                 tagname : f,
32882                 listeners : {
32883                     click : function()
32884                     {
32885                         editorcore.insertTag(this.tagname);
32886                         editor.focus();
32887                     }
32888                 }
32889                 
32890             });
32891         });
32892         children.push(style);   
32893         
32894         btn('bold',false,true);
32895         btn('italic',false,true);
32896         btn('align-left', 'justifyleft',true);
32897         btn('align-center', 'justifycenter',true);
32898         btn('align-right' , 'justifyright',true);
32899         btn('link', false, false, function(btn) {
32900             //Roo.log("create link?");
32901             var url = prompt(this.createLinkText, this.defaultLinkValue);
32902             if(url && url != 'http:/'+'/'){
32903                 this.editorcore.relayCmd('createlink', url);
32904             }
32905         }),
32906         btn('list','insertunorderedlist',true);
32907         btn('pencil', false,true, function(btn){
32908                 Roo.log(this);
32909                 this.toggleSourceEdit(btn.pressed);
32910         });
32911         
32912         if (this.editor.btns.length > 0) {
32913             for (var i = 0; i<this.editor.btns.length; i++) {
32914                 children.push(this.editor.btns[i]);
32915             }
32916         }
32917         
32918         /*
32919         var cog = {
32920                 xtype: 'Button',
32921                 size : 'sm',
32922                 xns: Roo.bootstrap,
32923                 glyphicon : 'cog',
32924                 //html : 'submit'
32925                 menu : {
32926                     xtype: 'Menu',
32927                     xns: Roo.bootstrap,
32928                     items:  []
32929                 }
32930         };
32931         
32932         cog.menu.items.push({
32933             xtype :'MenuItem',
32934             xns: Roo.bootstrap,
32935             html : Clean styles,
32936             tagname : f,
32937             listeners : {
32938                 click : function()
32939                 {
32940                     editorcore.insertTag(this.tagname);
32941                     editor.focus();
32942                 }
32943             }
32944             
32945         });
32946        */
32947         
32948          
32949        this.xtype = 'NavSimplebar';
32950         
32951         for(var i=0;i< children.length;i++) {
32952             
32953             this.buttons.add(this.addxtypeChild(children[i]));
32954             
32955         }
32956         
32957         editor.on('editorevent', this.updateToolbar, this);
32958     },
32959     onBtnClick : function(id)
32960     {
32961        this.editorcore.relayCmd(id);
32962        this.editorcore.focus();
32963     },
32964     
32965     /**
32966      * Protected method that will not generally be called directly. It triggers
32967      * a toolbar update by reading the markup state of the current selection in the editor.
32968      */
32969     updateToolbar: function(){
32970
32971         if(!this.editorcore.activated){
32972             this.editor.onFirstFocus(); // is this neeed?
32973             return;
32974         }
32975
32976         var btns = this.buttons; 
32977         var doc = this.editorcore.doc;
32978         btns.get('bold').setActive(doc.queryCommandState('bold'));
32979         btns.get('italic').setActive(doc.queryCommandState('italic'));
32980         //btns.get('underline').setActive(doc.queryCommandState('underline'));
32981         
32982         btns.get('align-left').setActive(doc.queryCommandState('justifyleft'));
32983         btns.get('align-center').setActive(doc.queryCommandState('justifycenter'));
32984         btns.get('align-right').setActive(doc.queryCommandState('justifyright'));
32985         
32986         //btns[frameId + '-insertorderedlist').setActive(doc.queryCommandState('insertorderedlist'));
32987         btns.get('list').setActive(doc.queryCommandState('insertunorderedlist'));
32988          /*
32989         
32990         var ans = this.editorcore.getAllAncestors();
32991         if (this.formatCombo) {
32992             
32993             
32994             var store = this.formatCombo.store;
32995             this.formatCombo.setValue("");
32996             for (var i =0; i < ans.length;i++) {
32997                 if (ans[i] && store.query('tag',ans[i].tagName.toLowerCase(), false).length) {
32998                     // select it..
32999                     this.formatCombo.setValue(ans[i].tagName.toLowerCase());
33000                     break;
33001                 }
33002             }
33003         }
33004         
33005         
33006         
33007         // hides menus... - so this cant be on a menu...
33008         Roo.bootstrap.MenuMgr.hideAll();
33009         */
33010         Roo.bootstrap.menu.Manager.hideAll();
33011         //this.editorsyncValue();
33012     },
33013     onFirstFocus: function() {
33014         this.buttons.each(function(item){
33015            item.enable();
33016         });
33017     },
33018     toggleSourceEdit : function(sourceEditMode){
33019         
33020           
33021         if(sourceEditMode){
33022             Roo.log("disabling buttons");
33023            this.buttons.each( function(item){
33024                 if(item.cmd != 'pencil'){
33025                     item.disable();
33026                 }
33027             });
33028           
33029         }else{
33030             Roo.log("enabling buttons");
33031             if(this.editorcore.initialized){
33032                 this.buttons.each( function(item){
33033                     item.enable();
33034                 });
33035             }
33036             
33037         }
33038         Roo.log("calling toggole on editor");
33039         // tell the editor that it's been pressed..
33040         this.editor.toggleSourceEdit(sourceEditMode);
33041        
33042     }
33043 });
33044
33045
33046
33047
33048  
33049 /*
33050  * - LGPL
33051  */
33052
33053 /**
33054  * @class Roo.bootstrap.form.Markdown
33055  * @extends Roo.bootstrap.form.TextArea
33056  * Bootstrap Showdown editable area
33057  * @cfg {string} content
33058  * 
33059  * @constructor
33060  * Create a new Showdown
33061  */
33062
33063 Roo.bootstrap.form.Markdown = function(config){
33064     Roo.bootstrap.form.Markdown.superclass.constructor.call(this, config);
33065    
33066 };
33067
33068 Roo.extend(Roo.bootstrap.form.Markdown, Roo.bootstrap.form.TextArea,  {
33069     
33070     editing :false,
33071     
33072     initEvents : function()
33073     {
33074         
33075         Roo.bootstrap.form.TextArea.prototype.initEvents.call(this);
33076         this.markdownEl = this.el.createChild({
33077             cls : 'roo-markdown-area'
33078         });
33079         this.inputEl().addClass('d-none');
33080         if (this.getValue() == '') {
33081             this.markdownEl.dom.innerHTML = String.format('<span class="roo-placeholder">{0}</span>', this.placeholder || '');
33082             
33083         } else {
33084             this.markdownEl.dom.innerHTML = Roo.Markdown.toHtml(Roo.util.Format.htmlEncode(this.getValue()));
33085         }
33086         this.markdownEl.on('click', this.toggleTextEdit, this);
33087         this.on('blur', this.toggleTextEdit, this);
33088         this.on('specialkey', this.resizeTextArea, this);
33089     },
33090     
33091     toggleTextEdit : function()
33092     {
33093         var sh = this.markdownEl.getHeight();
33094         this.inputEl().addClass('d-none');
33095         this.markdownEl.addClass('d-none');
33096         if (!this.editing) {
33097             // show editor?
33098             this.inputEl().setHeight(Math.min(500, Math.max(sh,(this.getValue().split("\n").length+1) * 30)));
33099             this.inputEl().removeClass('d-none');
33100             this.inputEl().focus();
33101             this.editing = true;
33102             return;
33103         }
33104         // show showdown...
33105         this.updateMarkdown();
33106         this.markdownEl.removeClass('d-none');
33107         this.editing = false;
33108         return;
33109     },
33110     updateMarkdown : function()
33111     {
33112         if (this.getValue() == '') {
33113             this.markdownEl.dom.innerHTML = String.format('<span class="roo-placeholder">{0}</span>', this.placeholder || '');
33114             return;
33115         }
33116  
33117         this.markdownEl.dom.innerHTML = Roo.Markdown.toHtml(Roo.util.Format.htmlEncode(this.getValue()));
33118     },
33119     
33120     resizeTextArea: function () {
33121         
33122         var sh = 100;
33123         Roo.log([sh, this.getValue().split("\n").length * 30]);
33124         this.inputEl().setHeight(Math.min(500, Math.max(sh, (this.getValue().split("\n").length +1) * 30)));
33125     },
33126     setValue : function(val)
33127     {
33128         Roo.bootstrap.form.TextArea.prototype.setValue.call(this,val);
33129         if (!this.editing) {
33130             this.updateMarkdown();
33131         }
33132         
33133     },
33134     focus : function()
33135     {
33136         if (!this.editing) {
33137             this.toggleTextEdit();
33138         }
33139         
33140     }
33141
33142
33143 });/*
33144  * Based on:
33145  * Ext JS Library 1.1.1
33146  * Copyright(c) 2006-2007, Ext JS, LLC.
33147  *
33148  * Originally Released Under LGPL - original licence link has changed is not relivant.
33149  *
33150  * Fork - LGPL
33151  * <script type="text/javascript">
33152  */
33153  
33154 /**
33155  * @class Roo.bootstrap.PagingToolbar
33156  * @extends Roo.bootstrap.nav.Simplebar
33157  * A specialized toolbar that is bound to a {@link Roo.data.Store} and provides automatic paging controls.
33158  * @constructor
33159  * Create a new PagingToolbar
33160  * @param {Object} config The config object
33161  * @param {Roo.data.Store} store
33162  */
33163 Roo.bootstrap.PagingToolbar = function(config)
33164 {
33165     // old args format still supported... - xtype is prefered..
33166         // created from xtype...
33167     
33168     this.ds = config.dataSource;
33169     
33170     if (config.store && !this.ds) {
33171         this.store= Roo.factory(config.store, Roo.data);
33172         this.ds = this.store;
33173         this.ds.xmodule = this.xmodule || false;
33174     }
33175     
33176     this.toolbarItems = [];
33177     if (config.items) {
33178         this.toolbarItems = config.items;
33179     }
33180     
33181     Roo.bootstrap.PagingToolbar.superclass.constructor.call(this, config);
33182     
33183     this.cursor = 0;
33184     
33185     if (this.ds) { 
33186         this.bind(this.ds);
33187     }
33188     
33189     if (Roo.bootstrap.version == 4) {
33190         this.navgroup = new Roo.bootstrap.ButtonGroup({ cls: 'pagination' });
33191     } else {
33192         this.navgroup = new Roo.bootstrap.nav.Group({ cls: 'pagination' });
33193     }
33194     
33195 };
33196
33197 Roo.extend(Roo.bootstrap.PagingToolbar, Roo.bootstrap.nav.Simplebar, {
33198     /**
33199      * @cfg {Roo.bootstrap.Button} buttons[]
33200      * Buttons for the toolbar
33201      */
33202      /**
33203      * @cfg {Roo.data.Store} store
33204      * The underlying data store providing the paged data
33205      */
33206     /**
33207      * @cfg {String/HTMLElement/Element} container
33208      * container The id or element that will contain the toolbar
33209      */
33210     /**
33211      * @cfg {Boolean} displayInfo
33212      * True to display the displayMsg (defaults to false)
33213      */
33214     /**
33215      * @cfg {Number} pageSize
33216      * The number of records to display per page (defaults to 20)
33217      */
33218     pageSize: 20,
33219     /**
33220      * @cfg {String} displayMsg
33221      * The paging status message to display (defaults to "Displaying {start} - {end} of {total}")
33222      */
33223     displayMsg : 'Displaying {0} - {1} of {2}',
33224     /**
33225      * @cfg {String} emptyMsg
33226      * The message to display when no records are found (defaults to "No data to display")
33227      */
33228     emptyMsg : 'No data to display',
33229     /**
33230      * Customizable piece of the default paging text (defaults to "Page")
33231      * @type String
33232      */
33233     beforePageText : "Page",
33234     /**
33235      * Customizable piece of the default paging text (defaults to "of %0")
33236      * @type String
33237      */
33238     afterPageText : "of {0}",
33239     /**
33240      * Customizable piece of the default paging text (defaults to "First Page")
33241      * @type String
33242      */
33243     firstText : "First Page",
33244     /**
33245      * Customizable piece of the default paging text (defaults to "Previous Page")
33246      * @type String
33247      */
33248     prevText : "Previous Page",
33249     /**
33250      * Customizable piece of the default paging text (defaults to "Next Page")
33251      * @type String
33252      */
33253     nextText : "Next Page",
33254     /**
33255      * Customizable piece of the default paging text (defaults to "Last Page")
33256      * @type String
33257      */
33258     lastText : "Last Page",
33259     /**
33260      * Customizable piece of the default paging text (defaults to "Refresh")
33261      * @type String
33262      */
33263     refreshText : "Refresh",
33264
33265     buttons : false,
33266     // private
33267     onRender : function(ct, position) 
33268     {
33269         Roo.bootstrap.PagingToolbar.superclass.onRender.call(this, ct, position);
33270         this.navgroup.parentId = this.id;
33271         this.navgroup.onRender(this.el, null);
33272         // add the buttons to the navgroup
33273         
33274         if(this.displayInfo){
33275             this.el.select('ul.navbar-nav',true).first().createChild({cls:'x-paging-info'});
33276             this.displayEl = this.el.select('.x-paging-info', true).first();
33277 //            var navel = this.navgroup.addItem( { tagtype : 'span', html : '', cls : 'x-paging-info', preventDefault : true } );
33278 //            this.displayEl = navel.el.select('span',true).first();
33279         }
33280         
33281         var _this = this;
33282         
33283         if(this.buttons){
33284             Roo.each(_this.buttons, function(e){ // this might need to use render????
33285                Roo.factory(e).render(_this.el);
33286             });
33287         }
33288             
33289         Roo.each(_this.toolbarItems, function(e) {
33290             _this.navgroup.addItem(e);
33291         });
33292         
33293         
33294         this.first = this.navgroup.addItem({
33295             tooltip: this.firstText,
33296             cls: "prev btn-outline-secondary",
33297             html : ' <i class="fa fa-step-backward"></i>',
33298             disabled: true,
33299             preventDefault: true,
33300             listeners : { click : this.onClick.createDelegate(this, ["first"]) }
33301         });
33302         
33303         this.prev =  this.navgroup.addItem({
33304             tooltip: this.prevText,
33305             cls: "prev btn-outline-secondary",
33306             html : ' <i class="fa fa-backward"></i>',
33307             disabled: true,
33308             preventDefault: true,
33309             listeners : { click :  this.onClick.createDelegate(this, ["prev"]) }
33310         });
33311     //this.addSeparator();
33312         
33313         
33314         var field = this.navgroup.addItem( {
33315             tagtype : 'span',
33316             cls : 'x-paging-position  btn-outline-secondary',
33317              disabled: true,
33318             html : this.beforePageText  +
33319                 '<input type="text" size="3" value="1" class="x-grid-page-number">' +
33320                 '<span class="x-paging-after">' +  String.format(this.afterPageText, 1) + '</span>'
33321          } ); //?? escaped?
33322         
33323         this.field = field.el.select('input', true).first();
33324         this.field.on("keydown", this.onPagingKeydown, this);
33325         this.field.on("focus", function(){this.dom.select();});
33326     
33327     
33328         this.afterTextEl =  field.el.select('.x-paging-after',true).first();
33329         //this.field.setHeight(18);
33330         //this.addSeparator();
33331         this.next = this.navgroup.addItem({
33332             tooltip: this.nextText,
33333             cls: "next btn-outline-secondary",
33334             html : ' <i class="fa fa-forward"></i>',
33335             disabled: true,
33336             preventDefault: true,
33337             listeners : { click :  this.onClick.createDelegate(this, ["next"]) }
33338         });
33339         this.last = this.navgroup.addItem({
33340             tooltip: this.lastText,
33341             html : ' <i class="fa fa-step-forward"></i>',
33342             cls: "next btn-outline-secondary",
33343             disabled: true,
33344             preventDefault: true,
33345             listeners : { click :  this.onClick.createDelegate(this, ["last"]) }
33346         });
33347     //this.addSeparator();
33348         this.loading = this.navgroup.addItem({
33349             tooltip: this.refreshText,
33350             cls: "btn-outline-secondary",
33351             html : ' <i class="fa fa-refresh"></i>',
33352             preventDefault: true,
33353             listeners : { click : this.onClick.createDelegate(this, ["refresh"]) }
33354         });
33355         
33356     },
33357
33358     // private
33359     updateInfo : function(){
33360         if(this.displayEl){
33361             var count = (typeof(this.getCount) == 'undefined') ? this.ds.getCount() : this.getCount();
33362             var msg = count == 0 ?
33363                 this.emptyMsg :
33364                 String.format(
33365                     this.displayMsg,
33366                     this.cursor+1, this.cursor+count, this.ds.getTotalCount()    
33367                 );
33368             this.displayEl.update(msg);
33369         }
33370     },
33371
33372     // private
33373     onLoad : function(ds, r, o)
33374     {
33375         this.cursor = o.params && o.params.start ? o.params.start : 0;
33376         
33377         var d = this.getPageData(),
33378             ap = d.activePage,
33379             ps = d.pages;
33380         
33381         
33382         this.afterTextEl.dom.innerHTML = String.format(this.afterPageText, d.pages);
33383         this.field.dom.value = ap;
33384         this.first.setDisabled(ap == 1);
33385         this.prev.setDisabled(ap == 1);
33386         this.next.setDisabled(ap == ps);
33387         this.last.setDisabled(ap == ps);
33388         this.loading.enable();
33389         this.updateInfo();
33390     },
33391
33392     // private
33393     getPageData : function(){
33394         var total = this.ds.getTotalCount();
33395         return {
33396             total : total,
33397             activePage : Math.ceil((this.cursor+this.pageSize)/this.pageSize),
33398             pages :  total < this.pageSize ? 1 : Math.ceil(total/this.pageSize)
33399         };
33400     },
33401
33402     // private
33403     onLoadError : function(proxy, o){
33404         this.loading.enable();
33405         if (this.ds.events.loadexception.listeners.length  < 2) {
33406             // nothing has been assigned to loadexception except this...
33407             // so 
33408             Roo.MessageBox.alert("Error loading",o.raw.errorMsg);
33409
33410         }
33411     },
33412
33413     // private
33414     onPagingKeydown : function(e){
33415         var k = e.getKey();
33416         var d = this.getPageData();
33417         if(k == e.RETURN){
33418             var v = this.field.dom.value, pageNum;
33419             if(!v || isNaN(pageNum = parseInt(v, 10))){
33420                 this.field.dom.value = d.activePage;
33421                 return;
33422             }
33423             pageNum = Math.min(Math.max(1, pageNum), d.pages) - 1;
33424             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
33425             e.stopEvent();
33426         }
33427         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))
33428         {
33429           var pageNum = (k == e.HOME || (k == e.DOWN && e.ctrlKey) || (k == e.LEFT && e.ctrlKey) || (k == e.PAGEDOWN && e.ctrlKey)) ? 1 : d.pages;
33430           this.field.dom.value = pageNum;
33431           this.ds.load({params:{start: (pageNum - 1) * this.pageSize, limit: this.pageSize}});
33432           e.stopEvent();
33433         }
33434         else if(k == e.UP || k == e.RIGHT || k == e.PAGEUP || k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN)
33435         {
33436           var v = this.field.dom.value, pageNum; 
33437           var increment = (e.shiftKey) ? 10 : 1;
33438           if(k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN) {
33439                 increment *= -1;
33440           }
33441           if(!v || isNaN(pageNum = parseInt(v, 10))) {
33442             this.field.dom.value = d.activePage;
33443             return;
33444           }
33445           else if(parseInt(v, 10) + increment >= 1 & parseInt(v, 10) + increment <= d.pages)
33446           {
33447             this.field.dom.value = parseInt(v, 10) + increment;
33448             pageNum = Math.min(Math.max(1, pageNum + increment), d.pages) - 1;
33449             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
33450           }
33451           e.stopEvent();
33452         }
33453     },
33454
33455     // private
33456     beforeLoad : function(){
33457         if(this.loading){
33458             this.loading.disable();
33459         }
33460     },
33461
33462     // private
33463     onClick : function(which){
33464         
33465         var ds = this.ds;
33466         if (!ds) {
33467             return;
33468         }
33469         
33470         switch(which){
33471             case "first":
33472                 ds.load({params:{start: 0, limit: this.pageSize}});
33473             break;
33474             case "prev":
33475                 ds.load({params:{start: Math.max(0, this.cursor-this.pageSize), limit: this.pageSize}});
33476             break;
33477             case "next":
33478                 ds.load({params:{start: this.cursor+this.pageSize, limit: this.pageSize}});
33479             break;
33480             case "last":
33481                 var total = ds.getTotalCount();
33482                 var extra = total % this.pageSize;
33483                 var lastStart = extra ? (total - extra) : total-this.pageSize;
33484                 ds.load({params:{start: lastStart, limit: this.pageSize}});
33485             break;
33486             case "refresh":
33487                 ds.load({params:{start: this.cursor, limit: this.pageSize}});
33488             break;
33489         }
33490     },
33491
33492     /**
33493      * Unbinds the paging toolbar from the specified {@link Roo.data.Store}
33494      * @param {Roo.data.Store} store The data store to unbind
33495      */
33496     unbind : function(ds){
33497         ds.un("beforeload", this.beforeLoad, this);
33498         ds.un("load", this.onLoad, this);
33499         ds.un("loadexception", this.onLoadError, this);
33500         ds.un("remove", this.updateInfo, this);
33501         ds.un("add", this.updateInfo, this);
33502         this.ds = undefined;
33503     },
33504
33505     /**
33506      * Binds the paging toolbar to the specified {@link Roo.data.Store}
33507      * @param {Roo.data.Store} store The data store to bind
33508      */
33509     bind : function(ds){
33510         ds.on("beforeload", this.beforeLoad, this);
33511         ds.on("load", this.onLoad, this);
33512         ds.on("loadexception", this.onLoadError, this);
33513         ds.on("remove", this.updateInfo, this);
33514         ds.on("add", this.updateInfo, this);
33515         this.ds = ds;
33516     }
33517 });/*
33518  * - LGPL
33519  *
33520  * element
33521  * 
33522  */
33523
33524 /**
33525  * @class Roo.bootstrap.MessageBar
33526  * @extends Roo.bootstrap.Component
33527  * Bootstrap MessageBar class
33528  * @cfg {String} html contents of the MessageBar
33529  * @cfg {String} weight (info | success | warning | danger) default info
33530  * @cfg {String} beforeClass insert the bar before the given class
33531  * @cfg {Boolean} closable (true | false) default false
33532  * @cfg {Boolean} fixed (true | false) default false, fix the bar at the top
33533  * 
33534  * @constructor
33535  * Create a new Element
33536  * @param {Object} config The config object
33537  */
33538
33539 Roo.bootstrap.MessageBar = function(config){
33540     Roo.bootstrap.MessageBar.superclass.constructor.call(this, config);
33541 };
33542
33543 Roo.extend(Roo.bootstrap.MessageBar, Roo.bootstrap.Component,  {
33544     
33545     html: '',
33546     weight: 'info',
33547     closable: false,
33548     fixed: false,
33549     beforeClass: 'bootstrap-sticky-wrap',
33550     
33551     getAutoCreate : function(){
33552         
33553         var cfg = {
33554             tag: 'div',
33555             cls: 'alert alert-dismissable alert-' + this.weight,
33556             cn: [
33557                 {
33558                     tag: 'span',
33559                     cls: 'message',
33560                     html: this.html || ''
33561                 }
33562             ]
33563         };
33564         
33565         if(this.fixed){
33566             cfg.cls += ' alert-messages-fixed';
33567         }
33568         
33569         if(this.closable){
33570             cfg.cn.push({
33571                 tag: 'button',
33572                 cls: 'close',
33573                 html: 'x'
33574             });
33575         }
33576         
33577         return cfg;
33578     },
33579     
33580     onRender : function(ct, position)
33581     {
33582         Roo.bootstrap.Component.superclass.onRender.call(this, ct, position);
33583         
33584         if(!this.el){
33585             var cfg = Roo.apply({},  this.getAutoCreate());
33586             cfg.id = Roo.id();
33587             
33588             if (this.cls) {
33589                 cfg.cls += ' ' + this.cls;
33590             }
33591             if (this.style) {
33592                 cfg.style = this.style;
33593             }
33594             this.el = Roo.get(document.body).createChild(cfg, Roo.select('.'+this.beforeClass, true).first());
33595             
33596             this.el.setVisibilityMode(Roo.Element.DISPLAY);
33597         }
33598         
33599         this.el.select('>button.close').on('click', this.hide, this);
33600         
33601     },
33602     
33603     show : function()
33604     {
33605         if (!this.rendered) {
33606             this.render();
33607         }
33608         
33609         this.el.show();
33610         
33611         this.fireEvent('show', this);
33612         
33613     },
33614     
33615     hide : function()
33616     {
33617         if (!this.rendered) {
33618             this.render();
33619         }
33620         
33621         this.el.hide();
33622         
33623         this.fireEvent('hide', this);
33624     },
33625     
33626     update : function()
33627     {
33628 //        var e = this.el.dom.firstChild;
33629 //        
33630 //        if(this.closable){
33631 //            e = e.nextSibling;
33632 //        }
33633 //        
33634 //        e.data = this.html || '';
33635
33636         this.el.select('>.message', true).first().dom.innerHTML = this.html || '';
33637     }
33638    
33639 });
33640
33641  
33642
33643      /*
33644  * - LGPL
33645  *
33646  * Graph
33647  * 
33648  */
33649
33650
33651 /**
33652  * @class Roo.bootstrap.Graph
33653  * @extends Roo.bootstrap.Component
33654  * Bootstrap Graph class
33655 > Prameters
33656  -sm {number} sm 4
33657  -md {number} md 5
33658  @cfg {String} graphtype  bar | vbar | pie
33659  @cfg {number} g_x coodinator | centre x (pie)
33660  @cfg {number} g_y coodinator | centre y (pie)
33661  @cfg {number} g_r radius (pie)
33662  @cfg {number} g_height height of the chart (respected by all elements in the set)
33663  @cfg {number} g_width width of the chart (respected by all elements in the set)
33664  @cfg {Object} title The title of the chart
33665     
33666  -{Array}  values
33667  -opts (object) options for the chart 
33668      o {
33669      o type (string) type of endings of the bar. Default: 'square'. Other options are: 'round', 'sharp', 'soft'.
33670      o gutter (number)(string) default '20%' (WHAT DOES IT DO?)
33671      o vgutter (number)
33672      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.
33673      o stacked (boolean) whether or not to tread values as in a stacked bar chart
33674      o to
33675      o stretch (boolean)
33676      o }
33677  -opts (object) options for the pie
33678      o{
33679      o cut
33680      o startAngle (number)
33681      o endAngle (number)
33682      } 
33683  *
33684  * @constructor
33685  * Create a new Input
33686  * @param {Object} config The config object
33687  */
33688
33689 Roo.bootstrap.Graph = function(config){
33690     Roo.bootstrap.Graph.superclass.constructor.call(this, config);
33691     
33692     this.addEvents({
33693         // img events
33694         /**
33695          * @event click
33696          * The img click event for the img.
33697          * @param {Roo.EventObject} e
33698          */
33699         "click" : true
33700     });
33701 };
33702
33703 Roo.extend(Roo.bootstrap.Graph, Roo.bootstrap.Component,  {
33704     
33705     sm: 4,
33706     md: 5,
33707     graphtype: 'bar',
33708     g_height: 250,
33709     g_width: 400,
33710     g_x: 50,
33711     g_y: 50,
33712     g_r: 30,
33713     opts:{
33714         //g_colors: this.colors,
33715         g_type: 'soft',
33716         g_gutter: '20%'
33717
33718     },
33719     title : false,
33720
33721     getAutoCreate : function(){
33722         
33723         var cfg = {
33724             tag: 'div',
33725             html : null
33726         };
33727         
33728         
33729         return  cfg;
33730     },
33731
33732     onRender : function(ct,position){
33733         
33734         
33735         Roo.bootstrap.Graph.superclass.onRender.call(this,ct,position);
33736         
33737         if (typeof(Raphael) == 'undefined') {
33738             Roo.bootstrap.MessageBox.alert("Error","Raphael is not availabe");
33739             return;
33740         }
33741         
33742         this.raphael = Raphael(this.el.dom);
33743         
33744                     // data1 = [[55, 20, 13, 32, 5, 1, 2, 10], [10, 2, 1, 5, 32, 13, 20, 55], [12, 20, 30]],
33745                     // data2 = [[55, 20, 13, 32, 5, 1, 2, 10], [10, 2, 1, 5, 32, 13, 20, 55], [12, 20, 30]],
33746                     // data3 = [[55, 20, 13, 32, 5, 1, 2, 10], [10, 2, 1, 5, 32, 13, 20, 55], [12, 20, 30]],
33747                     // txtattr = { font: "12px 'Fontin Sans', Fontin-Sans, sans-serif" };
33748                 /*
33749                 r.text(160, 10, "Single Series Chart").attr(txtattr);
33750                 r.text(480, 10, "Multiline Series Chart").attr(txtattr);
33751                 r.text(160, 250, "Multiple Series Stacked Chart").attr(txtattr);
33752                 r.text(480, 250, 'Multiline Series Stacked Vertical Chart. Type "round"').attr(txtattr);
33753                 
33754                 r.barchart(10, 10, 300, 220, [[55, 20, 13, 32, 5, 1, 2, 10]], 0, {type: "sharp"});
33755                 r.barchart(330, 10, 300, 220, data1);
33756                 r.barchart(10, 250, 300, 220, data2, {stacked: true});
33757                 r.barchart(330, 250, 300, 220, data3, {stacked: true, type: "round"});
33758                 */
33759                 
33760                 // var xdata = [55, 20, 13, 32, 5, 1, 2, 10,5 , 10];
33761                 // r.barchart(30, 30, 560, 250,  xdata, {
33762                 //    labels : [55, 20, 13, 32, 5, 1, 2, 10,5 , 10],
33763                 //     axis : "0 0 1 1",
33764                 //     axisxlabels :  xdata
33765                 //     //yvalues : cols,
33766                    
33767                 // });
33768 //        var xdata = [55, 20, 13, 32, 5, 1, 2, 10,5 , 10];
33769 //        
33770 //        this.load(null,xdata,{
33771 //                axis : "0 0 1 1",
33772 //                axisxlabels :  xdata
33773 //                });
33774
33775     },
33776
33777     load : function(graphtype,xdata,opts)
33778     {
33779         this.raphael.clear();
33780         if(!graphtype) {
33781             graphtype = this.graphtype;
33782         }
33783         if(!opts){
33784             opts = this.opts;
33785         }
33786         var r = this.raphael,
33787             fin = function () {
33788                 this.flag = r.popup(this.bar.x, this.bar.y, this.bar.value || "0").insertBefore(this);
33789             },
33790             fout = function () {
33791                 this.flag.animate({opacity: 0}, 300, function () {this.remove();});
33792             },
33793             pfin = function() {
33794                 this.sector.stop();
33795                 this.sector.scale(1.1, 1.1, this.cx, this.cy);
33796
33797                 if (this.label) {
33798                     this.label[0].stop();
33799                     this.label[0].attr({ r: 7.5 });
33800                     this.label[1].attr({ "font-weight": 800 });
33801                 }
33802             },
33803             pfout = function() {
33804                 this.sector.animate({ transform: 's1 1 ' + this.cx + ' ' + this.cy }, 500, "bounce");
33805
33806                 if (this.label) {
33807                     this.label[0].animate({ r: 5 }, 500, "bounce");
33808                     this.label[1].attr({ "font-weight": 400 });
33809                 }
33810             };
33811
33812         switch(graphtype){
33813             case 'bar':
33814                 this.raphael.barchart(this.g_x,this.g_y,this.g_width,this.g_height,xdata,opts).hover(fin,fout);
33815                 break;
33816             case 'hbar':
33817                 this.raphael.hbarchart(this.g_x,this.g_y,this.g_width,this.g_height,xdata,opts).hover(fin,fout);
33818                 break;
33819             case 'pie':
33820 //                opts = { legend: ["%% - Enterprise Users", "% - ddd","Chrome Users"], legendpos: "west", 
33821 //                href: ["http://raphaeljs.com", "http://g.raphaeljs.com"]};
33822 //            
33823                 this.raphael.piechart(this.g_x,this.g_y,this.g_r,xdata,opts).hover(pfin, pfout);
33824                 
33825                 break;
33826
33827         }
33828         
33829         if(this.title){
33830             this.raphael.text(this.title.x, this.title.y, this.title.text).attr(this.title.attr);
33831         }
33832         
33833     },
33834     
33835     setTitle: function(o)
33836     {
33837         this.title = o;
33838     },
33839     
33840     initEvents: function() {
33841         
33842         if(!this.href){
33843             this.el.on('click', this.onClick, this);
33844         }
33845     },
33846     
33847     onClick : function(e)
33848     {
33849         Roo.log('img onclick');
33850         this.fireEvent('click', this, e);
33851     }
33852    
33853 });
33854
33855  
33856 Roo.bootstrap.dash = {};/*
33857  * - LGPL
33858  *
33859  * numberBox
33860  * 
33861  */
33862 Roo.bootstrap.dash = Roo.bootstrap.dash || {};
33863
33864 /**
33865  * @class Roo.bootstrap.dash.NumberBox
33866  * @extends Roo.bootstrap.Component
33867  * Bootstrap NumberBox class
33868  * @cfg {String} headline Box headline
33869  * @cfg {String} content Box content
33870  * @cfg {String} icon Box icon
33871  * @cfg {String} footer Footer text
33872  * @cfg {String} fhref Footer href
33873  * 
33874  * @constructor
33875  * Create a new NumberBox
33876  * @param {Object} config The config object
33877  */
33878
33879
33880 Roo.bootstrap.dash.NumberBox = function(config){
33881     Roo.bootstrap.dash.NumberBox.superclass.constructor.call(this, config);
33882     
33883 };
33884
33885 Roo.extend(Roo.bootstrap.dash.NumberBox, Roo.bootstrap.Component,  {
33886     
33887     headline : '',
33888     content : '',
33889     icon : '',
33890     footer : '',
33891     fhref : '',
33892     ficon : '',
33893     
33894     getAutoCreate : function(){
33895         
33896         var cfg = {
33897             tag : 'div',
33898             cls : 'small-box ',
33899             cn : [
33900                 {
33901                     tag : 'div',
33902                     cls : 'inner',
33903                     cn :[
33904                         {
33905                             tag : 'h3',
33906                             cls : 'roo-headline',
33907                             html : this.headline
33908                         },
33909                         {
33910                             tag : 'p',
33911                             cls : 'roo-content',
33912                             html : this.content
33913                         }
33914                     ]
33915                 }
33916             ]
33917         };
33918         
33919         if(this.icon){
33920             cfg.cn.push({
33921                 tag : 'div',
33922                 cls : 'icon',
33923                 cn :[
33924                     {
33925                         tag : 'i',
33926                         cls : 'ion ' + this.icon
33927                     }
33928                 ]
33929             });
33930         }
33931         
33932         if(this.footer){
33933             var footer = {
33934                 tag : 'a',
33935                 cls : 'small-box-footer',
33936                 href : this.fhref || '#',
33937                 html : this.footer
33938             };
33939             
33940             cfg.cn.push(footer);
33941             
33942         }
33943         
33944         return  cfg;
33945     },
33946
33947     onRender : function(ct,position){
33948         Roo.bootstrap.dash.NumberBox.superclass.onRender.call(this,ct,position);
33949
33950
33951        
33952                 
33953     },
33954
33955     setHeadline: function (value)
33956     {
33957         this.el.select('.roo-headline',true).first().dom.innerHTML = value;
33958     },
33959     
33960     setFooter: function (value, href)
33961     {
33962         this.el.select('a.small-box-footer',true).first().dom.innerHTML = value;
33963         
33964         if(href){
33965             this.el.select('a.small-box-footer',true).first().attr('href', href);
33966         }
33967         
33968     },
33969
33970     setContent: function (value)
33971     {
33972         this.el.select('.roo-content',true).first().dom.innerHTML = value;
33973     },
33974
33975     initEvents: function() 
33976     {   
33977         
33978     }
33979     
33980 });
33981
33982  
33983 /*
33984  * - LGPL
33985  *
33986  * TabBox
33987  * 
33988  */
33989 Roo.bootstrap.dash = Roo.bootstrap.dash || {};
33990
33991 /**
33992  * @class Roo.bootstrap.dash.TabBox
33993  * @extends Roo.bootstrap.Component
33994  * @children Roo.bootstrap.dash.TabPane
33995  * Bootstrap TabBox class
33996  * @cfg {String} title Title of the TabBox
33997  * @cfg {String} icon Icon of the TabBox
33998  * @cfg {Boolean} showtabs (true|false) show the tabs default true
33999  * @cfg {Boolean} tabScrollable (true|false) tab scrollable when mobile view default false
34000  * 
34001  * @constructor
34002  * Create a new TabBox
34003  * @param {Object} config The config object
34004  */
34005
34006
34007 Roo.bootstrap.dash.TabBox = function(config){
34008     Roo.bootstrap.dash.TabBox.superclass.constructor.call(this, config);
34009     this.addEvents({
34010         // raw events
34011         /**
34012          * @event addpane
34013          * When a pane is added
34014          * @param {Roo.bootstrap.dash.TabPane} pane
34015          */
34016         "addpane" : true,
34017         /**
34018          * @event activatepane
34019          * When a pane is activated
34020          * @param {Roo.bootstrap.dash.TabPane} pane
34021          */
34022         "activatepane" : true
34023         
34024          
34025     });
34026     
34027     this.panes = [];
34028 };
34029
34030 Roo.extend(Roo.bootstrap.dash.TabBox, Roo.bootstrap.Component,  {
34031
34032     title : '',
34033     icon : false,
34034     showtabs : true,
34035     tabScrollable : false,
34036     
34037     getChildContainer : function()
34038     {
34039         return this.el.select('.tab-content', true).first();
34040     },
34041     
34042     getAutoCreate : function(){
34043         
34044         var header = {
34045             tag: 'li',
34046             cls: 'pull-left header',
34047             html: this.title,
34048             cn : []
34049         };
34050         
34051         if(this.icon){
34052             header.cn.push({
34053                 tag: 'i',
34054                 cls: 'fa ' + this.icon
34055             });
34056         }
34057         
34058         var h = {
34059             tag: 'ul',
34060             cls: 'nav nav-tabs pull-right',
34061             cn: [
34062                 header
34063             ]
34064         };
34065         
34066         if(this.tabScrollable){
34067             h = {
34068                 tag: 'div',
34069                 cls: 'tab-header',
34070                 cn: [
34071                     {
34072                         tag: 'ul',
34073                         cls: 'nav nav-tabs pull-right',
34074                         cn: [
34075                             header
34076                         ]
34077                     }
34078                 ]
34079             };
34080         }
34081         
34082         var cfg = {
34083             tag: 'div',
34084             cls: 'nav-tabs-custom',
34085             cn: [
34086                 h,
34087                 {
34088                     tag: 'div',
34089                     cls: 'tab-content no-padding',
34090                     cn: []
34091                 }
34092             ]
34093         };
34094
34095         return  cfg;
34096     },
34097     initEvents : function()
34098     {
34099         //Roo.log('add add pane handler');
34100         this.on('addpane', this.onAddPane, this);
34101     },
34102      /**
34103      * Updates the box title
34104      * @param {String} html to set the title to.
34105      */
34106     setTitle : function(value)
34107     {
34108         this.el.select('.nav-tabs .header', true).first().dom.innerHTML = value;
34109     },
34110     onAddPane : function(pane)
34111     {
34112         this.panes.push(pane);
34113         //Roo.log('addpane');
34114         //Roo.log(pane);
34115         // tabs are rendere left to right..
34116         if(!this.showtabs){
34117             return;
34118         }
34119         
34120         var ctr = this.el.select('.nav-tabs', true).first();
34121          
34122          
34123         var existing = ctr.select('.nav-tab',true);
34124         var qty = existing.getCount();;
34125         
34126         
34127         var tab = ctr.createChild({
34128             tag : 'li',
34129             cls : 'nav-tab' + (qty ? '' : ' active'),
34130             cn : [
34131                 {
34132                     tag : 'a',
34133                     href:'#',
34134                     html : pane.title
34135                 }
34136             ]
34137         }, qty ? existing.first().dom : ctr.select('.header', true).first().dom );
34138         pane.tab = tab;
34139         
34140         tab.on('click', this.onTabClick.createDelegate(this, [pane], true));
34141         if (!qty) {
34142             pane.el.addClass('active');
34143         }
34144         
34145                 
34146     },
34147     onTabClick : function(ev,un,ob,pane)
34148     {
34149         //Roo.log('tab - prev default');
34150         ev.preventDefault();
34151         
34152         
34153         this.el.select('.nav-tabs li.nav-tab', true).removeClass('active');
34154         pane.tab.addClass('active');
34155         //Roo.log(pane.title);
34156         this.getChildContainer().select('.tab-pane',true).removeClass('active');
34157         // technically we should have a deactivate event.. but maybe add later.
34158         // and it should not de-activate the selected tab...
34159         this.fireEvent('activatepane', pane);
34160         pane.el.addClass('active');
34161         pane.fireEvent('activate');
34162         
34163         
34164     },
34165     
34166     getActivePane : function()
34167     {
34168         var r = false;
34169         Roo.each(this.panes, function(p) {
34170             if(p.el.hasClass('active')){
34171                 r = p;
34172                 return false;
34173             }
34174             
34175             return;
34176         });
34177         
34178         return r;
34179     }
34180     
34181     
34182 });
34183
34184  
34185 /*
34186  * - LGPL
34187  *
34188  * Tab pane
34189  * 
34190  */
34191 Roo.bootstrap.dash = Roo.bootstrap.dash || {};
34192 /**
34193  * @class Roo.bootstrap.TabPane
34194  * @extends Roo.bootstrap.Component
34195  * @children  Roo.bootstrap.Graph Roo.bootstrap.Column
34196  * Bootstrap TabPane class
34197  * @cfg {Boolean} active (false | true) Default false
34198  * @cfg {String} title title of panel
34199
34200  * 
34201  * @constructor
34202  * Create a new TabPane
34203  * @param {Object} config The config object
34204  */
34205
34206 Roo.bootstrap.dash.TabPane = function(config){
34207     Roo.bootstrap.dash.TabPane.superclass.constructor.call(this, config);
34208     
34209     this.addEvents({
34210         // raw events
34211         /**
34212          * @event activate
34213          * When a pane is activated
34214          * @param {Roo.bootstrap.dash.TabPane} pane
34215          */
34216         "activate" : true
34217          
34218     });
34219 };
34220
34221 Roo.extend(Roo.bootstrap.dash.TabPane, Roo.bootstrap.Component,  {
34222     
34223     active : false,
34224     title : '',
34225     
34226     // the tabBox that this is attached to.
34227     tab : false,
34228      
34229     getAutoCreate : function() 
34230     {
34231         var cfg = {
34232             tag: 'div',
34233             cls: 'tab-pane'
34234         };
34235         
34236         if(this.active){
34237             cfg.cls += ' active';
34238         }
34239         
34240         return cfg;
34241     },
34242     initEvents  : function()
34243     {
34244         //Roo.log('trigger add pane handler');
34245         this.parent().fireEvent('addpane', this)
34246     },
34247     
34248      /**
34249      * Updates the tab title 
34250      * @param {String} html to set the title to.
34251      */
34252     setTitle: function(str)
34253     {
34254         if (!this.tab) {
34255             return;
34256         }
34257         this.title = str;
34258         this.tab.select('a', true).first().dom.innerHTML = str;
34259         
34260     }
34261     
34262     
34263     
34264 });
34265
34266  
34267
34268
34269  /*
34270  * - LGPL
34271  *
34272  * Tooltip
34273  * 
34274  */
34275
34276 /**
34277  * @class Roo.bootstrap.Tooltip
34278  * Bootstrap Tooltip class
34279  * This is basic at present - all componets support it by default, however they should add tooltipEl() method
34280  * to determine which dom element triggers the tooltip.
34281  * 
34282  * It needs to add support for additional attributes like tooltip-position
34283  * 
34284  * @constructor
34285  * Create a new Toolti
34286  * @param {Object} config The config object
34287  */
34288
34289 Roo.bootstrap.Tooltip = function(config){
34290     Roo.bootstrap.Tooltip.superclass.constructor.call(this, config);
34291     
34292     this.alignment = Roo.bootstrap.Tooltip.alignment;
34293     
34294     if(typeof(config) != 'undefined' && typeof(config.alignment) != 'undefined'){
34295         this.alignment = config.alignment;
34296     }
34297     
34298 };
34299
34300 Roo.apply(Roo.bootstrap.Tooltip, {
34301     /**
34302      * @function init initialize tooltip monitoring.
34303      * @static
34304      */
34305     currentEl : false,
34306     currentTip : false,
34307     currentRegion : false,
34308     
34309     //  init : delay?
34310     
34311     init : function()
34312     {
34313         Roo.get(document).on('mouseover', this.enter ,this);
34314         Roo.get(document).on('mouseout', this.leave, this);
34315          
34316         
34317         this.currentTip = new Roo.bootstrap.Tooltip();
34318     },
34319     
34320     enter : function(ev)
34321     {
34322         var dom = ev.getTarget();
34323         
34324         //Roo.log(['enter',dom]);
34325         var el = Roo.fly(dom);
34326         if (this.currentEl) {
34327             //Roo.log(dom);
34328             //Roo.log(this.currentEl);
34329             //Roo.log(this.currentEl.contains(dom));
34330             if (this.currentEl == el) {
34331                 return;
34332             }
34333             if (dom != this.currentEl.dom && this.currentEl.contains(dom)) {
34334                 return;
34335             }
34336
34337         }
34338         
34339         if (this.currentTip.el) {
34340             this.currentTip.el.setVisibilityMode(Roo.Element.DISPLAY).hide(); // force hiding...
34341         }    
34342         //Roo.log(ev);
34343         
34344         if(!el || el.dom == document){
34345             return;
34346         }
34347         
34348         var bindEl = el; 
34349         var pel = false;
34350         if (!el.attr('tooltip')) {
34351             pel = el.findParent("[tooltip]");
34352             if (pel) {
34353                 bindEl = Roo.get(pel);
34354             }
34355         }
34356         
34357        
34358         
34359         // you can not look for children, as if el is the body.. then everythign is the child..
34360         if (!pel && !el.attr('tooltip')) { //
34361             if (!el.select("[tooltip]").elements.length) {
34362                 return;
34363             }
34364             // is the mouse over this child...?
34365             bindEl = el.select("[tooltip]").first();
34366             var xy = ev.getXY();
34367             if (!bindEl.getRegion().contains( { top : xy[1] ,right : xy[0] , bottom : xy[1], left : xy[0]})) {
34368                 //Roo.log("not in region.");
34369                 return;
34370             }
34371             //Roo.log("child element over..");
34372             
34373         }
34374         this.currentEl = el;
34375         this.currentTip.bind(bindEl);
34376         this.currentRegion = Roo.lib.Region.getRegion(dom);
34377         this.currentTip.enter();
34378         
34379     },
34380     leave : function(ev)
34381     {
34382         var dom = ev.getTarget();
34383         //Roo.log(['leave',dom]);
34384         if (!this.currentEl) {
34385             return;
34386         }
34387         
34388         
34389         if (dom != this.currentEl.dom) {
34390             return;
34391         }
34392         var xy = ev.getXY();
34393         if (this.currentRegion.contains( new Roo.lib.Region( xy[1], xy[0] ,xy[1], xy[0]  ))) {
34394             return;
34395         }
34396         // only activate leave if mouse cursor is outside... bounding box..
34397         
34398         
34399         
34400         
34401         if (this.currentTip) {
34402             this.currentTip.leave();
34403         }
34404         //Roo.log('clear currentEl');
34405         this.currentEl = false;
34406         
34407         
34408     },
34409     alignment : {
34410         'left' : ['r-l', [-2,0], 'right'],
34411         'right' : ['l-r', [2,0], 'left'],
34412         'bottom' : ['t-b', [0,2], 'top'],
34413         'top' : [ 'b-t', [0,-2], 'bottom']
34414     }
34415     
34416 });
34417
34418
34419 Roo.extend(Roo.bootstrap.Tooltip, Roo.bootstrap.Component,  {
34420     
34421     
34422     bindEl : false,
34423     
34424     delay : null, // can be { show : 300 , hide: 500}
34425     
34426     timeout : null,
34427     
34428     hoverState : null, //???
34429     
34430     placement : 'bottom', 
34431     
34432     alignment : false,
34433     
34434     getAutoCreate : function(){
34435     
34436         var cfg = {
34437            cls : 'tooltip',   
34438            role : 'tooltip',
34439            cn : [
34440                 {
34441                     cls : 'tooltip-arrow arrow'
34442                 },
34443                 {
34444                     cls : 'tooltip-inner'
34445                 }
34446            ]
34447         };
34448         
34449         return cfg;
34450     },
34451     bind : function(el)
34452     {
34453         this.bindEl = el;
34454     },
34455     
34456     initEvents : function()
34457     {
34458         this.arrowEl = this.el.select('.arrow', true).first();
34459         this.innerEl = this.el.select('.tooltip-inner', true).first();
34460     },
34461     
34462     enter : function () {
34463        
34464         if (this.timeout != null) {
34465             clearTimeout(this.timeout);
34466         }
34467         
34468         this.hoverState = 'in';
34469          //Roo.log("enter - show");
34470         if (!this.delay || !this.delay.show) {
34471             this.show();
34472             return;
34473         }
34474         var _t = this;
34475         this.timeout = setTimeout(function () {
34476             if (_t.hoverState == 'in') {
34477                 _t.show();
34478             }
34479         }, this.delay.show);
34480     },
34481     leave : function()
34482     {
34483         clearTimeout(this.timeout);
34484     
34485         this.hoverState = 'out';
34486          if (!this.delay || !this.delay.hide) {
34487             this.hide();
34488             return;
34489         }
34490        
34491         var _t = this;
34492         this.timeout = setTimeout(function () {
34493             //Roo.log("leave - timeout");
34494             
34495             if (_t.hoverState == 'out') {
34496                 _t.hide();
34497                 Roo.bootstrap.Tooltip.currentEl = false;
34498             }
34499         }, delay);
34500     },
34501     
34502     show : function (msg)
34503     {
34504         if (!this.el) {
34505             this.render(document.body);
34506         }
34507         // set content.
34508         //Roo.log([this.bindEl, this.bindEl.attr('tooltip')]);
34509         
34510         var tip = msg || this.bindEl.attr('tooltip') || this.bindEl.select("[tooltip]").first().attr('tooltip');
34511         
34512         this.el.select('.tooltip-inner',true).first().dom.innerHTML = tip;
34513         
34514         this.el.removeClass(['fade','top','bottom', 'left', 'right','in',
34515                              'bs-tooltip-top','bs-tooltip-bottom', 'bs-tooltip-left', 'bs-tooltip-right']);
34516
34517         if(this.bindEl.attr('tooltip-class')) {
34518             this.el.addClass(this.bindEl.attr('tooltip-class'));
34519         }
34520         
34521         var placement = typeof this.placement == 'function' ?
34522             this.placement.call(this, this.el, on_el) :
34523             this.placement;
34524         
34525         if(this.bindEl.attr('tooltip-placement')) {
34526             placement = this.bindEl.attr('tooltip-placement');
34527         }
34528             
34529         var autoToken = /\s?auto?\s?/i;
34530         var autoPlace = autoToken.test(placement);
34531         if (autoPlace) {
34532             placement = placement.replace(autoToken, '') || 'top';
34533         }
34534         
34535         //this.el.detach()
34536         //this.el.setXY([0,0]);
34537         this.el.show();
34538         //this.el.dom.style.display='block';
34539         
34540         //this.el.appendTo(on_el);
34541         
34542         var p = this.getPosition();
34543         var box = this.el.getBox();
34544         
34545         if (autoPlace) {
34546             // fixme..
34547         }
34548         
34549         var align = this.alignment[placement];
34550         
34551         var xy = this.el.getAlignToXY(this.bindEl, align[0], align[1]);
34552         
34553         if(placement == 'top' || placement == 'bottom'){
34554             if(xy[0] < 0){
34555                 placement = 'right';
34556             }
34557             
34558             if(xy[0] + this.el.getWidth() > Roo.lib.Dom.getViewWidth()){
34559                 placement = 'left';
34560             }
34561             
34562             var scroll = Roo.select('body', true).first().getScroll();
34563             
34564             if(xy[1] > Roo.lib.Dom.getViewHeight() + scroll.top - this.el.getHeight()){
34565                 placement = 'top';
34566             }
34567             
34568             align = this.alignment[placement];
34569             
34570             this.arrowEl.setLeft((this.innerEl.getWidth()/2) - 5);
34571             
34572         }
34573         
34574         var elems = document.getElementsByTagName('div');
34575         var highest = Number.MIN_SAFE_INTEGER || -(Math.pow(2, 53) - 1);
34576         for (var i = 0; i < elems.length; i++) {
34577           var zindex = Number.parseInt(
34578                 document.defaultView.getComputedStyle(elems[i], null).getPropertyValue("z-index"),
34579                 10
34580           );
34581           if (zindex > highest) {
34582             highest = zindex;
34583           }
34584         }
34585         
34586         
34587         
34588         this.el.dom.style.zIndex = highest;
34589         
34590         this.el.alignTo(this.bindEl, align[0],align[1]);
34591         //var arrow = this.el.select('.arrow',true).first();
34592         //arrow.set(align[2], 
34593         
34594         this.el.addClass(placement);
34595         this.el.addClass("bs-tooltip-"+ placement);
34596         
34597         this.el.addClass('in fade show');
34598         
34599         this.hoverState = null;
34600         
34601         if (this.el.hasClass('fade')) {
34602             // fade it?
34603         }
34604         
34605         
34606         
34607         
34608         
34609     },
34610     hide : function()
34611     {
34612          
34613         if (!this.el) {
34614             return;
34615         }
34616         //this.el.setXY([0,0]);
34617         if(this.bindEl.attr('tooltip-class')) {
34618             this.el.removeClass(this.bindEl.attr('tooltip-class'));
34619         }
34620         this.el.removeClass(['show', 'in']);
34621         //this.el.hide();
34622         
34623     }
34624     
34625 });
34626  
34627
34628  /*
34629  * - LGPL
34630  *
34631  * Location Picker
34632  * 
34633  */
34634
34635 /**
34636  * @class Roo.bootstrap.LocationPicker
34637  * @extends Roo.bootstrap.Component
34638  * Bootstrap LocationPicker class
34639  * @cfg {Number} latitude Position when init default 0
34640  * @cfg {Number} longitude Position when init default 0
34641  * @cfg {Number} zoom default 15
34642  * @cfg {String} mapTypeId default google.maps.MapTypeId.ROADMAP
34643  * @cfg {Boolean} mapTypeControl default false
34644  * @cfg {Boolean} disableDoubleClickZoom default false
34645  * @cfg {Boolean} scrollwheel default true
34646  * @cfg {Boolean} streetViewControl default false
34647  * @cfg {Number} radius default 0
34648  * @cfg {String} locationName
34649  * @cfg {Boolean} draggable default true
34650  * @cfg {Boolean} enableAutocomplete default false
34651  * @cfg {Boolean} enableReverseGeocode default true
34652  * @cfg {String} markerTitle
34653  * 
34654  * @constructor
34655  * Create a new LocationPicker
34656  * @param {Object} config The config object
34657  */
34658
34659
34660 Roo.bootstrap.LocationPicker = function(config){
34661     
34662     Roo.bootstrap.LocationPicker.superclass.constructor.call(this, config);
34663     
34664     this.addEvents({
34665         /**
34666          * @event initial
34667          * Fires when the picker initialized.
34668          * @param {Roo.bootstrap.LocationPicker} this
34669          * @param {Google Location} location
34670          */
34671         initial : true,
34672         /**
34673          * @event positionchanged
34674          * Fires when the picker position changed.
34675          * @param {Roo.bootstrap.LocationPicker} this
34676          * @param {Google Location} location
34677          */
34678         positionchanged : true,
34679         /**
34680          * @event resize
34681          * Fires when the map resize.
34682          * @param {Roo.bootstrap.LocationPicker} this
34683          */
34684         resize : true,
34685         /**
34686          * @event show
34687          * Fires when the map show.
34688          * @param {Roo.bootstrap.LocationPicker} this
34689          */
34690         show : true,
34691         /**
34692          * @event hide
34693          * Fires when the map hide.
34694          * @param {Roo.bootstrap.LocationPicker} this
34695          */
34696         hide : true,
34697         /**
34698          * @event mapClick
34699          * Fires when click the map.
34700          * @param {Roo.bootstrap.LocationPicker} this
34701          * @param {Map event} e
34702          */
34703         mapClick : true,
34704         /**
34705          * @event mapRightClick
34706          * Fires when right click the map.
34707          * @param {Roo.bootstrap.LocationPicker} this
34708          * @param {Map event} e
34709          */
34710         mapRightClick : true,
34711         /**
34712          * @event markerClick
34713          * Fires when click the marker.
34714          * @param {Roo.bootstrap.LocationPicker} this
34715          * @param {Map event} e
34716          */
34717         markerClick : true,
34718         /**
34719          * @event markerRightClick
34720          * Fires when right click the marker.
34721          * @param {Roo.bootstrap.LocationPicker} this
34722          * @param {Map event} e
34723          */
34724         markerRightClick : true,
34725         /**
34726          * @event OverlayViewDraw
34727          * Fires when OverlayView Draw
34728          * @param {Roo.bootstrap.LocationPicker} this
34729          */
34730         OverlayViewDraw : true,
34731         /**
34732          * @event OverlayViewOnAdd
34733          * Fires when OverlayView Draw
34734          * @param {Roo.bootstrap.LocationPicker} this
34735          */
34736         OverlayViewOnAdd : true,
34737         /**
34738          * @event OverlayViewOnRemove
34739          * Fires when OverlayView Draw
34740          * @param {Roo.bootstrap.LocationPicker} this
34741          */
34742         OverlayViewOnRemove : true,
34743         /**
34744          * @event OverlayViewShow
34745          * Fires when OverlayView Draw
34746          * @param {Roo.bootstrap.LocationPicker} this
34747          * @param {Pixel} cpx
34748          */
34749         OverlayViewShow : true,
34750         /**
34751          * @event OverlayViewHide
34752          * Fires when OverlayView Draw
34753          * @param {Roo.bootstrap.LocationPicker} this
34754          */
34755         OverlayViewHide : true,
34756         /**
34757          * @event loadexception
34758          * Fires when load google lib failed.
34759          * @param {Roo.bootstrap.LocationPicker} this
34760          */
34761         loadexception : true
34762     });
34763         
34764 };
34765
34766 Roo.extend(Roo.bootstrap.LocationPicker, Roo.bootstrap.Component,  {
34767     
34768     gMapContext: false,
34769     
34770     latitude: 0,
34771     longitude: 0,
34772     zoom: 15,
34773     mapTypeId: false,
34774     mapTypeControl: false,
34775     disableDoubleClickZoom: false,
34776     scrollwheel: true,
34777     streetViewControl: false,
34778     radius: 0,
34779     locationName: '',
34780     draggable: true,
34781     enableAutocomplete: false,
34782     enableReverseGeocode: true,
34783     markerTitle: '',
34784     
34785     getAutoCreate: function()
34786     {
34787
34788         var cfg = {
34789             tag: 'div',
34790             cls: 'roo-location-picker'
34791         };
34792         
34793         return cfg
34794     },
34795     
34796     initEvents: function(ct, position)
34797     {       
34798         if(!this.el.getWidth() || this.isApplied()){
34799             return;
34800         }
34801         
34802         this.el.setVisibilityMode(Roo.Element.DISPLAY);
34803         
34804         this.initial();
34805     },
34806     
34807     initial: function()
34808     {
34809         if(typeof(google) == 'undefined' || typeof(google.maps) == 'undefined'){
34810             this.fireEvent('loadexception', this);
34811             return;
34812         }
34813         
34814         if(!this.mapTypeId){
34815             this.mapTypeId = google.maps.MapTypeId.ROADMAP;
34816         }
34817         
34818         this.gMapContext = this.GMapContext();
34819         
34820         this.initOverlayView();
34821         
34822         this.OverlayView = new Roo.bootstrap.LocationPicker.OverlayView(this.gMapContext.map);
34823         
34824         var _this = this;
34825                 
34826         google.maps.event.addListener(this.gMapContext.marker, "dragend", function(event) {
34827             _this.setPosition(_this.gMapContext.marker.position);
34828         });
34829         
34830         google.maps.event.addListener(this.gMapContext.map, 'click', function(event){
34831             _this.fireEvent('mapClick', this, event);
34832             
34833         });
34834
34835         google.maps.event.addListener(this.gMapContext.map, 'rightclick', function(event){
34836             _this.fireEvent('mapRightClick', this, event);
34837             
34838         });
34839         
34840         google.maps.event.addListener(this.gMapContext.marker, 'click', function(event){
34841             _this.fireEvent('markerClick', this, event);
34842             
34843         });
34844
34845         google.maps.event.addListener(this.gMapContext.marker, 'rightclick', function(event){
34846             _this.fireEvent('markerRightClick', this, event);
34847             
34848         });
34849         
34850         this.setPosition(this.gMapContext.location);
34851         
34852         this.fireEvent('initial', this, this.gMapContext.location);
34853     },
34854     
34855     initOverlayView: function()
34856     {
34857         var _this = this;
34858         
34859         Roo.bootstrap.LocationPicker.OverlayView.prototype = Roo.apply(new google.maps.OverlayView(), {
34860             
34861             draw: function()
34862             {
34863                 _this.fireEvent('OverlayViewDraw', _this);
34864             },
34865             
34866             onAdd: function()
34867             {
34868                 _this.fireEvent('OverlayViewOnAdd', _this);
34869             },
34870             
34871             onRemove: function()
34872             {
34873                 _this.fireEvent('OverlayViewOnRemove', _this);
34874             },
34875             
34876             show: function(cpx)
34877             {
34878                 _this.fireEvent('OverlayViewShow', _this, cpx);
34879             },
34880             
34881             hide: function()
34882             {
34883                 _this.fireEvent('OverlayViewHide', _this);
34884             }
34885             
34886         });
34887     },
34888     
34889     fromLatLngToContainerPixel: function(event)
34890     {
34891         return this.OverlayView.getProjection().fromLatLngToContainerPixel(event.latLng);
34892     },
34893     
34894     isApplied: function() 
34895     {
34896         return this.getGmapContext() == false ? false : true;
34897     },
34898     
34899     getGmapContext: function() 
34900     {
34901         return (typeof(this.gMapContext) == 'undefined') ? false : this.gMapContext;
34902     },
34903     
34904     GMapContext: function() 
34905     {
34906         var position = new google.maps.LatLng(this.latitude, this.longitude);
34907         
34908         var _map = new google.maps.Map(this.el.dom, {
34909             center: position,
34910             zoom: this.zoom,
34911             mapTypeId: this.mapTypeId,
34912             mapTypeControl: this.mapTypeControl,
34913             disableDoubleClickZoom: this.disableDoubleClickZoom,
34914             scrollwheel: this.scrollwheel,
34915             streetViewControl: this.streetViewControl,
34916             locationName: this.locationName,
34917             draggable: this.draggable,
34918             enableAutocomplete: this.enableAutocomplete,
34919             enableReverseGeocode: this.enableReverseGeocode
34920         });
34921         
34922         var _marker = new google.maps.Marker({
34923             position: position,
34924             map: _map,
34925             title: this.markerTitle,
34926             draggable: this.draggable
34927         });
34928         
34929         return {
34930             map: _map,
34931             marker: _marker,
34932             circle: null,
34933             location: position,
34934             radius: this.radius,
34935             locationName: this.locationName,
34936             addressComponents: {
34937                 formatted_address: null,
34938                 addressLine1: null,
34939                 addressLine2: null,
34940                 streetName: null,
34941                 streetNumber: null,
34942                 city: null,
34943                 district: null,
34944                 state: null,
34945                 stateOrProvince: null
34946             },
34947             settings: this,
34948             domContainer: this.el.dom,
34949             geodecoder: new google.maps.Geocoder()
34950         };
34951     },
34952     
34953     drawCircle: function(center, radius, options) 
34954     {
34955         if (this.gMapContext.circle != null) {
34956             this.gMapContext.circle.setMap(null);
34957         }
34958         if (radius > 0) {
34959             radius *= 1;
34960             options = Roo.apply({}, options, {
34961                 strokeColor: "#0000FF",
34962                 strokeOpacity: .35,
34963                 strokeWeight: 2,
34964                 fillColor: "#0000FF",
34965                 fillOpacity: .2
34966             });
34967             
34968             options.map = this.gMapContext.map;
34969             options.radius = radius;
34970             options.center = center;
34971             this.gMapContext.circle = new google.maps.Circle(options);
34972             return this.gMapContext.circle;
34973         }
34974         
34975         return null;
34976     },
34977     
34978     setPosition: function(location) 
34979     {
34980         this.gMapContext.location = location;
34981         this.gMapContext.marker.setPosition(location);
34982         this.gMapContext.map.panTo(location);
34983         this.drawCircle(location, this.gMapContext.radius, {});
34984         
34985         var _this = this;
34986         
34987         if (this.gMapContext.settings.enableReverseGeocode) {
34988             this.gMapContext.geodecoder.geocode({
34989                 latLng: this.gMapContext.location
34990             }, function(results, status) {
34991                 
34992                 if (status == google.maps.GeocoderStatus.OK && results.length > 0) {
34993                     _this.gMapContext.locationName = results[0].formatted_address;
34994                     _this.gMapContext.addressComponents = _this.address_component_from_google_geocode(results[0].address_components);
34995                     
34996                     _this.fireEvent('positionchanged', this, location);
34997                 }
34998             });
34999             
35000             return;
35001         }
35002         
35003         this.fireEvent('positionchanged', this, location);
35004     },
35005     
35006     resize: function()
35007     {
35008         google.maps.event.trigger(this.gMapContext.map, "resize");
35009         
35010         this.gMapContext.map.setCenter(this.gMapContext.marker.position);
35011         
35012         this.fireEvent('resize', this);
35013     },
35014     
35015     setPositionByLatLng: function(latitude, longitude)
35016     {
35017         this.setPosition(new google.maps.LatLng(latitude, longitude));
35018     },
35019     
35020     getCurrentPosition: function() 
35021     {
35022         return {
35023             latitude: this.gMapContext.location.lat(),
35024             longitude: this.gMapContext.location.lng()
35025         };
35026     },
35027     
35028     getAddressName: function() 
35029     {
35030         return this.gMapContext.locationName;
35031     },
35032     
35033     getAddressComponents: function() 
35034     {
35035         return this.gMapContext.addressComponents;
35036     },
35037     
35038     address_component_from_google_geocode: function(address_components) 
35039     {
35040         var result = {};
35041         
35042         for (var i = 0; i < address_components.length; i++) {
35043             var component = address_components[i];
35044             if (component.types.indexOf("postal_code") >= 0) {
35045                 result.postalCode = component.short_name;
35046             } else if (component.types.indexOf("street_number") >= 0) {
35047                 result.streetNumber = component.short_name;
35048             } else if (component.types.indexOf("route") >= 0) {
35049                 result.streetName = component.short_name;
35050             } else if (component.types.indexOf("neighborhood") >= 0) {
35051                 result.city = component.short_name;
35052             } else if (component.types.indexOf("locality") >= 0) {
35053                 result.city = component.short_name;
35054             } else if (component.types.indexOf("sublocality") >= 0) {
35055                 result.district = component.short_name;
35056             } else if (component.types.indexOf("administrative_area_level_1") >= 0) {
35057                 result.stateOrProvince = component.short_name;
35058             } else if (component.types.indexOf("country") >= 0) {
35059                 result.country = component.short_name;
35060             }
35061         }
35062         
35063         result.addressLine1 = [ result.streetNumber, result.streetName ].join(" ").trim();
35064         result.addressLine2 = "";
35065         return result;
35066     },
35067     
35068     setZoomLevel: function(zoom)
35069     {
35070         this.gMapContext.map.setZoom(zoom);
35071     },
35072     
35073     show: function()
35074     {
35075         if(!this.el){
35076             return;
35077         }
35078         
35079         this.el.show();
35080         
35081         this.resize();
35082         
35083         this.fireEvent('show', this);
35084     },
35085     
35086     hide: function()
35087     {
35088         if(!this.el){
35089             return;
35090         }
35091         
35092         this.el.hide();
35093         
35094         this.fireEvent('hide', this);
35095     }
35096     
35097 });
35098
35099 Roo.apply(Roo.bootstrap.LocationPicker, {
35100     
35101     OverlayView : function(map, options)
35102     {
35103         options = options || {};
35104         
35105         this.setMap(map);
35106     }
35107     
35108     
35109 });/**
35110  * @class Roo.bootstrap.Alert
35111  * @extends Roo.bootstrap.Component
35112  * Bootstrap Alert class - shows an alert area box
35113  * eg
35114  * <div class="alert alert-danger" role="alert"><span class="fa fa-exclamation-triangle"></span><span class="sr-only">Error:</span>
35115   Enter a valid email address
35116 </div>
35117  * @licence LGPL
35118  * @cfg {String} title The title of alert
35119  * @cfg {String} html The content of alert
35120  * @cfg {String} weight (success|info|warning|danger) Weight of the message
35121  * @cfg {String} fa font-awesomeicon
35122  * @cfg {Number} seconds default:-1 Number of seconds until it disapears (-1 means never.)
35123  * @cfg {Boolean} close true to show a x closer
35124  * 
35125  * 
35126  * @constructor
35127  * Create a new alert
35128  * @param {Object} config The config object
35129  */
35130
35131
35132 Roo.bootstrap.Alert = function(config){
35133     Roo.bootstrap.Alert.superclass.constructor.call(this, config);
35134     
35135 };
35136
35137 Roo.extend(Roo.bootstrap.Alert, Roo.bootstrap.Component,  {
35138     
35139     title: '',
35140     html: '',
35141     weight: false,
35142     fa: false,
35143     faicon: false, // BC
35144     close : false,
35145     
35146     
35147     getAutoCreate : function()
35148     {
35149         
35150         var cfg = {
35151             tag : 'div',
35152             cls : 'alert',
35153             cn : [
35154                 {
35155                     tag: 'button',
35156                     type :  "button",
35157                     cls: "close",
35158                     html : '×',
35159                     style : this.close ? '' : 'display:none'
35160                 },
35161                 {
35162                     tag : 'i',
35163                     cls : 'roo-alert-icon'
35164                     
35165                 },
35166                 {
35167                     tag : 'b',
35168                     cls : 'roo-alert-title',
35169                     html : this.title
35170                 },
35171                 {
35172                     tag : 'span',
35173                     cls : 'roo-alert-text',
35174                     html : this.html
35175                 }
35176             ]
35177         };
35178         
35179         if(this.faicon){
35180             cfg.cn[0].cls += ' fa ' + this.faicon;
35181         }
35182         if(this.fa){
35183             cfg.cn[0].cls += ' fa ' + this.fa;
35184         }
35185         
35186         if(this.weight){
35187             cfg.cls += ' alert-' + this.weight;
35188         }
35189         
35190         return cfg;
35191     },
35192     
35193     initEvents: function() 
35194     {
35195         this.el.setVisibilityMode(Roo.Element.DISPLAY);
35196         this.titleEl =  this.el.select('.roo-alert-title',true).first();
35197         this.iconEl = this.el.select('.roo-alert-icon',true).first();
35198         this.htmlEl = this.el.select('.roo-alert-text',true).first();
35199         if (this.seconds > 0) {
35200             this.hide.defer(this.seconds, this);
35201         }
35202     },
35203     /**
35204      * Set the Title Message HTML
35205      * @param {String} html
35206      */
35207     setTitle : function(str)
35208     {
35209         this.titleEl.dom.innerHTML = str;
35210     },
35211      
35212      /**
35213      * Set the Body Message HTML
35214      * @param {String} html
35215      */
35216     setHtml : function(str)
35217     {
35218         this.htmlEl.dom.innerHTML = str;
35219     },
35220     /**
35221      * Set the Weight of the alert
35222      * @param {String} (success|info|warning|danger) weight
35223      */
35224     
35225     setWeight : function(weight)
35226     {
35227         if(this.weight){
35228             this.el.removeClass('alert-' + this.weight);
35229         }
35230         
35231         this.weight = weight;
35232         
35233         this.el.addClass('alert-' + this.weight);
35234     },
35235       /**
35236      * Set the Icon of the alert
35237      * @param {String} see fontawsome names (name without the 'fa-' bit)
35238      */
35239     setIcon : function(icon)
35240     {
35241         if(this.faicon){
35242             this.alertEl.removeClass(['fa', 'fa-' + this.faicon]);
35243         }
35244         
35245         this.faicon = icon;
35246         
35247         this.alertEl.addClass(['fa', 'fa-' + this.faicon]);
35248     },
35249     /**
35250      * Hide the Alert
35251      */
35252     hide: function() 
35253     {
35254         this.el.hide();   
35255     },
35256     /**
35257      * Show the Alert
35258      */
35259     show: function() 
35260     {  
35261         this.el.show();   
35262     }
35263     
35264 });
35265
35266  
35267 /*
35268 * Licence: LGPL
35269 */
35270
35271 /**
35272  * @class Roo.bootstrap.UploadCropbox
35273  * @extends Roo.bootstrap.Component
35274  * Bootstrap UploadCropbox class
35275  * @cfg {String} emptyText show when image has been loaded
35276  * @cfg {String} rotateNotify show when image too small to rotate
35277  * @cfg {Number} errorTimeout default 3000
35278  * @cfg {Number} minWidth default 300
35279  * @cfg {Number} minHeight default 300
35280  * @cfg {Array} buttons default ['rotateLeft', 'pictureBtn', 'rotateRight']
35281  * @cfg {Boolean} isDocument (true|false) default false
35282  * @cfg {String} url action url
35283  * @cfg {String} paramName default 'imageUpload'
35284  * @cfg {String} method default POST
35285  * @cfg {Boolean} loadMask (true|false) default true
35286  * @cfg {Boolean} loadingText default 'Loading...'
35287  * 
35288  * @constructor
35289  * Create a new UploadCropbox
35290  * @param {Object} config The config object
35291  */
35292
35293 Roo.bootstrap.UploadCropbox = function(config){
35294     Roo.bootstrap.UploadCropbox.superclass.constructor.call(this, config);
35295     
35296     this.addEvents({
35297         /**
35298          * @event beforeselectfile
35299          * Fire before select file
35300          * @param {Roo.bootstrap.UploadCropbox} this
35301          */
35302         "beforeselectfile" : true,
35303         /**
35304          * @event initial
35305          * Fire after initEvent
35306          * @param {Roo.bootstrap.UploadCropbox} this
35307          */
35308         "initial" : true,
35309         /**
35310          * @event crop
35311          * Fire after initEvent
35312          * @param {Roo.bootstrap.UploadCropbox} this
35313          * @param {String} data
35314          */
35315         "crop" : true,
35316         /**
35317          * @event prepare
35318          * Fire when preparing the file data
35319          * @param {Roo.bootstrap.UploadCropbox} this
35320          * @param {Object} file
35321          */
35322         "prepare" : true,
35323         /**
35324          * @event exception
35325          * Fire when get exception
35326          * @param {Roo.bootstrap.UploadCropbox} this
35327          * @param {XMLHttpRequest} xhr
35328          */
35329         "exception" : true,
35330         /**
35331          * @event beforeloadcanvas
35332          * Fire before load the canvas
35333          * @param {Roo.bootstrap.UploadCropbox} this
35334          * @param {String} src
35335          */
35336         "beforeloadcanvas" : true,
35337         /**
35338          * @event trash
35339          * Fire when trash image
35340          * @param {Roo.bootstrap.UploadCropbox} this
35341          */
35342         "trash" : true,
35343         /**
35344          * @event download
35345          * Fire when download the image
35346          * @param {Roo.bootstrap.UploadCropbox} this
35347          */
35348         "download" : true,
35349         /**
35350          * @event footerbuttonclick
35351          * Fire when footerbuttonclick
35352          * @param {Roo.bootstrap.UploadCropbox} this
35353          * @param {String} type
35354          */
35355         "footerbuttonclick" : true,
35356         /**
35357          * @event resize
35358          * Fire when resize
35359          * @param {Roo.bootstrap.UploadCropbox} this
35360          */
35361         "resize" : true,
35362         /**
35363          * @event rotate
35364          * Fire when rotate the image
35365          * @param {Roo.bootstrap.UploadCropbox} this
35366          * @param {String} pos
35367          */
35368         "rotate" : true,
35369         /**
35370          * @event inspect
35371          * Fire when inspect the file
35372          * @param {Roo.bootstrap.UploadCropbox} this
35373          * @param {Object} file
35374          */
35375         "inspect" : true,
35376         /**
35377          * @event upload
35378          * Fire when xhr upload the file
35379          * @param {Roo.bootstrap.UploadCropbox} this
35380          * @param {Object} data
35381          */
35382         "upload" : true,
35383         /**
35384          * @event arrange
35385          * Fire when arrange the file data
35386          * @param {Roo.bootstrap.UploadCropbox} this
35387          * @param {Object} formData
35388          */
35389         "arrange" : true
35390     });
35391     
35392     this.buttons = this.buttons || Roo.bootstrap.UploadCropbox.footer.STANDARD;
35393 };
35394
35395 Roo.extend(Roo.bootstrap.UploadCropbox, Roo.bootstrap.Component,  {
35396     
35397     emptyText : 'Click to upload image',
35398     rotateNotify : 'Image is too small to rotate',
35399     errorTimeout : 3000,
35400     scale : 0,
35401     baseScale : 1,
35402     rotate : 0,
35403     dragable : false,
35404     pinching : false,
35405     mouseX : 0,
35406     mouseY : 0,
35407     cropData : false,
35408     minWidth : 300,
35409     minHeight : 300,
35410     file : false,
35411     exif : {},
35412     baseRotate : 1,
35413     cropType : 'image/jpeg',
35414     buttons : false,
35415     canvasLoaded : false,
35416     isDocument : false,
35417     method : 'POST',
35418     paramName : 'imageUpload',
35419     loadMask : true,
35420     loadingText : 'Loading...',
35421     maskEl : false,
35422     
35423     getAutoCreate : function()
35424     {
35425         var cfg = {
35426             tag : 'div',
35427             cls : 'roo-upload-cropbox',
35428             cn : [
35429                 {
35430                     tag : 'input',
35431                     cls : 'roo-upload-cropbox-selector',
35432                     type : 'file'
35433                 },
35434                 {
35435                     tag : 'div',
35436                     cls : 'roo-upload-cropbox-body',
35437                     style : 'cursor:pointer',
35438                     cn : [
35439                         {
35440                             tag : 'div',
35441                             cls : 'roo-upload-cropbox-preview'
35442                         },
35443                         {
35444                             tag : 'div',
35445                             cls : 'roo-upload-cropbox-thumb'
35446                         },
35447                         {
35448                             tag : 'div',
35449                             cls : 'roo-upload-cropbox-empty-notify',
35450                             html : this.emptyText
35451                         },
35452                         {
35453                             tag : 'div',
35454                             cls : 'roo-upload-cropbox-error-notify alert alert-danger',
35455                             html : this.rotateNotify
35456                         }
35457                     ]
35458                 },
35459                 {
35460                     tag : 'div',
35461                     cls : 'roo-upload-cropbox-footer',
35462                     cn : {
35463                         tag : 'div',
35464                         cls : 'btn-group btn-group-justified roo-upload-cropbox-btn-group',
35465                         cn : []
35466                     }
35467                 }
35468             ]
35469         };
35470         
35471         return cfg;
35472     },
35473     
35474     onRender : function(ct, position)
35475     {
35476         Roo.bootstrap.UploadCropbox.superclass.onRender.call(this, ct, position);
35477         
35478         if (this.buttons.length) {
35479             
35480             Roo.each(this.buttons, function(bb) {
35481                 
35482                 var btn = this.el.select('.roo-upload-cropbox-footer div.roo-upload-cropbox-btn-group').first().createChild(bb);
35483                 
35484                 btn.on('click', this.onFooterButtonClick.createDelegate(this, [bb.action], true));
35485                 
35486             }, this);
35487         }
35488         
35489         if(this.loadMask){
35490             this.maskEl = this.el;
35491         }
35492     },
35493     
35494     initEvents : function()
35495     {
35496         this.urlAPI = (window.createObjectURL && window) || 
35497                                 (window.URL && URL.revokeObjectURL && URL) || 
35498                                 (window.webkitURL && webkitURL);
35499                         
35500         this.bodyEl = this.el.select('.roo-upload-cropbox-body', true).first();
35501         this.bodyEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
35502         
35503         this.selectorEl = this.el.select('.roo-upload-cropbox-selector', true).first();
35504         this.selectorEl.hide();
35505         
35506         this.previewEl = this.el.select('.roo-upload-cropbox-preview', true).first();
35507         this.previewEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
35508         
35509         this.thumbEl = this.el.select('.roo-upload-cropbox-thumb', true).first();
35510         this.thumbEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
35511         this.thumbEl.hide();
35512         
35513         this.notifyEl = this.el.select('.roo-upload-cropbox-empty-notify', true).first();
35514         this.notifyEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
35515         
35516         this.errorEl = this.el.select('.roo-upload-cropbox-error-notify', true).first();
35517         this.errorEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
35518         this.errorEl.hide();
35519         
35520         this.footerEl = this.el.select('.roo-upload-cropbox-footer', true).first();
35521         this.footerEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
35522         this.footerEl.hide();
35523         
35524         this.setThumbBoxSize();
35525         
35526         this.bind();
35527         
35528         this.resize();
35529         
35530         this.fireEvent('initial', this);
35531     },
35532
35533     bind : function()
35534     {
35535         var _this = this;
35536         
35537         window.addEventListener("resize", function() { _this.resize(); } );
35538         
35539         this.bodyEl.on('click', this.beforeSelectFile, this);
35540         
35541         if(Roo.isTouch){
35542             this.bodyEl.on('touchstart', this.onTouchStart, this);
35543             this.bodyEl.on('touchmove', this.onTouchMove, this);
35544             this.bodyEl.on('touchend', this.onTouchEnd, this);
35545         }
35546         
35547         if(!Roo.isTouch){
35548             this.bodyEl.on('mousedown', this.onMouseDown, this);
35549             this.bodyEl.on('mousemove', this.onMouseMove, this);
35550             var mousewheel = (/Firefox/i.test(navigator.userAgent))? 'DOMMouseScroll' : 'mousewheel';
35551             this.bodyEl.on(mousewheel, this.onMouseWheel, this);
35552             Roo.get(document).on('mouseup', this.onMouseUp, this);
35553         }
35554         
35555         this.selectorEl.on('change', this.onFileSelected, this);
35556     },
35557     
35558     reset : function()
35559     {    
35560         this.scale = 0;
35561         this.baseScale = 1;
35562         this.rotate = 0;
35563         this.baseRotate = 1;
35564         this.dragable = false;
35565         this.pinching = false;
35566         this.mouseX = 0;
35567         this.mouseY = 0;
35568         this.cropData = false;
35569         this.notifyEl.dom.innerHTML = this.emptyText;
35570         
35571         this.selectorEl.dom.value = '';
35572         
35573     },
35574     
35575     resize : function()
35576     {
35577         if(this.fireEvent('resize', this) != false){
35578             this.setThumbBoxPosition();
35579             this.setCanvasPosition();
35580         }
35581     },
35582     
35583     onFooterButtonClick : function(e, el, o, type)
35584     {
35585         switch (type) {
35586             case 'rotate-left' :
35587                 this.onRotateLeft(e);
35588                 break;
35589             case 'rotate-right' :
35590                 this.onRotateRight(e);
35591                 break;
35592             case 'picture' :
35593                 this.beforeSelectFile(e);
35594                 break;
35595             case 'trash' :
35596                 this.trash(e);
35597                 break;
35598             case 'crop' :
35599                 this.crop(e);
35600                 break;
35601             case 'download' :
35602                 this.download(e);
35603                 break;
35604             default :
35605                 break;
35606         }
35607         
35608         this.fireEvent('footerbuttonclick', this, type);
35609     },
35610     
35611     beforeSelectFile : function(e)
35612     {
35613         e.preventDefault();
35614         
35615         if(this.fireEvent('beforeselectfile', this) != false){
35616             this.selectorEl.dom.click();
35617         }
35618     },
35619     
35620     onFileSelected : function(e)
35621     {
35622         e.preventDefault();
35623         
35624         if(typeof(this.selectorEl.dom.files) == 'undefined' || !this.selectorEl.dom.files.length){
35625             return;
35626         }
35627         
35628         var file = this.selectorEl.dom.files[0];
35629         
35630         if(this.fireEvent('inspect', this, file) != false){
35631             this.prepare(file);
35632         }
35633         
35634     },
35635     
35636     trash : function(e)
35637     {
35638         this.fireEvent('trash', this);
35639     },
35640     
35641     download : function(e)
35642     {
35643         this.fireEvent('download', this);
35644     },
35645     
35646     loadCanvas : function(src)
35647     {   
35648         if(this.fireEvent('beforeloadcanvas', this, src) != false){
35649             
35650             this.reset();
35651             
35652             this.imageEl = document.createElement('img');
35653             
35654             var _this = this;
35655             
35656             this.imageEl.addEventListener("load", function(){ _this.onLoadCanvas(); });
35657             
35658             this.imageEl.src = src;
35659         }
35660     },
35661     
35662     onLoadCanvas : function()
35663     {   
35664         this.imageEl.OriginWidth = this.imageEl.naturalWidth || this.imageEl.width;
35665         this.imageEl.OriginHeight = this.imageEl.naturalHeight || this.imageEl.height;
35666         
35667         this.bodyEl.un('click', this.beforeSelectFile, this);
35668         
35669         this.notifyEl.hide();
35670         this.thumbEl.show();
35671         this.footerEl.show();
35672         
35673         this.baseRotateLevel();
35674         
35675         if(this.isDocument){
35676             this.setThumbBoxSize();
35677         }
35678         
35679         this.setThumbBoxPosition();
35680         
35681         this.baseScaleLevel();
35682         
35683         this.draw();
35684         
35685         this.resize();
35686         
35687         this.canvasLoaded = true;
35688         
35689         if(this.loadMask){
35690             this.maskEl.unmask();
35691         }
35692         
35693     },
35694     
35695     setCanvasPosition : function()
35696     {   
35697         if(!this.canvasEl){
35698             return;
35699         }
35700         
35701         var pw = Math.ceil((this.bodyEl.getWidth() - this.canvasEl.width) / 2);
35702         var ph = Math.ceil((this.bodyEl.getHeight() - this.canvasEl.height) / 2);
35703         
35704         this.previewEl.setLeft(pw);
35705         this.previewEl.setTop(ph);
35706         
35707     },
35708     
35709     onMouseDown : function(e)
35710     {   
35711         e.stopEvent();
35712         
35713         this.dragable = true;
35714         this.pinching = false;
35715         
35716         if(this.isDocument && (this.canvasEl.width < this.thumbEl.getWidth() || this.canvasEl.height < this.thumbEl.getHeight())){
35717             this.dragable = false;
35718             return;
35719         }
35720         
35721         this.mouseX = Roo.isTouch ? e.browserEvent.touches[0].pageX : e.getPageX();
35722         this.mouseY = Roo.isTouch ? e.browserEvent.touches[0].pageY : e.getPageY();
35723         
35724     },
35725     
35726     onMouseMove : function(e)
35727     {   
35728         e.stopEvent();
35729         
35730         if(!this.canvasLoaded){
35731             return;
35732         }
35733         
35734         if (!this.dragable){
35735             return;
35736         }
35737         
35738         var minX = Math.ceil(this.thumbEl.getLeft(true));
35739         var minY = Math.ceil(this.thumbEl.getTop(true));
35740         
35741         var maxX = Math.ceil(minX + this.thumbEl.getWidth() - this.canvasEl.width);
35742         var maxY = Math.ceil(minY + this.thumbEl.getHeight() - this.canvasEl.height);
35743         
35744         var x = Roo.isTouch ? e.browserEvent.touches[0].pageX : e.getPageX();
35745         var y = Roo.isTouch ? e.browserEvent.touches[0].pageY : e.getPageY();
35746         
35747         x = x - this.mouseX;
35748         y = y - this.mouseY;
35749         
35750         var bgX = Math.ceil(x + this.previewEl.getLeft(true));
35751         var bgY = Math.ceil(y + this.previewEl.getTop(true));
35752         
35753         bgX = (minX < bgX) ? minX : ((maxX > bgX) ? maxX : bgX);
35754         bgY = (minY < bgY) ? minY : ((maxY > bgY) ? maxY : bgY);
35755         
35756         this.previewEl.setLeft(bgX);
35757         this.previewEl.setTop(bgY);
35758         
35759         this.mouseX = Roo.isTouch ? e.browserEvent.touches[0].pageX : e.getPageX();
35760         this.mouseY = Roo.isTouch ? e.browserEvent.touches[0].pageY : e.getPageY();
35761     },
35762     
35763     onMouseUp : function(e)
35764     {   
35765         e.stopEvent();
35766         
35767         this.dragable = false;
35768     },
35769     
35770     onMouseWheel : function(e)
35771     {   
35772         e.stopEvent();
35773         
35774         this.startScale = this.scale;
35775         
35776         this.scale = (e.getWheelDelta() == 1) ? (this.scale + 1) : (this.scale - 1);
35777         
35778         if(!this.zoomable()){
35779             this.scale = this.startScale;
35780             return;
35781         }
35782         
35783         this.draw();
35784         
35785         return;
35786     },
35787     
35788     zoomable : function()
35789     {
35790         var minScale = this.thumbEl.getWidth() / this.minWidth;
35791         
35792         if(this.minWidth < this.minHeight){
35793             minScale = this.thumbEl.getHeight() / this.minHeight;
35794         }
35795         
35796         var width = Math.ceil(this.imageEl.OriginWidth * this.getScaleLevel() / minScale);
35797         var height = Math.ceil(this.imageEl.OriginHeight * this.getScaleLevel() / minScale);
35798         
35799         if(
35800                 this.isDocument &&
35801                 (this.rotate == 0 || this.rotate == 180) && 
35802                 (
35803                     width > this.imageEl.OriginWidth || 
35804                     height > this.imageEl.OriginHeight ||
35805                     (width < this.minWidth && height < this.minHeight)
35806                 )
35807         ){
35808             return false;
35809         }
35810         
35811         if(
35812                 this.isDocument &&
35813                 (this.rotate == 90 || this.rotate == 270) && 
35814                 (
35815                     width > this.imageEl.OriginWidth || 
35816                     height > this.imageEl.OriginHeight ||
35817                     (width < this.minHeight && height < this.minWidth)
35818                 )
35819         ){
35820             return false;
35821         }
35822         
35823         if(
35824                 !this.isDocument &&
35825                 (this.rotate == 0 || this.rotate == 180) && 
35826                 (
35827                     width < this.minWidth || 
35828                     width > this.imageEl.OriginWidth || 
35829                     height < this.minHeight || 
35830                     height > this.imageEl.OriginHeight
35831                 )
35832         ){
35833             return false;
35834         }
35835         
35836         if(
35837                 !this.isDocument &&
35838                 (this.rotate == 90 || this.rotate == 270) && 
35839                 (
35840                     width < this.minHeight || 
35841                     width > this.imageEl.OriginWidth || 
35842                     height < this.minWidth || 
35843                     height > this.imageEl.OriginHeight
35844                 )
35845         ){
35846             return false;
35847         }
35848         
35849         return true;
35850         
35851     },
35852     
35853     onRotateLeft : function(e)
35854     {   
35855         if(!this.isDocument && (this.canvasEl.height < this.thumbEl.getWidth() || this.canvasEl.width < this.thumbEl.getHeight())){
35856             
35857             var minScale = this.thumbEl.getWidth() / this.minWidth;
35858             
35859             var bw = Math.ceil(this.canvasEl.width / this.getScaleLevel());
35860             var bh = Math.ceil(this.canvasEl.height / this.getScaleLevel());
35861             
35862             this.startScale = this.scale;
35863             
35864             while (this.getScaleLevel() < minScale){
35865             
35866                 this.scale = this.scale + 1;
35867                 
35868                 if(!this.zoomable()){
35869                     break;
35870                 }
35871                 
35872                 if(
35873                         Math.ceil(bw * this.getScaleLevel()) < this.thumbEl.getHeight() ||
35874                         Math.ceil(bh * this.getScaleLevel()) < this.thumbEl.getWidth()
35875                 ){
35876                     continue;
35877                 }
35878                 
35879                 this.rotate = (this.rotate < 90) ? 270 : this.rotate - 90;
35880
35881                 this.draw();
35882                 
35883                 return;
35884             }
35885             
35886             this.scale = this.startScale;
35887             
35888             this.onRotateFail();
35889             
35890             return false;
35891         }
35892         
35893         this.rotate = (this.rotate < 90) ? 270 : this.rotate - 90;
35894
35895         if(this.isDocument){
35896             this.setThumbBoxSize();
35897             this.setThumbBoxPosition();
35898             this.setCanvasPosition();
35899         }
35900         
35901         this.draw();
35902         
35903         this.fireEvent('rotate', this, 'left');
35904         
35905     },
35906     
35907     onRotateRight : function(e)
35908     {
35909         if(!this.isDocument && (this.canvasEl.height < this.thumbEl.getWidth() || this.canvasEl.width < this.thumbEl.getHeight())){
35910             
35911             var minScale = this.thumbEl.getWidth() / this.minWidth;
35912         
35913             var bw = Math.ceil(this.canvasEl.width / this.getScaleLevel());
35914             var bh = Math.ceil(this.canvasEl.height / this.getScaleLevel());
35915             
35916             this.startScale = this.scale;
35917             
35918             while (this.getScaleLevel() < minScale){
35919             
35920                 this.scale = this.scale + 1;
35921                 
35922                 if(!this.zoomable()){
35923                     break;
35924                 }
35925                 
35926                 if(
35927                         Math.ceil(bw * this.getScaleLevel()) < this.thumbEl.getHeight() ||
35928                         Math.ceil(bh * this.getScaleLevel()) < this.thumbEl.getWidth()
35929                 ){
35930                     continue;
35931                 }
35932                 
35933                 this.rotate = (this.rotate > 180) ? 0 : this.rotate + 90;
35934
35935                 this.draw();
35936                 
35937                 return;
35938             }
35939             
35940             this.scale = this.startScale;
35941             
35942             this.onRotateFail();
35943             
35944             return false;
35945         }
35946         
35947         this.rotate = (this.rotate > 180) ? 0 : this.rotate + 90;
35948
35949         if(this.isDocument){
35950             this.setThumbBoxSize();
35951             this.setThumbBoxPosition();
35952             this.setCanvasPosition();
35953         }
35954         
35955         this.draw();
35956         
35957         this.fireEvent('rotate', this, 'right');
35958     },
35959     
35960     onRotateFail : function()
35961     {
35962         this.errorEl.show(true);
35963         
35964         var _this = this;
35965         
35966         (function() { _this.errorEl.hide(true); }).defer(this.errorTimeout);
35967     },
35968     
35969     draw : function()
35970     {
35971         this.previewEl.dom.innerHTML = '';
35972         
35973         var canvasEl = document.createElement("canvas");
35974         
35975         var contextEl = canvasEl.getContext("2d");
35976         
35977         canvasEl.width = this.imageEl.OriginWidth * this.getScaleLevel();
35978         canvasEl.height = this.imageEl.OriginWidth * this.getScaleLevel();
35979         var center = this.imageEl.OriginWidth / 2;
35980         
35981         if(this.imageEl.OriginWidth < this.imageEl.OriginHeight){
35982             canvasEl.width = this.imageEl.OriginHeight * this.getScaleLevel();
35983             canvasEl.height = this.imageEl.OriginHeight * this.getScaleLevel();
35984             center = this.imageEl.OriginHeight / 2;
35985         }
35986         
35987         contextEl.scale(this.getScaleLevel(), this.getScaleLevel());
35988         
35989         contextEl.translate(center, center);
35990         contextEl.rotate(this.rotate * Math.PI / 180);
35991
35992         contextEl.drawImage(this.imageEl, 0, 0, this.imageEl.OriginWidth, this.imageEl.OriginHeight, center * -1, center * -1, this.imageEl.OriginWidth, this.imageEl.OriginHeight);
35993         
35994         this.canvasEl = document.createElement("canvas");
35995         
35996         this.contextEl = this.canvasEl.getContext("2d");
35997         
35998         switch (this.rotate) {
35999             case 0 :
36000                 
36001                 this.canvasEl.width = this.imageEl.OriginWidth * this.getScaleLevel();
36002                 this.canvasEl.height = this.imageEl.OriginHeight * this.getScaleLevel();
36003                 
36004                 this.contextEl.drawImage(canvasEl, 0, 0, this.canvasEl.width, this.canvasEl.height, 0, 0, this.canvasEl.width, this.canvasEl.height);
36005                 
36006                 break;
36007             case 90 : 
36008                 
36009                 this.canvasEl.width = this.imageEl.OriginHeight * this.getScaleLevel();
36010                 this.canvasEl.height = this.imageEl.OriginWidth * this.getScaleLevel();
36011                 
36012                 if(this.imageEl.OriginWidth > this.imageEl.OriginHeight){
36013                     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);
36014                     break;
36015                 }
36016                 
36017                 this.contextEl.drawImage(canvasEl, 0, 0, this.canvasEl.width, this.canvasEl.height, 0, 0, this.canvasEl.width, this.canvasEl.height);
36018                 
36019                 break;
36020             case 180 :
36021                 
36022                 this.canvasEl.width = this.imageEl.OriginWidth * this.getScaleLevel();
36023                 this.canvasEl.height = this.imageEl.OriginHeight * this.getScaleLevel();
36024                 
36025                 if(this.imageEl.OriginWidth > this.imageEl.OriginHeight){
36026                     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);
36027                     break;
36028                 }
36029                 
36030                 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);
36031                 
36032                 break;
36033             case 270 :
36034                 
36035                 this.canvasEl.width = this.imageEl.OriginHeight * this.getScaleLevel();
36036                 this.canvasEl.height = this.imageEl.OriginWidth * this.getScaleLevel();
36037         
36038                 if(this.imageEl.OriginWidth > this.imageEl.OriginHeight){
36039                     this.contextEl.drawImage(canvasEl, 0, 0, this.canvasEl.width, this.canvasEl.height, 0, 0, this.canvasEl.width, this.canvasEl.height);
36040                     break;
36041                 }
36042                 
36043                 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);
36044                 
36045                 break;
36046             default : 
36047                 break;
36048         }
36049         
36050         this.previewEl.appendChild(this.canvasEl);
36051         
36052         this.setCanvasPosition();
36053     },
36054     
36055     crop : function()
36056     {
36057         if(!this.canvasLoaded){
36058             return;
36059         }
36060         
36061         var imageCanvas = document.createElement("canvas");
36062         
36063         var imageContext = imageCanvas.getContext("2d");
36064         
36065         imageCanvas.width = (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? this.imageEl.OriginWidth : this.imageEl.OriginHeight;
36066         imageCanvas.height = (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? this.imageEl.OriginWidth : this.imageEl.OriginHeight;
36067         
36068         var center = imageCanvas.width / 2;
36069         
36070         imageContext.translate(center, center);
36071         
36072         imageContext.rotate(this.rotate * Math.PI / 180);
36073         
36074         imageContext.drawImage(this.imageEl, 0, 0, this.imageEl.OriginWidth, this.imageEl.OriginHeight, center * -1, center * -1, this.imageEl.OriginWidth, this.imageEl.OriginHeight);
36075         
36076         var canvas = document.createElement("canvas");
36077         
36078         var context = canvas.getContext("2d");
36079                 
36080         canvas.width = this.minWidth;
36081         canvas.height = this.minHeight;
36082
36083         switch (this.rotate) {
36084             case 0 :
36085                 
36086                 var width = (this.thumbEl.getWidth() / this.getScaleLevel() > this.imageEl.OriginWidth) ? this.imageEl.OriginWidth : (this.thumbEl.getWidth() / this.getScaleLevel());
36087                 var height = (this.thumbEl.getHeight() / this.getScaleLevel() > this.imageEl.OriginHeight) ? this.imageEl.OriginHeight : (this.thumbEl.getHeight() / this.getScaleLevel());
36088                 
36089                 var x = (this.thumbEl.getLeft(true) > this.previewEl.getLeft(true)) ? 0 : ((this.previewEl.getLeft(true) - this.thumbEl.getLeft(true)) / this.getScaleLevel());
36090                 var y = (this.thumbEl.getTop(true) > this.previewEl.getTop(true)) ? 0 : ((this.previewEl.getTop(true) - this.thumbEl.getTop(true)) / this.getScaleLevel());
36091                 
36092                 var targetWidth = this.minWidth - 2 * x;
36093                 var targetHeight = this.minHeight - 2 * y;
36094                 
36095                 var scale = 1;
36096                 
36097                 if((x == 0 && y == 0) || (x == 0 && y > 0)){
36098                     scale = targetWidth / width;
36099                 }
36100                 
36101                 if(x > 0 && y == 0){
36102                     scale = targetHeight / height;
36103                 }
36104                 
36105                 if(x > 0 && y > 0){
36106                     scale = targetWidth / width;
36107                     
36108                     if(width < height){
36109                         scale = targetHeight / height;
36110                     }
36111                 }
36112                 
36113                 context.scale(scale, scale);
36114                 
36115                 var sx = Math.min(this.canvasEl.width - this.thumbEl.getWidth(), this.thumbEl.getLeft(true) - this.previewEl.getLeft(true));
36116                 var sy = Math.min(this.canvasEl.height - this.thumbEl.getHeight(), this.thumbEl.getTop(true) - this.previewEl.getTop(true));
36117
36118                 sx = sx < 0 ? 0 : (sx / this.getScaleLevel());
36119                 sy = sy < 0 ? 0 : (sy / this.getScaleLevel());
36120
36121                 context.drawImage(imageCanvas, sx, sy, width, height, x, y, width, height);
36122                 
36123                 break;
36124             case 90 : 
36125                 
36126                 var width = (this.thumbEl.getWidth() / this.getScaleLevel() > this.imageEl.OriginHeight) ? this.imageEl.OriginHeight : (this.thumbEl.getWidth() / this.getScaleLevel());
36127                 var height = (this.thumbEl.getHeight() / this.getScaleLevel() > this.imageEl.OriginWidth) ? this.imageEl.OriginWidth : (this.thumbEl.getHeight() / this.getScaleLevel());
36128                 
36129                 var x = (this.thumbEl.getLeft(true) > this.previewEl.getLeft(true)) ? 0 : ((this.previewEl.getLeft(true) - this.thumbEl.getLeft(true)) / this.getScaleLevel());
36130                 var y = (this.thumbEl.getTop(true) > this.previewEl.getTop(true)) ? 0 : ((this.previewEl.getTop(true) - this.thumbEl.getTop(true)) / this.getScaleLevel());
36131                 
36132                 var targetWidth = this.minWidth - 2 * x;
36133                 var targetHeight = this.minHeight - 2 * y;
36134                 
36135                 var scale = 1;
36136                 
36137                 if((x == 0 && y == 0) || (x == 0 && y > 0)){
36138                     scale = targetWidth / width;
36139                 }
36140                 
36141                 if(x > 0 && y == 0){
36142                     scale = targetHeight / height;
36143                 }
36144                 
36145                 if(x > 0 && y > 0){
36146                     scale = targetWidth / width;
36147                     
36148                     if(width < height){
36149                         scale = targetHeight / height;
36150                     }
36151                 }
36152                 
36153                 context.scale(scale, scale);
36154                 
36155                 var sx = Math.min(this.canvasEl.width - this.thumbEl.getWidth(), this.thumbEl.getLeft(true) - this.previewEl.getLeft(true));
36156                 var sy = Math.min(this.canvasEl.height - this.thumbEl.getHeight(), this.thumbEl.getTop(true) - this.previewEl.getTop(true));
36157
36158                 sx = sx < 0 ? 0 : (sx / this.getScaleLevel());
36159                 sy = sy < 0 ? 0 : (sy / this.getScaleLevel());
36160                 
36161                 sx += (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? Math.abs(this.imageEl.OriginWidth - this.imageEl.OriginHeight) : 0;
36162                 
36163                 context.drawImage(imageCanvas, sx, sy, width, height, x, y, width, height);
36164                 
36165                 break;
36166             case 180 :
36167                 
36168                 var width = (this.thumbEl.getWidth() / this.getScaleLevel() > this.imageEl.OriginWidth) ? this.imageEl.OriginWidth : (this.thumbEl.getWidth() / this.getScaleLevel());
36169                 var height = (this.thumbEl.getHeight() / this.getScaleLevel() > this.imageEl.OriginHeight) ? this.imageEl.OriginHeight : (this.thumbEl.getHeight() / this.getScaleLevel());
36170                 
36171                 var x = (this.thumbEl.getLeft(true) > this.previewEl.getLeft(true)) ? 0 : ((this.previewEl.getLeft(true) - this.thumbEl.getLeft(true)) / this.getScaleLevel());
36172                 var y = (this.thumbEl.getTop(true) > this.previewEl.getTop(true)) ? 0 : ((this.previewEl.getTop(true) - this.thumbEl.getTop(true)) / this.getScaleLevel());
36173                 
36174                 var targetWidth = this.minWidth - 2 * x;
36175                 var targetHeight = this.minHeight - 2 * y;
36176                 
36177                 var scale = 1;
36178                 
36179                 if((x == 0 && y == 0) || (x == 0 && y > 0)){
36180                     scale = targetWidth / width;
36181                 }
36182                 
36183                 if(x > 0 && y == 0){
36184                     scale = targetHeight / height;
36185                 }
36186                 
36187                 if(x > 0 && y > 0){
36188                     scale = targetWidth / width;
36189                     
36190                     if(width < height){
36191                         scale = targetHeight / height;
36192                     }
36193                 }
36194                 
36195                 context.scale(scale, scale);
36196                 
36197                 var sx = Math.min(this.canvasEl.width - this.thumbEl.getWidth(), this.thumbEl.getLeft(true) - this.previewEl.getLeft(true));
36198                 var sy = Math.min(this.canvasEl.height - this.thumbEl.getHeight(), this.thumbEl.getTop(true) - this.previewEl.getTop(true));
36199
36200                 sx = sx < 0 ? 0 : (sx / this.getScaleLevel());
36201                 sy = sy < 0 ? 0 : (sy / this.getScaleLevel());
36202
36203                 sx += (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? 0 : Math.abs(this.imageEl.OriginWidth - this.imageEl.OriginHeight);
36204                 sy += (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? Math.abs(this.imageEl.OriginWidth - this.imageEl.OriginHeight) : 0;
36205                 
36206                 context.drawImage(imageCanvas, sx, sy, width, height, x, y, width, height);
36207                 
36208                 break;
36209             case 270 :
36210                 
36211                 var width = (this.thumbEl.getWidth() / this.getScaleLevel() > this.imageEl.OriginHeight) ? this.imageEl.OriginHeight : (this.thumbEl.getWidth() / this.getScaleLevel());
36212                 var height = (this.thumbEl.getHeight() / this.getScaleLevel() > this.imageEl.OriginWidth) ? this.imageEl.OriginWidth : (this.thumbEl.getHeight() / this.getScaleLevel());
36213                 
36214                 var x = (this.thumbEl.getLeft(true) > this.previewEl.getLeft(true)) ? 0 : ((this.previewEl.getLeft(true) - this.thumbEl.getLeft(true)) / this.getScaleLevel());
36215                 var y = (this.thumbEl.getTop(true) > this.previewEl.getTop(true)) ? 0 : ((this.previewEl.getTop(true) - this.thumbEl.getTop(true)) / this.getScaleLevel());
36216                 
36217                 var targetWidth = this.minWidth - 2 * x;
36218                 var targetHeight = this.minHeight - 2 * y;
36219                 
36220                 var scale = 1;
36221                 
36222                 if((x == 0 && y == 0) || (x == 0 && y > 0)){
36223                     scale = targetWidth / width;
36224                 }
36225                 
36226                 if(x > 0 && y == 0){
36227                     scale = targetHeight / height;
36228                 }
36229                 
36230                 if(x > 0 && y > 0){
36231                     scale = targetWidth / width;
36232                     
36233                     if(width < height){
36234                         scale = targetHeight / height;
36235                     }
36236                 }
36237                 
36238                 context.scale(scale, scale);
36239                 
36240                 var sx = Math.min(this.canvasEl.width - this.thumbEl.getWidth(), this.thumbEl.getLeft(true) - this.previewEl.getLeft(true));
36241                 var sy = Math.min(this.canvasEl.height - this.thumbEl.getHeight(), this.thumbEl.getTop(true) - this.previewEl.getTop(true));
36242
36243                 sx = sx < 0 ? 0 : (sx / this.getScaleLevel());
36244                 sy = sy < 0 ? 0 : (sy / this.getScaleLevel());
36245                 
36246                 sy += (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? 0 : Math.abs(this.imageEl.OriginWidth - this.imageEl.OriginHeight);
36247                 
36248                 context.drawImage(imageCanvas, sx, sy, width, height, x, y, width, height);
36249                 
36250                 break;
36251             default : 
36252                 break;
36253         }
36254         
36255         this.cropData = canvas.toDataURL(this.cropType);
36256         
36257         if(this.fireEvent('crop', this, this.cropData) !== false){
36258             this.process(this.file, this.cropData);
36259         }
36260         
36261         return;
36262         
36263     },
36264     
36265     setThumbBoxSize : function()
36266     {
36267         var width, height;
36268         
36269         if(this.isDocument && typeof(this.imageEl) != 'undefined'){
36270             width = (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? Math.max(this.minWidth, this.minHeight) : Math.min(this.minWidth, this.minHeight);
36271             height = (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? Math.min(this.minWidth, this.minHeight) : Math.max(this.minWidth, this.minHeight);
36272             
36273             this.minWidth = width;
36274             this.minHeight = height;
36275             
36276             if(this.rotate == 90 || this.rotate == 270){
36277                 this.minWidth = height;
36278                 this.minHeight = width;
36279             }
36280         }
36281         
36282         height = 300;
36283         width = Math.ceil(this.minWidth * height / this.minHeight);
36284         
36285         if(this.minWidth > this.minHeight){
36286             width = 300;
36287             height = Math.ceil(this.minHeight * width / this.minWidth);
36288         }
36289         
36290         this.thumbEl.setStyle({
36291             width : width + 'px',
36292             height : height + 'px'
36293         });
36294
36295         return;
36296             
36297     },
36298     
36299     setThumbBoxPosition : function()
36300     {
36301         var x = Math.ceil((this.bodyEl.getWidth() - this.thumbEl.getWidth()) / 2 );
36302         var y = Math.ceil((this.bodyEl.getHeight() - this.thumbEl.getHeight()) / 2);
36303         
36304         this.thumbEl.setLeft(x);
36305         this.thumbEl.setTop(y);
36306         
36307     },
36308     
36309     baseRotateLevel : function()
36310     {
36311         this.baseRotate = 1;
36312         
36313         if(
36314                 typeof(this.exif) != 'undefined' &&
36315                 typeof(this.exif[Roo.bootstrap.UploadCropbox['tags']['Orientation']]) != 'undefined' &&
36316                 [1, 3, 6, 8].indexOf(this.exif[Roo.bootstrap.UploadCropbox['tags']['Orientation']]) != -1
36317         ){
36318             this.baseRotate = this.exif[Roo.bootstrap.UploadCropbox['tags']['Orientation']];
36319         }
36320         
36321         this.rotate = Roo.bootstrap.UploadCropbox['Orientation'][this.baseRotate];
36322         
36323     },
36324     
36325     baseScaleLevel : function()
36326     {
36327         var width, height;
36328         
36329         if(this.isDocument){
36330             
36331             if(this.baseRotate == 6 || this.baseRotate == 8){
36332             
36333                 height = this.thumbEl.getHeight();
36334                 this.baseScale = height / this.imageEl.OriginWidth;
36335
36336                 if(this.imageEl.OriginHeight * this.baseScale > this.thumbEl.getWidth()){
36337                     width = this.thumbEl.getWidth();
36338                     this.baseScale = width / this.imageEl.OriginHeight;
36339                 }
36340
36341                 return;
36342             }
36343
36344             height = this.thumbEl.getHeight();
36345             this.baseScale = height / this.imageEl.OriginHeight;
36346
36347             if(this.imageEl.OriginWidth * this.baseScale > this.thumbEl.getWidth()){
36348                 width = this.thumbEl.getWidth();
36349                 this.baseScale = width / this.imageEl.OriginWidth;
36350             }
36351
36352             return;
36353         }
36354         
36355         if(this.baseRotate == 6 || this.baseRotate == 8){
36356             
36357             width = this.thumbEl.getHeight();
36358             this.baseScale = width / this.imageEl.OriginHeight;
36359             
36360             if(this.imageEl.OriginHeight * this.baseScale < this.thumbEl.getWidth()){
36361                 height = this.thumbEl.getWidth();
36362                 this.baseScale = height / this.imageEl.OriginHeight;
36363             }
36364             
36365             if(this.imageEl.OriginWidth > this.imageEl.OriginHeight){
36366                 height = this.thumbEl.getWidth();
36367                 this.baseScale = height / this.imageEl.OriginHeight;
36368                 
36369                 if(this.imageEl.OriginWidth * this.baseScale < this.thumbEl.getHeight()){
36370                     width = this.thumbEl.getHeight();
36371                     this.baseScale = width / this.imageEl.OriginWidth;
36372                 }
36373             }
36374             
36375             return;
36376         }
36377         
36378         width = this.thumbEl.getWidth();
36379         this.baseScale = width / this.imageEl.OriginWidth;
36380         
36381         if(this.imageEl.OriginHeight * this.baseScale < this.thumbEl.getHeight()){
36382             height = this.thumbEl.getHeight();
36383             this.baseScale = height / this.imageEl.OriginHeight;
36384         }
36385         
36386         if(this.imageEl.OriginWidth > this.imageEl.OriginHeight){
36387             
36388             height = this.thumbEl.getHeight();
36389             this.baseScale = height / this.imageEl.OriginHeight;
36390             
36391             if(this.imageEl.OriginWidth * this.baseScale < this.thumbEl.getWidth()){
36392                 width = this.thumbEl.getWidth();
36393                 this.baseScale = width / this.imageEl.OriginWidth;
36394             }
36395             
36396         }
36397         
36398         return;
36399     },
36400     
36401     getScaleLevel : function()
36402     {
36403         return this.baseScale * Math.pow(1.1, this.scale);
36404     },
36405     
36406     onTouchStart : function(e)
36407     {
36408         if(!this.canvasLoaded){
36409             this.beforeSelectFile(e);
36410             return;
36411         }
36412         
36413         var touches = e.browserEvent.touches;
36414         
36415         if(!touches){
36416             return;
36417         }
36418         
36419         if(touches.length == 1){
36420             this.onMouseDown(e);
36421             return;
36422         }
36423         
36424         if(touches.length != 2){
36425             return;
36426         }
36427         
36428         var coords = [];
36429         
36430         for(var i = 0, finger; finger = touches[i]; i++){
36431             coords.push(finger.pageX, finger.pageY);
36432         }
36433         
36434         var x = Math.pow(coords[0] - coords[2], 2);
36435         var y = Math.pow(coords[1] - coords[3], 2);
36436         
36437         this.startDistance = Math.sqrt(x + y);
36438         
36439         this.startScale = this.scale;
36440         
36441         this.pinching = true;
36442         this.dragable = false;
36443         
36444     },
36445     
36446     onTouchMove : function(e)
36447     {
36448         if(!this.pinching && !this.dragable){
36449             return;
36450         }
36451         
36452         var touches = e.browserEvent.touches;
36453         
36454         if(!touches){
36455             return;
36456         }
36457         
36458         if(this.dragable){
36459             this.onMouseMove(e);
36460             return;
36461         }
36462         
36463         var coords = [];
36464         
36465         for(var i = 0, finger; finger = touches[i]; i++){
36466             coords.push(finger.pageX, finger.pageY);
36467         }
36468         
36469         var x = Math.pow(coords[0] - coords[2], 2);
36470         var y = Math.pow(coords[1] - coords[3], 2);
36471         
36472         this.endDistance = Math.sqrt(x + y);
36473         
36474         this.scale = this.startScale + Math.floor(Math.log(this.endDistance / this.startDistance) / Math.log(1.1));
36475         
36476         if(!this.zoomable()){
36477             this.scale = this.startScale;
36478             return;
36479         }
36480         
36481         this.draw();
36482         
36483     },
36484     
36485     onTouchEnd : function(e)
36486     {
36487         this.pinching = false;
36488         this.dragable = false;
36489         
36490     },
36491     
36492     process : function(file, crop)
36493     {
36494         if(this.loadMask){
36495             this.maskEl.mask(this.loadingText);
36496         }
36497         
36498         this.xhr = new XMLHttpRequest();
36499         
36500         file.xhr = this.xhr;
36501
36502         this.xhr.open(this.method, this.url, true);
36503         
36504         var headers = {
36505             "Accept": "application/json",
36506             "Cache-Control": "no-cache",
36507             "X-Requested-With": "XMLHttpRequest"
36508         };
36509         
36510         for (var headerName in headers) {
36511             var headerValue = headers[headerName];
36512             if (headerValue) {
36513                 this.xhr.setRequestHeader(headerName, headerValue);
36514             }
36515         }
36516         
36517         var _this = this;
36518         
36519         this.xhr.onload = function()
36520         {
36521             _this.xhrOnLoad(_this.xhr);
36522         }
36523         
36524         this.xhr.onerror = function()
36525         {
36526             _this.xhrOnError(_this.xhr);
36527         }
36528         
36529         var formData = new FormData();
36530
36531         formData.append('returnHTML', 'NO');
36532         
36533         if(crop){
36534             formData.append('crop', crop);
36535         }
36536         
36537         if(typeof(file) != 'undefined' && (typeof(file.id) == 'undefined' || file.id * 1 < 1)){
36538             formData.append(this.paramName, file, file.name);
36539         }
36540         
36541         if(typeof(file.filename) != 'undefined'){
36542             formData.append('filename', file.filename);
36543         }
36544         
36545         if(typeof(file.mimetype) != 'undefined'){
36546             formData.append('mimetype', file.mimetype);
36547         }
36548         
36549         if(this.fireEvent('arrange', this, formData) != false){
36550             this.xhr.send(formData);
36551         };
36552     },
36553     
36554     xhrOnLoad : function(xhr)
36555     {
36556         if(this.loadMask){
36557             this.maskEl.unmask();
36558         }
36559         
36560         if (xhr.readyState !== 4) {
36561             this.fireEvent('exception', this, xhr);
36562             return;
36563         }
36564
36565         var response = Roo.decode(xhr.responseText);
36566         
36567         if(!response.success){
36568             this.fireEvent('exception', this, xhr);
36569             return;
36570         }
36571         
36572         var response = Roo.decode(xhr.responseText);
36573         
36574         this.fireEvent('upload', this, response);
36575         
36576     },
36577     
36578     xhrOnError : function()
36579     {
36580         if(this.loadMask){
36581             this.maskEl.unmask();
36582         }
36583         
36584         Roo.log('xhr on error');
36585         
36586         var response = Roo.decode(xhr.responseText);
36587           
36588         Roo.log(response);
36589         
36590     },
36591     
36592     prepare : function(file)
36593     {   
36594         if(this.loadMask){
36595             this.maskEl.mask(this.loadingText);
36596         }
36597         
36598         this.file = false;
36599         this.exif = {};
36600         
36601         if(typeof(file) === 'string'){
36602             this.loadCanvas(file);
36603             return;
36604         }
36605         
36606         if(!file || !this.urlAPI){
36607             return;
36608         }
36609         
36610         this.file = file;
36611         this.cropType = file.type;
36612         
36613         var _this = this;
36614         
36615         if(this.fireEvent('prepare', this, this.file) != false){
36616             
36617             var reader = new FileReader();
36618             
36619             reader.onload = function (e) {
36620                 if (e.target.error) {
36621                     Roo.log(e.target.error);
36622                     return;
36623                 }
36624                 
36625                 var buffer = e.target.result,
36626                     dataView = new DataView(buffer),
36627                     offset = 2,
36628                     maxOffset = dataView.byteLength - 4,
36629                     markerBytes,
36630                     markerLength;
36631                 
36632                 if (dataView.getUint16(0) === 0xffd8) {
36633                     while (offset < maxOffset) {
36634                         markerBytes = dataView.getUint16(offset);
36635                         
36636                         if ((markerBytes >= 0xffe0 && markerBytes <= 0xffef) || markerBytes === 0xfffe) {
36637                             markerLength = dataView.getUint16(offset + 2) + 2;
36638                             if (offset + markerLength > dataView.byteLength) {
36639                                 Roo.log('Invalid meta data: Invalid segment size.');
36640                                 break;
36641                             }
36642                             
36643                             if(markerBytes == 0xffe1){
36644                                 _this.parseExifData(
36645                                     dataView,
36646                                     offset,
36647                                     markerLength
36648                                 );
36649                             }
36650                             
36651                             offset += markerLength;
36652                             
36653                             continue;
36654                         }
36655                         
36656                         break;
36657                     }
36658                     
36659                 }
36660                 
36661                 var url = _this.urlAPI.createObjectURL(_this.file);
36662                 
36663                 _this.loadCanvas(url);
36664                 
36665                 return;
36666             }
36667             
36668             reader.readAsArrayBuffer(this.file);
36669             
36670         }
36671         
36672     },
36673     
36674     parseExifData : function(dataView, offset, length)
36675     {
36676         var tiffOffset = offset + 10,
36677             littleEndian,
36678             dirOffset;
36679     
36680         if (dataView.getUint32(offset + 4) !== 0x45786966) {
36681             // No Exif data, might be XMP data instead
36682             return;
36683         }
36684         
36685         // Check for the ASCII code for "Exif" (0x45786966):
36686         if (dataView.getUint32(offset + 4) !== 0x45786966) {
36687             // No Exif data, might be XMP data instead
36688             return;
36689         }
36690         if (tiffOffset + 8 > dataView.byteLength) {
36691             Roo.log('Invalid Exif data: Invalid segment size.');
36692             return;
36693         }
36694         // Check for the two null bytes:
36695         if (dataView.getUint16(offset + 8) !== 0x0000) {
36696             Roo.log('Invalid Exif data: Missing byte alignment offset.');
36697             return;
36698         }
36699         // Check the byte alignment:
36700         switch (dataView.getUint16(tiffOffset)) {
36701         case 0x4949:
36702             littleEndian = true;
36703             break;
36704         case 0x4D4D:
36705             littleEndian = false;
36706             break;
36707         default:
36708             Roo.log('Invalid Exif data: Invalid byte alignment marker.');
36709             return;
36710         }
36711         // Check for the TIFF tag marker (0x002A):
36712         if (dataView.getUint16(tiffOffset + 2, littleEndian) !== 0x002A) {
36713             Roo.log('Invalid Exif data: Missing TIFF marker.');
36714             return;
36715         }
36716         // Retrieve the directory offset bytes, usually 0x00000008 or 8 decimal:
36717         dirOffset = dataView.getUint32(tiffOffset + 4, littleEndian);
36718         
36719         this.parseExifTags(
36720             dataView,
36721             tiffOffset,
36722             tiffOffset + dirOffset,
36723             littleEndian
36724         );
36725     },
36726     
36727     parseExifTags : function(dataView, tiffOffset, dirOffset, littleEndian)
36728     {
36729         var tagsNumber,
36730             dirEndOffset,
36731             i;
36732         if (dirOffset + 6 > dataView.byteLength) {
36733             Roo.log('Invalid Exif data: Invalid directory offset.');
36734             return;
36735         }
36736         tagsNumber = dataView.getUint16(dirOffset, littleEndian);
36737         dirEndOffset = dirOffset + 2 + 12 * tagsNumber;
36738         if (dirEndOffset + 4 > dataView.byteLength) {
36739             Roo.log('Invalid Exif data: Invalid directory size.');
36740             return;
36741         }
36742         for (i = 0; i < tagsNumber; i += 1) {
36743             this.parseExifTag(
36744                 dataView,
36745                 tiffOffset,
36746                 dirOffset + 2 + 12 * i, // tag offset
36747                 littleEndian
36748             );
36749         }
36750         // Return the offset to the next directory:
36751         return dataView.getUint32(dirEndOffset, littleEndian);
36752     },
36753     
36754     parseExifTag : function (dataView, tiffOffset, offset, littleEndian) 
36755     {
36756         var tag = dataView.getUint16(offset, littleEndian);
36757         
36758         this.exif[tag] = this.getExifValue(
36759             dataView,
36760             tiffOffset,
36761             offset,
36762             dataView.getUint16(offset + 2, littleEndian), // tag type
36763             dataView.getUint32(offset + 4, littleEndian), // tag length
36764             littleEndian
36765         );
36766     },
36767     
36768     getExifValue : function (dataView, tiffOffset, offset, type, length, littleEndian)
36769     {
36770         var tagType = Roo.bootstrap.UploadCropbox.exifTagTypes[type],
36771             tagSize,
36772             dataOffset,
36773             values,
36774             i,
36775             str,
36776             c;
36777     
36778         if (!tagType) {
36779             Roo.log('Invalid Exif data: Invalid tag type.');
36780             return;
36781         }
36782         
36783         tagSize = tagType.size * length;
36784         // Determine if the value is contained in the dataOffset bytes,
36785         // or if the value at the dataOffset is a pointer to the actual data:
36786         dataOffset = tagSize > 4 ?
36787                 tiffOffset + dataView.getUint32(offset + 8, littleEndian) : (offset + 8);
36788         if (dataOffset + tagSize > dataView.byteLength) {
36789             Roo.log('Invalid Exif data: Invalid data offset.');
36790             return;
36791         }
36792         if (length === 1) {
36793             return tagType.getValue(dataView, dataOffset, littleEndian);
36794         }
36795         values = [];
36796         for (i = 0; i < length; i += 1) {
36797             values[i] = tagType.getValue(dataView, dataOffset + i * tagType.size, littleEndian);
36798         }
36799         
36800         if (tagType.ascii) {
36801             str = '';
36802             // Concatenate the chars:
36803             for (i = 0; i < values.length; i += 1) {
36804                 c = values[i];
36805                 // Ignore the terminating NULL byte(s):
36806                 if (c === '\u0000') {
36807                     break;
36808                 }
36809                 str += c;
36810             }
36811             return str;
36812         }
36813         return values;
36814     }
36815     
36816 });
36817
36818 Roo.apply(Roo.bootstrap.UploadCropbox, {
36819     tags : {
36820         'Orientation': 0x0112
36821     },
36822     
36823     Orientation: {
36824             1: 0, //'top-left',
36825 //            2: 'top-right',
36826             3: 180, //'bottom-right',
36827 //            4: 'bottom-left',
36828 //            5: 'left-top',
36829             6: 90, //'right-top',
36830 //            7: 'right-bottom',
36831             8: 270 //'left-bottom'
36832     },
36833     
36834     exifTagTypes : {
36835         // byte, 8-bit unsigned int:
36836         1: {
36837             getValue: function (dataView, dataOffset) {
36838                 return dataView.getUint8(dataOffset);
36839             },
36840             size: 1
36841         },
36842         // ascii, 8-bit byte:
36843         2: {
36844             getValue: function (dataView, dataOffset) {
36845                 return String.fromCharCode(dataView.getUint8(dataOffset));
36846             },
36847             size: 1,
36848             ascii: true
36849         },
36850         // short, 16 bit int:
36851         3: {
36852             getValue: function (dataView, dataOffset, littleEndian) {
36853                 return dataView.getUint16(dataOffset, littleEndian);
36854             },
36855             size: 2
36856         },
36857         // long, 32 bit int:
36858         4: {
36859             getValue: function (dataView, dataOffset, littleEndian) {
36860                 return dataView.getUint32(dataOffset, littleEndian);
36861             },
36862             size: 4
36863         },
36864         // rational = two long values, first is numerator, second is denominator:
36865         5: {
36866             getValue: function (dataView, dataOffset, littleEndian) {
36867                 return dataView.getUint32(dataOffset, littleEndian) /
36868                     dataView.getUint32(dataOffset + 4, littleEndian);
36869             },
36870             size: 8
36871         },
36872         // slong, 32 bit signed int:
36873         9: {
36874             getValue: function (dataView, dataOffset, littleEndian) {
36875                 return dataView.getInt32(dataOffset, littleEndian);
36876             },
36877             size: 4
36878         },
36879         // srational, two slongs, first is numerator, second is denominator:
36880         10: {
36881             getValue: function (dataView, dataOffset, littleEndian) {
36882                 return dataView.getInt32(dataOffset, littleEndian) /
36883                     dataView.getInt32(dataOffset + 4, littleEndian);
36884             },
36885             size: 8
36886         }
36887     },
36888     
36889     footer : {
36890         STANDARD : [
36891             {
36892                 tag : 'div',
36893                 cls : 'btn-group roo-upload-cropbox-rotate-left',
36894                 action : 'rotate-left',
36895                 cn : [
36896                     {
36897                         tag : 'button',
36898                         cls : 'btn btn-default',
36899                         html : '<i class="fa fa-undo"></i>'
36900                     }
36901                 ]
36902             },
36903             {
36904                 tag : 'div',
36905                 cls : 'btn-group roo-upload-cropbox-picture',
36906                 action : 'picture',
36907                 cn : [
36908                     {
36909                         tag : 'button',
36910                         cls : 'btn btn-default',
36911                         html : '<i class="fa fa-picture-o"></i>'
36912                     }
36913                 ]
36914             },
36915             {
36916                 tag : 'div',
36917                 cls : 'btn-group roo-upload-cropbox-rotate-right',
36918                 action : 'rotate-right',
36919                 cn : [
36920                     {
36921                         tag : 'button',
36922                         cls : 'btn btn-default',
36923                         html : '<i class="fa fa-repeat"></i>'
36924                     }
36925                 ]
36926             }
36927         ],
36928         DOCUMENT : [
36929             {
36930                 tag : 'div',
36931                 cls : 'btn-group roo-upload-cropbox-rotate-left',
36932                 action : 'rotate-left',
36933                 cn : [
36934                     {
36935                         tag : 'button',
36936                         cls : 'btn btn-default',
36937                         html : '<i class="fa fa-undo"></i>'
36938                     }
36939                 ]
36940             },
36941             {
36942                 tag : 'div',
36943                 cls : 'btn-group roo-upload-cropbox-download',
36944                 action : 'download',
36945                 cn : [
36946                     {
36947                         tag : 'button',
36948                         cls : 'btn btn-default',
36949                         html : '<i class="fa fa-download"></i>'
36950                     }
36951                 ]
36952             },
36953             {
36954                 tag : 'div',
36955                 cls : 'btn-group roo-upload-cropbox-crop',
36956                 action : 'crop',
36957                 cn : [
36958                     {
36959                         tag : 'button',
36960                         cls : 'btn btn-default',
36961                         html : '<i class="fa fa-crop"></i>'
36962                     }
36963                 ]
36964             },
36965             {
36966                 tag : 'div',
36967                 cls : 'btn-group roo-upload-cropbox-trash',
36968                 action : 'trash',
36969                 cn : [
36970                     {
36971                         tag : 'button',
36972                         cls : 'btn btn-default',
36973                         html : '<i class="fa fa-trash"></i>'
36974                     }
36975                 ]
36976             },
36977             {
36978                 tag : 'div',
36979                 cls : 'btn-group roo-upload-cropbox-rotate-right',
36980                 action : 'rotate-right',
36981                 cn : [
36982                     {
36983                         tag : 'button',
36984                         cls : 'btn btn-default',
36985                         html : '<i class="fa fa-repeat"></i>'
36986                     }
36987                 ]
36988             }
36989         ],
36990         ROTATOR : [
36991             {
36992                 tag : 'div',
36993                 cls : 'btn-group roo-upload-cropbox-rotate-left',
36994                 action : 'rotate-left',
36995                 cn : [
36996                     {
36997                         tag : 'button',
36998                         cls : 'btn btn-default',
36999                         html : '<i class="fa fa-undo"></i>'
37000                     }
37001                 ]
37002             },
37003             {
37004                 tag : 'div',
37005                 cls : 'btn-group roo-upload-cropbox-rotate-right',
37006                 action : 'rotate-right',
37007                 cn : [
37008                     {
37009                         tag : 'button',
37010                         cls : 'btn btn-default',
37011                         html : '<i class="fa fa-repeat"></i>'
37012                     }
37013                 ]
37014             }
37015         ]
37016     }
37017 });
37018
37019 /*
37020 * Licence: LGPL
37021 */
37022
37023 /**
37024  * @class Roo.bootstrap.DocumentManager
37025  * @extends Roo.bootstrap.Component
37026  * Bootstrap DocumentManager class
37027  * @cfg {String} paramName default 'imageUpload'
37028  * @cfg {String} toolTipName default 'filename'
37029  * @cfg {String} method default POST
37030  * @cfg {String} url action url
37031  * @cfg {Number} boxes number of boxes, 0 is no limit.. default 0
37032  * @cfg {Boolean} multiple multiple upload default true
37033  * @cfg {Number} thumbSize default 300
37034  * @cfg {String} fieldLabel
37035  * @cfg {Number} labelWidth default 4
37036  * @cfg {String} labelAlign (left|top) default left
37037  * @cfg {Boolean} editable (true|false) allow edit when upload a image default true
37038 * @cfg {Number} labellg set the width of label (1-12)
37039  * @cfg {Number} labelmd set the width of label (1-12)
37040  * @cfg {Number} labelsm set the width of label (1-12)
37041  * @cfg {Number} labelxs set the width of label (1-12)
37042  * 
37043  * @constructor
37044  * Create a new DocumentManager
37045  * @param {Object} config The config object
37046  */
37047
37048 Roo.bootstrap.DocumentManager = function(config){
37049     Roo.bootstrap.DocumentManager.superclass.constructor.call(this, config);
37050     
37051     this.files = [];
37052     this.delegates = [];
37053     
37054     this.addEvents({
37055         /**
37056          * @event initial
37057          * Fire when initial the DocumentManager
37058          * @param {Roo.bootstrap.DocumentManager} this
37059          */
37060         "initial" : true,
37061         /**
37062          * @event inspect
37063          * inspect selected file
37064          * @param {Roo.bootstrap.DocumentManager} this
37065          * @param {File} file
37066          */
37067         "inspect" : true,
37068         /**
37069          * @event exception
37070          * Fire when xhr load exception
37071          * @param {Roo.bootstrap.DocumentManager} this
37072          * @param {XMLHttpRequest} xhr
37073          */
37074         "exception" : true,
37075         /**
37076          * @event afterupload
37077          * Fire when xhr load exception
37078          * @param {Roo.bootstrap.DocumentManager} this
37079          * @param {XMLHttpRequest} xhr
37080          */
37081         "afterupload" : true,
37082         /**
37083          * @event prepare
37084          * prepare the form data
37085          * @param {Roo.bootstrap.DocumentManager} this
37086          * @param {Object} formData
37087          */
37088         "prepare" : true,
37089         /**
37090          * @event remove
37091          * Fire when remove the file
37092          * @param {Roo.bootstrap.DocumentManager} this
37093          * @param {Object} file
37094          */
37095         "remove" : true,
37096         /**
37097          * @event refresh
37098          * Fire after refresh the file
37099          * @param {Roo.bootstrap.DocumentManager} this
37100          */
37101         "refresh" : true,
37102         /**
37103          * @event click
37104          * Fire after click the image
37105          * @param {Roo.bootstrap.DocumentManager} this
37106          * @param {Object} file
37107          */
37108         "click" : true,
37109         /**
37110          * @event edit
37111          * Fire when upload a image and editable set to true
37112          * @param {Roo.bootstrap.DocumentManager} this
37113          * @param {Object} file
37114          */
37115         "edit" : true,
37116         /**
37117          * @event beforeselectfile
37118          * Fire before select file
37119          * @param {Roo.bootstrap.DocumentManager} this
37120          */
37121         "beforeselectfile" : true,
37122         /**
37123          * @event process
37124          * Fire before process file
37125          * @param {Roo.bootstrap.DocumentManager} this
37126          * @param {Object} file
37127          */
37128         "process" : true,
37129         /**
37130          * @event previewrendered
37131          * Fire when preview rendered
37132          * @param {Roo.bootstrap.DocumentManager} this
37133          * @param {Object} file
37134          */
37135         "previewrendered" : true,
37136         /**
37137          */
37138         "previewResize" : true
37139         
37140     });
37141 };
37142
37143 Roo.extend(Roo.bootstrap.DocumentManager, Roo.bootstrap.Component,  {
37144     
37145     boxes : 0,
37146     inputName : '',
37147     thumbSize : 300,
37148     multiple : true,
37149     files : false,
37150     method : 'POST',
37151     url : '',
37152     paramName : 'imageUpload',
37153     toolTipName : 'filename',
37154     fieldLabel : '',
37155     labelWidth : 4,
37156     labelAlign : 'left',
37157     editable : true,
37158     delegates : false,
37159     xhr : false, 
37160     
37161     labellg : 0,
37162     labelmd : 0,
37163     labelsm : 0,
37164     labelxs : 0,
37165     
37166     getAutoCreate : function()
37167     {   
37168         var managerWidget = {
37169             tag : 'div',
37170             cls : 'roo-document-manager',
37171             cn : [
37172                 {
37173                     tag : 'input',
37174                     cls : 'roo-document-manager-selector',
37175                     type : 'file'
37176                 },
37177                 {
37178                     tag : 'div',
37179                     cls : 'roo-document-manager-uploader',
37180                     cn : [
37181                         {
37182                             tag : 'div',
37183                             cls : 'roo-document-manager-upload-btn',
37184                             html : '<i class="fa fa-plus"></i>'
37185                         }
37186                     ]
37187                     
37188                 }
37189             ]
37190         };
37191         
37192         var content = [
37193             {
37194                 tag : 'div',
37195                 cls : 'column col-md-12',
37196                 cn : managerWidget
37197             }
37198         ];
37199         
37200         if(this.fieldLabel.length){
37201             
37202             content = [
37203                 {
37204                     tag : 'div',
37205                     cls : 'column col-md-12',
37206                     html : this.fieldLabel
37207                 },
37208                 {
37209                     tag : 'div',
37210                     cls : 'column col-md-12',
37211                     cn : managerWidget
37212                 }
37213             ];
37214
37215             if(this.labelAlign == 'left'){
37216                 content = [
37217                     {
37218                         tag : 'div',
37219                         cls : 'column',
37220                         html : this.fieldLabel
37221                     },
37222                     {
37223                         tag : 'div',
37224                         cls : 'column',
37225                         cn : managerWidget
37226                     }
37227                 ];
37228                 
37229                 if(this.labelWidth > 12){
37230                     content[0].style = "width: " + this.labelWidth + 'px';
37231                 }
37232
37233                 if(this.labelWidth < 13 && this.labelmd == 0){
37234                     this.labelmd = this.labelWidth;
37235                 }
37236
37237                 if(this.labellg > 0){
37238                     content[0].cls += ' col-lg-' + this.labellg;
37239                     content[1].cls += ' col-lg-' + (12 - this.labellg);
37240                 }
37241
37242                 if(this.labelmd > 0){
37243                     content[0].cls += ' col-md-' + this.labelmd;
37244                     content[1].cls += ' col-md-' + (12 - this.labelmd);
37245                 }
37246
37247                 if(this.labelsm > 0){
37248                     content[0].cls += ' col-sm-' + this.labelsm;
37249                     content[1].cls += ' col-sm-' + (12 - this.labelsm);
37250                 }
37251
37252                 if(this.labelxs > 0){
37253                     content[0].cls += ' col-xs-' + this.labelxs;
37254                     content[1].cls += ' col-xs-' + (12 - this.labelxs);
37255                 }
37256                 
37257             }
37258         }
37259         
37260         var cfg = {
37261             tag : 'div',
37262             cls : 'row clearfix',
37263             cn : content
37264         };
37265         
37266         return cfg;
37267         
37268     },
37269     
37270     initEvents : function()
37271     {
37272         this.managerEl = this.el.select('.roo-document-manager', true).first();
37273         this.managerEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
37274         
37275         this.selectorEl = this.el.select('.roo-document-manager-selector', true).first();
37276         this.selectorEl.hide();
37277         
37278         if(this.multiple){
37279             this.selectorEl.attr('multiple', 'multiple');
37280         }
37281         
37282         this.selectorEl.on('change', this.onFileSelected, this);
37283         
37284         this.uploader = this.el.select('.roo-document-manager-uploader', true).first();
37285         this.uploader.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
37286         
37287         this.uploader.on('click', this.onUploaderClick, this);
37288         
37289         this.renderProgressDialog();
37290         
37291         var _this = this;
37292         
37293         window.addEventListener("resize", function() { _this.refresh(); } );
37294         
37295         this.fireEvent('initial', this);
37296     },
37297     
37298     renderProgressDialog : function()
37299     {
37300         var _this = this;
37301         
37302         this.progressDialog = new Roo.bootstrap.Modal({
37303             cls : 'roo-document-manager-progress-dialog',
37304             allow_close : false,
37305             animate : false,
37306             title : '',
37307             buttons : [
37308                 {
37309                     name  :'cancel',
37310                     weight : 'danger',
37311                     html : 'Cancel'
37312                 }
37313             ], 
37314             listeners : { 
37315                 btnclick : function() {
37316                     _this.uploadCancel();
37317                     this.hide();
37318                 }
37319             }
37320         });
37321          
37322         this.progressDialog.render(Roo.get(document.body));
37323          
37324         this.progress = new Roo.bootstrap.Progress({
37325             cls : 'roo-document-manager-progress',
37326             active : true,
37327             striped : true
37328         });
37329         
37330         this.progress.render(this.progressDialog.getChildContainer());
37331         
37332         this.progressBar = new Roo.bootstrap.ProgressBar({
37333             cls : 'roo-document-manager-progress-bar',
37334             aria_valuenow : 0,
37335             aria_valuemin : 0,
37336             aria_valuemax : 12,
37337             panel : 'success'
37338         });
37339         
37340         this.progressBar.render(this.progress.getChildContainer());
37341     },
37342     
37343     onUploaderClick : function(e)
37344     {
37345         e.preventDefault();
37346      
37347         if(this.fireEvent('beforeselectfile', this) != false){
37348             this.selectorEl.dom.click();
37349         }
37350         
37351     },
37352     
37353     onFileSelected : function(e)
37354     {
37355         e.preventDefault();
37356         
37357         if(typeof(this.selectorEl.dom.files) == 'undefined' || !this.selectorEl.dom.files.length){
37358             return;
37359         }
37360         
37361         Roo.each(this.selectorEl.dom.files, function(file){
37362             if(this.fireEvent('inspect', this, file) != false){
37363                 this.files.push(file);
37364             }
37365         }, this);
37366         
37367         this.queue();
37368         
37369     },
37370     
37371     queue : function()
37372     {
37373         this.selectorEl.dom.value = '';
37374         
37375         if(!this.files || !this.files.length){
37376             return;
37377         }
37378         
37379         if(this.boxes > 0 && this.files.length > this.boxes){
37380             this.files = this.files.slice(0, this.boxes);
37381         }
37382         
37383         this.uploader.show();
37384         
37385         if(this.boxes > 0 && this.files.length > this.boxes - 1){
37386             this.uploader.hide();
37387         }
37388         
37389         var _this = this;
37390         
37391         var files = [];
37392         
37393         var docs = [];
37394         
37395         Roo.each(this.files, function(file){
37396             
37397             if(typeof(file.id) != 'undefined' && file.id * 1 > 0){
37398                 var f = this.renderPreview(file);
37399                 files.push(f);
37400                 return;
37401             }
37402             
37403             if(file.type.indexOf('image') != -1){
37404                 this.delegates.push(
37405                     (function(){
37406                         _this.process(file);
37407                     }).createDelegate(this)
37408                 );
37409         
37410                 return;
37411             }
37412             
37413             docs.push(
37414                 (function(){
37415                     _this.process(file);
37416                 }).createDelegate(this)
37417             );
37418             
37419         }, this);
37420         
37421         this.files = files;
37422         
37423         this.delegates = this.delegates.concat(docs);
37424         
37425         if(!this.delegates.length){
37426             this.refresh();
37427             return;
37428         }
37429         
37430         this.progressBar.aria_valuemax = this.delegates.length;
37431         
37432         this.arrange();
37433         
37434         return;
37435     },
37436     
37437     arrange : function()
37438     {
37439         if(!this.delegates.length){
37440             this.progressDialog.hide();
37441             this.refresh();
37442             return;
37443         }
37444         
37445         var delegate = this.delegates.shift();
37446         
37447         this.progressDialog.show();
37448         
37449         this.progressDialog.setTitle((this.progressBar.aria_valuemax - this.delegates.length) + ' / ' + this.progressBar.aria_valuemax);
37450         
37451         this.progressBar.update(this.progressBar.aria_valuemax - this.delegates.length);
37452         
37453         delegate();
37454     },
37455     
37456     refresh : function()
37457     {
37458         this.uploader.show();
37459         
37460         if(this.boxes > 0 && this.files.length > this.boxes - 1){
37461             this.uploader.hide();
37462         }
37463         
37464         Roo.isTouch ? this.closable(false) : this.closable(true);
37465         
37466         this.fireEvent('refresh', this);
37467     },
37468     
37469     onRemove : function(e, el, o)
37470     {
37471         e.preventDefault();
37472         
37473         this.fireEvent('remove', this, o);
37474         
37475     },
37476     
37477     remove : function(o)
37478     {
37479         var files = [];
37480         
37481         Roo.each(this.files, function(file){
37482             if(typeof(file.id) == 'undefined' || file.id * 1 < 1 || file.id != o.id){
37483                 files.push(file);
37484                 return;
37485             }
37486
37487             o.target.remove();
37488
37489         }, this);
37490         
37491         this.files = files;
37492         
37493         this.refresh();
37494     },
37495     
37496     clear : function()
37497     {
37498         Roo.each(this.files, function(file){
37499             if(!file.target){
37500                 return;
37501             }
37502             
37503             file.target.remove();
37504
37505         }, this);
37506         
37507         this.files = [];
37508         
37509         this.refresh();
37510     },
37511     
37512     onClick : function(e, el, o)
37513     {
37514         e.preventDefault();
37515         
37516         this.fireEvent('click', this, o);
37517         
37518     },
37519     
37520     closable : function(closable)
37521     {
37522         Roo.each(this.managerEl.select('.roo-document-manager-preview > button.close', true).elements, function(el){
37523             
37524             el.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
37525             
37526             if(closable){
37527                 el.show();
37528                 return;
37529             }
37530             
37531             el.hide();
37532             
37533         }, this);
37534     },
37535     
37536     xhrOnLoad : function(xhr)
37537     {
37538         Roo.each(this.managerEl.select('.roo-document-manager-loading', true).elements, function(el){
37539             el.remove();
37540         }, this);
37541         
37542         if (xhr.readyState !== 4) {
37543             this.arrange();
37544             this.fireEvent('exception', this, xhr);
37545             return;
37546         }
37547
37548         var response = Roo.decode(xhr.responseText);
37549         
37550         if(!response.success){
37551             this.arrange();
37552             this.fireEvent('exception', this, xhr);
37553             return;
37554         }
37555         
37556         var file = this.renderPreview(response.data);
37557         
37558         this.files.push(file);
37559         
37560         this.arrange();
37561         
37562         this.fireEvent('afterupload', this, xhr);
37563         
37564     },
37565     
37566     xhrOnError : function(xhr)
37567     {
37568         Roo.log('xhr on error');
37569         
37570         var response = Roo.decode(xhr.responseText);
37571           
37572         Roo.log(response);
37573         
37574         this.arrange();
37575     },
37576     
37577     process : function(file)
37578     {
37579         if(this.fireEvent('process', this, file) !== false){
37580             if(this.editable && file.type.indexOf('image') != -1){
37581                 this.fireEvent('edit', this, file);
37582                 return;
37583             }
37584
37585             this.uploadStart(file, false);
37586
37587             return;
37588         }
37589         
37590     },
37591     
37592     uploadStart : function(file, crop)
37593     {
37594         this.xhr = new XMLHttpRequest();
37595         
37596         if(typeof(file.id) != 'undefined' && file.id * 1 > 0){
37597             this.arrange();
37598             return;
37599         }
37600         
37601         file.xhr = this.xhr;
37602             
37603         this.managerEl.createChild({
37604             tag : 'div',
37605             cls : 'roo-document-manager-loading',
37606             cn : [
37607                 {
37608                     tag : 'div',
37609                     tooltip : file.name,
37610                     cls : 'roo-document-manager-thumb',
37611                     html : '<i class="fa fa-circle-o-notch fa-spin"></i>'
37612                 }
37613             ]
37614
37615         });
37616
37617         this.xhr.open(this.method, this.url, true);
37618         
37619         var headers = {
37620             "Accept": "application/json",
37621             "Cache-Control": "no-cache",
37622             "X-Requested-With": "XMLHttpRequest"
37623         };
37624         
37625         for (var headerName in headers) {
37626             var headerValue = headers[headerName];
37627             if (headerValue) {
37628                 this.xhr.setRequestHeader(headerName, headerValue);
37629             }
37630         }
37631         
37632         var _this = this;
37633         
37634         this.xhr.onload = function()
37635         {
37636             _this.xhrOnLoad(_this.xhr);
37637         }
37638         
37639         this.xhr.onerror = function()
37640         {
37641             _this.xhrOnError(_this.xhr);
37642         }
37643         
37644         var formData = new FormData();
37645
37646         formData.append('returnHTML', 'NO');
37647         
37648         if(crop){
37649             formData.append('crop', crop);
37650         }
37651         
37652         formData.append(this.paramName, file, file.name);
37653         
37654         var options = {
37655             file : file, 
37656             manually : false
37657         };
37658         
37659         if(this.fireEvent('prepare', this, formData, options) != false){
37660             
37661             if(options.manually){
37662                 return;
37663             }
37664             
37665             this.xhr.send(formData);
37666             return;
37667         };
37668         
37669         this.uploadCancel();
37670     },
37671     
37672     uploadCancel : function()
37673     {
37674         if (this.xhr) {
37675             this.xhr.abort();
37676         }
37677         
37678         this.delegates = [];
37679         
37680         Roo.each(this.managerEl.select('.roo-document-manager-loading', true).elements, function(el){
37681             el.remove();
37682         }, this);
37683         
37684         this.arrange();
37685     },
37686     
37687     renderPreview : function(file)
37688     {
37689         if(typeof(file.target) != 'undefined' && file.target){
37690             return file;
37691         }
37692         
37693         var img_src = encodeURI(baseURL +'/Images/Thumb/' + this.thumbSize + '/' + file.id + '/' + file.filename);
37694         
37695         var previewEl = this.managerEl.createChild({
37696             tag : 'div',
37697             cls : 'roo-document-manager-preview',
37698             cn : [
37699                 {
37700                     tag : 'div',
37701                     tooltip : file[this.toolTipName],
37702                     cls : 'roo-document-manager-thumb',
37703                     html : '<img tooltip="' + file[this.toolTipName] + '" src="' + img_src + '">'
37704                 },
37705                 {
37706                     tag : 'button',
37707                     cls : 'close',
37708                     html : '<i class="fa fa-times-circle"></i>'
37709                 }
37710             ]
37711         });
37712
37713         var close = previewEl.select('button.close', true).first();
37714
37715         close.on('click', this.onRemove, this, file);
37716
37717         file.target = previewEl;
37718
37719         var image = previewEl.select('img', true).first();
37720         
37721         var _this = this;
37722         
37723         image.dom.addEventListener("load", function(){ _this.onPreviewLoad(file, image); });
37724         
37725         image.on('click', this.onClick, this, file);
37726         
37727         this.fireEvent('previewrendered', this, file);
37728         
37729         return file;
37730         
37731     },
37732     
37733     onPreviewLoad : function(file, image)
37734     {
37735         if(typeof(file.target) == 'undefined' || !file.target){
37736             return;
37737         }
37738         
37739         var width = image.dom.naturalWidth || image.dom.width;
37740         var height = image.dom.naturalHeight || image.dom.height;
37741         
37742         if(!this.previewResize) {
37743             return;
37744         }
37745         
37746         if(width > height){
37747             file.target.addClass('wide');
37748             return;
37749         }
37750         
37751         file.target.addClass('tall');
37752         return;
37753         
37754     },
37755     
37756     uploadFromSource : function(file, crop)
37757     {
37758         this.xhr = new XMLHttpRequest();
37759         
37760         this.managerEl.createChild({
37761             tag : 'div',
37762             cls : 'roo-document-manager-loading',
37763             cn : [
37764                 {
37765                     tag : 'div',
37766                     tooltip : file.name,
37767                     cls : 'roo-document-manager-thumb',
37768                     html : '<i class="fa fa-circle-o-notch fa-spin"></i>'
37769                 }
37770             ]
37771
37772         });
37773
37774         this.xhr.open(this.method, this.url, true);
37775         
37776         var headers = {
37777             "Accept": "application/json",
37778             "Cache-Control": "no-cache",
37779             "X-Requested-With": "XMLHttpRequest"
37780         };
37781         
37782         for (var headerName in headers) {
37783             var headerValue = headers[headerName];
37784             if (headerValue) {
37785                 this.xhr.setRequestHeader(headerName, headerValue);
37786             }
37787         }
37788         
37789         var _this = this;
37790         
37791         this.xhr.onload = function()
37792         {
37793             _this.xhrOnLoad(_this.xhr);
37794         }
37795         
37796         this.xhr.onerror = function()
37797         {
37798             _this.xhrOnError(_this.xhr);
37799         }
37800         
37801         var formData = new FormData();
37802
37803         formData.append('returnHTML', 'NO');
37804         
37805         formData.append('crop', crop);
37806         
37807         if(typeof(file.filename) != 'undefined'){
37808             formData.append('filename', file.filename);
37809         }
37810         
37811         if(typeof(file.mimetype) != 'undefined'){
37812             formData.append('mimetype', file.mimetype);
37813         }
37814         
37815         Roo.log(formData);
37816         
37817         if(this.fireEvent('prepare', this, formData) != false){
37818             this.xhr.send(formData);
37819         };
37820     }
37821 });
37822
37823 /*
37824 * Licence: LGPL
37825 */
37826
37827 /**
37828  * @class Roo.bootstrap.DocumentViewer
37829  * @extends Roo.bootstrap.Component
37830  * Bootstrap DocumentViewer class
37831  * @cfg {Boolean} showDownload (true|false) show download button (default true)
37832  * @cfg {Boolean} showTrash (true|false) show trash button (default true)
37833  * 
37834  * @constructor
37835  * Create a new DocumentViewer
37836  * @param {Object} config The config object
37837  */
37838
37839 Roo.bootstrap.DocumentViewer = function(config){
37840     Roo.bootstrap.DocumentViewer.superclass.constructor.call(this, config);
37841     
37842     this.addEvents({
37843         /**
37844          * @event initial
37845          * Fire after initEvent
37846          * @param {Roo.bootstrap.DocumentViewer} this
37847          */
37848         "initial" : true,
37849         /**
37850          * @event click
37851          * Fire after click
37852          * @param {Roo.bootstrap.DocumentViewer} this
37853          */
37854         "click" : true,
37855         /**
37856          * @event download
37857          * Fire after download button
37858          * @param {Roo.bootstrap.DocumentViewer} this
37859          */
37860         "download" : true,
37861         /**
37862          * @event trash
37863          * Fire after trash button
37864          * @param {Roo.bootstrap.DocumentViewer} this
37865          */
37866         "trash" : true
37867         
37868     });
37869 };
37870
37871 Roo.extend(Roo.bootstrap.DocumentViewer, Roo.bootstrap.Component,  {
37872     
37873     showDownload : true,
37874     
37875     showTrash : true,
37876     
37877     getAutoCreate : function()
37878     {
37879         var cfg = {
37880             tag : 'div',
37881             cls : 'roo-document-viewer',
37882             cn : [
37883                 {
37884                     tag : 'div',
37885                     cls : 'roo-document-viewer-body',
37886                     cn : [
37887                         {
37888                             tag : 'div',
37889                             cls : 'roo-document-viewer-thumb',
37890                             cn : [
37891                                 {
37892                                     tag : 'img',
37893                                     cls : 'roo-document-viewer-image'
37894                                 }
37895                             ]
37896                         }
37897                     ]
37898                 },
37899                 {
37900                     tag : 'div',
37901                     cls : 'roo-document-viewer-footer',
37902                     cn : {
37903                         tag : 'div',
37904                         cls : 'btn-group btn-group-justified roo-document-viewer-btn-group',
37905                         cn : [
37906                             {
37907                                 tag : 'div',
37908                                 cls : 'btn-group roo-document-viewer-download',
37909                                 cn : [
37910                                     {
37911                                         tag : 'button',
37912                                         cls : 'btn btn-default',
37913                                         html : '<i class="fa fa-download"></i>'
37914                                     }
37915                                 ]
37916                             },
37917                             {
37918                                 tag : 'div',
37919                                 cls : 'btn-group roo-document-viewer-trash',
37920                                 cn : [
37921                                     {
37922                                         tag : 'button',
37923                                         cls : 'btn btn-default',
37924                                         html : '<i class="fa fa-trash"></i>'
37925                                     }
37926                                 ]
37927                             }
37928                         ]
37929                     }
37930                 }
37931             ]
37932         };
37933         
37934         return cfg;
37935     },
37936     
37937     initEvents : function()
37938     {
37939         this.bodyEl = this.el.select('.roo-document-viewer-body', true).first();
37940         this.bodyEl.setVisibilityMode(Roo.Element.DISPLAY);
37941         
37942         this.thumbEl = this.el.select('.roo-document-viewer-thumb', true).first();
37943         this.thumbEl.setVisibilityMode(Roo.Element.DISPLAY);
37944         
37945         this.imageEl = this.el.select('.roo-document-viewer-image', true).first();
37946         this.imageEl.setVisibilityMode(Roo.Element.DISPLAY);
37947         
37948         this.footerEl = this.el.select('.roo-document-viewer-footer', true).first();
37949         this.footerEl.setVisibilityMode(Roo.Element.DISPLAY);
37950         
37951         this.downloadBtn = this.el.select('.roo-document-viewer-download', true).first();
37952         this.downloadBtn.setVisibilityMode(Roo.Element.DISPLAY);
37953         
37954         this.trashBtn = this.el.select('.roo-document-viewer-trash', true).first();
37955         this.trashBtn.setVisibilityMode(Roo.Element.DISPLAY);
37956         
37957         this.bodyEl.on('click', this.onClick, this);
37958         this.downloadBtn.on('click', this.onDownload, this);
37959         this.trashBtn.on('click', this.onTrash, this);
37960         
37961         this.downloadBtn.hide();
37962         this.trashBtn.hide();
37963         
37964         if(this.showDownload){
37965             this.downloadBtn.show();
37966         }
37967         
37968         if(this.showTrash){
37969             this.trashBtn.show();
37970         }
37971         
37972         if(!this.showDownload && !this.showTrash) {
37973             this.footerEl.hide();
37974         }
37975         
37976     },
37977     
37978     initial : function()
37979     {
37980         this.fireEvent('initial', this);
37981         
37982     },
37983     
37984     onClick : function(e)
37985     {
37986         e.preventDefault();
37987         
37988         this.fireEvent('click', this);
37989     },
37990     
37991     onDownload : function(e)
37992     {
37993         e.preventDefault();
37994         
37995         this.fireEvent('download', this);
37996     },
37997     
37998     onTrash : function(e)
37999     {
38000         e.preventDefault();
38001         
38002         this.fireEvent('trash', this);
38003     }
38004     
38005 });
38006 /*
38007  * - LGPL
38008  *
38009  * FieldLabel
38010  * 
38011  */
38012
38013 /**
38014  * @class Roo.bootstrap.form.FieldLabel
38015  * @extends Roo.bootstrap.Component
38016  * Bootstrap FieldLabel class
38017  * @cfg {String} html contents of the element
38018  * @cfg {String} tag tag of the element default label
38019  * @cfg {String} cls class of the element
38020  * @cfg {String} target label target 
38021  * @cfg {Boolean} allowBlank (true|false) target allowBlank default true
38022  * @cfg {String} invalidClass DEPRICATED - BS4 uses is-invalid
38023  * @cfg {String} validClass DEPRICATED - BS4 uses is-valid
38024  * @cfg {String} iconTooltip default "This field is required"
38025  * @cfg {String} indicatorpos (left|right) default left
38026  * 
38027  * @constructor
38028  * Create a new FieldLabel
38029  * @param {Object} config The config object
38030  */
38031
38032 Roo.bootstrap.form.FieldLabel = function(config){
38033     Roo.bootstrap.Element.superclass.constructor.call(this, config);
38034     
38035     this.addEvents({
38036             /**
38037              * @event invalid
38038              * Fires after the field has been marked as invalid.
38039              * @param {Roo.form.FieldLabel} this
38040              * @param {String} msg The validation message
38041              */
38042             invalid : true,
38043             /**
38044              * @event valid
38045              * Fires after the field has been validated with no errors.
38046              * @param {Roo.form.FieldLabel} this
38047              */
38048             valid : true
38049         });
38050 };
38051
38052 Roo.extend(Roo.bootstrap.form.FieldLabel, Roo.bootstrap.Component,  {
38053     
38054     tag: 'label',
38055     cls: '',
38056     html: '',
38057     target: '',
38058     allowBlank : true,
38059     invalidClass : 'has-warning',
38060     validClass : 'has-success',
38061     iconTooltip : 'This field is required',
38062     indicatorpos : 'left',
38063     
38064     getAutoCreate : function(){
38065         
38066         var cls = "";
38067         if (!this.allowBlank) {
38068             cls  = "visible";
38069         }
38070         
38071         var cfg = {
38072             tag : this.tag,
38073             cls : 'roo-bootstrap-field-label ' + this.cls,
38074             for : this.target,
38075             cn : [
38076                 {
38077                     tag : 'i',
38078                     cls : 'roo-required-indicator left-indicator text-danger fa fa-lg fa-star ' + cls,
38079                     tooltip : this.iconTooltip
38080                 },
38081                 {
38082                     tag : 'span',
38083                     html : this.html
38084                 }
38085             ] 
38086         };
38087         
38088         if(this.indicatorpos == 'right'){
38089             var cfg = {
38090                 tag : this.tag,
38091                 cls : 'roo-bootstrap-field-label ' + this.cls,
38092                 for : this.target,
38093                 cn : [
38094                     {
38095                         tag : 'span',
38096                         html : this.html
38097                     },
38098                     {
38099                         tag : 'i',
38100                         cls : 'roo-required-indicator right-indicator text-danger fa fa-lg fa-star '+ cls,
38101                         tooltip : this.iconTooltip
38102                     }
38103                 ] 
38104             };
38105         }
38106         
38107         return cfg;
38108     },
38109     
38110     initEvents: function() 
38111     {
38112         Roo.bootstrap.Element.superclass.initEvents.call(this);
38113         
38114         this.indicator = this.indicatorEl();
38115         
38116         if(this.indicator){
38117             this.indicator.removeClass('visible');
38118             this.indicator.addClass('invisible');
38119         }
38120         
38121         Roo.bootstrap.form.FieldLabel.register(this);
38122     },
38123     
38124     indicatorEl : function()
38125     {
38126         var indicator = this.el.select('i.roo-required-indicator',true).first();
38127         
38128         if(!indicator){
38129             return false;
38130         }
38131         
38132         return indicator;
38133         
38134     },
38135     
38136     /**
38137      * Mark this field as valid
38138      */
38139     markValid : function()
38140     {
38141         if(this.indicator){
38142             this.indicator.removeClass('visible');
38143             this.indicator.addClass('invisible');
38144         }
38145         if (Roo.bootstrap.version == 3) {
38146             this.el.removeClass(this.invalidClass);
38147             this.el.addClass(this.validClass);
38148         } else {
38149             this.el.removeClass('is-invalid');
38150             this.el.addClass('is-valid');
38151         }
38152         
38153         
38154         this.fireEvent('valid', this);
38155     },
38156     
38157     /**
38158      * Mark this field as invalid
38159      * @param {String} msg The validation message
38160      */
38161     markInvalid : function(msg)
38162     {
38163         if(this.indicator){
38164             this.indicator.removeClass('invisible');
38165             this.indicator.addClass('visible');
38166         }
38167           if (Roo.bootstrap.version == 3) {
38168             this.el.removeClass(this.validClass);
38169             this.el.addClass(this.invalidClass);
38170         } else {
38171             this.el.removeClass('is-valid');
38172             this.el.addClass('is-invalid');
38173         }
38174         
38175         
38176         this.fireEvent('invalid', this, msg);
38177     }
38178     
38179    
38180 });
38181
38182 Roo.apply(Roo.bootstrap.form.FieldLabel, {
38183     
38184     groups: {},
38185     
38186      /**
38187     * register a FieldLabel Group
38188     * @param {Roo.bootstrap.form.FieldLabel} the FieldLabel to add
38189     */
38190     register : function(label)
38191     {
38192         if(this.groups.hasOwnProperty(label.target)){
38193             return;
38194         }
38195      
38196         this.groups[label.target] = label;
38197         
38198     },
38199     /**
38200     * fetch a FieldLabel Group based on the target
38201     * @param {string} target
38202     * @returns {Roo.bootstrap.form.FieldLabel} the CheckBox group
38203     */
38204     get: function(target) {
38205         if (typeof(this.groups[target]) == 'undefined') {
38206             return false;
38207         }
38208         
38209         return this.groups[target] ;
38210     }
38211 });
38212
38213  
38214
38215  /*
38216  * - LGPL
38217  *
38218  * page DateSplitField.
38219  * 
38220  */
38221
38222
38223 /**
38224  * @class Roo.bootstrap.form.DateSplitField
38225  * @extends Roo.bootstrap.Component
38226  * Bootstrap DateSplitField class
38227  * @cfg {string} fieldLabel - the label associated
38228  * @cfg {Number} labelWidth set the width of label (0-12)
38229  * @cfg {String} labelAlign (top|left)
38230  * @cfg {Boolean} dayAllowBlank (true|false) default false
38231  * @cfg {Boolean} monthAllowBlank (true|false) default false
38232  * @cfg {Boolean} yearAllowBlank (true|false) default false
38233  * @cfg {string} dayPlaceholder 
38234  * @cfg {string} monthPlaceholder
38235  * @cfg {string} yearPlaceholder
38236  * @cfg {string} dayFormat default 'd'
38237  * @cfg {string} monthFormat default 'm'
38238  * @cfg {string} yearFormat default 'Y'
38239  * @cfg {Number} labellg set the width of label (1-12)
38240  * @cfg {Number} labelmd set the width of label (1-12)
38241  * @cfg {Number} labelsm set the width of label (1-12)
38242  * @cfg {Number} labelxs set the width of label (1-12)
38243
38244  *     
38245  * @constructor
38246  * Create a new DateSplitField
38247  * @param {Object} config The config object
38248  */
38249
38250 Roo.bootstrap.form.DateSplitField = function(config){
38251     Roo.bootstrap.form.DateSplitField.superclass.constructor.call(this, config);
38252     
38253     this.addEvents({
38254         // raw events
38255          /**
38256          * @event years
38257          * getting the data of years
38258          * @param {Roo.bootstrap.form.DateSplitField} this
38259          * @param {Object} years
38260          */
38261         "years" : true,
38262         /**
38263          * @event days
38264          * getting the data of days
38265          * @param {Roo.bootstrap.form.DateSplitField} this
38266          * @param {Object} days
38267          */
38268         "days" : true,
38269         /**
38270          * @event invalid
38271          * Fires after the field has been marked as invalid.
38272          * @param {Roo.form.Field} this
38273          * @param {String} msg The validation message
38274          */
38275         invalid : true,
38276        /**
38277          * @event valid
38278          * Fires after the field has been validated with no errors.
38279          * @param {Roo.form.Field} this
38280          */
38281         valid : true
38282     });
38283 };
38284
38285 Roo.extend(Roo.bootstrap.form.DateSplitField, Roo.bootstrap.Component,  {
38286     
38287     fieldLabel : '',
38288     labelAlign : 'top',
38289     labelWidth : 3,
38290     dayAllowBlank : false,
38291     monthAllowBlank : false,
38292     yearAllowBlank : false,
38293     dayPlaceholder : '',
38294     monthPlaceholder : '',
38295     yearPlaceholder : '',
38296     dayFormat : 'd',
38297     monthFormat : 'm',
38298     yearFormat : 'Y',
38299     isFormField : true,
38300     labellg : 0,
38301     labelmd : 0,
38302     labelsm : 0,
38303     labelxs : 0,
38304     
38305     getAutoCreate : function()
38306     {
38307         var cfg = {
38308             tag : 'div',
38309             cls : 'row roo-date-split-field-group',
38310             cn : [
38311                 {
38312                     tag : 'input',
38313                     type : 'hidden',
38314                     cls : 'form-hidden-field roo-date-split-field-group-value',
38315                     name : this.name
38316                 }
38317             ]
38318         };
38319         
38320         var labelCls = 'col-md-12';
38321         var contentCls = 'col-md-4';
38322         
38323         if(this.fieldLabel){
38324             
38325             var label = {
38326                 tag : 'div',
38327                 cls : 'column roo-date-split-field-label col-md-' + ((this.labelAlign == 'top') ? '12' : this.labelWidth),
38328                 cn : [
38329                     {
38330                         tag : 'label',
38331                         html : this.fieldLabel
38332                     }
38333                 ]
38334             };
38335             
38336             if(this.labelAlign == 'left'){
38337             
38338                 if(this.labelWidth > 12){
38339                     label.style = "width: " + this.labelWidth + 'px';
38340                 }
38341
38342                 if(this.labelWidth < 13 && this.labelmd == 0){
38343                     this.labelmd = this.labelWidth;
38344                 }
38345
38346                 if(this.labellg > 0){
38347                     labelCls = ' col-lg-' + this.labellg;
38348                     contentCls = ' col-lg-' + ((12 - this.labellg) / 3);
38349                 }
38350
38351                 if(this.labelmd > 0){
38352                     labelCls = ' col-md-' + this.labelmd;
38353                     contentCls = ' col-md-' + ((12 - this.labelmd) / 3);
38354                 }
38355
38356                 if(this.labelsm > 0){
38357                     labelCls = ' col-sm-' + this.labelsm;
38358                     contentCls = ' col-sm-' + ((12 - this.labelsm) / 3);
38359                 }
38360
38361                 if(this.labelxs > 0){
38362                     labelCls = ' col-xs-' + this.labelxs;
38363                     contentCls = ' col-xs-' + ((12 - this.labelxs) / 3);
38364                 }
38365             }
38366             
38367             label.cls += ' ' + labelCls;
38368             
38369             cfg.cn.push(label);
38370         }
38371         
38372         Roo.each(['day', 'month', 'year'], function(t){
38373             cfg.cn.push({
38374                 tag : 'div',
38375                 cls : 'column roo-date-split-field-' + t + ' ' + contentCls
38376             });
38377         }, this);
38378         
38379         return cfg;
38380     },
38381     
38382     inputEl: function ()
38383     {
38384         return this.el.select('.roo-date-split-field-group-value', true).first();
38385     },
38386     
38387     onRender : function(ct, position) 
38388     {
38389         var _this = this;
38390         
38391         Roo.bootstrap.DateSplitFiel.superclass.onRender.call(this, ct, position);
38392         
38393         this.inputEl = this.el.select('.roo-date-split-field-group-value', true).first();
38394         
38395         this.dayField = new Roo.bootstrap.form.ComboBox({
38396             allowBlank : this.dayAllowBlank,
38397             alwaysQuery : true,
38398             displayField : 'value',
38399             editable : false,
38400             fieldLabel : '',
38401             forceSelection : true,
38402             mode : 'local',
38403             placeholder : this.dayPlaceholder,
38404             selectOnFocus : true,
38405             tpl : '<div class="roo-select2-result"><b>{value}</b></div>',
38406             triggerAction : 'all',
38407             typeAhead : true,
38408             valueField : 'value',
38409             store : new Roo.data.SimpleStore({
38410                 data : (function() {    
38411                     var days = [];
38412                     _this.fireEvent('days', _this, days);
38413                     return days;
38414                 })(),
38415                 fields : [ 'value' ]
38416             }),
38417             listeners : {
38418                 select : function (_self, record, index)
38419                 {
38420                     _this.setValue(_this.getValue());
38421                 }
38422             }
38423         });
38424
38425         this.dayField.render(this.el.select('.roo-date-split-field-day', true).first(), null);
38426         
38427         this.monthField = new Roo.bootstrap.form.MonthField({
38428             after : '<i class=\"fa fa-calendar\"></i>',
38429             allowBlank : this.monthAllowBlank,
38430             placeholder : this.monthPlaceholder,
38431             readOnly : true,
38432             listeners : {
38433                 render : function (_self)
38434                 {
38435                     this.el.select('span.input-group-addon', true).first().on('click', function(e){
38436                         e.preventDefault();
38437                         _self.focus();
38438                     });
38439                 },
38440                 select : function (_self, oldvalue, newvalue)
38441                 {
38442                     _this.setValue(_this.getValue());
38443                 }
38444             }
38445         });
38446         
38447         this.monthField.render(this.el.select('.roo-date-split-field-month', true).first(), null);
38448         
38449         this.yearField = new Roo.bootstrap.form.ComboBox({
38450             allowBlank : this.yearAllowBlank,
38451             alwaysQuery : true,
38452             displayField : 'value',
38453             editable : false,
38454             fieldLabel : '',
38455             forceSelection : true,
38456             mode : 'local',
38457             placeholder : this.yearPlaceholder,
38458             selectOnFocus : true,
38459             tpl : '<div class="roo-select2-result"><b>{value}</b></div>',
38460             triggerAction : 'all',
38461             typeAhead : true,
38462             valueField : 'value',
38463             store : new Roo.data.SimpleStore({
38464                 data : (function() {
38465                     var years = [];
38466                     _this.fireEvent('years', _this, years);
38467                     return years;
38468                 })(),
38469                 fields : [ 'value' ]
38470             }),
38471             listeners : {
38472                 select : function (_self, record, index)
38473                 {
38474                     _this.setValue(_this.getValue());
38475                 }
38476             }
38477         });
38478
38479         this.yearField.render(this.el.select('.roo-date-split-field-year', true).first(), null);
38480     },
38481     
38482     setValue : function(v, format)
38483     {
38484         this.inputEl.dom.value = v;
38485         
38486         var f = format || (this.yearFormat + '-' + this.monthFormat + '-' + this.dayFormat);
38487         
38488         var d = Date.parseDate(v, f);
38489         
38490         if(!d){
38491             this.validate();
38492             return;
38493         }
38494         
38495         this.setDay(d.format(this.dayFormat));
38496         this.setMonth(d.format(this.monthFormat));
38497         this.setYear(d.format(this.yearFormat));
38498         
38499         this.validate();
38500         
38501         return;
38502     },
38503     
38504     setDay : function(v)
38505     {
38506         this.dayField.setValue(v);
38507         this.inputEl.dom.value = this.getValue();
38508         this.validate();
38509         return;
38510     },
38511     
38512     setMonth : function(v)
38513     {
38514         this.monthField.setValue(v, true);
38515         this.inputEl.dom.value = this.getValue();
38516         this.validate();
38517         return;
38518     },
38519     
38520     setYear : function(v)
38521     {
38522         this.yearField.setValue(v);
38523         this.inputEl.dom.value = this.getValue();
38524         this.validate();
38525         return;
38526     },
38527     
38528     getDay : function()
38529     {
38530         return this.dayField.getValue();
38531     },
38532     
38533     getMonth : function()
38534     {
38535         return this.monthField.getValue();
38536     },
38537     
38538     getYear : function()
38539     {
38540         return this.yearField.getValue();
38541     },
38542     
38543     getValue : function()
38544     {
38545         var f = this.yearFormat + '-' + this.monthFormat + '-' + this.dayFormat;
38546         
38547         var date = this.yearField.getValue() + '-' + this.monthField.getValue() + '-' + this.dayField.getValue();
38548         
38549         return date;
38550     },
38551     
38552     reset : function()
38553     {
38554         this.setDay('');
38555         this.setMonth('');
38556         this.setYear('');
38557         this.inputEl.dom.value = '';
38558         this.validate();
38559         return;
38560     },
38561     
38562     validate : function()
38563     {
38564         var d = this.dayField.validate();
38565         var m = this.monthField.validate();
38566         var y = this.yearField.validate();
38567         
38568         var valid = true;
38569         
38570         if(
38571                 (!this.dayAllowBlank && !d) ||
38572                 (!this.monthAllowBlank && !m) ||
38573                 (!this.yearAllowBlank && !y)
38574         ){
38575             valid = false;
38576         }
38577         
38578         if(this.dayAllowBlank && this.monthAllowBlank && this.yearAllowBlank){
38579             return valid;
38580         }
38581         
38582         if(valid){
38583             this.markValid();
38584             return valid;
38585         }
38586         
38587         this.markInvalid();
38588         
38589         return valid;
38590     },
38591     
38592     markValid : function()
38593     {
38594         
38595         var label = this.el.select('label', true).first();
38596         var icon = this.el.select('i.fa-star', true).first();
38597
38598         if(label && icon){
38599             icon.remove();
38600         }
38601         
38602         this.fireEvent('valid', this);
38603     },
38604     
38605      /**
38606      * Mark this field as invalid
38607      * @param {String} msg The validation message
38608      */
38609     markInvalid : function(msg)
38610     {
38611         
38612         var label = this.el.select('label', true).first();
38613         var icon = this.el.select('i.fa-star', true).first();
38614
38615         if(label && !icon){
38616             this.el.select('.roo-date-split-field-label', true).createChild({
38617                 tag : 'i',
38618                 cls : 'text-danger fa fa-lg fa-star',
38619                 tooltip : 'This field is required',
38620                 style : 'margin-right:5px;'
38621             }, label, true);
38622         }
38623         
38624         this.fireEvent('invalid', this, msg);
38625     },
38626     
38627     clearInvalid : function()
38628     {
38629         var label = this.el.select('label', true).first();
38630         var icon = this.el.select('i.fa-star', true).first();
38631
38632         if(label && icon){
38633             icon.remove();
38634         }
38635         
38636         this.fireEvent('valid', this);
38637     },
38638     
38639     getName: function()
38640     {
38641         return this.name;
38642     }
38643     
38644 });
38645
38646  
38647
38648 /**
38649  * @class Roo.bootstrap.LayoutMasonry
38650  * @extends Roo.bootstrap.Component
38651  * @children Roo.bootstrap.Element Roo.bootstrap.Img Roo.bootstrap.MasonryBrick
38652  * Bootstrap Layout Masonry class
38653  *
38654  * This is based on 
38655  * http://masonry.desandro.com
38656  *
38657  * The idea is to render all the bricks based on vertical width...
38658  *
38659  * The original code extends 'outlayer' - we might need to use that....
38660
38661  * @constructor
38662  * Create a new Element
38663  * @param {Object} config The config object
38664  */
38665
38666 Roo.bootstrap.LayoutMasonry = function(config){
38667     
38668     Roo.bootstrap.LayoutMasonry.superclass.constructor.call(this, config);
38669     
38670     this.bricks = [];
38671     
38672     Roo.bootstrap.LayoutMasonry.register(this);
38673     
38674     this.addEvents({
38675         // raw events
38676         /**
38677          * @event layout
38678          * Fire after layout the items
38679          * @param {Roo.bootstrap.LayoutMasonry} this
38680          * @param {Roo.EventObject} e
38681          */
38682         "layout" : true
38683     });
38684     
38685 };
38686
38687 Roo.extend(Roo.bootstrap.LayoutMasonry, Roo.bootstrap.Component,  {
38688     
38689     /**
38690      * @cfg {Boolean} isLayoutInstant = no animation?
38691      */   
38692     isLayoutInstant : false, // needed?
38693    
38694     /**
38695      * @cfg {Number} boxWidth  width of the columns
38696      */   
38697     boxWidth : 450,
38698     
38699       /**
38700      * @cfg {Number} boxHeight  - 0 for square, or fix it at a certian height
38701      */   
38702     boxHeight : 0,
38703     
38704     /**
38705      * @cfg {Number} padWidth padding below box..
38706      */   
38707     padWidth : 10, 
38708     
38709     /**
38710      * @cfg {Number} gutter gutter width..
38711      */   
38712     gutter : 10,
38713     
38714      /**
38715      * @cfg {Number} maxCols maximum number of columns
38716      */   
38717     
38718     maxCols: 0,
38719     
38720     /**
38721      * @cfg {Boolean} isAutoInitial defalut true
38722      */   
38723     isAutoInitial : true, 
38724     
38725     containerWidth: 0,
38726     
38727     /**
38728      * @cfg {Boolean} isHorizontal defalut false
38729      */   
38730     isHorizontal : false, 
38731
38732     currentSize : null,
38733     
38734     tag: 'div',
38735     
38736     cls: '',
38737     
38738     bricks: null, //CompositeElement
38739     
38740     cols : 1,
38741     
38742     _isLayoutInited : false,
38743     
38744 //    isAlternative : false, // only use for vertical layout...
38745     
38746     /**
38747      * @cfg {Number} alternativePadWidth padding below box..
38748      */   
38749     alternativePadWidth : 50,
38750     
38751     selectedBrick : [],
38752     
38753     getAutoCreate : function(){
38754         
38755         var cfg = Roo.apply({}, Roo.bootstrap.LayoutMasonry.superclass.getAutoCreate.call(this));
38756         
38757         var cfg = {
38758             tag: this.tag,
38759             cls: 'blog-masonary-wrapper ' + this.cls,
38760             cn : {
38761                 cls : 'mas-boxes masonary'
38762             }
38763         };
38764         
38765         return cfg;
38766     },
38767     
38768     getChildContainer: function( )
38769     {
38770         if (this.boxesEl) {
38771             return this.boxesEl;
38772         }
38773         
38774         this.boxesEl = this.el.select('.mas-boxes').first();
38775         
38776         return this.boxesEl;
38777     },
38778     
38779     
38780     initEvents : function()
38781     {
38782         var _this = this;
38783         
38784         if(this.isAutoInitial){
38785             Roo.log('hook children rendered');
38786             this.on('childrenrendered', function() {
38787                 Roo.log('children rendered');
38788                 _this.initial();
38789             } ,this);
38790         }
38791     },
38792     
38793     initial : function()
38794     {
38795         this.selectedBrick = [];
38796         
38797         this.currentSize = this.el.getBox(true);
38798         
38799         Roo.EventManager.onWindowResize(this.resize, this); 
38800
38801         if(!this.isAutoInitial){
38802             this.layout();
38803             return;
38804         }
38805         
38806         this.layout();
38807         
38808         return;
38809         //this.layout.defer(500,this);
38810         
38811     },
38812     
38813     resize : function()
38814     {
38815         var cs = this.el.getBox(true);
38816         
38817         if (
38818                 this.currentSize.width == cs.width && 
38819                 this.currentSize.x == cs.x && 
38820                 this.currentSize.height == cs.height && 
38821                 this.currentSize.y == cs.y 
38822         ) {
38823             Roo.log("no change in with or X or Y");
38824             return;
38825         }
38826         
38827         this.currentSize = cs;
38828         
38829         this.layout();
38830         
38831     },
38832     
38833     layout : function()
38834     {   
38835         this._resetLayout();
38836         
38837         var isInstant = this.isLayoutInstant !== undefined ? this.isLayoutInstant : !this._isLayoutInited;
38838         
38839         this.layoutItems( isInstant );
38840       
38841         this._isLayoutInited = true;
38842         
38843         this.fireEvent('layout', this);
38844         
38845     },
38846     
38847     _resetLayout : function()
38848     {
38849         if(this.isHorizontal){
38850             this.horizontalMeasureColumns();
38851             return;
38852         }
38853         
38854         this.verticalMeasureColumns();
38855         
38856     },
38857     
38858     verticalMeasureColumns : function()
38859     {
38860         this.getContainerWidth();
38861         
38862 //        if(Roo.lib.Dom.getViewWidth() < 768 && this.isAlternative){
38863 //            this.colWidth = Math.floor(this.containerWidth * 0.8);
38864 //            return;
38865 //        }
38866         
38867         var boxWidth = this.boxWidth + this.padWidth;
38868         
38869         if(this.containerWidth < this.boxWidth){
38870             boxWidth = this.containerWidth
38871         }
38872         
38873         var containerWidth = this.containerWidth;
38874         
38875         var cols = Math.floor(containerWidth / boxWidth);
38876         
38877         this.cols = Math.max( cols, 1 );
38878         
38879         this.cols = this.maxCols > 0 ? Math.min( this.cols, this.maxCols ) : this.cols;
38880         
38881         var totalBoxWidth = this.cols * boxWidth - this.padWidth;
38882         
38883         var avail = Math.floor((containerWidth - totalBoxWidth) / this.cols);
38884         
38885         this.colWidth = boxWidth + avail - this.padWidth;
38886         
38887         this.unitWidth = Math.round((this.colWidth - (this.gutter * 2)) / 3);
38888         this.unitHeight = this.boxHeight > 0 ? this.boxHeight  : this.unitWidth;
38889     },
38890     
38891     horizontalMeasureColumns : function()
38892     {
38893         this.getContainerWidth();
38894         
38895         var boxWidth = this.boxWidth;
38896         
38897         if(this.containerWidth < boxWidth){
38898             boxWidth = this.containerWidth;
38899         }
38900         
38901         this.unitWidth = Math.floor((boxWidth - (this.gutter * 2)) / 3);
38902         
38903         this.el.setHeight(boxWidth);
38904         
38905     },
38906     
38907     getContainerWidth : function()
38908     {
38909         this.containerWidth = this.el.getBox(true).width;  //maybe use getComputedWidth
38910     },
38911     
38912     layoutItems : function( isInstant )
38913     {
38914         Roo.log(this.bricks);
38915         
38916         var items = Roo.apply([], this.bricks);
38917         
38918         if(this.isHorizontal){
38919             this._horizontalLayoutItems( items , isInstant );
38920             return;
38921         }
38922         
38923 //        if(Roo.lib.Dom.getViewWidth() < 768 && this.isAlternative){
38924 //            this._verticalAlternativeLayoutItems( items , isInstant );
38925 //            return;
38926 //        }
38927         
38928         this._verticalLayoutItems( items , isInstant );
38929         
38930     },
38931     
38932     _verticalLayoutItems : function ( items , isInstant)
38933     {
38934         if ( !items || !items.length ) {
38935             return;
38936         }
38937         
38938         var standard = [
38939             ['xs', 'xs', 'xs', 'tall'],
38940             ['xs', 'xs', 'tall'],
38941             ['xs', 'xs', 'sm'],
38942             ['xs', 'xs', 'xs'],
38943             ['xs', 'tall'],
38944             ['xs', 'sm'],
38945             ['xs', 'xs'],
38946             ['xs'],
38947             
38948             ['sm', 'xs', 'xs'],
38949             ['sm', 'xs'],
38950             ['sm'],
38951             
38952             ['tall', 'xs', 'xs', 'xs'],
38953             ['tall', 'xs', 'xs'],
38954             ['tall', 'xs'],
38955             ['tall']
38956             
38957         ];
38958         
38959         var queue = [];
38960         
38961         var boxes = [];
38962         
38963         var box = [];
38964         
38965         Roo.each(items, function(item, k){
38966             
38967             switch (item.size) {
38968                 // these layouts take up a full box,
38969                 case 'md' :
38970                 case 'md-left' :
38971                 case 'md-right' :
38972                 case 'wide' :
38973                     
38974                     if(box.length){
38975                         boxes.push(box);
38976                         box = [];
38977                     }
38978                     
38979                     boxes.push([item]);
38980                     
38981                     break;
38982                     
38983                 case 'xs' :
38984                 case 'sm' :
38985                 case 'tall' :
38986                     
38987                     box.push(item);
38988                     
38989                     break;
38990                 default :
38991                     break;
38992                     
38993             }
38994             
38995         }, this);
38996         
38997         if(box.length){
38998             boxes.push(box);
38999             box = [];
39000         }
39001         
39002         var filterPattern = function(box, length)
39003         {
39004             if(!box.length){
39005                 return;
39006             }
39007             
39008             var match = false;
39009             
39010             var pattern = box.slice(0, length);
39011             
39012             var format = [];
39013             
39014             Roo.each(pattern, function(i){
39015                 format.push(i.size);
39016             }, this);
39017             
39018             Roo.each(standard, function(s){
39019                 
39020                 if(String(s) != String(format)){
39021                     return;
39022                 }
39023                 
39024                 match = true;
39025                 return false;
39026                 
39027             }, this);
39028             
39029             if(!match && length == 1){
39030                 return;
39031             }
39032             
39033             if(!match){
39034                 filterPattern(box, length - 1);
39035                 return;
39036             }
39037                 
39038             queue.push(pattern);
39039
39040             box = box.slice(length, box.length);
39041
39042             filterPattern(box, 4);
39043
39044             return;
39045             
39046         }
39047         
39048         Roo.each(boxes, function(box, k){
39049             
39050             if(!box.length){
39051                 return;
39052             }
39053             
39054             if(box.length == 1){
39055                 queue.push(box);
39056                 return;
39057             }
39058             
39059             filterPattern(box, 4);
39060             
39061         }, this);
39062         
39063         this._processVerticalLayoutQueue( queue, isInstant );
39064         
39065     },
39066     
39067 //    _verticalAlternativeLayoutItems : function( items , isInstant )
39068 //    {
39069 //        if ( !items || !items.length ) {
39070 //            return;
39071 //        }
39072 //
39073 //        this._processVerticalAlternativeLayoutQueue( items, isInstant );
39074 //        
39075 //    },
39076     
39077     _horizontalLayoutItems : function ( items , isInstant)
39078     {
39079         if ( !items || !items.length || items.length < 3) {
39080             return;
39081         }
39082         
39083         items.reverse();
39084         
39085         var eItems = items.slice(0, 3);
39086         
39087         items = items.slice(3, items.length);
39088         
39089         var standard = [
39090             ['xs', 'xs', 'xs', 'wide'],
39091             ['xs', 'xs', 'wide'],
39092             ['xs', 'xs', 'sm'],
39093             ['xs', 'xs', 'xs'],
39094             ['xs', 'wide'],
39095             ['xs', 'sm'],
39096             ['xs', 'xs'],
39097             ['xs'],
39098             
39099             ['sm', 'xs', 'xs'],
39100             ['sm', 'xs'],
39101             ['sm'],
39102             
39103             ['wide', 'xs', 'xs', 'xs'],
39104             ['wide', 'xs', 'xs'],
39105             ['wide', 'xs'],
39106             ['wide'],
39107             
39108             ['wide-thin']
39109         ];
39110         
39111         var queue = [];
39112         
39113         var boxes = [];
39114         
39115         var box = [];
39116         
39117         Roo.each(items, function(item, k){
39118             
39119             switch (item.size) {
39120                 case 'md' :
39121                 case 'md-left' :
39122                 case 'md-right' :
39123                 case 'tall' :
39124                     
39125                     if(box.length){
39126                         boxes.push(box);
39127                         box = [];
39128                     }
39129                     
39130                     boxes.push([item]);
39131                     
39132                     break;
39133                     
39134                 case 'xs' :
39135                 case 'sm' :
39136                 case 'wide' :
39137                 case 'wide-thin' :
39138                     
39139                     box.push(item);
39140                     
39141                     break;
39142                 default :
39143                     break;
39144                     
39145             }
39146             
39147         }, this);
39148         
39149         if(box.length){
39150             boxes.push(box);
39151             box = [];
39152         }
39153         
39154         var filterPattern = function(box, length)
39155         {
39156             if(!box.length){
39157                 return;
39158             }
39159             
39160             var match = false;
39161             
39162             var pattern = box.slice(0, length);
39163             
39164             var format = [];
39165             
39166             Roo.each(pattern, function(i){
39167                 format.push(i.size);
39168             }, this);
39169             
39170             Roo.each(standard, function(s){
39171                 
39172                 if(String(s) != String(format)){
39173                     return;
39174                 }
39175                 
39176                 match = true;
39177                 return false;
39178                 
39179             }, this);
39180             
39181             if(!match && length == 1){
39182                 return;
39183             }
39184             
39185             if(!match){
39186                 filterPattern(box, length - 1);
39187                 return;
39188             }
39189                 
39190             queue.push(pattern);
39191
39192             box = box.slice(length, box.length);
39193
39194             filterPattern(box, 4);
39195
39196             return;
39197             
39198         }
39199         
39200         Roo.each(boxes, function(box, k){
39201             
39202             if(!box.length){
39203                 return;
39204             }
39205             
39206             if(box.length == 1){
39207                 queue.push(box);
39208                 return;
39209             }
39210             
39211             filterPattern(box, 4);
39212             
39213         }, this);
39214         
39215         
39216         var prune = [];
39217         
39218         var pos = this.el.getBox(true);
39219         
39220         var minX = pos.x;
39221         
39222         var maxX = pos.right - this.unitWidth * 3 - this.gutter * 2 - this.padWidth;
39223         
39224         var hit_end = false;
39225         
39226         Roo.each(queue, function(box){
39227             
39228             if(hit_end){
39229                 
39230                 Roo.each(box, function(b){
39231                 
39232                     b.el.setVisibilityMode(Roo.Element.DISPLAY);
39233                     b.el.hide();
39234
39235                 }, this);
39236
39237                 return;
39238             }
39239             
39240             var mx = 0;
39241             
39242             Roo.each(box, function(b){
39243                 
39244                 b.el.setVisibilityMode(Roo.Element.DISPLAY);
39245                 b.el.show();
39246
39247                 mx = Math.max(mx, b.x);
39248                 
39249             }, this);
39250             
39251             maxX = maxX - this.unitWidth * mx - this.gutter * (mx - 1) - this.padWidth;
39252             
39253             if(maxX < minX){
39254                 
39255                 Roo.each(box, function(b){
39256                 
39257                     b.el.setVisibilityMode(Roo.Element.DISPLAY);
39258                     b.el.hide();
39259                     
39260                 }, this);
39261                 
39262                 hit_end = true;
39263                 
39264                 return;
39265             }
39266             
39267             prune.push(box);
39268             
39269         }, this);
39270         
39271         this._processHorizontalLayoutQueue( prune, eItems, isInstant );
39272     },
39273     
39274     /** Sets position of item in DOM
39275     * @param {Element} item
39276     * @param {Number} x - horizontal position
39277     * @param {Number} y - vertical position
39278     * @param {Boolean} isInstant - disables transitions
39279     */
39280     _processVerticalLayoutQueue : function( queue, isInstant )
39281     {
39282         var pos = this.el.getBox(true);
39283         var x = pos.x;
39284         var y = pos.y;
39285         var maxY = [];
39286         
39287         for (var i = 0; i < this.cols; i++){
39288             maxY[i] = pos.y;
39289         }
39290         
39291         Roo.each(queue, function(box, k){
39292             
39293             var col = k % this.cols;
39294             
39295             Roo.each(box, function(b,kk){
39296                 
39297                 b.el.position('absolute');
39298                 
39299                 var width = Math.floor(this.unitWidth * b.x + (this.gutter * (b.x - 1)) + b.el.getPadding('lr'));
39300                 var height = Math.floor(this.unitHeight * b.y + (this.gutter * (b.y - 1)) + b.el.getPadding('tb'));
39301                 
39302                 if(b.size == 'md-left' || b.size == 'md-right'){
39303                     width = Math.floor(this.unitWidth * (b.x - 1) + (this.gutter * (b.x - 2)) + b.el.getPadding('lr'));
39304                     height = Math.floor(this.unitHeight * (b.y - 1) + (this.gutter * (b.y - 2)) + b.el.getPadding('tb'));
39305                 }
39306                 
39307                 b.el.setWidth(width);
39308                 b.el.setHeight(height);
39309                 // iframe?
39310                 b.el.select('iframe',true).setSize(width,height);
39311                 
39312             }, this);
39313             
39314             for (var i = 0; i < this.cols; i++){
39315                 
39316                 if(maxY[i] < maxY[col]){
39317                     col = i;
39318                     continue;
39319                 }
39320                 
39321                 col = Math.min(col, i);
39322                 
39323             }
39324             
39325             x = pos.x + col * (this.colWidth + this.padWidth);
39326             
39327             y = maxY[col];
39328             
39329             var positions = [];
39330             
39331             switch (box.length){
39332                 case 1 :
39333                     positions = this.getVerticalOneBoxColPositions(x, y, box);
39334                     break;
39335                 case 2 :
39336                     positions = this.getVerticalTwoBoxColPositions(x, y, box);
39337                     break;
39338                 case 3 :
39339                     positions = this.getVerticalThreeBoxColPositions(x, y, box);
39340                     break;
39341                 case 4 :
39342                     positions = this.getVerticalFourBoxColPositions(x, y, box);
39343                     break;
39344                 default :
39345                     break;
39346             }
39347             
39348             Roo.each(box, function(b,kk){
39349                 
39350                 b.el.setXY([positions[kk].x, positions[kk].y], isInstant ? false : true);
39351                 
39352                 var sz = b.el.getSize();
39353                 
39354                 maxY[col] = Math.max(maxY[col], positions[kk].y + sz.height + this.padWidth);
39355                 
39356             }, this);
39357             
39358         }, this);
39359         
39360         var mY = 0;
39361         
39362         for (var i = 0; i < this.cols; i++){
39363             mY = Math.max(mY, maxY[i]);
39364         }
39365         
39366         this.el.setHeight(mY - pos.y);
39367         
39368     },
39369     
39370 //    _processVerticalAlternativeLayoutQueue : function( items, isInstant )
39371 //    {
39372 //        var pos = this.el.getBox(true);
39373 //        var x = pos.x;
39374 //        var y = pos.y;
39375 //        var maxX = pos.right;
39376 //        
39377 //        var maxHeight = 0;
39378 //        
39379 //        Roo.each(items, function(item, k){
39380 //            
39381 //            var c = k % 2;
39382 //            
39383 //            item.el.position('absolute');
39384 //                
39385 //            var width = Math.floor(this.colWidth + item.el.getPadding('lr'));
39386 //
39387 //            item.el.setWidth(width);
39388 //
39389 //            var height = Math.floor(this.colWidth * item.y / item.x + item.el.getPadding('tb'));
39390 //
39391 //            item.el.setHeight(height);
39392 //            
39393 //            if(c == 0){
39394 //                item.el.setXY([x, y], isInstant ? false : true);
39395 //            } else {
39396 //                item.el.setXY([maxX - width, y], isInstant ? false : true);
39397 //            }
39398 //            
39399 //            y = y + height + this.alternativePadWidth;
39400 //            
39401 //            maxHeight = maxHeight + height + this.alternativePadWidth;
39402 //            
39403 //        }, this);
39404 //        
39405 //        this.el.setHeight(maxHeight);
39406 //        
39407 //    },
39408     
39409     _processHorizontalLayoutQueue : function( queue, eItems, isInstant )
39410     {
39411         var pos = this.el.getBox(true);
39412         
39413         var minX = pos.x;
39414         var minY = pos.y;
39415         
39416         var maxX = pos.right;
39417         
39418         this._processHorizontalEndItem(eItems, maxX, minX, minY, isInstant);
39419         
39420         var maxX = maxX - this.unitWidth * 3 - this.gutter * 2 - this.padWidth;
39421         
39422         Roo.each(queue, function(box, k){
39423             
39424             Roo.each(box, function(b, kk){
39425                 
39426                 b.el.position('absolute');
39427                 
39428                 var width = Math.floor(this.unitWidth * b.x + (this.gutter * (b.x - 1)) + b.el.getPadding('lr'));
39429                 var height = Math.floor(this.unitWidth * b.y + (this.gutter * (b.y - 1)) + b.el.getPadding('tb'));
39430                 
39431                 if(b.size == 'md-left' || b.size == 'md-right'){
39432                     width = Math.floor(this.unitWidth * (b.x - 1) + (this.gutter * (b.x - 2)) + b.el.getPadding('lr'));
39433                     height = Math.floor(this.unitWidth * (b.y - 1) + (this.gutter * (b.y - 2)) + b.el.getPadding('tb'));
39434                 }
39435                 
39436                 b.el.setWidth(width);
39437                 b.el.setHeight(height);
39438                 
39439             }, this);
39440             
39441             if(!box.length){
39442                 return;
39443             }
39444             
39445             var positions = [];
39446             
39447             switch (box.length){
39448                 case 1 :
39449                     positions = this.getHorizontalOneBoxColPositions(maxX, minY, box);
39450                     break;
39451                 case 2 :
39452                     positions = this.getHorizontalTwoBoxColPositions(maxX, minY, box);
39453                     break;
39454                 case 3 :
39455                     positions = this.getHorizontalThreeBoxColPositions(maxX, minY, box);
39456                     break;
39457                 case 4 :
39458                     positions = this.getHorizontalFourBoxColPositions(maxX, minY, box);
39459                     break;
39460                 default :
39461                     break;
39462             }
39463             
39464             Roo.each(box, function(b,kk){
39465                 
39466                 b.el.setXY([positions[kk].x, positions[kk].y], isInstant ? false : true);
39467                 
39468                 maxX = Math.min(maxX, positions[kk].x - this.padWidth);
39469                 
39470             }, this);
39471             
39472         }, this);
39473         
39474     },
39475     
39476     _processHorizontalEndItem : function(eItems, maxX, minX, minY, isInstant)
39477     {
39478         Roo.each(eItems, function(b,k){
39479             
39480             b.size = (k == 0) ? 'sm' : 'xs';
39481             b.x = (k == 0) ? 2 : 1;
39482             b.y = (k == 0) ? 2 : 1;
39483             
39484             b.el.position('absolute');
39485             
39486             var width = Math.floor(this.unitWidth * b.x + (this.gutter * (b.x - 1)) + b.el.getPadding('lr'));
39487                 
39488             b.el.setWidth(width);
39489             
39490             var height = Math.floor(this.unitWidth * b.y + (this.gutter * (b.y - 1)) + b.el.getPadding('tb'));
39491             
39492             b.el.setHeight(height);
39493             
39494         }, this);
39495
39496         var positions = [];
39497         
39498         positions.push({
39499             x : maxX - this.unitWidth * 2 - this.gutter,
39500             y : minY
39501         });
39502         
39503         positions.push({
39504             x : maxX - this.unitWidth,
39505             y : minY + (this.unitWidth + this.gutter) * 2
39506         });
39507         
39508         positions.push({
39509             x : maxX - this.unitWidth * 3 - this.gutter * 2,
39510             y : minY
39511         });
39512         
39513         Roo.each(eItems, function(b,k){
39514             
39515             b.el.setXY([positions[k].x, positions[k].y], isInstant ? false : true);
39516
39517         }, this);
39518         
39519     },
39520     
39521     getVerticalOneBoxColPositions : function(x, y, box)
39522     {
39523         var pos = [];
39524         
39525         var rand = Math.floor(Math.random() * ((4 - box[0].x)));
39526         
39527         if(box[0].size == 'md-left'){
39528             rand = 0;
39529         }
39530         
39531         if(box[0].size == 'md-right'){
39532             rand = 1;
39533         }
39534         
39535         pos.push({
39536             x : x + (this.unitWidth + this.gutter) * rand,
39537             y : y
39538         });
39539         
39540         return pos;
39541     },
39542     
39543     getVerticalTwoBoxColPositions : function(x, y, box)
39544     {
39545         var pos = [];
39546         
39547         if(box[0].size == 'xs'){
39548             
39549             pos.push({
39550                 x : x,
39551                 y : y + ((this.unitHeight + this.gutter) * Math.floor(Math.random() * box[1].y))
39552             });
39553
39554             pos.push({
39555                 x : x + (this.unitWidth + this.gutter) * (3 - box[1].x),
39556                 y : y
39557             });
39558             
39559             return pos;
39560             
39561         }
39562         
39563         pos.push({
39564             x : x,
39565             y : y
39566         });
39567
39568         pos.push({
39569             x : x + (this.unitWidth + this.gutter) * 2,
39570             y : y + ((this.unitHeight + this.gutter) * Math.floor(Math.random() * box[0].y))
39571         });
39572         
39573         return pos;
39574         
39575     },
39576     
39577     getVerticalThreeBoxColPositions : function(x, y, box)
39578     {
39579         var pos = [];
39580         
39581         if(box[0].size == 'xs' && box[1].size == 'xs' && box[2].size == 'xs'){
39582             
39583             pos.push({
39584                 x : x,
39585                 y : y
39586             });
39587
39588             pos.push({
39589                 x : x + (this.unitWidth + this.gutter) * 1,
39590                 y : y
39591             });
39592             
39593             pos.push({
39594                 x : x + (this.unitWidth + this.gutter) * 2,
39595                 y : y
39596             });
39597             
39598             return pos;
39599             
39600         }
39601         
39602         if(box[0].size == 'xs' && box[1].size == 'xs'){
39603             
39604             pos.push({
39605                 x : x,
39606                 y : y
39607             });
39608
39609             pos.push({
39610                 x : x,
39611                 y : y + ((this.unitHeight + this.gutter) * (box[2].y - 1))
39612             });
39613             
39614             pos.push({
39615                 x : x + (this.unitWidth + this.gutter) * 1,
39616                 y : y
39617             });
39618             
39619             return pos;
39620             
39621         }
39622         
39623         pos.push({
39624             x : x,
39625             y : y
39626         });
39627
39628         pos.push({
39629             x : x + (this.unitWidth + this.gutter) * 2,
39630             y : y
39631         });
39632
39633         pos.push({
39634             x : x + (this.unitWidth + this.gutter) * 2,
39635             y : y + (this.unitHeight + this.gutter) * (box[0].y - 1)
39636         });
39637             
39638         return pos;
39639         
39640     },
39641     
39642     getVerticalFourBoxColPositions : function(x, y, box)
39643     {
39644         var pos = [];
39645         
39646         if(box[0].size == 'xs'){
39647             
39648             pos.push({
39649                 x : x,
39650                 y : y
39651             });
39652
39653             pos.push({
39654                 x : x,
39655                 y : y + (this.unitHeight + this.gutter) * 1
39656             });
39657             
39658             pos.push({
39659                 x : x,
39660                 y : y + (this.unitHeight + this.gutter) * 2
39661             });
39662             
39663             pos.push({
39664                 x : x + (this.unitWidth + this.gutter) * 1,
39665                 y : y
39666             });
39667             
39668             return pos;
39669             
39670         }
39671         
39672         pos.push({
39673             x : x,
39674             y : y
39675         });
39676
39677         pos.push({
39678             x : x + (this.unitWidth + this.gutter) * 2,
39679             y : y
39680         });
39681
39682         pos.push({
39683             x : x + (this.unitHeightunitWidth + this.gutter) * 2,
39684             y : y + (this.unitHeight + this.gutter) * 1
39685         });
39686
39687         pos.push({
39688             x : x + (this.unitWidth + this.gutter) * 2,
39689             y : y + (this.unitWidth + this.gutter) * 2
39690         });
39691
39692         return pos;
39693         
39694     },
39695     
39696     getHorizontalOneBoxColPositions : function(maxX, minY, box)
39697     {
39698         var pos = [];
39699         
39700         if(box[0].size == 'md-left'){
39701             pos.push({
39702                 x : maxX - this.unitWidth * (box[0].x - 1) - this.gutter * (box[0].x - 2),
39703                 y : minY
39704             });
39705             
39706             return pos;
39707         }
39708         
39709         if(box[0].size == 'md-right'){
39710             pos.push({
39711                 x : maxX - this.unitWidth * (box[0].x - 1) - this.gutter * (box[0].x - 2),
39712                 y : minY + (this.unitWidth + this.gutter) * 1
39713             });
39714             
39715             return pos;
39716         }
39717         
39718         var rand = Math.floor(Math.random() * (4 - box[0].y));
39719         
39720         pos.push({
39721             x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
39722             y : minY + (this.unitWidth + this.gutter) * rand
39723         });
39724         
39725         return pos;
39726         
39727     },
39728     
39729     getHorizontalTwoBoxColPositions : function(maxX, minY, box)
39730     {
39731         var pos = [];
39732         
39733         if(box[0].size == 'xs'){
39734             
39735             pos.push({
39736                 x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
39737                 y : minY
39738             });
39739
39740             pos.push({
39741                 x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
39742                 y : minY + (this.unitWidth + this.gutter) * (3 - box[1].y)
39743             });
39744             
39745             return pos;
39746             
39747         }
39748         
39749         pos.push({
39750             x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
39751             y : minY
39752         });
39753
39754         pos.push({
39755             x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
39756             y : minY + (this.unitWidth + this.gutter) * 2
39757         });
39758         
39759         return pos;
39760         
39761     },
39762     
39763     getHorizontalThreeBoxColPositions : function(maxX, minY, box)
39764     {
39765         var pos = [];
39766         
39767         if(box[0].size == 'xs' && box[1].size == 'xs' && box[2].size == 'xs'){
39768             
39769             pos.push({
39770                 x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
39771                 y : minY
39772             });
39773
39774             pos.push({
39775                 x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
39776                 y : minY + (this.unitWidth + this.gutter) * 1
39777             });
39778             
39779             pos.push({
39780                 x : maxX - this.unitWidth * box[2].x - this.gutter * (box[2].x - 1),
39781                 y : minY + (this.unitWidth + this.gutter) * 2
39782             });
39783             
39784             return pos;
39785             
39786         }
39787         
39788         if(box[0].size == 'xs' && box[1].size == 'xs'){
39789             
39790             pos.push({
39791                 x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
39792                 y : minY
39793             });
39794
39795             pos.push({
39796                 x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1) - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
39797                 y : minY
39798             });
39799             
39800             pos.push({
39801                 x : maxX - this.unitWidth * box[2].x - this.gutter * (box[2].x - 1),
39802                 y : minY + (this.unitWidth + this.gutter) * 1
39803             });
39804             
39805             return pos;
39806             
39807         }
39808         
39809         pos.push({
39810             x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
39811             y : minY
39812         });
39813
39814         pos.push({
39815             x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
39816             y : minY + (this.unitWidth + this.gutter) * 2
39817         });
39818
39819         pos.push({
39820             x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1) - this.unitWidth * box[2].x - this.gutter * (box[2].x - 1),
39821             y : minY + (this.unitWidth + this.gutter) * 2
39822         });
39823             
39824         return pos;
39825         
39826     },
39827     
39828     getHorizontalFourBoxColPositions : function(maxX, minY, box)
39829     {
39830         var pos = [];
39831         
39832         if(box[0].size == 'xs'){
39833             
39834             pos.push({
39835                 x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
39836                 y : minY
39837             });
39838
39839             pos.push({
39840                 x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1) - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
39841                 y : minY
39842             });
39843             
39844             pos.push({
39845                 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),
39846                 y : minY
39847             });
39848             
39849             pos.push({
39850                 x : maxX - this.unitWidth * box[3].x - this.gutter * (box[3].x - 1),
39851                 y : minY + (this.unitWidth + this.gutter) * 1
39852             });
39853             
39854             return pos;
39855             
39856         }
39857         
39858         pos.push({
39859             x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
39860             y : minY
39861         });
39862         
39863         pos.push({
39864             x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
39865             y : minY + (this.unitWidth + this.gutter) * 2
39866         });
39867         
39868         pos.push({
39869             x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1) - this.unitWidth * box[2].x - this.gutter * (box[2].x - 1),
39870             y : minY + (this.unitWidth + this.gutter) * 2
39871         });
39872         
39873         pos.push({
39874             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),
39875             y : minY + (this.unitWidth + this.gutter) * 2
39876         });
39877
39878         return pos;
39879         
39880     },
39881     
39882     /**
39883     * remove a Masonry Brick
39884     * @param {Roo.bootstrap.MasonryBrick} the masonry brick to remove
39885     */
39886     removeBrick : function(brick_id)
39887     {
39888         if (!brick_id) {
39889             return;
39890         }
39891         
39892         for (var i = 0; i<this.bricks.length; i++) {
39893             if (this.bricks[i].id == brick_id) {
39894                 this.bricks.splice(i,1);
39895                 this.el.dom.removeChild(Roo.get(brick_id).dom);
39896                 this.initial();
39897             }
39898         }
39899     },
39900     
39901     /**
39902     * adds a Masonry Brick
39903     * @param {Roo.bootstrap.MasonryBrick} the masonry brick to add
39904     */
39905     addBrick : function(cfg)
39906     {
39907         var cn = new Roo.bootstrap.MasonryBrick(cfg);
39908         //this.register(cn);
39909         cn.parentId = this.id;
39910         cn.render(this.el);
39911         return cn;
39912     },
39913     
39914     /**
39915     * register a Masonry Brick
39916     * @param {Roo.bootstrap.MasonryBrick} the masonry brick to add
39917     */
39918     
39919     register : function(brick)
39920     {
39921         this.bricks.push(brick);
39922         brick.masonryId = this.id;
39923     },
39924     
39925     /**
39926     * clear all the Masonry Brick
39927     */
39928     clearAll : function()
39929     {
39930         this.bricks = [];
39931         //this.getChildContainer().dom.innerHTML = "";
39932         this.el.dom.innerHTML = '';
39933     },
39934     
39935     getSelected : function()
39936     {
39937         if (!this.selectedBrick) {
39938             return false;
39939         }
39940         
39941         return this.selectedBrick;
39942     }
39943 });
39944
39945 Roo.apply(Roo.bootstrap.LayoutMasonry, {
39946     
39947     groups: {},
39948      /**
39949     * register a Masonry Layout
39950     * @param {Roo.bootstrap.LayoutMasonry} the masonry layout to add
39951     */
39952     
39953     register : function(layout)
39954     {
39955         this.groups[layout.id] = layout;
39956     },
39957     /**
39958     * fetch a  Masonry Layout based on the masonry layout ID
39959     * @param {string} the masonry layout to add
39960     * @returns {Roo.bootstrap.LayoutMasonry} the masonry layout
39961     */
39962     
39963     get: function(layout_id) {
39964         if (typeof(this.groups[layout_id]) == 'undefined') {
39965             return false;
39966         }
39967         return this.groups[layout_id] ;
39968     }
39969     
39970     
39971     
39972 });
39973
39974  
39975
39976  /**
39977  *
39978  * This is based on 
39979  * http://masonry.desandro.com
39980  *
39981  * The idea is to render all the bricks based on vertical width...
39982  *
39983  * The original code extends 'outlayer' - we might need to use that....
39984  * 
39985  */
39986
39987
39988 /**
39989  * @class Roo.bootstrap.LayoutMasonryAuto
39990  * @extends Roo.bootstrap.Component
39991  * Bootstrap Layout Masonry class
39992  * 
39993  * @constructor
39994  * Create a new Element
39995  * @param {Object} config The config object
39996  */
39997
39998 Roo.bootstrap.LayoutMasonryAuto = function(config){
39999     Roo.bootstrap.LayoutMasonryAuto.superclass.constructor.call(this, config);
40000 };
40001
40002 Roo.extend(Roo.bootstrap.LayoutMasonryAuto, Roo.bootstrap.Component,  {
40003     
40004       /**
40005      * @cfg {Boolean} isFitWidth  - resize the width..
40006      */   
40007     isFitWidth : false,  // options..
40008     /**
40009      * @cfg {Boolean} isOriginLeft = left align?
40010      */   
40011     isOriginLeft : true,
40012     /**
40013      * @cfg {Boolean} isOriginTop = top align?
40014      */   
40015     isOriginTop : false,
40016     /**
40017      * @cfg {Boolean} isLayoutInstant = no animation?
40018      */   
40019     isLayoutInstant : false, // needed?
40020     /**
40021      * @cfg {Boolean} isResizingContainer = not sure if this is used..
40022      */   
40023     isResizingContainer : true,
40024     /**
40025      * @cfg {Number} columnWidth  width of the columns 
40026      */   
40027     
40028     columnWidth : 0,
40029     
40030     /**
40031      * @cfg {Number} maxCols maximum number of columns
40032      */   
40033     
40034     maxCols: 0,
40035     /**
40036      * @cfg {Number} padHeight padding below box..
40037      */   
40038     
40039     padHeight : 10, 
40040     
40041     /**
40042      * @cfg {Boolean} isAutoInitial defalut true
40043      */   
40044     
40045     isAutoInitial : true, 
40046     
40047     // private?
40048     gutter : 0,
40049     
40050     containerWidth: 0,
40051     initialColumnWidth : 0,
40052     currentSize : null,
40053     
40054     colYs : null, // array.
40055     maxY : 0,
40056     padWidth: 10,
40057     
40058     
40059     tag: 'div',
40060     cls: '',
40061     bricks: null, //CompositeElement
40062     cols : 0, // array?
40063     // element : null, // wrapped now this.el
40064     _isLayoutInited : null, 
40065     
40066     
40067     getAutoCreate : function(){
40068         
40069         var cfg = {
40070             tag: this.tag,
40071             cls: 'blog-masonary-wrapper ' + this.cls,
40072             cn : {
40073                 cls : 'mas-boxes masonary'
40074             }
40075         };
40076         
40077         return cfg;
40078     },
40079     
40080     getChildContainer: function( )
40081     {
40082         if (this.boxesEl) {
40083             return this.boxesEl;
40084         }
40085         
40086         this.boxesEl = this.el.select('.mas-boxes').first();
40087         
40088         return this.boxesEl;
40089     },
40090     
40091     
40092     initEvents : function()
40093     {
40094         var _this = this;
40095         
40096         if(this.isAutoInitial){
40097             Roo.log('hook children rendered');
40098             this.on('childrenrendered', function() {
40099                 Roo.log('children rendered');
40100                 _this.initial();
40101             } ,this);
40102         }
40103         
40104     },
40105     
40106     initial : function()
40107     {
40108         this.reloadItems();
40109
40110         this.currentSize = this.el.getBox(true);
40111
40112         /// was window resize... - let's see if this works..
40113         Roo.EventManager.onWindowResize(this.resize, this); 
40114
40115         if(!this.isAutoInitial){
40116             this.layout();
40117             return;
40118         }
40119         
40120         this.layout.defer(500,this);
40121     },
40122     
40123     reloadItems: function()
40124     {
40125         this.bricks = this.el.select('.masonry-brick', true);
40126         
40127         this.bricks.each(function(b) {
40128             //Roo.log(b.getSize());
40129             if (!b.attr('originalwidth')) {
40130                 b.attr('originalwidth',  b.getSize().width);
40131             }
40132             
40133         });
40134         
40135         Roo.log(this.bricks.elements.length);
40136     },
40137     
40138     resize : function()
40139     {
40140         Roo.log('resize');
40141         var cs = this.el.getBox(true);
40142         
40143         if (this.currentSize.width == cs.width && this.currentSize.x == cs.x ) {
40144             Roo.log("no change in with or X");
40145             return;
40146         }
40147         this.currentSize = cs;
40148         this.layout();
40149     },
40150     
40151     layout : function()
40152     {
40153          Roo.log('layout');
40154         this._resetLayout();
40155         //this._manageStamps();
40156       
40157         // don't animate first layout
40158         var isInstant = this.isLayoutInstant !== undefined ? this.isLayoutInstant : !this._isLayoutInited;
40159         this.layoutItems( isInstant );
40160       
40161         // flag for initalized
40162         this._isLayoutInited = true;
40163     },
40164     
40165     layoutItems : function( isInstant )
40166     {
40167         //var items = this._getItemsForLayout( this.items );
40168         // original code supports filtering layout items.. we just ignore it..
40169         
40170         this._layoutItems( this.bricks , isInstant );
40171       
40172         this._postLayout();
40173     },
40174     _layoutItems : function ( items , isInstant)
40175     {
40176        //this.fireEvent( 'layout', this, items );
40177     
40178
40179         if ( !items || !items.elements.length ) {
40180           // no items, emit event with empty array
40181             return;
40182         }
40183
40184         var queue = [];
40185         items.each(function(item) {
40186             Roo.log("layout item");
40187             Roo.log(item);
40188             // get x/y object from method
40189             var position = this._getItemLayoutPosition( item );
40190             // enqueue
40191             position.item = item;
40192             position.isInstant = isInstant; // || item.isLayoutInstant; << not set yet...
40193             queue.push( position );
40194         }, this);
40195       
40196         this._processLayoutQueue( queue );
40197     },
40198     /** Sets position of item in DOM
40199     * @param {Element} item
40200     * @param {Number} x - horizontal position
40201     * @param {Number} y - vertical position
40202     * @param {Boolean} isInstant - disables transitions
40203     */
40204     _processLayoutQueue : function( queue )
40205     {
40206         for ( var i=0, len = queue.length; i < len; i++ ) {
40207             var obj = queue[i];
40208             obj.item.position('absolute');
40209             obj.item.setXY([obj.x,obj.y], obj.isInstant ? false : true);
40210         }
40211     },
40212       
40213     
40214     /**
40215     * Any logic you want to do after each layout,
40216     * i.e. size the container
40217     */
40218     _postLayout : function()
40219     {
40220         this.resizeContainer();
40221     },
40222     
40223     resizeContainer : function()
40224     {
40225         if ( !this.isResizingContainer ) {
40226             return;
40227         }
40228         var size = this._getContainerSize();
40229         if ( size ) {
40230             this.el.setSize(size.width,size.height);
40231             this.boxesEl.setSize(size.width,size.height);
40232         }
40233     },
40234     
40235     
40236     
40237     _resetLayout : function()
40238     {
40239         //this.getSize();  // -- does not really do anything.. it probably applies left/right etc. to obuject but not used
40240         this.colWidth = this.el.getWidth();
40241         //this.gutter = this.el.getWidth(); 
40242         
40243         this.measureColumns();
40244
40245         // reset column Y
40246         var i = this.cols;
40247         this.colYs = [];
40248         while (i--) {
40249             this.colYs.push( 0 );
40250         }
40251     
40252         this.maxY = 0;
40253     },
40254
40255     measureColumns : function()
40256     {
40257         this.getContainerWidth();
40258       // if columnWidth is 0, default to outerWidth of first item
40259         if ( !this.columnWidth ) {
40260             var firstItem = this.bricks.first();
40261             Roo.log(firstItem);
40262             this.columnWidth  = this.containerWidth;
40263             if (firstItem && firstItem.attr('originalwidth') ) {
40264                 this.columnWidth = 1* (firstItem.attr('originalwidth') || firstItem.getWidth());
40265             }
40266             // columnWidth fall back to item of first element
40267             Roo.log("set column width?");
40268                         this.initialColumnWidth = this.columnWidth  ;
40269
40270             // if first elem has no width, default to size of container
40271             
40272         }
40273         
40274         
40275         if (this.initialColumnWidth) {
40276             this.columnWidth = this.initialColumnWidth;
40277         }
40278         
40279         
40280             
40281         // column width is fixed at the top - however if container width get's smaller we should
40282         // reduce it...
40283         
40284         // this bit calcs how man columns..
40285             
40286         var columnWidth = this.columnWidth += this.gutter;
40287       
40288         // calculate columns
40289         var containerWidth = this.containerWidth + this.gutter;
40290         
40291         var cols = (containerWidth - this.padWidth) / (columnWidth - this.padWidth);
40292         // fix rounding errors, typically with gutters
40293         var excess = columnWidth - containerWidth % columnWidth;
40294         
40295         
40296         // if overshoot is less than a pixel, round up, otherwise floor it
40297         var mathMethod = excess && excess < 1 ? 'round' : 'floor';
40298         cols = Math[ mathMethod ]( cols );
40299         this.cols = Math.max( cols, 1 );
40300         this.cols = this.maxCols > 0 ? Math.min( this.cols, this.maxCols ) : this.cols;
40301         
40302          // padding positioning..
40303         var totalColWidth = this.cols * this.columnWidth;
40304         var padavail = this.containerWidth - totalColWidth;
40305         // so for 2 columns - we need 3 'pads'
40306         
40307         var padNeeded = (1+this.cols) * this.padWidth;
40308         
40309         var padExtra = Math.floor((padavail - padNeeded) / this.cols);
40310         
40311         this.columnWidth += padExtra
40312         //this.padWidth = Math.floor(padavail /  ( this.cols));
40313         
40314         // adjust colum width so that padding is fixed??
40315         
40316         // we have 3 columns ... total = width * 3
40317         // we have X left over... that should be used by 
40318         
40319         //if (this.expandC) {
40320             
40321         //}
40322         
40323         
40324         
40325     },
40326     
40327     getContainerWidth : function()
40328     {
40329        /* // container is parent if fit width
40330         var container = this.isFitWidth ? this.element.parentNode : this.element;
40331         // check that this.size and size are there
40332         // IE8 triggers resize on body size change, so they might not be
40333         
40334         var size = getSize( container );  //FIXME
40335         this.containerWidth = size && size.innerWidth; //FIXME
40336         */
40337          
40338         this.containerWidth = this.el.getBox(true).width;  //maybe use getComputedWidth
40339         
40340     },
40341     
40342     _getItemLayoutPosition : function( item )  // what is item?
40343     {
40344         // we resize the item to our columnWidth..
40345       
40346         item.setWidth(this.columnWidth);
40347         item.autoBoxAdjust  = false;
40348         
40349         var sz = item.getSize();
40350  
40351         // how many columns does this brick span
40352         var remainder = this.containerWidth % this.columnWidth;
40353         
40354         var mathMethod = remainder && remainder < 1 ? 'round' : 'ceil';
40355         // round if off by 1 pixel, otherwise use ceil
40356         var colSpan = Math[ mathMethod ]( sz.width  / this.columnWidth );
40357         colSpan = Math.min( colSpan, this.cols );
40358         
40359         // normally this should be '1' as we dont' currently allow multi width columns..
40360         
40361         var colGroup = this._getColGroup( colSpan );
40362         // get the minimum Y value from the columns
40363         var minimumY = Math.min.apply( Math, colGroup );
40364         Roo.log([ 'setHeight',  minimumY, sz.height, setHeight ]);
40365         
40366         var shortColIndex = colGroup.indexOf(  minimumY ); // broken on ie8..?? probably...
40367          
40368         // position the brick
40369         var position = {
40370             x: this.currentSize.x + (this.padWidth /2) + ((this.columnWidth + this.padWidth )* shortColIndex),
40371             y: this.currentSize.y + minimumY + this.padHeight
40372         };
40373         
40374         Roo.log(position);
40375         // apply setHeight to necessary columns
40376         var setHeight = minimumY + sz.height + this.padHeight;
40377         //Roo.log([ 'setHeight',  minimumY, sz.height, setHeight ]);
40378         
40379         var setSpan = this.cols + 1 - colGroup.length;
40380         for ( var i = 0; i < setSpan; i++ ) {
40381           this.colYs[ shortColIndex + i ] = setHeight ;
40382         }
40383       
40384         return position;
40385     },
40386     
40387     /**
40388      * @param {Number} colSpan - number of columns the element spans
40389      * @returns {Array} colGroup
40390      */
40391     _getColGroup : function( colSpan )
40392     {
40393         if ( colSpan < 2 ) {
40394           // if brick spans only one column, use all the column Ys
40395           return this.colYs;
40396         }
40397       
40398         var colGroup = [];
40399         // how many different places could this brick fit horizontally
40400         var groupCount = this.cols + 1 - colSpan;
40401         // for each group potential horizontal position
40402         for ( var i = 0; i < groupCount; i++ ) {
40403           // make an array of colY values for that one group
40404           var groupColYs = this.colYs.slice( i, i + colSpan );
40405           // and get the max value of the array
40406           colGroup[i] = Math.max.apply( Math, groupColYs );
40407         }
40408         return colGroup;
40409     },
40410     /*
40411     _manageStamp : function( stamp )
40412     {
40413         var stampSize =  stamp.getSize();
40414         var offset = stamp.getBox();
40415         // get the columns that this stamp affects
40416         var firstX = this.isOriginLeft ? offset.x : offset.right;
40417         var lastX = firstX + stampSize.width;
40418         var firstCol = Math.floor( firstX / this.columnWidth );
40419         firstCol = Math.max( 0, firstCol );
40420         
40421         var lastCol = Math.floor( lastX / this.columnWidth );
40422         // lastCol should not go over if multiple of columnWidth #425
40423         lastCol -= lastX % this.columnWidth ? 0 : 1;
40424         lastCol = Math.min( this.cols - 1, lastCol );
40425         
40426         // set colYs to bottom of the stamp
40427         var stampMaxY = ( this.isOriginTop ? offset.y : offset.bottom ) +
40428             stampSize.height;
40429             
40430         for ( var i = firstCol; i <= lastCol; i++ ) {
40431           this.colYs[i] = Math.max( stampMaxY, this.colYs[i] );
40432         }
40433     },
40434     */
40435     
40436     _getContainerSize : function()
40437     {
40438         this.maxY = Math.max.apply( Math, this.colYs );
40439         var size = {
40440             height: this.maxY
40441         };
40442       
40443         if ( this.isFitWidth ) {
40444             size.width = this._getContainerFitWidth();
40445         }
40446       
40447         return size;
40448     },
40449     
40450     _getContainerFitWidth : function()
40451     {
40452         var unusedCols = 0;
40453         // count unused columns
40454         var i = this.cols;
40455         while ( --i ) {
40456           if ( this.colYs[i] !== 0 ) {
40457             break;
40458           }
40459           unusedCols++;
40460         }
40461         // fit container to columns that have been used
40462         return ( this.cols - unusedCols ) * this.columnWidth - this.gutter;
40463     },
40464     
40465     needsResizeLayout : function()
40466     {
40467         var previousWidth = this.containerWidth;
40468         this.getContainerWidth();
40469         return previousWidth !== this.containerWidth;
40470     }
40471  
40472 });
40473
40474  
40475
40476  /*
40477  * - LGPL
40478  *
40479  * element
40480  * 
40481  */
40482
40483 /**
40484  * @class Roo.bootstrap.MasonryBrick
40485  * @extends Roo.bootstrap.Component
40486  * Bootstrap MasonryBrick class
40487  * 
40488  * @constructor
40489  * Create a new MasonryBrick
40490  * @param {Object} config The config object
40491  */
40492
40493 Roo.bootstrap.MasonryBrick = function(config){
40494     
40495     Roo.bootstrap.MasonryBrick.superclass.constructor.call(this, config);
40496     
40497     Roo.bootstrap.MasonryBrick.register(this);
40498     
40499     this.addEvents({
40500         // raw events
40501         /**
40502          * @event click
40503          * When a MasonryBrick is clcik
40504          * @param {Roo.bootstrap.MasonryBrick} this
40505          * @param {Roo.EventObject} e
40506          */
40507         "click" : true
40508     });
40509 };
40510
40511 Roo.extend(Roo.bootstrap.MasonryBrick, Roo.bootstrap.Component,  {
40512     
40513     /**
40514      * @cfg {String} title
40515      */   
40516     title : '',
40517     /**
40518      * @cfg {String} html
40519      */   
40520     html : '',
40521     /**
40522      * @cfg {String} bgimage
40523      */   
40524     bgimage : '',
40525     /**
40526      * @cfg {String} videourl
40527      */   
40528     videourl : '',
40529     /**
40530      * @cfg {String} cls
40531      */   
40532     cls : '',
40533     /**
40534      * @cfg {String} href
40535      */   
40536     href : '',
40537     /**
40538      * @cfg {String} size (xs|sm|md|md-left|md-right|tall|wide)
40539      */   
40540     size : 'xs',
40541     
40542     /**
40543      * @cfg {String} placetitle (center|bottom)
40544      */   
40545     placetitle : '',
40546     
40547     /**
40548      * @cfg {Boolean} isFitContainer defalut true
40549      */   
40550     isFitContainer : true, 
40551     
40552     /**
40553      * @cfg {Boolean} preventDefault defalut false
40554      */   
40555     preventDefault : false, 
40556     
40557     /**
40558      * @cfg {Boolean} inverse defalut false
40559      */   
40560     maskInverse : false, 
40561     
40562     getAutoCreate : function()
40563     {
40564         if(!this.isFitContainer){
40565             return this.getSplitAutoCreate();
40566         }
40567         
40568         var cls = 'masonry-brick masonry-brick-full';
40569         
40570         if(this.href.length){
40571             cls += ' masonry-brick-link';
40572         }
40573         
40574         if(this.bgimage.length){
40575             cls += ' masonry-brick-image';
40576         }
40577         
40578         if(this.maskInverse){
40579             cls += ' mask-inverse';
40580         }
40581         
40582         if(!this.html.length && !this.maskInverse && !this.videourl.length){
40583             cls += ' enable-mask';
40584         }
40585         
40586         if(this.size){
40587             cls += ' masonry-' + this.size + '-brick';
40588         }
40589         
40590         if(this.placetitle.length){
40591             
40592             switch (this.placetitle) {
40593                 case 'center' :
40594                     cls += ' masonry-center-title';
40595                     break;
40596                 case 'bottom' :
40597                     cls += ' masonry-bottom-title';
40598                     break;
40599                 default:
40600                     break;
40601             }
40602             
40603         } else {
40604             if(!this.html.length && !this.bgimage.length){
40605                 cls += ' masonry-center-title';
40606             }
40607
40608             if(!this.html.length && this.bgimage.length){
40609                 cls += ' masonry-bottom-title';
40610             }
40611         }
40612         
40613         if(this.cls){
40614             cls += ' ' + this.cls;
40615         }
40616         
40617         var cfg = {
40618             tag: (this.href.length) ? 'a' : 'div',
40619             cls: cls,
40620             cn: [
40621                 {
40622                     tag: 'div',
40623                     cls: 'masonry-brick-mask'
40624                 },
40625                 {
40626                     tag: 'div',
40627                     cls: 'masonry-brick-paragraph',
40628                     cn: []
40629                 }
40630             ]
40631         };
40632         
40633         if(this.href.length){
40634             cfg.href = this.href;
40635         }
40636         
40637         var cn = cfg.cn[1].cn;
40638         
40639         if(this.title.length){
40640             cn.push({
40641                 tag: 'h4',
40642                 cls: 'masonry-brick-title',
40643                 html: this.title
40644             });
40645         }
40646         
40647         if(this.html.length){
40648             cn.push({
40649                 tag: 'p',
40650                 cls: 'masonry-brick-text',
40651                 html: this.html
40652             });
40653         }
40654         
40655         if (!this.title.length && !this.html.length) {
40656             cfg.cn[1].cls += ' hide';
40657         }
40658         
40659         if(this.bgimage.length){
40660             cfg.cn.push({
40661                 tag: 'img',
40662                 cls: 'masonry-brick-image-view',
40663                 src: this.bgimage
40664             });
40665         }
40666         
40667         if(this.videourl.length){
40668             var vurl = this.videourl.replace(/https:\/\/youtu\.be/, 'https://www.youtube.com/embed/');
40669             // youtube support only?
40670             cfg.cn.push({
40671                 tag: 'iframe',
40672                 cls: 'masonry-brick-image-view',
40673                 src: vurl,
40674                 frameborder : 0,
40675                 allowfullscreen : true
40676             });
40677         }
40678         
40679         return cfg;
40680         
40681     },
40682     
40683     getSplitAutoCreate : function()
40684     {
40685         var cls = 'masonry-brick masonry-brick-split';
40686         
40687         if(this.href.length){
40688             cls += ' masonry-brick-link';
40689         }
40690         
40691         if(this.bgimage.length){
40692             cls += ' masonry-brick-image';
40693         }
40694         
40695         if(this.size){
40696             cls += ' masonry-' + this.size + '-brick';
40697         }
40698         
40699         switch (this.placetitle) {
40700             case 'center' :
40701                 cls += ' masonry-center-title';
40702                 break;
40703             case 'bottom' :
40704                 cls += ' masonry-bottom-title';
40705                 break;
40706             default:
40707                 if(!this.bgimage.length){
40708                     cls += ' masonry-center-title';
40709                 }
40710
40711                 if(this.bgimage.length){
40712                     cls += ' masonry-bottom-title';
40713                 }
40714                 break;
40715         }
40716         
40717         if(this.cls){
40718             cls += ' ' + this.cls;
40719         }
40720         
40721         var cfg = {
40722             tag: (this.href.length) ? 'a' : 'div',
40723             cls: cls,
40724             cn: [
40725                 {
40726                     tag: 'div',
40727                     cls: 'masonry-brick-split-head',
40728                     cn: [
40729                         {
40730                             tag: 'div',
40731                             cls: 'masonry-brick-paragraph',
40732                             cn: []
40733                         }
40734                     ]
40735                 },
40736                 {
40737                     tag: 'div',
40738                     cls: 'masonry-brick-split-body',
40739                     cn: []
40740                 }
40741             ]
40742         };
40743         
40744         if(this.href.length){
40745             cfg.href = this.href;
40746         }
40747         
40748         if(this.title.length){
40749             cfg.cn[0].cn[0].cn.push({
40750                 tag: 'h4',
40751                 cls: 'masonry-brick-title',
40752                 html: this.title
40753             });
40754         }
40755         
40756         if(this.html.length){
40757             cfg.cn[1].cn.push({
40758                 tag: 'p',
40759                 cls: 'masonry-brick-text',
40760                 html: this.html
40761             });
40762         }
40763
40764         if(this.bgimage.length){
40765             cfg.cn[0].cn.push({
40766                 tag: 'img',
40767                 cls: 'masonry-brick-image-view',
40768                 src: this.bgimage
40769             });
40770         }
40771         
40772         if(this.videourl.length){
40773             var vurl = this.videourl.replace(/https:\/\/youtu\.be/, 'https://www.youtube.com/embed/');
40774             // youtube support only?
40775             cfg.cn[0].cn.cn.push({
40776                 tag: 'iframe',
40777                 cls: 'masonry-brick-image-view',
40778                 src: vurl,
40779                 frameborder : 0,
40780                 allowfullscreen : true
40781             });
40782         }
40783         
40784         return cfg;
40785     },
40786     
40787     initEvents: function() 
40788     {
40789         switch (this.size) {
40790             case 'xs' :
40791                 this.x = 1;
40792                 this.y = 1;
40793                 break;
40794             case 'sm' :
40795                 this.x = 2;
40796                 this.y = 2;
40797                 break;
40798             case 'md' :
40799             case 'md-left' :
40800             case 'md-right' :
40801                 this.x = 3;
40802                 this.y = 3;
40803                 break;
40804             case 'tall' :
40805                 this.x = 2;
40806                 this.y = 3;
40807                 break;
40808             case 'wide' :
40809                 this.x = 3;
40810                 this.y = 2;
40811                 break;
40812             case 'wide-thin' :
40813                 this.x = 3;
40814                 this.y = 1;
40815                 break;
40816                         
40817             default :
40818                 break;
40819         }
40820         
40821         if(Roo.isTouch){
40822             this.el.on('touchstart', this.onTouchStart, this);
40823             this.el.on('touchmove', this.onTouchMove, this);
40824             this.el.on('touchend', this.onTouchEnd, this);
40825             this.el.on('contextmenu', this.onContextMenu, this);
40826         } else {
40827             this.el.on('mouseenter'  ,this.enter, this);
40828             this.el.on('mouseleave', this.leave, this);
40829             this.el.on('click', this.onClick, this);
40830         }
40831         
40832         if (typeof(this.parent().bricks) == 'object' && this.parent().bricks != null) {
40833             this.parent().bricks.push(this);   
40834         }
40835         
40836     },
40837     
40838     onClick: function(e, el)
40839     {
40840         var time = this.endTimer - this.startTimer;
40841         // Roo.log(e.preventDefault());
40842         if(Roo.isTouch){
40843             if(time > 1000){
40844                 e.preventDefault();
40845                 return;
40846             }
40847         }
40848         
40849         if(!this.preventDefault){
40850             return;
40851         }
40852         
40853         e.preventDefault();
40854         
40855         if (this.activeClass != '') {
40856             this.selectBrick();
40857         }
40858         
40859         this.fireEvent('click', this, e);
40860     },
40861     
40862     enter: function(e, el)
40863     {
40864         e.preventDefault();
40865         
40866         if(!this.isFitContainer || this.maskInverse || this.videourl.length){
40867             return;
40868         }
40869         
40870         if(this.bgimage.length && this.html.length){
40871             this.el.select('.masonry-brick-paragraph', true).first().setOpacity(0.9, true);
40872         }
40873     },
40874     
40875     leave: function(e, el)
40876     {
40877         e.preventDefault();
40878         
40879         if(!this.isFitContainer || this.maskInverse  || this.videourl.length){
40880             return;
40881         }
40882         
40883         if(this.bgimage.length && this.html.length){
40884             this.el.select('.masonry-brick-paragraph', true).first().setOpacity(0, true);
40885         }
40886     },
40887     
40888     onTouchStart: function(e, el)
40889     {
40890 //        e.preventDefault();
40891         
40892         this.touchmoved = false;
40893         
40894         if(!this.isFitContainer){
40895             return;
40896         }
40897         
40898         if(!this.bgimage.length || !this.html.length){
40899             return;
40900         }
40901         
40902         this.el.select('.masonry-brick-paragraph', true).first().setOpacity(0.9, true);
40903         
40904         this.timer = new Date().getTime();
40905         
40906     },
40907     
40908     onTouchMove: function(e, el)
40909     {
40910         this.touchmoved = true;
40911     },
40912     
40913     onContextMenu : function(e,el)
40914     {
40915         e.preventDefault();
40916         e.stopPropagation();
40917         return false;
40918     },
40919     
40920     onTouchEnd: function(e, el)
40921     {
40922 //        e.preventDefault();
40923         
40924         if((new Date().getTime() - this.timer > 1000) || !this.href.length || this.touchmoved){
40925         
40926             this.leave(e,el);
40927             
40928             return;
40929         }
40930         
40931         if(!this.bgimage.length || !this.html.length){
40932             
40933             if(this.href.length){
40934                 window.location.href = this.href;
40935             }
40936             
40937             return;
40938         }
40939         
40940         if(!this.isFitContainer){
40941             return;
40942         }
40943         
40944         this.el.select('.masonry-brick-paragraph', true).first().setOpacity(0, true);
40945         
40946         window.location.href = this.href;
40947     },
40948     
40949     //selection on single brick only
40950     selectBrick : function() {
40951         
40952         if (!this.parentId) {
40953             return;
40954         }
40955         
40956         var m = Roo.bootstrap.LayoutMasonry.get(this.parentId);
40957         var index = m.selectedBrick.indexOf(this.id);
40958         
40959         if ( index > -1) {
40960             m.selectedBrick.splice(index,1);
40961             this.el.removeClass(this.activeClass);
40962             return;
40963         }
40964         
40965         for(var i = 0; i < m.selectedBrick.length; i++) {
40966             var b = Roo.bootstrap.MasonryBrick.get(m.selectedBrick[i]);
40967             b.el.removeClass(b.activeClass);
40968         }
40969         
40970         m.selectedBrick = [];
40971         
40972         m.selectedBrick.push(this.id);
40973         this.el.addClass(this.activeClass);
40974         return;
40975     },
40976     
40977     isSelected : function(){
40978         return this.el.hasClass(this.activeClass);
40979         
40980     }
40981 });
40982
40983 Roo.apply(Roo.bootstrap.MasonryBrick, {
40984     
40985     //groups: {},
40986     groups : new Roo.util.MixedCollection(false, function(o) { return o.el.id; }),
40987      /**
40988     * register a Masonry Brick
40989     * @param {Roo.bootstrap.MasonryBrick} the masonry brick to add
40990     */
40991     
40992     register : function(brick)
40993     {
40994         //this.groups[brick.id] = brick;
40995         this.groups.add(brick.id, brick);
40996     },
40997     /**
40998     * fetch a  masonry brick based on the masonry brick ID
40999     * @param {string} the masonry brick to add
41000     * @returns {Roo.bootstrap.MasonryBrick} the masonry brick
41001     */
41002     
41003     get: function(brick_id) 
41004     {
41005         // if (typeof(this.groups[brick_id]) == 'undefined') {
41006         //     return false;
41007         // }
41008         // return this.groups[brick_id] ;
41009         
41010         if(this.groups.key(brick_id)) {
41011             return this.groups.key(brick_id);
41012         }
41013         
41014         return false;
41015     }
41016     
41017     
41018     
41019 });
41020
41021  /*
41022  * - LGPL
41023  *
41024  * element
41025  * 
41026  */
41027
41028 /**
41029  * @class Roo.bootstrap.Brick
41030  * @extends Roo.bootstrap.Component
41031  * Bootstrap Brick class
41032  * 
41033  * @constructor
41034  * Create a new Brick
41035  * @param {Object} config The config object
41036  */
41037
41038 Roo.bootstrap.Brick = function(config){
41039     Roo.bootstrap.Brick.superclass.constructor.call(this, config);
41040     
41041     this.addEvents({
41042         // raw events
41043         /**
41044          * @event click
41045          * When a Brick is click
41046          * @param {Roo.bootstrap.Brick} this
41047          * @param {Roo.EventObject} e
41048          */
41049         "click" : true
41050     });
41051 };
41052
41053 Roo.extend(Roo.bootstrap.Brick, Roo.bootstrap.Component,  {
41054     
41055     /**
41056      * @cfg {String} title
41057      */   
41058     title : '',
41059     /**
41060      * @cfg {String} html
41061      */   
41062     html : '',
41063     /**
41064      * @cfg {String} bgimage
41065      */   
41066     bgimage : '',
41067     /**
41068      * @cfg {String} cls
41069      */   
41070     cls : '',
41071     /**
41072      * @cfg {String} href
41073      */   
41074     href : '',
41075     /**
41076      * @cfg {String} video
41077      */   
41078     video : '',
41079     /**
41080      * @cfg {Boolean} square
41081      */   
41082     square : true,
41083     
41084     getAutoCreate : function()
41085     {
41086         var cls = 'roo-brick';
41087         
41088         if(this.href.length){
41089             cls += ' roo-brick-link';
41090         }
41091         
41092         if(this.bgimage.length){
41093             cls += ' roo-brick-image';
41094         }
41095         
41096         if(!this.html.length && !this.bgimage.length){
41097             cls += ' roo-brick-center-title';
41098         }
41099         
41100         if(!this.html.length && this.bgimage.length){
41101             cls += ' roo-brick-bottom-title';
41102         }
41103         
41104         if(this.cls){
41105             cls += ' ' + this.cls;
41106         }
41107         
41108         var cfg = {
41109             tag: (this.href.length) ? 'a' : 'div',
41110             cls: cls,
41111             cn: [
41112                 {
41113                     tag: 'div',
41114                     cls: 'roo-brick-paragraph',
41115                     cn: []
41116                 }
41117             ]
41118         };
41119         
41120         if(this.href.length){
41121             cfg.href = this.href;
41122         }
41123         
41124         var cn = cfg.cn[0].cn;
41125         
41126         if(this.title.length){
41127             cn.push({
41128                 tag: 'h4',
41129                 cls: 'roo-brick-title',
41130                 html: this.title
41131             });
41132         }
41133         
41134         if(this.html.length){
41135             cn.push({
41136                 tag: 'p',
41137                 cls: 'roo-brick-text',
41138                 html: this.html
41139             });
41140         } else {
41141             cn.cls += ' hide';
41142         }
41143         
41144         if(this.bgimage.length){
41145             cfg.cn.push({
41146                 tag: 'img',
41147                 cls: 'roo-brick-image-view',
41148                 src: this.bgimage
41149             });
41150         }
41151         
41152         return cfg;
41153     },
41154     
41155     initEvents: function() 
41156     {
41157         if(this.title.length || this.html.length){
41158             this.el.on('mouseenter'  ,this.enter, this);
41159             this.el.on('mouseleave', this.leave, this);
41160         }
41161         
41162         Roo.EventManager.onWindowResize(this.resize, this); 
41163         
41164         if(this.bgimage.length){
41165             this.imageEl = this.el.select('.roo-brick-image-view', true).first();
41166             this.imageEl.on('load', this.onImageLoad, this);
41167             return;
41168         }
41169         
41170         this.resize();
41171     },
41172     
41173     onImageLoad : function()
41174     {
41175         this.resize();
41176     },
41177     
41178     resize : function()
41179     {
41180         var paragraph = this.el.select('.roo-brick-paragraph', true).first();
41181         
41182         paragraph.setHeight(paragraph.getWidth() + paragraph.getPadding('tb'));
41183         
41184         if(this.bgimage.length){
41185             var image = this.el.select('.roo-brick-image-view', true).first();
41186             
41187             image.setWidth(paragraph.getWidth());
41188             
41189             if(this.square){
41190                 image.setHeight(paragraph.getWidth());
41191             }
41192             
41193             this.el.setHeight(image.getHeight());
41194             paragraph.setHeight(image.getHeight());
41195             
41196         }
41197         
41198     },
41199     
41200     enter: function(e, el)
41201     {
41202         e.preventDefault();
41203         
41204         if(this.bgimage.length){
41205             this.el.select('.roo-brick-paragraph', true).first().setOpacity(0.9, true);
41206             this.el.select('.roo-brick-image-view', true).first().setOpacity(0.1, true);
41207         }
41208     },
41209     
41210     leave: function(e, el)
41211     {
41212         e.preventDefault();
41213         
41214         if(this.bgimage.length){
41215             this.el.select('.roo-brick-paragraph', true).first().setOpacity(0, true);
41216             this.el.select('.roo-brick-image-view', true).first().setOpacity(1, true);
41217         }
41218     }
41219     
41220 });
41221
41222  
41223
41224  /*
41225  * - LGPL
41226  *
41227  * Number field 
41228  */
41229
41230 /**
41231  * @class Roo.bootstrap.form.NumberField
41232  * @extends Roo.bootstrap.form.Input
41233  * Bootstrap NumberField class
41234  * 
41235  * 
41236  * 
41237  * 
41238  * @constructor
41239  * Create a new NumberField
41240  * @param {Object} config The config object
41241  */
41242
41243 Roo.bootstrap.form.NumberField = function(config){
41244     Roo.bootstrap.form.NumberField.superclass.constructor.call(this, config);
41245 };
41246
41247 Roo.extend(Roo.bootstrap.form.NumberField, Roo.bootstrap.form.Input, {
41248     
41249     /**
41250      * @cfg {Boolean} allowDecimals False to disallow decimal values (defaults to true)
41251      */
41252     allowDecimals : true,
41253     /**
41254      * @cfg {String} decimalSeparator Character(s) to allow as the decimal separator (defaults to '.')
41255      */
41256     decimalSeparator : ".",
41257     /**
41258      * @cfg {Number} decimalPrecision The maximum precision to display after the decimal separator (defaults to 2)
41259      */
41260     decimalPrecision : 2,
41261     /**
41262      * @cfg {Boolean} allowNegative False to prevent entering a negative sign (defaults to true)
41263      */
41264     allowNegative : true,
41265     
41266     /**
41267      * @cfg {Boolean} allowZero False to blank out if the user enters '0' (defaults to true)
41268      */
41269     allowZero: true,
41270     /**
41271      * @cfg {Number} minValue The minimum allowed value (defaults to Number.NEGATIVE_INFINITY)
41272      */
41273     minValue : Number.NEGATIVE_INFINITY,
41274     /**
41275      * @cfg {Number} maxValue The maximum allowed value (defaults to Number.MAX_VALUE)
41276      */
41277     maxValue : Number.MAX_VALUE,
41278     /**
41279      * @cfg {String} minText Error text to display if the minimum value validation fails (defaults to "The minimum value for this field is {minValue}")
41280      */
41281     minText : "The minimum value for this field is {0}",
41282     /**
41283      * @cfg {String} maxText Error text to display if the maximum value validation fails (defaults to "The maximum value for this field is {maxValue}")
41284      */
41285     maxText : "The maximum value for this field is {0}",
41286     /**
41287      * @cfg {String} nanText Error text to display if the value is not a valid number.  For example, this can happen
41288      * if a valid character like '.' or '-' is left in the field with no number (defaults to "{value} is not a valid number")
41289      */
41290     nanText : "{0} is not a valid number",
41291     /**
41292      * @cfg {String} thousandsDelimiter Symbol of thousandsDelimiter
41293      */
41294     thousandsDelimiter : false,
41295     /**
41296      * @cfg {String} valueAlign alignment of value
41297      */
41298     valueAlign : "left",
41299
41300     getAutoCreate : function()
41301     {
41302         var hiddenInput = {
41303             tag: 'input',
41304             type: 'hidden',
41305             id: Roo.id(),
41306             cls: 'hidden-number-input'
41307         };
41308         
41309         if (this.name) {
41310             hiddenInput.name = this.name;
41311         }
41312         
41313         this.name = '';
41314         
41315         var cfg = Roo.bootstrap.form.NumberField.superclass.getAutoCreate.call(this);
41316         
41317         this.name = hiddenInput.name;
41318         
41319         if(cfg.cn.length > 0) {
41320             cfg.cn.push(hiddenInput);
41321         }
41322         
41323         return cfg;
41324     },
41325
41326     // private
41327     initEvents : function()
41328     {   
41329         Roo.bootstrap.form.NumberField.superclass.initEvents.call(this);
41330         
41331         var allowed = "0123456789";
41332         
41333         if(this.allowDecimals){
41334             allowed += this.decimalSeparator;
41335         }
41336         
41337         if(this.allowNegative){
41338             allowed += "-";
41339         }
41340         
41341         if(this.thousandsDelimiter) {
41342             allowed += ",";
41343         }
41344         
41345         this.stripCharsRe = new RegExp('[^'+allowed+']', 'gi');
41346         
41347         var keyPress = function(e){
41348             
41349             var k = e.getKey();
41350             
41351             var c = e.getCharCode();
41352             
41353             if(
41354                     (String.fromCharCode(c) == '.' || String.fromCharCode(c) == '-') &&
41355                     allowed.indexOf(String.fromCharCode(c)) === -1
41356             ){
41357                 e.stopEvent();
41358                 return;
41359             }
41360             
41361             if(!Roo.isIE && (e.isSpecialKey() || k == e.BACKSPACE || k == e.DELETE)){
41362                 return;
41363             }
41364             
41365             if(allowed.indexOf(String.fromCharCode(c)) === -1){
41366                 e.stopEvent();
41367             }
41368         };
41369         
41370         this.el.on("keypress", keyPress, this);
41371     },
41372     
41373     validateValue : function(value)
41374     {
41375         
41376         if(!Roo.bootstrap.form.NumberField.superclass.validateValue.call(this, value)){
41377             return false;
41378         }
41379         
41380         var num = this.parseValue(value);
41381         
41382         if(isNaN(num)){
41383             this.markInvalid(String.format(this.nanText, value));
41384             return false;
41385         }
41386         
41387         if(num < this.minValue){
41388             this.markInvalid(String.format(this.minText, this.minValue));
41389             return false;
41390         }
41391         
41392         if(num > this.maxValue){
41393             this.markInvalid(String.format(this.maxText, this.maxValue));
41394             return false;
41395         }
41396         
41397         return true;
41398     },
41399
41400     getValue : function()
41401     {
41402         var v = this.hiddenEl().getValue();
41403         
41404         return this.fixPrecision(this.parseValue(v));
41405     },
41406
41407     parseValue : function(value)
41408     {
41409         if(this.thousandsDelimiter) {
41410             value += "";
41411             r = new RegExp(",", "g");
41412             value = value.replace(r, "");
41413         }
41414         
41415         value = parseFloat(String(value).replace(this.decimalSeparator, "."));
41416         return isNaN(value) ? '' : value;
41417     },
41418
41419     fixPrecision : function(value)
41420     {
41421         if(this.thousandsDelimiter) {
41422             value += "";
41423             r = new RegExp(",", "g");
41424             value = value.replace(r, "");
41425         }
41426         
41427         var nan = isNaN(value);
41428         
41429         if(!this.allowDecimals || this.decimalPrecision == -1 || nan || !value){
41430             return nan ? '' : value;
41431         }
41432         return parseFloat(value).toFixed(this.decimalPrecision);
41433     },
41434
41435     setValue : function(v)
41436     {
41437         v = String(this.fixPrecision(v)).replace(".", this.decimalSeparator);
41438         
41439         this.value = v;
41440         
41441         if(this.rendered){
41442             
41443             this.hiddenEl().dom.value = (v === null || v === undefined ? '' : v);
41444             
41445             this.inputEl().dom.value = (v == '') ? '' :
41446                 Roo.util.Format.number(v, this.decimalPrecision, this.thousandsDelimiter || '');
41447             
41448             if(!this.allowZero && v === '0') {
41449                 this.hiddenEl().dom.value = '';
41450                 this.inputEl().dom.value = '';
41451             }
41452             
41453             this.validate();
41454         }
41455     },
41456
41457     decimalPrecisionFcn : function(v)
41458     {
41459         return Math.floor(v);
41460     },
41461
41462     beforeBlur : function()
41463     {
41464         var v = this.parseValue(this.getRawValue());
41465         
41466         if(v || v === 0 || v === ''){
41467             this.setValue(v);
41468         }
41469     },
41470     
41471     hiddenEl : function()
41472     {
41473         return this.el.select('input.hidden-number-input',true).first();
41474     }
41475     
41476 });
41477
41478  
41479
41480 /*
41481 * Licence: LGPL
41482 */
41483
41484 /**
41485  * @class Roo.bootstrap.DocumentSlider
41486  * @extends Roo.bootstrap.Component
41487  * Bootstrap DocumentSlider class
41488  * 
41489  * @constructor
41490  * Create a new DocumentViewer
41491  * @param {Object} config The config object
41492  */
41493
41494 Roo.bootstrap.DocumentSlider = function(config){
41495     Roo.bootstrap.DocumentSlider.superclass.constructor.call(this, config);
41496     
41497     this.files = [];
41498     
41499     this.addEvents({
41500         /**
41501          * @event initial
41502          * Fire after initEvent
41503          * @param {Roo.bootstrap.DocumentSlider} this
41504          */
41505         "initial" : true,
41506         /**
41507          * @event update
41508          * Fire after update
41509          * @param {Roo.bootstrap.DocumentSlider} this
41510          */
41511         "update" : true,
41512         /**
41513          * @event click
41514          * Fire after click
41515          * @param {Roo.bootstrap.DocumentSlider} this
41516          */
41517         "click" : true
41518     });
41519 };
41520
41521 Roo.extend(Roo.bootstrap.DocumentSlider, Roo.bootstrap.Component,  {
41522     
41523     files : false,
41524     
41525     indicator : 0,
41526     
41527     getAutoCreate : function()
41528     {
41529         var cfg = {
41530             tag : 'div',
41531             cls : 'roo-document-slider',
41532             cn : [
41533                 {
41534                     tag : 'div',
41535                     cls : 'roo-document-slider-header',
41536                     cn : [
41537                         {
41538                             tag : 'div',
41539                             cls : 'roo-document-slider-header-title'
41540                         }
41541                     ]
41542                 },
41543                 {
41544                     tag : 'div',
41545                     cls : 'roo-document-slider-body',
41546                     cn : [
41547                         {
41548                             tag : 'div',
41549                             cls : 'roo-document-slider-prev',
41550                             cn : [
41551                                 {
41552                                     tag : 'i',
41553                                     cls : 'fa fa-chevron-left'
41554                                 }
41555                             ]
41556                         },
41557                         {
41558                             tag : 'div',
41559                             cls : 'roo-document-slider-thumb',
41560                             cn : [
41561                                 {
41562                                     tag : 'img',
41563                                     cls : 'roo-document-slider-image'
41564                                 }
41565                             ]
41566                         },
41567                         {
41568                             tag : 'div',
41569                             cls : 'roo-document-slider-next',
41570                             cn : [
41571                                 {
41572                                     tag : 'i',
41573                                     cls : 'fa fa-chevron-right'
41574                                 }
41575                             ]
41576                         }
41577                     ]
41578                 }
41579             ]
41580         };
41581         
41582         return cfg;
41583     },
41584     
41585     initEvents : function()
41586     {
41587         this.headerEl = this.el.select('.roo-document-slider-header', true).first();
41588         this.headerEl.setVisibilityMode(Roo.Element.DISPLAY);
41589         
41590         this.titleEl = this.el.select('.roo-document-slider-header .roo-document-slider-header-title', true).first();
41591         this.titleEl.setVisibilityMode(Roo.Element.DISPLAY);
41592         
41593         this.bodyEl = this.el.select('.roo-document-slider-body', true).first();
41594         this.bodyEl.setVisibilityMode(Roo.Element.DISPLAY);
41595         
41596         this.thumbEl = this.el.select('.roo-document-slider-thumb', true).first();
41597         this.thumbEl.setVisibilityMode(Roo.Element.DISPLAY);
41598         
41599         this.imageEl = this.el.select('.roo-document-slider-image', true).first();
41600         this.imageEl.setVisibilityMode(Roo.Element.DISPLAY);
41601         
41602         this.prevIndicator = this.el.select('.roo-document-slider-prev i', true).first();
41603         this.prevIndicator.setVisibilityMode(Roo.Element.DISPLAY);
41604         
41605         this.nextIndicator = this.el.select('.roo-document-slider-next i', true).first();
41606         this.nextIndicator.setVisibilityMode(Roo.Element.DISPLAY);
41607         
41608         this.thumbEl.on('click', this.onClick, this);
41609         
41610         this.prevIndicator.on('click', this.prev, this);
41611         
41612         this.nextIndicator.on('click', this.next, this);
41613         
41614     },
41615     
41616     initial : function()
41617     {
41618         if(this.files.length){
41619             this.indicator = 1;
41620             this.update()
41621         }
41622         
41623         this.fireEvent('initial', this);
41624     },
41625     
41626     update : function()
41627     {
41628         this.imageEl.attr('src', this.files[this.indicator - 1]);
41629         
41630         this.titleEl.dom.innerHTML = String.format('{0} / {1}', this.indicator, this.files.length);
41631         
41632         this.prevIndicator.show();
41633         
41634         if(this.indicator == 1){
41635             this.prevIndicator.hide();
41636         }
41637         
41638         this.nextIndicator.show();
41639         
41640         if(this.indicator == this.files.length){
41641             this.nextIndicator.hide();
41642         }
41643         
41644         this.thumbEl.scrollTo('top');
41645         
41646         this.fireEvent('update', this);
41647     },
41648     
41649     onClick : function(e)
41650     {
41651         e.preventDefault();
41652         
41653         this.fireEvent('click', this);
41654     },
41655     
41656     prev : function(e)
41657     {
41658         e.preventDefault();
41659         
41660         this.indicator = Math.max(1, this.indicator - 1);
41661         
41662         this.update();
41663     },
41664     
41665     next : function(e)
41666     {
41667         e.preventDefault();
41668         
41669         this.indicator = Math.min(this.files.length, this.indicator + 1);
41670         
41671         this.update();
41672     }
41673 });
41674 /*
41675  * - LGPL
41676  *
41677  * RadioSet
41678  *
41679  *
41680  */
41681
41682 /**
41683  * @class Roo.bootstrap.form.RadioSet
41684  * @extends Roo.bootstrap.form.Input
41685  * @children Roo.bootstrap.form.Radio
41686  * Bootstrap RadioSet class
41687  * @cfg {String} indicatorpos (left|right) default left
41688  * @cfg {Boolean} inline (true|false) inline the element (default true)
41689  * @cfg {String} weight (primary|warning|info|danger|success) The text that appears beside the radio
41690  * @constructor
41691  * Create a new RadioSet
41692  * @param {Object} config The config object
41693  */
41694
41695 Roo.bootstrap.form.RadioSet = function(config){
41696     
41697     Roo.bootstrap.form.RadioSet.superclass.constructor.call(this, config);
41698     
41699     this.radioes = [];
41700     
41701     Roo.bootstrap.form.RadioSet.register(this);
41702     
41703     this.addEvents({
41704         /**
41705         * @event check
41706         * Fires when the element is checked or unchecked.
41707         * @param {Roo.bootstrap.form.RadioSet} this This radio
41708         * @param {Roo.bootstrap.form.Radio} item The checked item
41709         */
41710        check : true,
41711        /**
41712         * @event click
41713         * Fires when the element is click.
41714         * @param {Roo.bootstrap.form.RadioSet} this This radio set
41715         * @param {Roo.bootstrap.form.Radio} item The checked item
41716         * @param {Roo.EventObject} e The event object
41717         */
41718        click : true
41719     });
41720     
41721 };
41722
41723 Roo.extend(Roo.bootstrap.form.RadioSet, Roo.bootstrap.form.Input,  {
41724
41725     radioes : false,
41726     
41727     inline : true,
41728     
41729     weight : '',
41730     
41731     indicatorpos : 'left',
41732     
41733     getAutoCreate : function()
41734     {
41735         var label = {
41736             tag : 'label',
41737             cls : 'roo-radio-set-label',
41738             cn : [
41739                 {
41740                     tag : 'span',
41741                     html : this.fieldLabel
41742                 }
41743             ]
41744         };
41745         if (Roo.bootstrap.version == 3) {
41746             
41747             
41748             if(this.indicatorpos == 'left'){
41749                 label.cn.unshift({
41750                     tag : 'i',
41751                     cls : 'roo-required-indicator left-indicator text-danger fa fa-lg fa-star',
41752                     tooltip : 'This field is required'
41753                 });
41754             } else {
41755                 label.cn.push({
41756                     tag : 'i',
41757                     cls : 'roo-required-indicator right-indicator text-danger fa fa-lg fa-star',
41758                     tooltip : 'This field is required'
41759                 });
41760             }
41761         }
41762         var items = {
41763             tag : 'div',
41764             cls : 'roo-radio-set-items'
41765         };
41766         
41767         var align = (!this.labelAlign) ? this.parentLabelAlign() : this.labelAlign;
41768         
41769         if (align === 'left' && this.fieldLabel.length) {
41770             
41771             items = {
41772                 cls : "roo-radio-set-right", 
41773                 cn: [
41774                     items
41775                 ]
41776             };
41777             
41778             if(this.labelWidth > 12){
41779                 label.style = "width: " + this.labelWidth + 'px';
41780             }
41781             
41782             if(this.labelWidth < 13 && this.labelmd == 0){
41783                 this.labelmd = this.labelWidth;
41784             }
41785             
41786             if(this.labellg > 0){
41787                 label.cls += ' col-lg-' + this.labellg;
41788                 items.cls += ' col-lg-' + (12 - this.labellg);
41789             }
41790             
41791             if(this.labelmd > 0){
41792                 label.cls += ' col-md-' + this.labelmd;
41793                 items.cls += ' col-md-' + (12 - this.labelmd);
41794             }
41795             
41796             if(this.labelsm > 0){
41797                 label.cls += ' col-sm-' + this.labelsm;
41798                 items.cls += ' col-sm-' + (12 - this.labelsm);
41799             }
41800             
41801             if(this.labelxs > 0){
41802                 label.cls += ' col-xs-' + this.labelxs;
41803                 items.cls += ' col-xs-' + (12 - this.labelxs);
41804             }
41805         }
41806         
41807         var cfg = {
41808             tag : 'div',
41809             cls : 'roo-radio-set',
41810             cn : [
41811                 {
41812                     tag : 'input',
41813                     cls : 'roo-radio-set-input',
41814                     type : 'hidden',
41815                     name : this.name,
41816                     value : this.value ? this.value :  ''
41817                 },
41818                 label,
41819                 items
41820             ]
41821         };
41822         
41823         if(this.weight.length){
41824             cfg.cls += ' roo-radio-' + this.weight;
41825         }
41826         
41827         if(this.inline) {
41828             cfg.cls += ' roo-radio-set-inline';
41829         }
41830         
41831         var settings=this;
41832         ['xs','sm','md','lg'].map(function(size){
41833             if (settings[size]) {
41834                 cfg.cls += ' col-' + size + '-' + settings[size];
41835             }
41836         });
41837         
41838         return cfg;
41839         
41840     },
41841
41842     initEvents : function()
41843     {
41844         this.labelEl = this.el.select('.roo-radio-set-label', true).first();
41845         this.labelEl.setVisibilityMode(Roo.Element.DISPLAY);
41846         
41847         if(!this.fieldLabel.length){
41848             this.labelEl.hide();
41849         }
41850         
41851         this.itemsEl = this.el.select('.roo-radio-set-items', true).first();
41852         this.itemsEl.setVisibilityMode(Roo.Element.DISPLAY);
41853         
41854         this.indicator = this.indicatorEl();
41855         
41856         if(this.indicator){
41857             this.indicator.addClass('invisible');
41858         }
41859         
41860         this.originalValue = this.getValue();
41861         
41862     },
41863     
41864     inputEl: function ()
41865     {
41866         return this.el.select('.roo-radio-set-input', true).first();
41867     },
41868     
41869     getChildContainer : function()
41870     {
41871         return this.itemsEl;
41872     },
41873     
41874     register : function(item)
41875     {
41876         this.radioes.push(item);
41877         
41878     },
41879     
41880     validate : function()
41881     {   
41882         if(this.getVisibilityEl().hasClass('hidden')){
41883             return true;
41884         }
41885         
41886         var valid = false;
41887         
41888         Roo.each(this.radioes, function(i){
41889             if(!i.checked){
41890                 return;
41891             }
41892             
41893             valid = true;
41894             return false;
41895         });
41896         
41897         if(this.allowBlank) {
41898             return true;
41899         }
41900         
41901         if(this.disabled || valid){
41902             this.markValid();
41903             return true;
41904         }
41905         
41906         this.markInvalid();
41907         return false;
41908         
41909     },
41910     
41911     markValid : function()
41912     {
41913         if(this.labelEl.isVisible(true) && this.indicatorEl()){
41914             this.indicatorEl().removeClass('visible');
41915             this.indicatorEl().addClass('invisible');
41916         }
41917         
41918         
41919         if (Roo.bootstrap.version == 3) {
41920             this.el.removeClass([this.invalidClass, this.validClass]);
41921             this.el.addClass(this.validClass);
41922         } else {
41923             this.el.removeClass(['is-invalid','is-valid']);
41924             this.el.addClass(['is-valid']);
41925         }
41926         this.fireEvent('valid', this);
41927     },
41928     
41929     markInvalid : function(msg)
41930     {
41931         if(this.allowBlank || this.disabled){
41932             return;
41933         }
41934         
41935         if(this.labelEl.isVisible(true) && this.indicatorEl()){
41936             this.indicatorEl().removeClass('invisible');
41937             this.indicatorEl().addClass('visible');
41938         }
41939         if (Roo.bootstrap.version == 3) {
41940             this.el.removeClass([this.invalidClass, this.validClass]);
41941             this.el.addClass(this.invalidClass);
41942         } else {
41943             this.el.removeClass(['is-invalid','is-valid']);
41944             this.el.addClass(['is-invalid']);
41945         }
41946         
41947         this.fireEvent('invalid', this, msg);
41948         
41949     },
41950     
41951     setValue : function(v, suppressEvent)
41952     {   
41953         if(this.value === v){
41954             return;
41955         }
41956         
41957         this.value = v;
41958         
41959         if(this.rendered){
41960             this.inputEl().dom.value = (v === null || v === undefined ? '' : v);
41961         }
41962         
41963         Roo.each(this.radioes, function(i){
41964             i.checked = false;
41965             i.el.removeClass('checked');
41966         });
41967         
41968         Roo.each(this.radioes, function(i){
41969             
41970             if(i.value === v || i.value.toString() === v.toString()){
41971                 i.checked = true;
41972                 i.el.addClass('checked');
41973                 
41974                 if(suppressEvent !== true){
41975                     this.fireEvent('check', this, i);
41976                 }
41977                 
41978                 return false;
41979             }
41980             
41981         }, this);
41982         
41983         this.validate();
41984     },
41985     
41986     clearInvalid : function(){
41987         
41988         if(!this.el || this.preventMark){
41989             return;
41990         }
41991         
41992         this.el.removeClass([this.invalidClass]);
41993         
41994         this.fireEvent('valid', this);
41995     }
41996     
41997 });
41998
41999 Roo.apply(Roo.bootstrap.form.RadioSet, {
42000     
42001     groups: {},
42002     
42003     register : function(set)
42004     {
42005         this.groups[set.name] = set;
42006     },
42007     
42008     get: function(name) 
42009     {
42010         if (typeof(this.groups[name]) == 'undefined') {
42011             return false;
42012         }
42013         
42014         return this.groups[name] ;
42015     }
42016     
42017 });
42018 /*
42019  * Based on:
42020  * Ext JS Library 1.1.1
42021  * Copyright(c) 2006-2007, Ext JS, LLC.
42022  *
42023  * Originally Released Under LGPL - original licence link has changed is not relivant.
42024  *
42025  * Fork - LGPL
42026  * <script type="text/javascript">
42027  */
42028
42029
42030 /**
42031  * @class Roo.bootstrap.SplitBar
42032  * @extends Roo.util.Observable
42033  * Creates draggable splitter bar functionality from two elements (element to be dragged and element to be resized).
42034  * <br><br>
42035  * Usage:
42036  * <pre><code>
42037 var split = new Roo.bootstrap.SplitBar("elementToDrag", "elementToSize",
42038                    Roo.bootstrap.SplitBar.HORIZONTAL, Roo.bootstrap.SplitBar.LEFT);
42039 split.setAdapter(new Roo.bootstrap.SplitBar.AbsoluteLayoutAdapter("container"));
42040 split.minSize = 100;
42041 split.maxSize = 600;
42042 split.animate = true;
42043 split.on('moved', splitterMoved);
42044 </code></pre>
42045  * @constructor
42046  * Create a new SplitBar
42047  * @config {String/HTMLElement/Roo.Element} dragElement The element to be dragged and act as the SplitBar. 
42048  * @config {String/HTMLElement/Roo.Element} resizingElement The element to be resized based on where the SplitBar element is dragged 
42049  * @config {Number} orientation (optional) Either Roo.bootstrap.SplitBar.HORIZONTAL or Roo.bootstrap.SplitBar.VERTICAL. (Defaults to HORIZONTAL)
42050  * @config {Number} placement (optional) Either Roo.bootstrap.SplitBar.LEFT or Roo.bootstrap.SplitBar.RIGHT for horizontal or  
42051                         Roo.bootstrap.SplitBar.TOP or Roo.bootstrap.SplitBar.BOTTOM for vertical. (By default, this is determined automatically by the initial
42052                         position of the SplitBar).
42053  */
42054 Roo.bootstrap.SplitBar = function(cfg){
42055     
42056     /** @private */
42057     
42058     //{
42059     //  dragElement : elm
42060     //  resizingElement: el,
42061         // optional..
42062     //    orientation : Either Roo.bootstrap.SplitBar.HORIZONTAL
42063     //    placement : Roo.bootstrap.SplitBar.LEFT  ,
42064         // existingProxy ???
42065     //}
42066     
42067     this.el = Roo.get(cfg.dragElement, true);
42068     this.el.dom.unselectable = "on";
42069     /** @private */
42070     this.resizingEl = Roo.get(cfg.resizingElement, true);
42071
42072     /**
42073      * @private
42074      * The orientation of the split. Either Roo.bootstrap.SplitBar.HORIZONTAL or Roo.bootstrap.SplitBar.VERTICAL. (Defaults to HORIZONTAL)
42075      * Note: If this is changed after creating the SplitBar, the placement property must be manually updated
42076      * @type Number
42077      */
42078     this.orientation = cfg.orientation || Roo.bootstrap.SplitBar.HORIZONTAL;
42079     
42080     /**
42081      * The minimum size of the resizing element. (Defaults to 0)
42082      * @type Number
42083      */
42084     this.minSize = 0;
42085     
42086     /**
42087      * The maximum size of the resizing element. (Defaults to 2000)
42088      * @type Number
42089      */
42090     this.maxSize = 2000;
42091     
42092     /**
42093      * Whether to animate the transition to the new size
42094      * @type Boolean
42095      */
42096     this.animate = false;
42097     
42098     /**
42099      * Whether to create a transparent shim that overlays the page when dragging, enables dragging across iframes.
42100      * @type Boolean
42101      */
42102     this.useShim = false;
42103     
42104     /** @private */
42105     this.shim = null;
42106     
42107     if(!cfg.existingProxy){
42108         /** @private */
42109         this.proxy = Roo.bootstrap.SplitBar.createProxy(this.orientation);
42110     }else{
42111         this.proxy = Roo.get(cfg.existingProxy).dom;
42112     }
42113     /** @private */
42114     this.dd = new Roo.dd.DDProxy(this.el.dom.id, "XSplitBars", {dragElId : this.proxy.id});
42115     
42116     /** @private */
42117     this.dd.b4StartDrag = this.onStartProxyDrag.createDelegate(this);
42118     
42119     /** @private */
42120     this.dd.endDrag = this.onEndProxyDrag.createDelegate(this);
42121     
42122     /** @private */
42123     this.dragSpecs = {};
42124     
42125     /**
42126      * @private The adapter to use to positon and resize elements
42127      */
42128     this.adapter = new Roo.bootstrap.SplitBar.BasicLayoutAdapter();
42129     this.adapter.init(this);
42130     
42131     if(this.orientation == Roo.bootstrap.SplitBar.HORIZONTAL){
42132         /** @private */
42133         this.placement = cfg.placement || (this.el.getX() > this.resizingEl.getX() ? Roo.bootstrap.SplitBar.LEFT : Roo.bootstrap.SplitBar.RIGHT);
42134         this.el.addClass("roo-splitbar-h");
42135     }else{
42136         /** @private */
42137         this.placement = cfg.placement || (this.el.getY() > this.resizingEl.getY() ? Roo.bootstrap.SplitBar.TOP : Roo.bootstrap.SplitBar.BOTTOM);
42138         this.el.addClass("roo-splitbar-v");
42139     }
42140     
42141     this.addEvents({
42142         /**
42143          * @event resize
42144          * Fires when the splitter is moved (alias for {@link #event-moved})
42145          * @param {Roo.bootstrap.SplitBar} this
42146          * @param {Number} newSize the new width or height
42147          */
42148         "resize" : true,
42149         /**
42150          * @event moved
42151          * Fires when the splitter is moved
42152          * @param {Roo.bootstrap.SplitBar} this
42153          * @param {Number} newSize the new width or height
42154          */
42155         "moved" : true,
42156         /**
42157          * @event beforeresize
42158          * Fires before the splitter is dragged
42159          * @param {Roo.bootstrap.SplitBar} this
42160          */
42161         "beforeresize" : true,
42162
42163         "beforeapply" : true
42164     });
42165
42166     Roo.util.Observable.call(this);
42167 };
42168
42169 Roo.extend(Roo.bootstrap.SplitBar, Roo.util.Observable, {
42170     onStartProxyDrag : function(x, y){
42171         this.fireEvent("beforeresize", this);
42172         if(!this.overlay){
42173             var o = Roo.DomHelper.insertFirst(document.body,  {cls: "roo-drag-overlay", html: "&#160;"}, true);
42174             o.unselectable();
42175             o.enableDisplayMode("block");
42176             // all splitbars share the same overlay
42177             Roo.bootstrap.SplitBar.prototype.overlay = o;
42178         }
42179         this.overlay.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
42180         this.overlay.show();
42181         Roo.get(this.proxy).setDisplayed("block");
42182         var size = this.adapter.getElementSize(this);
42183         this.activeMinSize = this.getMinimumSize();;
42184         this.activeMaxSize = this.getMaximumSize();;
42185         var c1 = size - this.activeMinSize;
42186         var c2 = Math.max(this.activeMaxSize - size, 0);
42187         if(this.orientation == Roo.bootstrap.SplitBar.HORIZONTAL){
42188             this.dd.resetConstraints();
42189             this.dd.setXConstraint(
42190                 this.placement == Roo.bootstrap.SplitBar.LEFT ? c1 : c2, 
42191                 this.placement == Roo.bootstrap.SplitBar.LEFT ? c2 : c1
42192             );
42193             this.dd.setYConstraint(0, 0);
42194         }else{
42195             this.dd.resetConstraints();
42196             this.dd.setXConstraint(0, 0);
42197             this.dd.setYConstraint(
42198                 this.placement == Roo.bootstrap.SplitBar.TOP ? c1 : c2, 
42199                 this.placement == Roo.bootstrap.SplitBar.TOP ? c2 : c1
42200             );
42201          }
42202         this.dragSpecs.startSize = size;
42203         this.dragSpecs.startPoint = [x, y];
42204         Roo.dd.DDProxy.prototype.b4StartDrag.call(this.dd, x, y);
42205     },
42206     
42207     /** 
42208      * @private Called after the drag operation by the DDProxy
42209      */
42210     onEndProxyDrag : function(e){
42211         Roo.get(this.proxy).setDisplayed(false);
42212         var endPoint = Roo.lib.Event.getXY(e);
42213         if(this.overlay){
42214             this.overlay.hide();
42215         }
42216         var newSize;
42217         if(this.orientation == Roo.bootstrap.SplitBar.HORIZONTAL){
42218             newSize = this.dragSpecs.startSize + 
42219                 (this.placement == Roo.bootstrap.SplitBar.LEFT ?
42220                     endPoint[0] - this.dragSpecs.startPoint[0] :
42221                     this.dragSpecs.startPoint[0] - endPoint[0]
42222                 );
42223         }else{
42224             newSize = this.dragSpecs.startSize + 
42225                 (this.placement == Roo.bootstrap.SplitBar.TOP ?
42226                     endPoint[1] - this.dragSpecs.startPoint[1] :
42227                     this.dragSpecs.startPoint[1] - endPoint[1]
42228                 );
42229         }
42230         newSize = Math.min(Math.max(newSize, this.activeMinSize), this.activeMaxSize);
42231         if(newSize != this.dragSpecs.startSize){
42232             if(this.fireEvent('beforeapply', this, newSize) !== false){
42233                 this.adapter.setElementSize(this, newSize);
42234                 this.fireEvent("moved", this, newSize);
42235                 this.fireEvent("resize", this, newSize);
42236             }
42237         }
42238     },
42239     
42240     /**
42241      * Get the adapter this SplitBar uses
42242      * @return The adapter object
42243      */
42244     getAdapter : function(){
42245         return this.adapter;
42246     },
42247     
42248     /**
42249      * Set the adapter this SplitBar uses
42250      * @param {Object} adapter A SplitBar adapter object
42251      */
42252     setAdapter : function(adapter){
42253         this.adapter = adapter;
42254         this.adapter.init(this);
42255     },
42256     
42257     /**
42258      * Gets the minimum size for the resizing element
42259      * @return {Number} The minimum size
42260      */
42261     getMinimumSize : function(){
42262         return this.minSize;
42263     },
42264     
42265     /**
42266      * Sets the minimum size for the resizing element
42267      * @param {Number} minSize The minimum size
42268      */
42269     setMinimumSize : function(minSize){
42270         this.minSize = minSize;
42271     },
42272     
42273     /**
42274      * Gets the maximum size for the resizing element
42275      * @return {Number} The maximum size
42276      */
42277     getMaximumSize : function(){
42278         return this.maxSize;
42279     },
42280     
42281     /**
42282      * Sets the maximum size for the resizing element
42283      * @param {Number} maxSize The maximum size
42284      */
42285     setMaximumSize : function(maxSize){
42286         this.maxSize = maxSize;
42287     },
42288     
42289     /**
42290      * Sets the initialize size for the resizing element
42291      * @param {Number} size The initial size
42292      */
42293     setCurrentSize : function(size){
42294         var oldAnimate = this.animate;
42295         this.animate = false;
42296         this.adapter.setElementSize(this, size);
42297         this.animate = oldAnimate;
42298     },
42299     
42300     /**
42301      * Destroy this splitbar. 
42302      * @param {Boolean} removeEl True to remove the element
42303      */
42304     destroy : function(removeEl){
42305         if(this.shim){
42306             this.shim.remove();
42307         }
42308         this.dd.unreg();
42309         this.proxy.parentNode.removeChild(this.proxy);
42310         if(removeEl){
42311             this.el.remove();
42312         }
42313     }
42314 });
42315
42316 /**
42317  * @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.
42318  */
42319 Roo.bootstrap.SplitBar.createProxy = function(dir){
42320     var proxy = new Roo.Element(document.createElement("div"));
42321     proxy.unselectable();
42322     var cls = 'roo-splitbar-proxy';
42323     proxy.addClass(cls + ' ' + (dir == Roo.bootstrap.SplitBar.HORIZONTAL ? cls +'-h' : cls + '-v'));
42324     document.body.appendChild(proxy.dom);
42325     return proxy.dom;
42326 };
42327
42328 /** 
42329  * @class Roo.bootstrap.SplitBar.BasicLayoutAdapter
42330  * Default Adapter. It assumes the splitter and resizing element are not positioned
42331  * elements and only gets/sets the width of the element. Generally used for table based layouts.
42332  */
42333 Roo.bootstrap.SplitBar.BasicLayoutAdapter = function(){
42334 };
42335
42336 Roo.bootstrap.SplitBar.BasicLayoutAdapter.prototype = {
42337     // do nothing for now
42338     init : function(s){
42339     
42340     },
42341     /**
42342      * Called before drag operations to get the current size of the resizing element. 
42343      * @param {Roo.bootstrap.SplitBar} s The SplitBar using this adapter
42344      */
42345      getElementSize : function(s){
42346         if(s.orientation == Roo.bootstrap.SplitBar.HORIZONTAL){
42347             return s.resizingEl.getWidth();
42348         }else{
42349             return s.resizingEl.getHeight();
42350         }
42351     },
42352     
42353     /**
42354      * Called after drag operations to set the size of the resizing element.
42355      * @param {Roo.bootstrap.SplitBar} s The SplitBar using this adapter
42356      * @param {Number} newSize The new size to set
42357      * @param {Function} onComplete A function to be invoked when resizing is complete
42358      */
42359     setElementSize : function(s, newSize, onComplete){
42360         if(s.orientation == Roo.bootstrap.SplitBar.HORIZONTAL){
42361             if(!s.animate){
42362                 s.resizingEl.setWidth(newSize);
42363                 if(onComplete){
42364                     onComplete(s, newSize);
42365                 }
42366             }else{
42367                 s.resizingEl.setWidth(newSize, true, .1, onComplete, 'easeOut');
42368             }
42369         }else{
42370             
42371             if(!s.animate){
42372                 s.resizingEl.setHeight(newSize);
42373                 if(onComplete){
42374                     onComplete(s, newSize);
42375                 }
42376             }else{
42377                 s.resizingEl.setHeight(newSize, true, .1, onComplete, 'easeOut');
42378             }
42379         }
42380     }
42381 };
42382
42383 /** 
42384  *@class Roo.bootstrap.SplitBar.AbsoluteLayoutAdapter
42385  * @extends Roo.bootstrap.SplitBar.BasicLayoutAdapter
42386  * Adapter that  moves the splitter element to align with the resized sizing element. 
42387  * Used with an absolute positioned SplitBar.
42388  * @param {String/HTMLElement/Roo.Element} container The container that wraps around the absolute positioned content. If it's
42389  * document.body, make sure you assign an id to the body element.
42390  */
42391 Roo.bootstrap.SplitBar.AbsoluteLayoutAdapter = function(container){
42392     this.basic = new Roo.bootstrap.SplitBar.BasicLayoutAdapter();
42393     this.container = Roo.get(container);
42394 };
42395
42396 Roo.bootstrap.SplitBar.AbsoluteLayoutAdapter.prototype = {
42397     init : function(s){
42398         this.basic.init(s);
42399     },
42400     
42401     getElementSize : function(s){
42402         return this.basic.getElementSize(s);
42403     },
42404     
42405     setElementSize : function(s, newSize, onComplete){
42406         this.basic.setElementSize(s, newSize, this.moveSplitter.createDelegate(this, [s]));
42407     },
42408     
42409     moveSplitter : function(s){
42410         var yes = Roo.bootstrap.SplitBar;
42411         switch(s.placement){
42412             case yes.LEFT:
42413                 s.el.setX(s.resizingEl.getRight());
42414                 break;
42415             case yes.RIGHT:
42416                 s.el.setStyle("right", (this.container.getWidth() - s.resizingEl.getLeft()) + "px");
42417                 break;
42418             case yes.TOP:
42419                 s.el.setY(s.resizingEl.getBottom());
42420                 break;
42421             case yes.BOTTOM:
42422                 s.el.setY(s.resizingEl.getTop() - s.el.getHeight());
42423                 break;
42424         }
42425     }
42426 };
42427
42428 /**
42429  * Orientation constant - Create a vertical SplitBar
42430  * @static
42431  * @type Number
42432  */
42433 Roo.bootstrap.SplitBar.VERTICAL = 1;
42434
42435 /**
42436  * Orientation constant - Create a horizontal SplitBar
42437  * @static
42438  * @type Number
42439  */
42440 Roo.bootstrap.SplitBar.HORIZONTAL = 2;
42441
42442 /**
42443  * Placement constant - The resizing element is to the left of the splitter element
42444  * @static
42445  * @type Number
42446  */
42447 Roo.bootstrap.SplitBar.LEFT = 1;
42448
42449 /**
42450  * Placement constant - The resizing element is to the right of the splitter element
42451  * @static
42452  * @type Number
42453  */
42454 Roo.bootstrap.SplitBar.RIGHT = 2;
42455
42456 /**
42457  * Placement constant - The resizing element is positioned above the splitter element
42458  * @static
42459  * @type Number
42460  */
42461 Roo.bootstrap.SplitBar.TOP = 3;
42462
42463 /**
42464  * Placement constant - The resizing element is positioned under splitter element
42465  * @static
42466  * @type Number
42467  */
42468 Roo.bootstrap.SplitBar.BOTTOM = 4;
42469 /*
42470  * Based on:
42471  * Ext JS Library 1.1.1
42472  * Copyright(c) 2006-2007, Ext JS, LLC.
42473  *
42474  * Originally Released Under LGPL - original licence link has changed is not relivant.
42475  *
42476  * Fork - LGPL
42477  * <script type="text/javascript">
42478  */
42479
42480 /**
42481  * @class Roo.bootstrap.layout.Manager
42482  * @extends Roo.bootstrap.Component
42483  * @abstract
42484  * Base class for layout managers.
42485  */
42486 Roo.bootstrap.layout.Manager = function(config)
42487 {
42488     this.monitorWindowResize = true; // do this before we apply configuration.
42489     
42490     Roo.bootstrap.layout.Manager.superclass.constructor.call(this,config);
42491
42492
42493
42494
42495
42496     /** false to disable window resize monitoring @type Boolean */
42497     
42498     this.regions = {};
42499     this.addEvents({
42500         /**
42501          * @event layout
42502          * Fires when a layout is performed.
42503          * @param {Roo.LayoutManager} this
42504          */
42505         "layout" : true,
42506         /**
42507          * @event regionresized
42508          * Fires when the user resizes a region.
42509          * @param {Roo.LayoutRegion} region The resized region
42510          * @param {Number} newSize The new size (width for east/west, height for north/south)
42511          */
42512         "regionresized" : true,
42513         /**
42514          * @event regioncollapsed
42515          * Fires when a region is collapsed.
42516          * @param {Roo.LayoutRegion} region The collapsed region
42517          */
42518         "regioncollapsed" : true,
42519         /**
42520          * @event regionexpanded
42521          * Fires when a region is expanded.
42522          * @param {Roo.LayoutRegion} region The expanded region
42523          */
42524         "regionexpanded" : true
42525     });
42526     this.updating = false;
42527
42528     if (config.el) {
42529         this.el = Roo.get(config.el);
42530         this.initEvents();
42531     }
42532
42533 };
42534
42535 Roo.extend(Roo.bootstrap.layout.Manager, Roo.bootstrap.Component, {
42536
42537
42538     regions : null,
42539
42540     monitorWindowResize : true,
42541
42542
42543     updating : false,
42544
42545
42546     onRender : function(ct, position)
42547     {
42548         if(!this.el){
42549             this.el = Roo.get(ct);
42550             this.initEvents();
42551         }
42552         //this.fireEvent('render',this);
42553     },
42554
42555
42556     initEvents: function()
42557     {
42558
42559
42560         // ie scrollbar fix
42561         if(this.el.dom == document.body && Roo.isIE && !config.allowScroll){
42562             document.body.scroll = "no";
42563         }else if(this.el.dom != document.body && this.el.getStyle('position') == 'static'){
42564             this.el.position('relative');
42565         }
42566         this.id = this.el.id;
42567         this.el.addClass("roo-layout-container");
42568         Roo.EventManager.onWindowResize(this.onWindowResize, this, true);
42569         if(this.el.dom != document.body ) {
42570             this.el.on('resize', this.layout,this);
42571             this.el.on('show', this.layout,this);
42572         }
42573
42574     },
42575
42576     /**
42577      * Returns true if this layout is currently being updated
42578      * @return {Boolean}
42579      */
42580     isUpdating : function(){
42581         return this.updating;
42582     },
42583
42584     /**
42585      * Suspend the LayoutManager from doing auto-layouts while
42586      * making multiple add or remove calls
42587      */
42588     beginUpdate : function(){
42589         this.updating = true;
42590     },
42591
42592     /**
42593      * Restore auto-layouts and optionally disable the manager from performing a layout
42594      * @param {Boolean} noLayout true to disable a layout update
42595      */
42596     endUpdate : function(noLayout){
42597         this.updating = false;
42598         if(!noLayout){
42599             this.layout();
42600         }
42601     },
42602
42603     layout: function(){
42604         // abstract...
42605     },
42606
42607     onRegionResized : function(region, newSize){
42608         this.fireEvent("regionresized", region, newSize);
42609         this.layout();
42610     },
42611
42612     onRegionCollapsed : function(region){
42613         this.fireEvent("regioncollapsed", region);
42614     },
42615
42616     onRegionExpanded : function(region){
42617         this.fireEvent("regionexpanded", region);
42618     },
42619
42620     /**
42621      * Returns the size of the current view. This method normalizes document.body and element embedded layouts and
42622      * performs box-model adjustments.
42623      * @return {Object} The size as an object {width: (the width), height: (the height)}
42624      */
42625     getViewSize : function()
42626     {
42627         var size;
42628         if(this.el.dom != document.body){
42629             size = this.el.getSize();
42630         }else{
42631             size = {width: Roo.lib.Dom.getViewWidth(), height: Roo.lib.Dom.getViewHeight()};
42632         }
42633         size.width -= this.el.getBorderWidth("lr")-this.el.getPadding("lr");
42634         size.height -= this.el.getBorderWidth("tb")-this.el.getPadding("tb");
42635         return size;
42636     },
42637
42638     /**
42639      * Returns the Element this layout is bound to.
42640      * @return {Roo.Element}
42641      */
42642     getEl : function(){
42643         return this.el;
42644     },
42645
42646     /**
42647      * Returns the specified region.
42648      * @param {String} target The region key ('center', 'north', 'south', 'east' or 'west')
42649      * @return {Roo.LayoutRegion}
42650      */
42651     getRegion : function(target){
42652         return this.regions[target.toLowerCase()];
42653     },
42654
42655     onWindowResize : function(){
42656         if(this.monitorWindowResize){
42657             this.layout();
42658         }
42659     }
42660 });
42661 /*
42662  * Based on:
42663  * Ext JS Library 1.1.1
42664  * Copyright(c) 2006-2007, Ext JS, LLC.
42665  *
42666  * Originally Released Under LGPL - original licence link has changed is not relivant.
42667  *
42668  * Fork - LGPL
42669  * <script type="text/javascript">
42670  */
42671 /**
42672  * @class Roo.bootstrap.layout.Border
42673  * @extends Roo.bootstrap.layout.Manager
42674  * @children Roo.bootstrap.panel.Content Roo.bootstrap.panel.Nest Roo.bootstrap.panel.Grid
42675  * @parent builder Roo.bootstrap.panel.Nest Roo.bootstrap.panel.Nest Roo.bootstrap.Modal
42676  * This class represents a common layout manager used in desktop applications. For screenshots and more details,
42677  * please see: examples/bootstrap/nested.html<br><br>
42678  
42679 <b>The container the layout is rendered into can be either the body element or any other element.
42680 If it is not the body element, the container needs to either be an absolute positioned element,
42681 or you will need to add "position:relative" to the css of the container.  You will also need to specify
42682 the container size if it is not the body element.</b>
42683
42684 * @constructor
42685 * Create a new Border
42686 * @param {Object} config Configuration options
42687  */
42688 Roo.bootstrap.layout.Border = function(config){
42689     config = config || {};
42690     Roo.bootstrap.layout.Border.superclass.constructor.call(this, config);
42691     
42692     
42693     
42694     Roo.each(Roo.bootstrap.layout.Border.regions, function(region) {
42695         if(config[region]){
42696             config[region].region = region;
42697             this.addRegion(config[region]);
42698         }
42699     },this);
42700     
42701 };
42702
42703 Roo.bootstrap.layout.Border.regions =  ["center", "north","south","east","west"];
42704
42705 Roo.extend(Roo.bootstrap.layout.Border, Roo.bootstrap.layout.Manager, {
42706     
42707         /**
42708          * @cfg {Roo.bootstrap.layout.Region} center region to go in center
42709          */
42710         /**
42711          * @cfg {Roo.bootstrap.layout.Region} west region to go in west
42712          */
42713         /**
42714          * @cfg {Roo.bootstrap.layout.Region} east region to go in east
42715          */
42716         /**
42717          * @cfg {Roo.bootstrap.layout.Region} south region to go in south
42718          */
42719         /**
42720          * @cfg {Roo.bootstrap.layout.Region} north region to go in north
42721          */
42722         
42723         
42724         
42725         
42726     parent : false, // this might point to a 'nest' or a ???
42727     
42728     /**
42729      * Creates and adds a new region if it doesn't already exist.
42730      * @param {String} target The target region key (north, south, east, west or center).
42731      * @param {Object} config The regions config object
42732      * @return {BorderLayoutRegion} The new region
42733      */
42734     addRegion : function(config)
42735     {
42736         if(!this.regions[config.region]){
42737             var r = this.factory(config);
42738             this.bindRegion(r);
42739         }
42740         return this.regions[config.region];
42741     },
42742
42743     // private (kinda)
42744     bindRegion : function(r){
42745         this.regions[r.config.region] = r;
42746         
42747         r.on("visibilitychange",    this.layout, this);
42748         r.on("paneladded",          this.layout, this);
42749         r.on("panelremoved",        this.layout, this);
42750         r.on("invalidated",         this.layout, this);
42751         r.on("resized",             this.onRegionResized, this);
42752         r.on("collapsed",           this.onRegionCollapsed, this);
42753         r.on("expanded",            this.onRegionExpanded, this);
42754     },
42755
42756     /**
42757      * Performs a layout update.
42758      */
42759     layout : function()
42760     {
42761         if(this.updating) {
42762             return;
42763         }
42764         
42765         // render all the rebions if they have not been done alreayd?
42766         Roo.each(Roo.bootstrap.layout.Border.regions, function(region) {
42767             if(this.regions[region] && !this.regions[region].bodyEl){
42768                 this.regions[region].onRender(this.el)
42769             }
42770         },this);
42771         
42772         var size = this.getViewSize();
42773         var w = size.width;
42774         var h = size.height;
42775         var centerW = w;
42776         var centerH = h;
42777         var centerY = 0;
42778         var centerX = 0;
42779         //var x = 0, y = 0;
42780
42781         var rs = this.regions;
42782         var north = rs["north"];
42783         var south = rs["south"]; 
42784         var west = rs["west"];
42785         var east = rs["east"];
42786         var center = rs["center"];
42787         //if(this.hideOnLayout){ // not supported anymore
42788             //c.el.setStyle("display", "none");
42789         //}
42790         if(north && north.isVisible()){
42791             var b = north.getBox();
42792             var m = north.getMargins();
42793             b.width = w - (m.left+m.right);
42794             b.x = m.left;
42795             b.y = m.top;
42796             centerY = b.height + b.y + m.bottom;
42797             centerH -= centerY;
42798             north.updateBox(this.safeBox(b));
42799         }
42800         if(south && south.isVisible()){
42801             var b = south.getBox();
42802             var m = south.getMargins();
42803             b.width = w - (m.left+m.right);
42804             b.x = m.left;
42805             var totalHeight = (b.height + m.top + m.bottom);
42806             b.y = h - totalHeight + m.top;
42807             centerH -= totalHeight;
42808             south.updateBox(this.safeBox(b));
42809         }
42810         if(west && west.isVisible()){
42811             var b = west.getBox();
42812             var m = west.getMargins();
42813             b.height = centerH - (m.top+m.bottom);
42814             b.x = m.left;
42815             b.y = centerY + m.top;
42816             var totalWidth = (b.width + m.left + m.right);
42817             centerX += totalWidth;
42818             centerW -= totalWidth;
42819             west.updateBox(this.safeBox(b));
42820         }
42821         if(east && east.isVisible()){
42822             var b = east.getBox();
42823             var m = east.getMargins();
42824             b.height = centerH - (m.top+m.bottom);
42825             var totalWidth = (b.width + m.left + m.right);
42826             b.x = w - totalWidth + m.left;
42827             b.y = centerY + m.top;
42828             centerW -= totalWidth;
42829             east.updateBox(this.safeBox(b));
42830         }
42831         if(center){
42832             var m = center.getMargins();
42833             var centerBox = {
42834                 x: centerX + m.left,
42835                 y: centerY + m.top,
42836                 width: centerW - (m.left+m.right),
42837                 height: centerH - (m.top+m.bottom)
42838             };
42839             //if(this.hideOnLayout){
42840                 //center.el.setStyle("display", "block");
42841             //}
42842             center.updateBox(this.safeBox(centerBox));
42843         }
42844         this.el.repaint();
42845         this.fireEvent("layout", this);
42846     },
42847
42848     // private
42849     safeBox : function(box){
42850         box.width = Math.max(0, box.width);
42851         box.height = Math.max(0, box.height);
42852         return box;
42853     },
42854
42855     /**
42856      * Adds a ContentPanel (or subclass) to this layout.
42857      * @param {String} target The target region key (north, south, east, west or center).
42858      * @param {Roo.ContentPanel} panel The panel to add
42859      * @return {Roo.ContentPanel} The added panel
42860      */
42861     add : function(target, panel){
42862          
42863         target = target.toLowerCase();
42864         return this.regions[target].add(panel);
42865     },
42866
42867     /**
42868      * Remove a ContentPanel (or subclass) to this layout.
42869      * @param {String} target The target region key (north, south, east, west or center).
42870      * @param {Number/String/Roo.ContentPanel} panel The index, id or panel to remove
42871      * @return {Roo.ContentPanel} The removed panel
42872      */
42873     remove : function(target, panel){
42874         target = target.toLowerCase();
42875         return this.regions[target].remove(panel);
42876     },
42877
42878     /**
42879      * Searches all regions for a panel with the specified id
42880      * @param {String} panelId
42881      * @return {Roo.ContentPanel} The panel or null if it wasn't found
42882      */
42883     findPanel : function(panelId){
42884         var rs = this.regions;
42885         for(var target in rs){
42886             if(typeof rs[target] != "function"){
42887                 var p = rs[target].getPanel(panelId);
42888                 if(p){
42889                     return p;
42890                 }
42891             }
42892         }
42893         return null;
42894     },
42895
42896     /**
42897      * Searches all regions for a panel with the specified id and activates (shows) it.
42898      * @param {String/ContentPanel} panelId The panels id or the panel itself
42899      * @return {Roo.ContentPanel} The shown panel or null
42900      */
42901     showPanel : function(panelId) {
42902       var rs = this.regions;
42903       for(var target in rs){
42904          var r = rs[target];
42905          if(typeof r != "function"){
42906             if(r.hasPanel(panelId)){
42907                return r.showPanel(panelId);
42908             }
42909          }
42910       }
42911       return null;
42912    },
42913
42914    /**
42915      * Restores this layout's state using Roo.state.Manager or the state provided by the passed provider.
42916      * @param {Roo.state.Provider} provider (optional) An alternate state provider
42917      */
42918    /*
42919     restoreState : function(provider){
42920         if(!provider){
42921             provider = Roo.state.Manager;
42922         }
42923         var sm = new Roo.LayoutStateManager();
42924         sm.init(this, provider);
42925     },
42926 */
42927  
42928  
42929     /**
42930      * Adds a xtype elements to the layout.
42931      * <pre><code>
42932
42933 layout.addxtype({
42934        xtype : 'ContentPanel',
42935        region: 'west',
42936        items: [ .... ]
42937    }
42938 );
42939
42940 layout.addxtype({
42941         xtype : 'NestedLayoutPanel',
42942         region: 'west',
42943         layout: {
42944            center: { },
42945            west: { }   
42946         },
42947         items : [ ... list of content panels or nested layout panels.. ]
42948    }
42949 );
42950 </code></pre>
42951      * @param {Object} cfg Xtype definition of item to add.
42952      */
42953     addxtype : function(cfg)
42954     {
42955         // basically accepts a pannel...
42956         // can accept a layout region..!?!?
42957         //Roo.log('Roo.BorderLayout add ' + cfg.xtype)
42958         
42959         
42960         // theory?  children can only be panels??
42961         
42962         //if (!cfg.xtype.match(/Panel$/)) {
42963         //    return false;
42964         //}
42965         var ret = false;
42966         
42967         if (typeof(cfg.region) == 'undefined') {
42968             Roo.log("Failed to add Panel, region was not set");
42969             Roo.log(cfg);
42970             return false;
42971         }
42972         var region = cfg.region;
42973         delete cfg.region;
42974         
42975           
42976         var xitems = [];
42977         if (cfg.items) {
42978             xitems = cfg.items;
42979             delete cfg.items;
42980         }
42981         var nb = false;
42982         
42983         if ( region == 'center') {
42984             Roo.log("Center: " + cfg.title);
42985         }
42986         
42987         
42988         switch(cfg.xtype) 
42989         {
42990             case 'Content':  // ContentPanel (el, cfg)
42991             case 'Scroll':  // ContentPanel (el, cfg)
42992             case 'View': 
42993                 cfg.autoCreate = cfg.autoCreate || true;
42994                 ret = new cfg.xns[cfg.xtype](cfg); // new panel!!!!!
42995                 //} else {
42996                 //    var el = this.el.createChild();
42997                 //    ret = new Roo[cfg.xtype](el, cfg); // new panel!!!!!
42998                 //}
42999                 
43000                 this.add(region, ret);
43001                 break;
43002             
43003             /*
43004             case 'TreePanel': // our new panel!
43005                 cfg.el = this.el.createChild();
43006                 ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
43007                 this.add(region, ret);
43008                 break;
43009             */
43010             
43011             case 'Nest': 
43012                 // create a new Layout (which is  a Border Layout...
43013                 
43014                 var clayout = cfg.layout;
43015                 clayout.el  = this.el.createChild();
43016                 clayout.items   = clayout.items  || [];
43017                 
43018                 delete cfg.layout;
43019                 
43020                 // replace this exitems with the clayout ones..
43021                 xitems = clayout.items;
43022                  
43023                 // force background off if it's in center...
43024                 if (region == 'center' && this.active && this.getRegion('center').panels.length < 1) {
43025                     cfg.background = false;
43026                 }
43027                 cfg.layout  = new Roo.bootstrap.layout.Border(clayout);
43028                 
43029                 
43030                 ret = new cfg.xns[cfg.xtype](cfg); // new panel!!!!!
43031                 //console.log('adding nested layout panel '  + cfg.toSource());
43032                 this.add(region, ret);
43033                 nb = {}; /// find first...
43034                 break;
43035             
43036             case 'Grid':
43037                 
43038                 // needs grid and region
43039                 
43040                 //var el = this.getRegion(region).el.createChild();
43041                 /*
43042                  *var el = this.el.createChild();
43043                 // create the grid first...
43044                 cfg.grid.container = el;
43045                 cfg.grid = new cfg.grid.xns[cfg.grid.xtype](cfg.grid);
43046                 */
43047                 
43048                 if (region == 'center' && this.active ) {
43049                     cfg.background = false;
43050                 }
43051                 
43052                 ret = new cfg.xns[cfg.xtype](cfg); // new panel!!!!!
43053                 
43054                 this.add(region, ret);
43055                 /*
43056                 if (cfg.background) {
43057                     // render grid on panel activation (if panel background)
43058                     ret.on('activate', function(gp) {
43059                         if (!gp.grid.rendered) {
43060                     //        gp.grid.render(el);
43061                         }
43062                     });
43063                 } else {
43064                   //  cfg.grid.render(el);
43065                 }
43066                 */
43067                 break;
43068            
43069            
43070             case 'Border': // it can get called on it'self... - might need to check if this is fixed?
43071                 // it was the old xcomponent building that caused this before.
43072                 // espeically if border is the top element in the tree.
43073                 ret = this;
43074                 break; 
43075                 
43076                     
43077                 
43078                 
43079                 
43080             default:
43081                 /*
43082                 if (typeof(Roo[cfg.xtype]) != 'undefined') {
43083                     
43084                     ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
43085                     this.add(region, ret);
43086                 } else {
43087                 */
43088                     Roo.log(cfg);
43089                     throw "Can not add '" + cfg.xtype + "' to Border";
43090                     return null;
43091              
43092                                 
43093              
43094         }
43095         this.beginUpdate();
43096         // add children..
43097         var region = '';
43098         var abn = {};
43099         Roo.each(xitems, function(i)  {
43100             region = nb && i.region ? i.region : false;
43101             
43102             var add = ret.addxtype(i);
43103            
43104             if (region) {
43105                 nb[region] = nb[region] == undefined ? 0 : nb[region]+1;
43106                 if (!i.background) {
43107                     abn[region] = nb[region] ;
43108                 }
43109             }
43110             
43111         });
43112         this.endUpdate();
43113
43114         // make the last non-background panel active..
43115         //if (nb) { Roo.log(abn); }
43116         if (nb) {
43117             
43118             for(var r in abn) {
43119                 region = this.getRegion(r);
43120                 if (region) {
43121                     // tried using nb[r], but it does not work..
43122                      
43123                     region.showPanel(abn[r]);
43124                    
43125                 }
43126             }
43127         }
43128         return ret;
43129         
43130     },
43131     
43132     
43133 // private
43134     factory : function(cfg)
43135     {
43136         
43137         var validRegions = Roo.bootstrap.layout.Border.regions;
43138
43139         var target = cfg.region;
43140         cfg.mgr = this;
43141         
43142         var r = Roo.bootstrap.layout;
43143         Roo.log(target);
43144         switch(target){
43145             case "north":
43146                 return new r.North(cfg);
43147             case "south":
43148                 return new r.South(cfg);
43149             case "east":
43150                 return new r.East(cfg);
43151             case "west":
43152                 return new r.West(cfg);
43153             case "center":
43154                 return new r.Center(cfg);
43155         }
43156         throw 'Layout region "'+target+'" not supported.';
43157     }
43158     
43159     
43160 });
43161  /*
43162  * Based on:
43163  * Ext JS Library 1.1.1
43164  * Copyright(c) 2006-2007, Ext JS, LLC.
43165  *
43166  * Originally Released Under LGPL - original licence link has changed is not relivant.
43167  *
43168  * Fork - LGPL
43169  * <script type="text/javascript">
43170  */
43171  
43172 /**
43173  * @class Roo.bootstrap.layout.Basic
43174  * @extends Roo.util.Observable
43175  * This class represents a lightweight region in a layout manager. This region does not move dom nodes
43176  * and does not have a titlebar, tabs or any other features. All it does is size and position 
43177  * panels. To create a BasicLayoutRegion, add lightweight:true or basic:true to your regions config.
43178  * @cfg {Roo.bootstrap.layout.Manager}   mgr The manager
43179  * @cfg {string}   region  the region that it inhabits..
43180  * @cfg {bool}   skipConfig skip config?
43181  * 
43182
43183  */
43184 Roo.bootstrap.layout.Basic = function(config){
43185     
43186     this.mgr = config.mgr;
43187     
43188     this.position = config.region;
43189     
43190     var skipConfig = config.skipConfig;
43191     
43192     this.events = {
43193         /**
43194          * @scope Roo.BasicLayoutRegion
43195          */
43196         
43197         /**
43198          * @event beforeremove
43199          * Fires before a panel is removed (or closed). To cancel the removal set "e.cancel = true" on the event argument.
43200          * @param {Roo.LayoutRegion} this
43201          * @param {Roo.ContentPanel} panel The panel
43202          * @param {Object} e The cancel event object
43203          */
43204         "beforeremove" : true,
43205         /**
43206          * @event invalidated
43207          * Fires when the layout for this region is changed.
43208          * @param {Roo.LayoutRegion} this
43209          */
43210         "invalidated" : true,
43211         /**
43212          * @event visibilitychange
43213          * Fires when this region is shown or hidden 
43214          * @param {Roo.LayoutRegion} this
43215          * @param {Boolean} visibility true or false
43216          */
43217         "visibilitychange" : true,
43218         /**
43219          * @event paneladded
43220          * Fires when a panel is added. 
43221          * @param {Roo.LayoutRegion} this
43222          * @param {Roo.ContentPanel} panel The panel
43223          */
43224         "paneladded" : true,
43225         /**
43226          * @event panelremoved
43227          * Fires when a panel is removed. 
43228          * @param {Roo.LayoutRegion} this
43229          * @param {Roo.ContentPanel} panel The panel
43230          */
43231         "panelremoved" : true,
43232         /**
43233          * @event beforecollapse
43234          * Fires when this region before collapse.
43235          * @param {Roo.LayoutRegion} this
43236          */
43237         "beforecollapse" : true,
43238         /**
43239          * @event collapsed
43240          * Fires when this region is collapsed.
43241          * @param {Roo.LayoutRegion} this
43242          */
43243         "collapsed" : true,
43244         /**
43245          * @event expanded
43246          * Fires when this region is expanded.
43247          * @param {Roo.LayoutRegion} this
43248          */
43249         "expanded" : true,
43250         /**
43251          * @event slideshow
43252          * Fires when this region is slid into view.
43253          * @param {Roo.LayoutRegion} this
43254          */
43255         "slideshow" : true,
43256         /**
43257          * @event slidehide
43258          * Fires when this region slides out of view. 
43259          * @param {Roo.LayoutRegion} this
43260          */
43261         "slidehide" : true,
43262         /**
43263          * @event panelactivated
43264          * Fires when a panel is activated. 
43265          * @param {Roo.LayoutRegion} this
43266          * @param {Roo.ContentPanel} panel The activated panel
43267          */
43268         "panelactivated" : true,
43269         /**
43270          * @event resized
43271          * Fires when the user resizes this region. 
43272          * @param {Roo.LayoutRegion} this
43273          * @param {Number} newSize The new size (width for east/west, height for north/south)
43274          */
43275         "resized" : true
43276     };
43277     /** A collection of panels in this region. @type Roo.util.MixedCollection */
43278     this.panels = new Roo.util.MixedCollection();
43279     this.panels.getKey = this.getPanelId.createDelegate(this);
43280     this.box = null;
43281     this.activePanel = null;
43282     // ensure listeners are added...
43283     
43284     if (config.listeners || config.events) {
43285         Roo.bootstrap.layout.Basic.superclass.constructor.call(this, {
43286             listeners : config.listeners || {},
43287             events : config.events || {}
43288         });
43289     }
43290     
43291     if(skipConfig !== true){
43292         this.applyConfig(config);
43293     }
43294 };
43295
43296 Roo.extend(Roo.bootstrap.layout.Basic, Roo.util.Observable,
43297 {
43298     getPanelId : function(p){
43299         return p.getId();
43300     },
43301     
43302     applyConfig : function(config){
43303         this.margins = config.margins || this.margins || {top: 0, left: 0, right:0, bottom: 0};
43304         this.config = config;
43305         
43306     },
43307     
43308     /**
43309      * Resizes the region to the specified size. For vertical regions (west, east) this adjusts 
43310      * the width, for horizontal (north, south) the height.
43311      * @param {Number} newSize The new width or height
43312      */
43313     resizeTo : function(newSize){
43314         var el = this.el ? this.el :
43315                  (this.activePanel ? this.activePanel.getEl() : null);
43316         if(el){
43317             switch(this.position){
43318                 case "east":
43319                 case "west":
43320                     el.setWidth(newSize);
43321                     this.fireEvent("resized", this, newSize);
43322                 break;
43323                 case "north":
43324                 case "south":
43325                     el.setHeight(newSize);
43326                     this.fireEvent("resized", this, newSize);
43327                 break;                
43328             }
43329         }
43330     },
43331     
43332     getBox : function(){
43333         return this.activePanel ? this.activePanel.getEl().getBox(false, true) : null;
43334     },
43335     
43336     getMargins : function(){
43337         return this.margins;
43338     },
43339     
43340     updateBox : function(box){
43341         this.box = box;
43342         var el = this.activePanel.getEl();
43343         el.dom.style.left = box.x + "px";
43344         el.dom.style.top = box.y + "px";
43345         this.activePanel.setSize(box.width, box.height);
43346     },
43347     
43348     /**
43349      * Returns the container element for this region.
43350      * @return {Roo.Element}
43351      */
43352     getEl : function(){
43353         return this.activePanel;
43354     },
43355     
43356     /**
43357      * Returns true if this region is currently visible.
43358      * @return {Boolean}
43359      */
43360     isVisible : function(){
43361         return this.activePanel ? true : false;
43362     },
43363     
43364     setActivePanel : function(panel){
43365         panel = this.getPanel(panel);
43366         if(this.activePanel && this.activePanel != panel){
43367             this.activePanel.setActiveState(false);
43368             this.activePanel.getEl().setLeftTop(-10000,-10000);
43369         }
43370         this.activePanel = panel;
43371         panel.setActiveState(true);
43372         if(this.box){
43373             panel.setSize(this.box.width, this.box.height);
43374         }
43375         this.fireEvent("panelactivated", this, panel);
43376         this.fireEvent("invalidated");
43377     },
43378     
43379     /**
43380      * Show the specified panel.
43381      * @param {Number/String/ContentPanel} panelId The panels index, id or the panel itself
43382      * @return {Roo.ContentPanel} The shown panel or null
43383      */
43384     showPanel : function(panel){
43385         panel = this.getPanel(panel);
43386         if(panel){
43387             this.setActivePanel(panel);
43388         }
43389         return panel;
43390     },
43391     
43392     /**
43393      * Get the active panel for this region.
43394      * @return {Roo.ContentPanel} The active panel or null
43395      */
43396     getActivePanel : function(){
43397         return this.activePanel;
43398     },
43399     
43400     /**
43401      * Add the passed ContentPanel(s)
43402      * @param {ContentPanel...} panel The ContentPanel(s) to add (you can pass more than one)
43403      * @return {Roo.ContentPanel} The panel added (if only one was added)
43404      */
43405     add : function(panel){
43406         if(arguments.length > 1){
43407             for(var i = 0, len = arguments.length; i < len; i++) {
43408                 this.add(arguments[i]);
43409             }
43410             return null;
43411         }
43412         if(this.hasPanel(panel)){
43413             this.showPanel(panel);
43414             return panel;
43415         }
43416         var el = panel.getEl();
43417         if(el.dom.parentNode != this.mgr.el.dom){
43418             this.mgr.el.dom.appendChild(el.dom);
43419         }
43420         if(panel.setRegion){
43421             panel.setRegion(this);
43422         }
43423         this.panels.add(panel);
43424         el.setStyle("position", "absolute");
43425         if(!panel.background){
43426             this.setActivePanel(panel);
43427             if(this.config.initialSize && this.panels.getCount()==1){
43428                 this.resizeTo(this.config.initialSize);
43429             }
43430         }
43431         this.fireEvent("paneladded", this, panel);
43432         return panel;
43433     },
43434     
43435     /**
43436      * Returns true if the panel is in this region.
43437      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
43438      * @return {Boolean}
43439      */
43440     hasPanel : function(panel){
43441         if(typeof panel == "object"){ // must be panel obj
43442             panel = panel.getId();
43443         }
43444         return this.getPanel(panel) ? true : false;
43445     },
43446     
43447     /**
43448      * Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed.
43449      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
43450      * @param {Boolean} preservePanel Overrides the config preservePanel option
43451      * @return {Roo.ContentPanel} The panel that was removed
43452      */
43453     remove : function(panel, preservePanel){
43454         panel = this.getPanel(panel);
43455         if(!panel){
43456             return null;
43457         }
43458         var e = {};
43459         this.fireEvent("beforeremove", this, panel, e);
43460         if(e.cancel === true){
43461             return null;
43462         }
43463         var panelId = panel.getId();
43464         this.panels.removeKey(panelId);
43465         return panel;
43466     },
43467     
43468     /**
43469      * Returns the panel specified or null if it's not in this region.
43470      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
43471      * @return {Roo.ContentPanel}
43472      */
43473     getPanel : function(id){
43474         if(typeof id == "object"){ // must be panel obj
43475             return id;
43476         }
43477         return this.panels.get(id);
43478     },
43479     
43480     /**
43481      * Returns this regions position (north/south/east/west/center).
43482      * @return {String} 
43483      */
43484     getPosition: function(){
43485         return this.position;    
43486     }
43487 });/*
43488  * Based on:
43489  * Ext JS Library 1.1.1
43490  * Copyright(c) 2006-2007, Ext JS, LLC.
43491  *
43492  * Originally Released Under LGPL - original licence link has changed is not relivant.
43493  *
43494  * Fork - LGPL
43495  * <script type="text/javascript">
43496  */
43497  
43498 /**
43499  * @class Roo.bootstrap.layout.Region
43500  * @extends Roo.bootstrap.layout.Basic
43501  * This class represents a region in a layout manager.
43502  
43503  * @cfg {Object}    margins         Margins for the element (defaults to {top: 0, left: 0, right:0, bottom: 0})
43504  * @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})
43505  * @cfg {String}    tabPosition     (top|bottom) "top" or "bottom" (defaults to "bottom")
43506  * @cfg {Boolean}   alwaysShowTabs  True to always display tabs even when there is only 1 panel (defaults to false)
43507  * @cfg {Boolean}   autoScroll      True to enable overflow scrolling (defaults to false)
43508  * @cfg {Boolean}   titlebar        True to display a title bar (defaults to true)
43509  * @cfg {String}    title           The title for the region (overrides panel titles)
43510  * @cfg {Boolean}   animate         True to animate expand/collapse (defaults to false)
43511  * @cfg {Boolean}   autoHide        False to disable auto hiding when the mouse leaves the "floated" region (defaults to true)
43512  * @cfg {Boolean}   preservePanels  True to preserve removed panels so they can be readded later (defaults to false)
43513  * @cfg {Boolean}   closeOnTab      True to place the close icon on the tabs instead of the region titlebar (defaults to false)
43514  * @cfg {Boolean}   hideTabs        True to hide the tab strip (defaults to false)
43515  * @cfg {Boolean}   resizeTabs      True to enable automatic tab resizing. This will resize the tabs so they are all the same size and fit within
43516  *                      the space available, similar to FireFox 1.5 tabs (defaults to false)
43517  * @cfg {Number}    minTabWidth     The minimum tab width (defaults to 40)
43518  * @cfg {Number}    preferredTabWidth The preferred tab width (defaults to 150)
43519  * @cfg {String}    overflow       (hidden|visible) if you have menus in the region, then you need to set this to visible.
43520
43521  * @cfg {Boolean}   hidden          True to start the region hidden (defaults to false)
43522  * @cfg {Boolean}   hideWhenEmpty   True to hide the region when it has no panels
43523  * @cfg {Boolean}   disableTabTips  True to disable tab tooltips
43524  * @cfg {Number}    width           For East/West panels
43525  * @cfg {Number}    height          For North/South panels
43526  * @cfg {Boolean}   split           To show the splitter
43527  * @cfg {Boolean}   toolbar         xtype configuration for a toolbar - shows on right of tabbar
43528  * 
43529  * @cfg {string}   cls             Extra CSS classes to add to region
43530  * 
43531  * @cfg {Roo.bootstrap.layout.Manager}   mgr The manager
43532  * @cfg {string}   region  the region that it inhabits..
43533  *
43534
43535  * @xxxcfg {Boolean}   collapsible     DISABLED False to disable collapsing (defaults to true)
43536  * @xxxcfg {Boolean}   collapsed       DISABLED True to set the initial display to collapsed (defaults to false)
43537
43538  * @xxxcfg {String}    collapsedTitle  DISABLED Optional string message to display in the collapsed block of a north or south region
43539  * @xxxxcfg {Boolean}   floatable       DISABLED False to disable floating (defaults to true)
43540  * @xxxxcfg {Boolean}   showPin         True to show a pin button NOT SUPPORTED YET
43541  */
43542 Roo.bootstrap.layout.Region = function(config)
43543 {
43544     this.applyConfig(config);
43545
43546     var mgr = config.mgr;
43547     var pos = config.region;
43548     config.skipConfig = true;
43549     Roo.bootstrap.layout.Region.superclass.constructor.call(this, config);
43550     
43551     if (mgr.el) {
43552         this.onRender(mgr.el);   
43553     }
43554      
43555     this.visible = true;
43556     this.collapsed = false;
43557     this.unrendered_panels = [];
43558 };
43559
43560 Roo.extend(Roo.bootstrap.layout.Region, Roo.bootstrap.layout.Basic, {
43561
43562     position: '', // set by wrapper (eg. north/south etc..)
43563     unrendered_panels : null,  // unrendered panels.
43564     
43565     tabPosition : false,
43566     
43567     mgr: false, // points to 'Border'
43568     
43569     
43570     createBody : function(){
43571         /** This region's body element 
43572         * @type Roo.Element */
43573         this.bodyEl = this.el.createChild({
43574                 tag: "div",
43575                 cls: "roo-layout-panel-body tab-content" // bootstrap added...
43576         });
43577     },
43578
43579     onRender: function(ctr, pos)
43580     {
43581         var dh = Roo.DomHelper;
43582         /** This region's container element 
43583         * @type Roo.Element */
43584         this.el = dh.append(ctr.dom, {
43585                 tag: "div",
43586                 cls: (this.config.cls || '') + " roo-layout-region roo-layout-panel roo-layout-panel-" + this.position
43587             }, true);
43588         /** This region's title element 
43589         * @type Roo.Element */
43590     
43591         this.titleEl = dh.append(this.el.dom,  {
43592                 tag: "div",
43593                 unselectable: "on",
43594                 cls: "roo-unselectable roo-layout-panel-hd breadcrumb roo-layout-title-" + this.position,
43595                 children:[
43596                     {tag: "span", cls: "roo-unselectable roo-layout-panel-hd-text", unselectable: "on", html: "&#160;"},
43597                     {tag: "div", cls: "roo-unselectable roo-layout-panel-hd-tools", unselectable: "on"}
43598                 ]
43599             }, true);
43600         
43601         this.titleEl.enableDisplayMode();
43602         /** This region's title text element 
43603         * @type HTMLElement */
43604         this.titleTextEl = this.titleEl.dom.firstChild;
43605         this.tools = Roo.get(this.titleEl.dom.childNodes[1], true);
43606         /*
43607         this.closeBtn = this.createTool(this.tools.dom, "roo-layout-close");
43608         this.closeBtn.enableDisplayMode();
43609         this.closeBtn.on("click", this.closeClicked, this);
43610         this.closeBtn.hide();
43611     */
43612         this.createBody(this.config);
43613         if(this.config.hideWhenEmpty){
43614             this.hide();
43615             this.on("paneladded", this.validateVisibility, this);
43616             this.on("panelremoved", this.validateVisibility, this);
43617         }
43618         if(this.autoScroll){
43619             this.bodyEl.setStyle("overflow", "auto");
43620         }else{
43621             this.bodyEl.setStyle("overflow", this.config.overflow || 'hidden');
43622         }
43623         //if(c.titlebar !== false){
43624             if((!this.config.titlebar && !this.config.title) || this.config.titlebar === false){
43625                 this.titleEl.hide();
43626             }else{
43627                 this.titleEl.show();
43628                 if(this.config.title){
43629                     this.titleTextEl.innerHTML = this.config.title;
43630                 }
43631             }
43632         //}
43633         if(this.config.collapsed){
43634             this.collapse(true);
43635         }
43636         if(this.config.hidden){
43637             this.hide();
43638         }
43639         
43640         if (this.unrendered_panels && this.unrendered_panels.length) {
43641             for (var i =0;i< this.unrendered_panels.length; i++) {
43642                 this.add(this.unrendered_panels[i]);
43643             }
43644             this.unrendered_panels = null;
43645             
43646         }
43647         
43648     },
43649     
43650     applyConfig : function(c)
43651     {
43652         /*
43653          *if(c.collapsible && this.position != "center" && !this.collapsedEl){
43654             var dh = Roo.DomHelper;
43655             if(c.titlebar !== false){
43656                 this.collapseBtn = this.createTool(this.tools.dom, "roo-layout-collapse-"+this.position);
43657                 this.collapseBtn.on("click", this.collapse, this);
43658                 this.collapseBtn.enableDisplayMode();
43659                 /*
43660                 if(c.showPin === true || this.showPin){
43661                     this.stickBtn = this.createTool(this.tools.dom, "roo-layout-stick");
43662                     this.stickBtn.enableDisplayMode();
43663                     this.stickBtn.on("click", this.expand, this);
43664                     this.stickBtn.hide();
43665                 }
43666                 
43667             }
43668             */
43669             /** This region's collapsed element
43670             * @type Roo.Element */
43671             /*
43672              *
43673             this.collapsedEl = dh.append(this.mgr.el.dom, {cls: "x-layout-collapsed x-layout-collapsed-"+this.position, children:[
43674                 {cls: "x-layout-collapsed-tools", children:[{cls: "x-layout-ctools-inner"}]}
43675             ]}, true);
43676             
43677             if(c.floatable !== false){
43678                this.collapsedEl.addClassOnOver("x-layout-collapsed-over");
43679                this.collapsedEl.on("click", this.collapseClick, this);
43680             }
43681
43682             if(c.collapsedTitle && (this.position == "north" || this.position== "south")) {
43683                 this.collapsedTitleTextEl = dh.append(this.collapsedEl.dom, {tag: "div", cls: "x-unselectable x-layout-panel-hd-text",
43684                    id: "message", unselectable: "on", style:{"float":"left"}});
43685                this.collapsedTitleTextEl.innerHTML = c.collapsedTitle;
43686              }
43687             this.expandBtn = this.createTool(this.collapsedEl.dom.firstChild.firstChild, "x-layout-expand-"+this.position);
43688             this.expandBtn.on("click", this.expand, this);
43689             
43690         }
43691         
43692         if(this.collapseBtn){
43693             this.collapseBtn.setVisible(c.collapsible == true);
43694         }
43695         
43696         this.cmargins = c.cmargins || this.cmargins ||
43697                          (this.position == "west" || this.position == "east" ?
43698                              {top: 0, left: 2, right:2, bottom: 0} :
43699                              {top: 2, left: 0, right:0, bottom: 2});
43700         */
43701         this.margins = c.margins || this.margins || {top: 0, left: 0, right:0, bottom: 0};
43702         
43703         
43704         this.tabPosition = [ 'top','bottom', 'west'].indexOf(c.tabPosition) > -1 ? c.tabPosition : "top";
43705         
43706         this.autoScroll = c.autoScroll || false;
43707         
43708         
43709        
43710         
43711         this.duration = c.duration || .30;
43712         this.slideDuration = c.slideDuration || .45;
43713         this.config = c;
43714        
43715     },
43716     /**
43717      * Returns true if this region is currently visible.
43718      * @return {Boolean}
43719      */
43720     isVisible : function(){
43721         return this.visible;
43722     },
43723
43724     /**
43725      * Updates the title for collapsed north/south regions (used with {@link #collapsedTitle} config option)
43726      * @param {String} title (optional) The title text (accepts HTML markup, defaults to the numeric character reference for a non-breaking space, "&amp;#160;")
43727      */
43728     //setCollapsedTitle : function(title){
43729     //    title = title || "&#160;";
43730      //   if(this.collapsedTitleTextEl){
43731       //      this.collapsedTitleTextEl.innerHTML = title;
43732        // }
43733     //},
43734
43735     getBox : function(){
43736         var b;
43737       //  if(!this.collapsed){
43738             b = this.el.getBox(false, true);
43739        // }else{
43740           //  b = this.collapsedEl.getBox(false, true);
43741         //}
43742         return b;
43743     },
43744
43745     getMargins : function(){
43746         return this.margins;
43747         //return this.collapsed ? this.cmargins : this.margins;
43748     },
43749 /*
43750     highlight : function(){
43751         this.el.addClass("x-layout-panel-dragover");
43752     },
43753
43754     unhighlight : function(){
43755         this.el.removeClass("x-layout-panel-dragover");
43756     },
43757 */
43758     updateBox : function(box)
43759     {
43760         if (!this.bodyEl) {
43761             return; // not rendered yet..
43762         }
43763         
43764         this.box = box;
43765         if(!this.collapsed){
43766             this.el.dom.style.left = box.x + "px";
43767             this.el.dom.style.top = box.y + "px";
43768             this.updateBody(box.width, box.height);
43769         }else{
43770             this.collapsedEl.dom.style.left = box.x + "px";
43771             this.collapsedEl.dom.style.top = box.y + "px";
43772             this.collapsedEl.setSize(box.width, box.height);
43773         }
43774         if(this.tabs){
43775             this.tabs.autoSizeTabs();
43776         }
43777     },
43778
43779     updateBody : function(w, h)
43780     {
43781         if(w !== null){
43782             this.el.setWidth(w);
43783             w -= this.el.getBorderWidth("rl");
43784             if(this.config.adjustments){
43785                 w += this.config.adjustments[0];
43786             }
43787         }
43788         if(h !== null && h > 0){
43789             this.el.setHeight(h);
43790             h = this.titleEl && this.titleEl.isDisplayed() ? h - (this.titleEl.getHeight()||0) : h;
43791             h -= this.el.getBorderWidth("tb");
43792             if(this.config.adjustments){
43793                 h += this.config.adjustments[1];
43794             }
43795             this.bodyEl.setHeight(h);
43796             if(this.tabs){
43797                 h = this.tabs.syncHeight(h);
43798             }
43799         }
43800         if(this.panelSize){
43801             w = w !== null ? w : this.panelSize.width;
43802             h = h !== null ? h : this.panelSize.height;
43803         }
43804         if(this.activePanel){
43805             var el = this.activePanel.getEl();
43806             w = w !== null ? w : el.getWidth();
43807             h = h !== null ? h : el.getHeight();
43808             this.panelSize = {width: w, height: h};
43809             this.activePanel.setSize(w, h);
43810         }
43811         if(Roo.isIE && this.tabs){
43812             this.tabs.el.repaint();
43813         }
43814     },
43815
43816     /**
43817      * Returns the container element for this region.
43818      * @return {Roo.Element}
43819      */
43820     getEl : function(){
43821         return this.el;
43822     },
43823
43824     /**
43825      * Hides this region.
43826      */
43827     hide : function(){
43828         //if(!this.collapsed){
43829             this.el.dom.style.left = "-2000px";
43830             this.el.hide();
43831         //}else{
43832          //   this.collapsedEl.dom.style.left = "-2000px";
43833          //   this.collapsedEl.hide();
43834        // }
43835         this.visible = false;
43836         this.fireEvent("visibilitychange", this, false);
43837     },
43838
43839     /**
43840      * Shows this region if it was previously hidden.
43841      */
43842     show : function(){
43843         //if(!this.collapsed){
43844             this.el.show();
43845         //}else{
43846         //    this.collapsedEl.show();
43847        // }
43848         this.visible = true;
43849         this.fireEvent("visibilitychange", this, true);
43850     },
43851 /*
43852     closeClicked : function(){
43853         if(this.activePanel){
43854             this.remove(this.activePanel);
43855         }
43856     },
43857
43858     collapseClick : function(e){
43859         if(this.isSlid){
43860            e.stopPropagation();
43861            this.slideIn();
43862         }else{
43863            e.stopPropagation();
43864            this.slideOut();
43865         }
43866     },
43867 */
43868     /**
43869      * Collapses this region.
43870      * @param {Boolean} skipAnim (optional) true to collapse the element without animation (if animate is true)
43871      */
43872     /*
43873     collapse : function(skipAnim, skipCheck = false){
43874         if(this.collapsed) {
43875             return;
43876         }
43877         
43878         if(skipCheck || this.fireEvent("beforecollapse", this) != false){
43879             
43880             this.collapsed = true;
43881             if(this.split){
43882                 this.split.el.hide();
43883             }
43884             if(this.config.animate && skipAnim !== true){
43885                 this.fireEvent("invalidated", this);
43886                 this.animateCollapse();
43887             }else{
43888                 this.el.setLocation(-20000,-20000);
43889                 this.el.hide();
43890                 this.collapsedEl.show();
43891                 this.fireEvent("collapsed", this);
43892                 this.fireEvent("invalidated", this);
43893             }
43894         }
43895         
43896     },
43897 */
43898     animateCollapse : function(){
43899         // overridden
43900     },
43901
43902     /**
43903      * Expands this region if it was previously collapsed.
43904      * @param {Roo.EventObject} e The event that triggered the expand (or null if calling manually)
43905      * @param {Boolean} skipAnim (optional) true to expand the element without animation (if animate is true)
43906      */
43907     /*
43908     expand : function(e, skipAnim){
43909         if(e) {
43910             e.stopPropagation();
43911         }
43912         if(!this.collapsed || this.el.hasActiveFx()) {
43913             return;
43914         }
43915         if(this.isSlid){
43916             this.afterSlideIn();
43917             skipAnim = true;
43918         }
43919         this.collapsed = false;
43920         if(this.config.animate && skipAnim !== true){
43921             this.animateExpand();
43922         }else{
43923             this.el.show();
43924             if(this.split){
43925                 this.split.el.show();
43926             }
43927             this.collapsedEl.setLocation(-2000,-2000);
43928             this.collapsedEl.hide();
43929             this.fireEvent("invalidated", this);
43930             this.fireEvent("expanded", this);
43931         }
43932     },
43933 */
43934     animateExpand : function(){
43935         // overridden
43936     },
43937
43938     initTabs : function()
43939     {
43940         //this.bodyEl.setStyle("overflow", "hidden"); -- this is set in render?
43941         
43942         var ts = new Roo.bootstrap.panel.Tabs({
43943             el: this.bodyEl.dom,
43944             region : this,
43945             tabPosition: this.tabPosition ? this.tabPosition  : 'top',
43946             disableTooltips: this.config.disableTabTips,
43947             toolbar : this.config.toolbar
43948         });
43949         
43950         if(this.config.hideTabs){
43951             ts.stripWrap.setDisplayed(false);
43952         }
43953         this.tabs = ts;
43954         ts.resizeTabs = this.config.resizeTabs === true;
43955         ts.minTabWidth = this.config.minTabWidth || 40;
43956         ts.maxTabWidth = this.config.maxTabWidth || 250;
43957         ts.preferredTabWidth = this.config.preferredTabWidth || 150;
43958         ts.monitorResize = false;
43959         //ts.bodyEl.setStyle("overflow", this.config.autoScroll ? "auto" : "hidden"); // this is set in render?
43960         ts.bodyEl.addClass('roo-layout-tabs-body');
43961         this.panels.each(this.initPanelAsTab, this);
43962     },
43963
43964     initPanelAsTab : function(panel){
43965         var ti = this.tabs.addTab(
43966             panel.getEl().id,
43967             panel.getTitle(),
43968             null,
43969             this.config.closeOnTab && panel.isClosable(),
43970             panel.tpl
43971         );
43972         if(panel.tabTip !== undefined){
43973             ti.setTooltip(panel.tabTip);
43974         }
43975         ti.on("activate", function(){
43976               this.setActivePanel(panel);
43977         }, this);
43978         
43979         if(this.config.closeOnTab){
43980             ti.on("beforeclose", function(t, e){
43981                 e.cancel = true;
43982                 this.remove(panel);
43983             }, this);
43984         }
43985         
43986         panel.tabItem = ti;
43987         
43988         return ti;
43989     },
43990
43991     updatePanelTitle : function(panel, title)
43992     {
43993         if(this.activePanel == panel){
43994             this.updateTitle(title);
43995         }
43996         if(this.tabs){
43997             var ti = this.tabs.getTab(panel.getEl().id);
43998             ti.setText(title);
43999             if(panel.tabTip !== undefined){
44000                 ti.setTooltip(panel.tabTip);
44001             }
44002         }
44003     },
44004
44005     updateTitle : function(title){
44006         if(this.titleTextEl && !this.config.title){
44007             this.titleTextEl.innerHTML = (typeof title != "undefined" && title.length > 0 ? title : "&#160;");
44008         }
44009     },
44010
44011     setActivePanel : function(panel)
44012     {
44013         panel = this.getPanel(panel);
44014         if(this.activePanel && this.activePanel != panel){
44015             if(this.activePanel.setActiveState(false) === false){
44016                 return;
44017             }
44018         }
44019         this.activePanel = panel;
44020         panel.setActiveState(true);
44021         if(this.panelSize){
44022             panel.setSize(this.panelSize.width, this.panelSize.height);
44023         }
44024         if(this.closeBtn){
44025             this.closeBtn.setVisible(!this.config.closeOnTab && !this.isSlid && panel.isClosable());
44026         }
44027         this.updateTitle(panel.getTitle());
44028         if(this.tabs){
44029             this.fireEvent("invalidated", this);
44030         }
44031         this.fireEvent("panelactivated", this, panel);
44032     },
44033
44034     /**
44035      * Shows the specified panel.
44036      * @param {Number/String/ContentPanel} panelId The panel's index, id or the panel itself
44037      * @return {Roo.ContentPanel} The shown panel, or null if a panel could not be found from panelId
44038      */
44039     showPanel : function(panel)
44040     {
44041         panel = this.getPanel(panel);
44042         if(panel){
44043             if(this.tabs){
44044                 var tab = this.tabs.getTab(panel.getEl().id);
44045                 if(tab.isHidden()){
44046                     this.tabs.unhideTab(tab.id);
44047                 }
44048                 tab.activate();
44049             }else{
44050                 this.setActivePanel(panel);
44051             }
44052         }
44053         return panel;
44054     },
44055
44056     /**
44057      * Get the active panel for this region.
44058      * @return {Roo.ContentPanel} The active panel or null
44059      */
44060     getActivePanel : function(){
44061         return this.activePanel;
44062     },
44063
44064     validateVisibility : function(){
44065         if(this.panels.getCount() < 1){
44066             this.updateTitle("&#160;");
44067             this.closeBtn.hide();
44068             this.hide();
44069         }else{
44070             if(!this.isVisible()){
44071                 this.show();
44072             }
44073         }
44074     },
44075
44076     /**
44077      * Adds the passed ContentPanel(s) to this region.
44078      * @param {ContentPanel...} panel The ContentPanel(s) to add (you can pass more than one)
44079      * @return {Roo.ContentPanel} The panel added (if only one was added; null otherwise)
44080      */
44081     add : function(panel)
44082     {
44083         if(arguments.length > 1){
44084             for(var i = 0, len = arguments.length; i < len; i++) {
44085                 this.add(arguments[i]);
44086             }
44087             return null;
44088         }
44089         
44090         // if we have not been rendered yet, then we can not really do much of this..
44091         if (!this.bodyEl) {
44092             this.unrendered_panels.push(panel);
44093             return panel;
44094         }
44095         
44096         
44097         
44098         
44099         if(this.hasPanel(panel)){
44100             this.showPanel(panel);
44101             return panel;
44102         }
44103         panel.setRegion(this);
44104         this.panels.add(panel);
44105        /* if(this.panels.getCount() == 1 && !this.config.alwaysShowTabs){
44106             // sinle panel - no tab...?? would it not be better to render it with the tabs,
44107             // and hide them... ???
44108             this.bodyEl.dom.appendChild(panel.getEl().dom);
44109             if(panel.background !== true){
44110                 this.setActivePanel(panel);
44111             }
44112             this.fireEvent("paneladded", this, panel);
44113             return panel;
44114         }
44115         */
44116         if(!this.tabs){
44117             this.initTabs();
44118         }else{
44119             this.initPanelAsTab(panel);
44120         }
44121         
44122         
44123         if(panel.background !== true){
44124             this.tabs.activate(panel.getEl().id);
44125         }
44126         this.fireEvent("paneladded", this, panel);
44127         return panel;
44128     },
44129
44130     /**
44131      * Hides the tab for the specified panel.
44132      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
44133      */
44134     hidePanel : function(panel){
44135         if(this.tabs && (panel = this.getPanel(panel))){
44136             this.tabs.hideTab(panel.getEl().id);
44137         }
44138     },
44139
44140     /**
44141      * Unhides the tab for a previously hidden panel.
44142      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
44143      */
44144     unhidePanel : function(panel){
44145         if(this.tabs && (panel = this.getPanel(panel))){
44146             this.tabs.unhideTab(panel.getEl().id);
44147         }
44148     },
44149
44150     clearPanels : function(){
44151         while(this.panels.getCount() > 0){
44152              this.remove(this.panels.first());
44153         }
44154     },
44155
44156     /**
44157      * Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed.
44158      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
44159      * @param {Boolean} preservePanel Overrides the config preservePanel option
44160      * @return {Roo.ContentPanel} The panel that was removed
44161      */
44162     remove : function(panel, preservePanel)
44163     {
44164         panel = this.getPanel(panel);
44165         if(!panel){
44166             return null;
44167         }
44168         var e = {};
44169         this.fireEvent("beforeremove", this, panel, e);
44170         if(e.cancel === true){
44171             return null;
44172         }
44173         preservePanel = (typeof preservePanel != "undefined" ? preservePanel : (this.config.preservePanels === true || panel.preserve === true));
44174         var panelId = panel.getId();
44175         this.panels.removeKey(panelId);
44176         if(preservePanel){
44177             document.body.appendChild(panel.getEl().dom);
44178         }
44179         if(this.tabs){
44180             this.tabs.removeTab(panel.getEl().id);
44181         }else if (!preservePanel){
44182             this.bodyEl.dom.removeChild(panel.getEl().dom);
44183         }
44184         if(this.panels.getCount() == 1 && this.tabs && !this.config.alwaysShowTabs){
44185             var p = this.panels.first();
44186             var tempEl = document.createElement("div"); // temp holder to keep IE from deleting the node
44187             tempEl.appendChild(p.getEl().dom);
44188             this.bodyEl.update("");
44189             this.bodyEl.dom.appendChild(p.getEl().dom);
44190             tempEl = null;
44191             this.updateTitle(p.getTitle());
44192             this.tabs = null;
44193             this.bodyEl.setStyle("overflow", this.config.autoScroll ? "auto" : "hidden");
44194             this.setActivePanel(p);
44195         }
44196         panel.setRegion(null);
44197         if(this.activePanel == panel){
44198             this.activePanel = null;
44199         }
44200         if(this.config.autoDestroy !== false && preservePanel !== true){
44201             try{panel.destroy();}catch(e){}
44202         }
44203         this.fireEvent("panelremoved", this, panel);
44204         return panel;
44205     },
44206
44207     /**
44208      * Returns the TabPanel component used by this region
44209      * @return {Roo.TabPanel}
44210      */
44211     getTabs : function(){
44212         return this.tabs;
44213     },
44214
44215     createTool : function(parentEl, className){
44216         var btn = Roo.DomHelper.append(parentEl, {
44217             tag: "div",
44218             cls: "x-layout-tools-button",
44219             children: [ {
44220                 tag: "div",
44221                 cls: "roo-layout-tools-button-inner " + className,
44222                 html: "&#160;"
44223             }]
44224         }, true);
44225         btn.addClassOnOver("roo-layout-tools-button-over");
44226         return btn;
44227     }
44228 });/*
44229  * Based on:
44230  * Ext JS Library 1.1.1
44231  * Copyright(c) 2006-2007, Ext JS, LLC.
44232  *
44233  * Originally Released Under LGPL - original licence link has changed is not relivant.
44234  *
44235  * Fork - LGPL
44236  * <script type="text/javascript">
44237  */
44238  
44239
44240
44241 /**
44242  * @class Roo.SplitLayoutRegion
44243  * @extends Roo.LayoutRegion
44244  * Adds a splitbar and other (private) useful functionality to a {@link Roo.LayoutRegion}.
44245  */
44246 Roo.bootstrap.layout.Split = function(config){
44247     this.cursor = config.cursor;
44248     Roo.bootstrap.layout.Split.superclass.constructor.call(this, config);
44249 };
44250
44251 Roo.extend(Roo.bootstrap.layout.Split, Roo.bootstrap.layout.Region,
44252 {
44253     splitTip : "Drag to resize.",
44254     collapsibleSplitTip : "Drag to resize. Double click to hide.",
44255     useSplitTips : false,
44256
44257     applyConfig : function(config){
44258         Roo.bootstrap.layout.Split.superclass.applyConfig.call(this, config);
44259     },
44260     
44261     onRender : function(ctr,pos) {
44262         
44263         Roo.bootstrap.layout.Split.superclass.onRender.call(this, ctr,pos);
44264         if(!this.config.split){
44265             return;
44266         }
44267         if(!this.split){
44268             
44269             var splitEl = Roo.DomHelper.append(ctr.dom,  {
44270                             tag: "div",
44271                             id: this.el.id + "-split",
44272                             cls: "roo-layout-split roo-layout-split-"+this.position,
44273                             html: "&#160;"
44274             });
44275             /** The SplitBar for this region 
44276             * @type Roo.SplitBar */
44277             // does not exist yet...
44278             Roo.log([this.position, this.orientation]);
44279             
44280             this.split = new Roo.bootstrap.SplitBar({
44281                 dragElement : splitEl,
44282                 resizingElement: this.el,
44283                 orientation : this.orientation
44284             });
44285             
44286             this.split.on("moved", this.onSplitMove, this);
44287             this.split.useShim = this.config.useShim === true;
44288             this.split.getMaximumSize = this[this.position == 'north' || this.position == 'south' ? 'getVMaxSize' : 'getHMaxSize'].createDelegate(this);
44289             if(this.useSplitTips){
44290                 this.split.el.dom.title = this.config.collapsible ? this.collapsibleSplitTip : this.splitTip;
44291             }
44292             //if(config.collapsible){
44293             //    this.split.el.on("dblclick", this.collapse,  this);
44294             //}
44295         }
44296         if(typeof this.config.minSize != "undefined"){
44297             this.split.minSize = this.config.minSize;
44298         }
44299         if(typeof this.config.maxSize != "undefined"){
44300             this.split.maxSize = this.config.maxSize;
44301         }
44302         if(this.config.hideWhenEmpty || this.config.hidden || this.config.collapsed){
44303             this.hideSplitter();
44304         }
44305         
44306     },
44307
44308     getHMaxSize : function(){
44309          var cmax = this.config.maxSize || 10000;
44310          var center = this.mgr.getRegion("center");
44311          return Math.min(cmax, (this.el.getWidth()+center.getEl().getWidth())-center.getMinWidth());
44312     },
44313
44314     getVMaxSize : function(){
44315          var cmax = this.config.maxSize || 10000;
44316          var center = this.mgr.getRegion("center");
44317          return Math.min(cmax, (this.el.getHeight()+center.getEl().getHeight())-center.getMinHeight());
44318     },
44319
44320     onSplitMove : function(split, newSize){
44321         this.fireEvent("resized", this, newSize);
44322     },
44323     
44324     /** 
44325      * Returns the {@link Roo.SplitBar} for this region.
44326      * @return {Roo.SplitBar}
44327      */
44328     getSplitBar : function(){
44329         return this.split;
44330     },
44331     
44332     hide : function(){
44333         this.hideSplitter();
44334         Roo.bootstrap.layout.Split.superclass.hide.call(this);
44335     },
44336
44337     hideSplitter : function(){
44338         if(this.split){
44339             this.split.el.setLocation(-2000,-2000);
44340             this.split.el.hide();
44341         }
44342     },
44343
44344     show : function(){
44345         if(this.split){
44346             this.split.el.show();
44347         }
44348         Roo.bootstrap.layout.Split.superclass.show.call(this);
44349     },
44350     
44351     beforeSlide: function(){
44352         if(Roo.isGecko){// firefox overflow auto bug workaround
44353             this.bodyEl.clip();
44354             if(this.tabs) {
44355                 this.tabs.bodyEl.clip();
44356             }
44357             if(this.activePanel){
44358                 this.activePanel.getEl().clip();
44359                 
44360                 if(this.activePanel.beforeSlide){
44361                     this.activePanel.beforeSlide();
44362                 }
44363             }
44364         }
44365     },
44366     
44367     afterSlide : function(){
44368         if(Roo.isGecko){// firefox overflow auto bug workaround
44369             this.bodyEl.unclip();
44370             if(this.tabs) {
44371                 this.tabs.bodyEl.unclip();
44372             }
44373             if(this.activePanel){
44374                 this.activePanel.getEl().unclip();
44375                 if(this.activePanel.afterSlide){
44376                     this.activePanel.afterSlide();
44377                 }
44378             }
44379         }
44380     },
44381
44382     initAutoHide : function(){
44383         if(this.autoHide !== false){
44384             if(!this.autoHideHd){
44385                 var st = new Roo.util.DelayedTask(this.slideIn, this);
44386                 this.autoHideHd = {
44387                     "mouseout": function(e){
44388                         if(!e.within(this.el, true)){
44389                             st.delay(500);
44390                         }
44391                     },
44392                     "mouseover" : function(e){
44393                         st.cancel();
44394                     },
44395                     scope : this
44396                 };
44397             }
44398             this.el.on(this.autoHideHd);
44399         }
44400     },
44401
44402     clearAutoHide : function(){
44403         if(this.autoHide !== false){
44404             this.el.un("mouseout", this.autoHideHd.mouseout);
44405             this.el.un("mouseover", this.autoHideHd.mouseover);
44406         }
44407     },
44408
44409     clearMonitor : function(){
44410         Roo.get(document).un("click", this.slideInIf, this);
44411     },
44412
44413     // these names are backwards but not changed for compat
44414     slideOut : function(){
44415         if(this.isSlid || this.el.hasActiveFx()){
44416             return;
44417         }
44418         this.isSlid = true;
44419         if(this.collapseBtn){
44420             this.collapseBtn.hide();
44421         }
44422         this.closeBtnState = this.closeBtn.getStyle('display');
44423         this.closeBtn.hide();
44424         if(this.stickBtn){
44425             this.stickBtn.show();
44426         }
44427         this.el.show();
44428         this.el.alignTo(this.collapsedEl, this.getCollapseAnchor());
44429         this.beforeSlide();
44430         this.el.setStyle("z-index", 10001);
44431         this.el.slideIn(this.getSlideAnchor(), {
44432             callback: function(){
44433                 this.afterSlide();
44434                 this.initAutoHide();
44435                 Roo.get(document).on("click", this.slideInIf, this);
44436                 this.fireEvent("slideshow", this);
44437             },
44438             scope: this,
44439             block: true
44440         });
44441     },
44442
44443     afterSlideIn : function(){
44444         this.clearAutoHide();
44445         this.isSlid = false;
44446         this.clearMonitor();
44447         this.el.setStyle("z-index", "");
44448         if(this.collapseBtn){
44449             this.collapseBtn.show();
44450         }
44451         this.closeBtn.setStyle('display', this.closeBtnState);
44452         if(this.stickBtn){
44453             this.stickBtn.hide();
44454         }
44455         this.fireEvent("slidehide", this);
44456     },
44457
44458     slideIn : function(cb){
44459         if(!this.isSlid || this.el.hasActiveFx()){
44460             Roo.callback(cb);
44461             return;
44462         }
44463         this.isSlid = false;
44464         this.beforeSlide();
44465         this.el.slideOut(this.getSlideAnchor(), {
44466             callback: function(){
44467                 this.el.setLeftTop(-10000, -10000);
44468                 this.afterSlide();
44469                 this.afterSlideIn();
44470                 Roo.callback(cb);
44471             },
44472             scope: this,
44473             block: true
44474         });
44475     },
44476     
44477     slideInIf : function(e){
44478         if(!e.within(this.el)){
44479             this.slideIn();
44480         }
44481     },
44482
44483     animateCollapse : function(){
44484         this.beforeSlide();
44485         this.el.setStyle("z-index", 20000);
44486         var anchor = this.getSlideAnchor();
44487         this.el.slideOut(anchor, {
44488             callback : function(){
44489                 this.el.setStyle("z-index", "");
44490                 this.collapsedEl.slideIn(anchor, {duration:.3});
44491                 this.afterSlide();
44492                 this.el.setLocation(-10000,-10000);
44493                 this.el.hide();
44494                 this.fireEvent("collapsed", this);
44495             },
44496             scope: this,
44497             block: true
44498         });
44499     },
44500
44501     animateExpand : function(){
44502         this.beforeSlide();
44503         this.el.alignTo(this.collapsedEl, this.getCollapseAnchor(), this.getExpandAdj());
44504         this.el.setStyle("z-index", 20000);
44505         this.collapsedEl.hide({
44506             duration:.1
44507         });
44508         this.el.slideIn(this.getSlideAnchor(), {
44509             callback : function(){
44510                 this.el.setStyle("z-index", "");
44511                 this.afterSlide();
44512                 if(this.split){
44513                     this.split.el.show();
44514                 }
44515                 this.fireEvent("invalidated", this);
44516                 this.fireEvent("expanded", this);
44517             },
44518             scope: this,
44519             block: true
44520         });
44521     },
44522
44523     anchors : {
44524         "west" : "left",
44525         "east" : "right",
44526         "north" : "top",
44527         "south" : "bottom"
44528     },
44529
44530     sanchors : {
44531         "west" : "l",
44532         "east" : "r",
44533         "north" : "t",
44534         "south" : "b"
44535     },
44536
44537     canchors : {
44538         "west" : "tl-tr",
44539         "east" : "tr-tl",
44540         "north" : "tl-bl",
44541         "south" : "bl-tl"
44542     },
44543
44544     getAnchor : function(){
44545         return this.anchors[this.position];
44546     },
44547
44548     getCollapseAnchor : function(){
44549         return this.canchors[this.position];
44550     },
44551
44552     getSlideAnchor : function(){
44553         return this.sanchors[this.position];
44554     },
44555
44556     getAlignAdj : function(){
44557         var cm = this.cmargins;
44558         switch(this.position){
44559             case "west":
44560                 return [0, 0];
44561             break;
44562             case "east":
44563                 return [0, 0];
44564             break;
44565             case "north":
44566                 return [0, 0];
44567             break;
44568             case "south":
44569                 return [0, 0];
44570             break;
44571         }
44572     },
44573
44574     getExpandAdj : function(){
44575         var c = this.collapsedEl, cm = this.cmargins;
44576         switch(this.position){
44577             case "west":
44578                 return [-(cm.right+c.getWidth()+cm.left), 0];
44579             break;
44580             case "east":
44581                 return [cm.right+c.getWidth()+cm.left, 0];
44582             break;
44583             case "north":
44584                 return [0, -(cm.top+cm.bottom+c.getHeight())];
44585             break;
44586             case "south":
44587                 return [0, cm.top+cm.bottom+c.getHeight()];
44588             break;
44589         }
44590     }
44591 });/*
44592  * Based on:
44593  * Ext JS Library 1.1.1
44594  * Copyright(c) 2006-2007, Ext JS, LLC.
44595  *
44596  * Originally Released Under LGPL - original licence link has changed is not relivant.
44597  *
44598  * Fork - LGPL
44599  * <script type="text/javascript">
44600  */
44601 /*
44602  * These classes are private internal classes
44603  */
44604 Roo.bootstrap.layout.Center = function(config){
44605     config.region = "center";
44606     Roo.bootstrap.layout.Region.call(this, config);
44607     this.visible = true;
44608     this.minWidth = config.minWidth || 20;
44609     this.minHeight = config.minHeight || 20;
44610 };
44611
44612 Roo.extend(Roo.bootstrap.layout.Center, Roo.bootstrap.layout.Region, {
44613     hide : function(){
44614         // center panel can't be hidden
44615     },
44616     
44617     show : function(){
44618         // center panel can't be hidden
44619     },
44620     
44621     getMinWidth: function(){
44622         return this.minWidth;
44623     },
44624     
44625     getMinHeight: function(){
44626         return this.minHeight;
44627     }
44628 });
44629
44630
44631
44632
44633  
44634
44635
44636
44637
44638
44639
44640 Roo.bootstrap.layout.North = function(config)
44641 {
44642     config.region = 'north';
44643     config.cursor = 'n-resize';
44644     
44645     Roo.bootstrap.layout.Split.call(this, config);
44646     
44647     
44648     if(this.split){
44649         this.split.placement = Roo.bootstrap.SplitBar.TOP;
44650         this.split.orientation = Roo.bootstrap.SplitBar.VERTICAL;
44651         this.split.el.addClass("roo-layout-split-v");
44652     }
44653     //var size = config.initialSize || config.height;
44654     //if(this.el && typeof size != "undefined"){
44655     //    this.el.setHeight(size);
44656     //}
44657 };
44658 Roo.extend(Roo.bootstrap.layout.North, Roo.bootstrap.layout.Split,
44659 {
44660     orientation: Roo.bootstrap.SplitBar.VERTICAL,
44661      
44662      
44663     onRender : function(ctr, pos)
44664     {
44665         Roo.bootstrap.layout.Split.prototype.onRender.call(this, ctr, pos);
44666         var size = this.config.initialSize || this.config.height;
44667         if(this.el && typeof size != "undefined"){
44668             this.el.setHeight(size);
44669         }
44670     
44671     },
44672     
44673     getBox : function(){
44674         if(this.collapsed){
44675             return this.collapsedEl.getBox();
44676         }
44677         var box = this.el.getBox();
44678         if(this.split){
44679             box.height += this.split.el.getHeight();
44680         }
44681         return box;
44682     },
44683     
44684     updateBox : function(box){
44685         if(this.split && !this.collapsed){
44686             box.height -= this.split.el.getHeight();
44687             this.split.el.setLeft(box.x);
44688             this.split.el.setTop(box.y+box.height);
44689             this.split.el.setWidth(box.width);
44690         }
44691         if(this.collapsed){
44692             this.updateBody(box.width, null);
44693         }
44694         Roo.bootstrap.layout.Region.prototype.updateBox.call(this, box);
44695     }
44696 });
44697
44698
44699
44700
44701
44702 Roo.bootstrap.layout.South = function(config){
44703     config.region = 'south';
44704     config.cursor = 's-resize';
44705     Roo.bootstrap.layout.Split.call(this, config);
44706     if(this.split){
44707         this.split.placement = Roo.bootstrap.SplitBar.BOTTOM;
44708         this.split.orientation = Roo.bootstrap.SplitBar.VERTICAL;
44709         this.split.el.addClass("roo-layout-split-v");
44710     }
44711     
44712 };
44713
44714 Roo.extend(Roo.bootstrap.layout.South, Roo.bootstrap.layout.Split, {
44715     orientation: Roo.bootstrap.SplitBar.VERTICAL,
44716     
44717     onRender : function(ctr, pos)
44718     {
44719         Roo.bootstrap.layout.Split.prototype.onRender.call(this, ctr, pos);
44720         var size = this.config.initialSize || this.config.height;
44721         if(this.el && typeof size != "undefined"){
44722             this.el.setHeight(size);
44723         }
44724     
44725     },
44726     
44727     getBox : function(){
44728         if(this.collapsed){
44729             return this.collapsedEl.getBox();
44730         }
44731         var box = this.el.getBox();
44732         if(this.split){
44733             var sh = this.split.el.getHeight();
44734             box.height += sh;
44735             box.y -= sh;
44736         }
44737         return box;
44738     },
44739     
44740     updateBox : function(box){
44741         if(this.split && !this.collapsed){
44742             var sh = this.split.el.getHeight();
44743             box.height -= sh;
44744             box.y += sh;
44745             this.split.el.setLeft(box.x);
44746             this.split.el.setTop(box.y-sh);
44747             this.split.el.setWidth(box.width);
44748         }
44749         if(this.collapsed){
44750             this.updateBody(box.width, null);
44751         }
44752         Roo.bootstrap.layout.Region.prototype.updateBox.call(this, box);
44753     }
44754 });
44755
44756 Roo.bootstrap.layout.East = function(config){
44757     config.region = "east";
44758     config.cursor = "e-resize";
44759     Roo.bootstrap.layout.Split.call(this, config);
44760     if(this.split){
44761         this.split.placement = Roo.bootstrap.SplitBar.RIGHT;
44762         this.split.orientation = Roo.bootstrap.SplitBar.HORIZONTAL;
44763         this.split.el.addClass("roo-layout-split-h");
44764     }
44765     
44766 };
44767 Roo.extend(Roo.bootstrap.layout.East, Roo.bootstrap.layout.Split, {
44768     orientation: Roo.bootstrap.SplitBar.HORIZONTAL,
44769     
44770     onRender : function(ctr, pos)
44771     {
44772         Roo.bootstrap.layout.Split.prototype.onRender.call(this, ctr, pos);
44773         var size = this.config.initialSize || this.config.width;
44774         if(this.el && typeof size != "undefined"){
44775             this.el.setWidth(size);
44776         }
44777     
44778     },
44779     
44780     getBox : function(){
44781         if(this.collapsed){
44782             return this.collapsedEl.getBox();
44783         }
44784         var box = this.el.getBox();
44785         if(this.split){
44786             var sw = this.split.el.getWidth();
44787             box.width += sw;
44788             box.x -= sw;
44789         }
44790         return box;
44791     },
44792
44793     updateBox : function(box){
44794         if(this.split && !this.collapsed){
44795             var sw = this.split.el.getWidth();
44796             box.width -= sw;
44797             this.split.el.setLeft(box.x);
44798             this.split.el.setTop(box.y);
44799             this.split.el.setHeight(box.height);
44800             box.x += sw;
44801         }
44802         if(this.collapsed){
44803             this.updateBody(null, box.height);
44804         }
44805         Roo.bootstrap.layout.Region.prototype.updateBox.call(this, box);
44806     }
44807 });
44808
44809 Roo.bootstrap.layout.West = function(config){
44810     config.region = "west";
44811     config.cursor = "w-resize";
44812     
44813     Roo.bootstrap.layout.Split.call(this, config);
44814     if(this.split){
44815         this.split.placement = Roo.bootstrap.SplitBar.LEFT;
44816         this.split.orientation = Roo.bootstrap.SplitBar.HORIZONTAL;
44817         this.split.el.addClass("roo-layout-split-h");
44818     }
44819     
44820 };
44821 Roo.extend(Roo.bootstrap.layout.West, Roo.bootstrap.layout.Split, {
44822     orientation: Roo.bootstrap.SplitBar.HORIZONTAL,
44823     
44824     onRender: function(ctr, pos)
44825     {
44826         Roo.bootstrap.layout.West.superclass.onRender.call(this, ctr,pos);
44827         var size = this.config.initialSize || this.config.width;
44828         if(typeof size != "undefined"){
44829             this.el.setWidth(size);
44830         }
44831     },
44832     
44833     getBox : function(){
44834         if(this.collapsed){
44835             return this.collapsedEl.getBox();
44836         }
44837         var box = this.el.getBox();
44838         if (box.width == 0) {
44839             box.width = this.config.width; // kludge?
44840         }
44841         if(this.split){
44842             box.width += this.split.el.getWidth();
44843         }
44844         return box;
44845     },
44846     
44847     updateBox : function(box){
44848         if(this.split && !this.collapsed){
44849             var sw = this.split.el.getWidth();
44850             box.width -= sw;
44851             this.split.el.setLeft(box.x+box.width);
44852             this.split.el.setTop(box.y);
44853             this.split.el.setHeight(box.height);
44854         }
44855         if(this.collapsed){
44856             this.updateBody(null, box.height);
44857         }
44858         Roo.bootstrap.layout.Region.prototype.updateBox.call(this, box);
44859     }
44860 });/*
44861  * Based on:
44862  * Ext JS Library 1.1.1
44863  * Copyright(c) 2006-2007, Ext JS, LLC.
44864  *
44865  * Originally Released Under LGPL - original licence link has changed is not relivant.
44866  *
44867  * Fork - LGPL
44868  * <script type="text/javascript">
44869  */
44870 /**
44871  * @class Roo.bootstrap.paenl.Content
44872  * @extends Roo.util.Observable
44873  * @children Roo.bootstrap.Component
44874  * @parent builder Roo.bootstrap.layout.Border
44875  * A basic ContentPanel element. - a panel that contain any content (eg. forms etc.)
44876  * @cfg {Boolean}   fitToFrame    True for this panel to adjust its size to fit when the region resizes  (defaults to false)
44877  * @cfg {Boolean}   fitContainer   When using {@link #fitToFrame} and {@link #resizeEl}, you can also fit the parent container  (defaults to false)
44878  * @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
44879  * @cfg {Boolean}   closable      True if the panel can be closed/removed
44880  * @cfg {Boolean}   background    True if the panel should not be activated when it is added (defaults to false)
44881  * @cfg {String/HTMLElement/Element} resizeEl An element to resize if {@link #fitToFrame} is true (instead of this panel's element)
44882  * @cfg {Toolbar}   toolbar       A toolbar for this panel
44883  * @cfg {Boolean} autoScroll    True to scroll overflow in this panel (use with {@link #fitToFrame})
44884  * @cfg {String} title          The title for this panel
44885  * @cfg {Array} adjustments     Values to <b>add</b> to the width/height when doing a {@link #fitToFrame} (default is [0, 0])
44886  * @cfg {String} url            Calls {@link #setUrl} with this value
44887  * @cfg {String} region  [required] (center|north|south|east|west) which region to put this panel on (when used with xtype constructors)
44888  * @cfg {String/Object} params  When used with {@link #url}, calls {@link #setUrl} with this value
44889  * @cfg {Boolean} loadOnce      When used with {@link #url}, calls {@link #setUrl} with this value
44890  * @cfg {String}    content        Raw content to fill content panel with (uses setContent on construction.)
44891  * @cfg {Boolean} iframe      contents are an iframe - makes showing remote sources/CSS feasible..
44892  * @cfg {Boolean} badges render the badges
44893  * @cfg {String} cls  extra classes to use  
44894  * @cfg {String} background (primary|secondary|success|info|warning|danger|light|dark)
44895  
44896  * @constructor
44897  * Create a new ContentPanel.
44898  * @param {String/Object} config A string to set only the title or a config object
44899  
44900  */
44901 Roo.bootstrap.panel.Content = function( config){
44902     
44903     this.tpl = config.tpl || false;
44904     
44905     var el = config.el;
44906     var content = config.content;
44907
44908     if(config.autoCreate){ // xtype is available if this is called from factory
44909         el = Roo.id();
44910     }
44911     this.el = Roo.get(el);
44912     if(!this.el && config && config.autoCreate){
44913         if(typeof config.autoCreate == "object"){
44914             if(!config.autoCreate.id){
44915                 config.autoCreate.id = config.id||el;
44916             }
44917             this.el = Roo.DomHelper.append(document.body,
44918                         config.autoCreate, true);
44919         }else{
44920             var elcfg =  {
44921                 tag: "div",
44922                 cls: (config.cls || '') +
44923                     (config.background ? ' bg-' + config.background : '') +
44924                     " roo-layout-inactive-content",
44925                 id: config.id||el
44926             };
44927             if (config.iframe) {
44928                 elcfg.cn = [
44929                     {
44930                         tag : 'iframe',
44931                         style : 'border: 0px',
44932                         src : 'about:blank'
44933                     }
44934                 ];
44935             }
44936               
44937             if (config.html) {
44938                 elcfg.html = config.html;
44939                 
44940             }
44941                         
44942             this.el = Roo.DomHelper.append(document.body, elcfg , true);
44943             if (config.iframe) {
44944                 this.iframeEl = this.el.select('iframe',true).first();
44945             }
44946             
44947         }
44948     } 
44949     this.closable = false;
44950     this.loaded = false;
44951     this.active = false;
44952    
44953       
44954     if (config.toolbar && !config.toolbar.el && config.toolbar.xtype) {
44955         
44956         this.toolbar = new config.toolbar.xns[config.toolbar.xtype](config.toolbar);
44957         
44958         this.wrapEl = this.el; //this.el.wrap();
44959         var ti = [];
44960         if (config.toolbar.items) {
44961             ti = config.toolbar.items ;
44962             delete config.toolbar.items ;
44963         }
44964         
44965         var nitems = [];
44966         this.toolbar.render(this.wrapEl, 'before');
44967         for(var i =0;i < ti.length;i++) {
44968           //  Roo.log(['add child', items[i]]);
44969             nitems.push(this.toolbar.addxtype(Roo.apply({}, ti[i])));
44970         }
44971         this.toolbar.items = nitems;
44972         this.toolbar.el.insertBefore(this.wrapEl.dom.firstChild);
44973         delete config.toolbar;
44974         
44975     }
44976     /*
44977     // xtype created footer. - not sure if will work as we normally have to render first..
44978     if (this.footer && !this.footer.el && this.footer.xtype) {
44979         if (!this.wrapEl) {
44980             this.wrapEl = this.el.wrap();
44981         }
44982     
44983         this.footer.container = this.wrapEl.createChild();
44984          
44985         this.footer = Roo.factory(this.footer, Roo);
44986         
44987     }
44988     */
44989     
44990      if(typeof config == "string"){
44991         this.title = config;
44992     }else{
44993         Roo.apply(this, config);
44994     }
44995     
44996     if(this.resizeEl){
44997         this.resizeEl = Roo.get(this.resizeEl, true);
44998     }else{
44999         this.resizeEl = this.el;
45000     }
45001     // handle view.xtype
45002     
45003  
45004     
45005     
45006     this.addEvents({
45007         /**
45008          * @event activate
45009          * Fires when this panel is activated. 
45010          * @param {Roo.ContentPanel} this
45011          */
45012         "activate" : true,
45013         /**
45014          * @event deactivate
45015          * Fires when this panel is activated. 
45016          * @param {Roo.ContentPanel} this
45017          */
45018         "deactivate" : true,
45019
45020         /**
45021          * @event resize
45022          * Fires when this panel is resized if fitToFrame is true.
45023          * @param {Roo.ContentPanel} this
45024          * @param {Number} width The width after any component adjustments
45025          * @param {Number} height The height after any component adjustments
45026          */
45027         "resize" : true,
45028         
45029          /**
45030          * @event render
45031          * Fires when this tab is created
45032          * @param {Roo.ContentPanel} this
45033          */
45034         "render" : true,
45035         
45036           /**
45037          * @event scroll
45038          * Fires when this content is scrolled
45039          * @param {Roo.ContentPanel} this
45040          * @param {Event} scrollEvent
45041          */
45042         "scroll" : true
45043         
45044         
45045         
45046     });
45047     
45048
45049     
45050     
45051     if(this.autoScroll && !this.iframe){
45052         this.resizeEl.setStyle("overflow", "auto");
45053         this.resizeEl.on('scroll', this.onScroll, this);
45054     } else {
45055         // fix randome scrolling
45056         //this.el.on('scroll', function() {
45057         //    Roo.log('fix random scolling');
45058         //    this.scrollTo('top',0); 
45059         //});
45060     }
45061     content = content || this.content;
45062     if(content){
45063         this.setContent(content);
45064     }
45065     if(config && config.url){
45066         this.setUrl(this.url, this.params, this.loadOnce);
45067     }
45068     
45069     
45070     
45071     Roo.bootstrap.panel.Content.superclass.constructor.call(this);
45072     
45073     if (this.view && typeof(this.view.xtype) != 'undefined') {
45074         this.view.el = this.el.appendChild(document.createElement("div"));
45075         this.view = Roo.factory(this.view); 
45076         this.view.render  &&  this.view.render(false, '');  
45077     }
45078     
45079     
45080     this.fireEvent('render', this);
45081 };
45082
45083 Roo.extend(Roo.bootstrap.panel.Content, Roo.bootstrap.Component, {
45084     
45085     cls : '',
45086     background : '',
45087     
45088     tabTip : '',
45089     
45090     iframe : false,
45091     iframeEl : false,
45092     
45093     /* Resize Element - use this to work out scroll etc. */
45094     resizeEl : false,
45095     
45096     setRegion : function(region){
45097         this.region = region;
45098         this.setActiveClass(region && !this.background);
45099     },
45100     
45101     
45102     setActiveClass: function(state)
45103     {
45104         if(state){
45105            this.el.replaceClass("roo-layout-inactive-content", "roo-layout-active-content");
45106            this.el.setStyle('position','relative');
45107         }else{
45108            this.el.replaceClass("roo-layout-active-content", "roo-layout-inactive-content");
45109            this.el.setStyle('position', 'absolute');
45110         } 
45111     },
45112     
45113     /**
45114      * Returns the toolbar for this Panel if one was configured. 
45115      * @return {Roo.Toolbar} 
45116      */
45117     getToolbar : function(){
45118         return this.toolbar;
45119     },
45120     
45121     setActiveState : function(active)
45122     {
45123         this.active = active;
45124         this.setActiveClass(active);
45125         if(!active){
45126             if(this.fireEvent("deactivate", this) === false){
45127                 return false;
45128             }
45129             return true;
45130         }
45131         this.fireEvent("activate", this);
45132         return true;
45133     },
45134     /**
45135      * Updates this panel's element (not for iframe)
45136      * @param {String} content The new content
45137      * @param {Boolean} loadScripts (optional) true to look for and process scripts
45138     */
45139     setContent : function(content, loadScripts){
45140         if (this.iframe) {
45141             return;
45142         }
45143         
45144         this.el.update(content, loadScripts);
45145     },
45146
45147     ignoreResize : function(w, h)
45148     {
45149         //return false; // always resize?
45150         if(this.lastSize && this.lastSize.width == w && this.lastSize.height == h){
45151             return true;
45152         }else{
45153             this.lastSize = {width: w, height: h};
45154             return false;
45155         }
45156     },
45157     /**
45158      * Get the {@link Roo.UpdateManager} for this panel. Enables you to perform Ajax updates.
45159      * @return {Roo.UpdateManager} The UpdateManager
45160      */
45161     getUpdateManager : function(){
45162         if (this.iframe) {
45163             return false;
45164         }
45165         return this.el.getUpdateManager();
45166     },
45167      /**
45168      * Loads this content panel immediately with content from XHR. Note: to delay loading until the panel is activated, use {@link #setUrl}.
45169      * Does not work with IFRAME contents
45170      * @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:
45171 <pre><code>
45172 panel.load({
45173     url: "your-url.php",
45174     params: {param1: "foo", param2: "bar"}, // or a URL encoded string
45175     callback: yourFunction,
45176     scope: yourObject, //(optional scope)
45177     discardUrl: false,
45178     nocache: false,
45179     text: "Loading...",
45180     timeout: 30,
45181     scripts: false
45182 });
45183 </code></pre>
45184      
45185      * The only required property is <i>url</i>. The optional properties <i>nocache</i>, <i>text</i> and <i>scripts</i>
45186      * 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.
45187      * @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}
45188      * @param {Function} callback (optional) Callback when transaction is complete -- called with signature (oElement, bSuccess, oResponse)
45189      * @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.
45190      * @return {Roo.ContentPanel} this
45191      */
45192     load : function(){
45193         
45194         if (this.iframe) {
45195             return this;
45196         }
45197         
45198         var um = this.el.getUpdateManager();
45199         um.update.apply(um, arguments);
45200         return this;
45201     },
45202
45203
45204     /**
45205      * 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.
45206      * @param {String/Function} url The URL to load the content from or a function to call to get the URL
45207      * @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)
45208      * @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)
45209      * @return {Roo.UpdateManager|Boolean} The UpdateManager or false if IFRAME
45210      */
45211     setUrl : function(url, params, loadOnce){
45212         if (this.iframe) {
45213             this.iframeEl.dom.src = url;
45214             return false;
45215         }
45216         
45217         if(this.refreshDelegate){
45218             this.removeListener("activate", this.refreshDelegate);
45219         }
45220         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
45221         this.on("activate", this.refreshDelegate);
45222         return this.el.getUpdateManager();
45223     },
45224     
45225     _handleRefresh : function(url, params, loadOnce){
45226         if(!loadOnce || !this.loaded){
45227             var updater = this.el.getUpdateManager();
45228             updater.update(url, params, this._setLoaded.createDelegate(this));
45229         }
45230     },
45231     
45232     _setLoaded : function(){
45233         this.loaded = true;
45234     }, 
45235     
45236     /**
45237      * Returns this panel's id
45238      * @return {String} 
45239      */
45240     getId : function(){
45241         return this.el.id;
45242     },
45243     
45244     /** 
45245      * Returns this panel's element - used by regiosn to add.
45246      * @return {Roo.Element} 
45247      */
45248     getEl : function(){
45249         return this.wrapEl || this.el;
45250     },
45251     
45252    
45253     
45254     adjustForComponents : function(width, height)
45255     {
45256         //Roo.log('adjustForComponents ');
45257         if(this.resizeEl != this.el){
45258             width -= this.el.getFrameWidth('lr');
45259             height -= this.el.getFrameWidth('tb');
45260         }
45261         if(this.toolbar){
45262             var te = this.toolbar.getEl();
45263             te.setWidth(width);
45264             height -= te.getHeight();
45265         }
45266         if(this.footer){
45267             var te = this.footer.getEl();
45268             te.setWidth(width);
45269             height -= te.getHeight();
45270         }
45271         
45272         
45273         if(this.adjustments){
45274             width += this.adjustments[0];
45275             height += this.adjustments[1];
45276         }
45277         return {"width": width, "height": height};
45278     },
45279     
45280     setSize : function(width, height){
45281         if(this.fitToFrame && !this.ignoreResize(width, height)){
45282             if(this.fitContainer && this.resizeEl != this.el){
45283                 this.el.setSize(width, height);
45284             }
45285             var size = this.adjustForComponents(width, height);
45286             if (this.iframe) {
45287                 this.iframeEl.setSize(width,height);
45288             }
45289             
45290             this.resizeEl.setSize(this.autoWidth ? "auto" : size.width, this.autoHeight ? "auto" : size.height);
45291             this.fireEvent('resize', this, size.width, size.height);
45292             
45293             
45294         }
45295     },
45296     
45297     /**
45298      * Returns this panel's title
45299      * @return {String} 
45300      */
45301     getTitle : function(){
45302         
45303         if (typeof(this.title) != 'object') {
45304             return this.title;
45305         }
45306         
45307         var t = '';
45308         for (var k in this.title) {
45309             if (!this.title.hasOwnProperty(k)) {
45310                 continue;
45311             }
45312             
45313             if (k.indexOf('-') >= 0) {
45314                 var s = k.split('-');
45315                 for (var i = 0; i<s.length; i++) {
45316                     t += "<span class='visible-"+s[i]+"'>"+this.title[k]+"</span>";
45317                 }
45318             } else {
45319                 t += "<span class='visible-"+k+"'>"+this.title[k]+"</span>";
45320             }
45321         }
45322         return t;
45323     },
45324     
45325     /**
45326      * Set this panel's title
45327      * @param {String} title
45328      */
45329     setTitle : function(title){
45330         this.title = title;
45331         if(this.region){
45332             this.region.updatePanelTitle(this, title);
45333         }
45334     },
45335     
45336     /**
45337      * Returns true is this panel was configured to be closable
45338      * @return {Boolean} 
45339      */
45340     isClosable : function(){
45341         return this.closable;
45342     },
45343     
45344     beforeSlide : function(){
45345         this.el.clip();
45346         this.resizeEl.clip();
45347     },
45348     
45349     afterSlide : function(){
45350         this.el.unclip();
45351         this.resizeEl.unclip();
45352     },
45353     
45354     /**
45355      *   Force a content refresh from the URL specified in the {@link #setUrl} method.
45356      *   Will fail silently if the {@link #setUrl} method has not been called.
45357      *   This does not activate the panel, just updates its content.
45358      */
45359     refresh : function(){
45360         if(this.refreshDelegate){
45361            this.loaded = false;
45362            this.refreshDelegate();
45363         }
45364     },
45365     
45366     /**
45367      * Destroys this panel
45368      */
45369     destroy : function(){
45370         this.el.removeAllListeners();
45371         var tempEl = document.createElement("span");
45372         tempEl.appendChild(this.el.dom);
45373         tempEl.innerHTML = "";
45374         this.el.remove();
45375         this.el = null;
45376     },
45377     
45378     /**
45379      * form - if the content panel contains a form - this is a reference to it.
45380      * @type {Roo.form.Form}
45381      */
45382     form : false,
45383     /**
45384      * view - if the content panel contains a view (Roo.DatePicker / Roo.View / Roo.JsonView)
45385      *    This contains a reference to it.
45386      * @type {Roo.View}
45387      */
45388     view : false,
45389     
45390       /**
45391      * Adds a xtype elements to the panel - currently only supports Forms, View, JsonView.
45392      * <pre><code>
45393
45394 layout.addxtype({
45395        xtype : 'Form',
45396        items: [ .... ]
45397    }
45398 );
45399
45400 </code></pre>
45401      * @param {Object} cfg Xtype definition of item to add.
45402      */
45403     
45404     
45405     getChildContainer: function () {
45406         return this.getEl();
45407     },
45408     
45409     
45410     onScroll : function(e)
45411     {
45412         this.fireEvent('scroll', this, e);
45413     }
45414     
45415     
45416     /*
45417         var  ret = new Roo.factory(cfg);
45418         return ret;
45419         
45420         
45421         // add form..
45422         if (cfg.xtype.match(/^Form$/)) {
45423             
45424             var el;
45425             //if (this.footer) {
45426             //    el = this.footer.container.insertSibling(false, 'before');
45427             //} else {
45428                 el = this.el.createChild();
45429             //}
45430
45431             this.form = new  Roo.form.Form(cfg);
45432             
45433             
45434             if ( this.form.allItems.length) {
45435                 this.form.render(el.dom);
45436             }
45437             return this.form;
45438         }
45439         // should only have one of theses..
45440         if ([ 'View', 'JsonView', 'DatePicker'].indexOf(cfg.xtype) > -1) {
45441             // views.. should not be just added - used named prop 'view''
45442             
45443             cfg.el = this.el.appendChild(document.createElement("div"));
45444             // factory?
45445             
45446             var ret = new Roo.factory(cfg);
45447              
45448              ret.render && ret.render(false, ''); // render blank..
45449             this.view = ret;
45450             return ret;
45451         }
45452         return false;
45453     }
45454     \*/
45455 });
45456  
45457 /**
45458  * @class Roo.bootstrap.panel.Grid
45459  * @extends Roo.bootstrap.panel.Content
45460  * @constructor
45461  * Create a new GridPanel.
45462  * @cfg {Roo.bootstrap.Table} grid The grid for this panel
45463  * @cfg {Roo.bootstrap.nav.Simplebar} toolbar the toolbar at the top of the grid.
45464  * @param {Object} config A the config object
45465   
45466  */
45467
45468
45469
45470 Roo.bootstrap.panel.Grid = function(config)
45471 {
45472     
45473       
45474     this.wrapper = Roo.DomHelper.append(document.body, // wrapper for IE7 strict & safari scroll issue
45475         {tag: "div", cls: "roo-layout-grid-wrapper roo-layout-inactive-content"}, true);
45476
45477     config.el = this.wrapper;
45478     //this.el = this.wrapper;
45479     
45480       if (config.container) {
45481         // ctor'ed from a Border/panel.grid
45482         
45483         
45484         this.wrapper.setStyle("overflow", "hidden");
45485         this.wrapper.addClass('roo-grid-container');
45486
45487     }
45488     
45489     
45490     if(config.toolbar){
45491         var tool_el = this.wrapper.createChild();    
45492         this.toolbar = Roo.factory(config.toolbar);
45493         var ti = [];
45494         if (config.toolbar.items) {
45495             ti = config.toolbar.items ;
45496             delete config.toolbar.items ;
45497         }
45498         
45499         var nitems = [];
45500         this.toolbar.render(tool_el);
45501         for(var i =0;i < ti.length;i++) {
45502           //  Roo.log(['add child', items[i]]);
45503             nitems.push(this.toolbar.addxtype(Roo.apply({}, ti[i])));
45504         }
45505         this.toolbar.items = nitems;
45506         
45507         delete config.toolbar;
45508     }
45509     
45510     Roo.bootstrap.panel.Grid.superclass.constructor.call(this, config);
45511     config.grid.scrollBody = true;;
45512     config.grid.monitorWindowResize = false; // turn off autosizing
45513     config.grid.autoHeight = false;
45514     config.grid.autoWidth = false;
45515     
45516     this.grid = new config.grid.xns[config.grid.xtype](config.grid);
45517     
45518     if (config.background) {
45519         // render grid on panel activation (if panel background)
45520         this.on('activate', function(gp) {
45521             if (!gp.grid.rendered) {
45522                 gp.grid.render(this.wrapper);
45523                 gp.grid.getGridEl().replaceClass("roo-layout-inactive-content", "roo-layout-component-panel");   
45524             }
45525         });
45526             
45527     } else {
45528         this.grid.render(this.wrapper);
45529         this.grid.getGridEl().replaceClass("roo-layout-inactive-content", "roo-layout-component-panel");               
45530
45531     }
45532     //this.wrapper.dom.appendChild(config.grid.getGridEl().dom);
45533     // ??? needed ??? config.el = this.wrapper;
45534     
45535     
45536     
45537   
45538     // xtype created footer. - not sure if will work as we normally have to render first..
45539     if (this.footer && !this.footer.el && this.footer.xtype) {
45540         
45541         var ctr = this.grid.getView().getFooterPanel(true);
45542         this.footer.dataSource = this.grid.dataSource;
45543         this.footer = Roo.factory(this.footer, Roo);
45544         this.footer.render(ctr);
45545         
45546     }
45547     
45548     
45549     
45550     
45551      
45552 };
45553
45554 Roo.extend(Roo.bootstrap.panel.Grid, Roo.bootstrap.panel.Content,
45555 {
45556   
45557     getId : function(){
45558         return this.grid.id;
45559     },
45560     
45561     /**
45562      * Returns the grid for this panel
45563      * @return {Roo.bootstrap.Table} 
45564      */
45565     getGrid : function(){
45566         return this.grid;    
45567     },
45568     
45569     setSize : function(width, height)
45570     {
45571      
45572         //if(!this.ignoreResize(width, height)){
45573             var grid = this.grid;
45574             var size = this.adjustForComponents(width, height);
45575             // tfoot is not a footer?
45576           
45577             
45578             var gridel = grid.getGridEl();
45579             gridel.setSize(size.width, size.height);
45580             
45581             var tbd = grid.getGridEl().select('tbody', true).first();
45582             var thd = grid.getGridEl().select('thead',true).first();
45583             var tbf= grid.getGridEl().select('tfoot', true).first();
45584
45585             if (tbf) {
45586                 size.height -= tbf.getHeight();
45587             }
45588             if (thd) {
45589                 size.height -= thd.getHeight();
45590             }
45591             
45592             tbd.setSize(size.width, size.height );
45593             // this is for the account management tab -seems to work there.
45594             var thd = grid.getGridEl().select('thead',true).first();
45595             //if (tbd) {
45596             //    tbd.setSize(size.width, size.height - thd.getHeight());
45597             //}
45598              
45599             grid.autoSize();
45600         //}
45601    
45602     },
45603      
45604     
45605     
45606     beforeSlide : function(){
45607         this.grid.getView().scroller.clip();
45608     },
45609     
45610     afterSlide : function(){
45611         this.grid.getView().scroller.unclip();
45612     },
45613     
45614     destroy : function(){
45615         this.grid.destroy();
45616         delete this.grid;
45617         Roo.bootstrap.panel.Grid.superclass.destroy.call(this); 
45618     }
45619 });
45620
45621 /**
45622  * @class Roo.bootstrap.panel.Nest
45623  * @extends Roo.bootstrap.panel.Content
45624  * @constructor
45625  * Create a new Panel, that can contain a layout.Border.
45626  * 
45627  * 
45628  * @param {String/Object} config A string to set only the title or a config object
45629  */
45630 Roo.bootstrap.panel.Nest = function(config)
45631 {
45632     // construct with only one argument..
45633     /* FIXME - implement nicer consturctors
45634     if (layout.layout) {
45635         config = layout;
45636         layout = config.layout;
45637         delete config.layout;
45638     }
45639     if (layout.xtype && !layout.getEl) {
45640         // then layout needs constructing..
45641         layout = Roo.factory(layout, Roo);
45642     }
45643     */
45644     
45645     config.el =  config.layout.getEl();
45646     
45647     Roo.bootstrap.panel.Nest.superclass.constructor.call(this, config);
45648     
45649     config.layout.monitorWindowResize = false; // turn off autosizing
45650     this.layout = config.layout;
45651     this.layout.getEl().addClass("roo-layout-nested-layout");
45652     this.layout.parent = this;
45653     
45654     
45655     
45656     
45657 };
45658
45659 Roo.extend(Roo.bootstrap.panel.Nest, Roo.bootstrap.panel.Content, {
45660     /**
45661     * @cfg {Roo.BorderLayout} layout The layout for this panel
45662     */
45663     layout : false,
45664
45665     setSize : function(width, height){
45666         if(!this.ignoreResize(width, height)){
45667             var size = this.adjustForComponents(width, height);
45668             var el = this.layout.getEl();
45669             if (size.height < 1) {
45670                 el.setWidth(size.width);   
45671             } else {
45672                 el.setSize(size.width, size.height);
45673             }
45674             var touch = el.dom.offsetWidth;
45675             this.layout.layout();
45676             // ie requires a double layout on the first pass
45677             if(Roo.isIE && !this.initialized){
45678                 this.initialized = true;
45679                 this.layout.layout();
45680             }
45681         }
45682     },
45683     
45684     // activate all subpanels if not currently active..
45685     
45686     setActiveState : function(active){
45687         this.active = active;
45688         this.setActiveClass(active);
45689         
45690         if(!active){
45691             this.fireEvent("deactivate", this);
45692             return;
45693         }
45694         
45695         this.fireEvent("activate", this);
45696         // not sure if this should happen before or after..
45697         if (!this.layout) {
45698             return; // should not happen..
45699         }
45700         var reg = false;
45701         for (var r in this.layout.regions) {
45702             reg = this.layout.getRegion(r);
45703             if (reg.getActivePanel()) {
45704                 //reg.showPanel(reg.getActivePanel()); // force it to activate.. 
45705                 reg.setActivePanel(reg.getActivePanel());
45706                 continue;
45707             }
45708             if (!reg.panels.length) {
45709                 continue;
45710             }
45711             reg.showPanel(reg.getPanel(0));
45712         }
45713         
45714         
45715         
45716         
45717     },
45718     
45719     /**
45720      * Returns the nested BorderLayout for this panel
45721      * @return {Roo.BorderLayout} 
45722      */
45723     getLayout : function(){
45724         return this.layout;
45725     },
45726     
45727      /**
45728      * Adds a xtype elements to the layout of the nested panel
45729      * <pre><code>
45730
45731 panel.addxtype({
45732        xtype : 'ContentPanel',
45733        region: 'west',
45734        items: [ .... ]
45735    }
45736 );
45737
45738 panel.addxtype({
45739         xtype : 'NestedLayoutPanel',
45740         region: 'west',
45741         layout: {
45742            center: { },
45743            west: { }   
45744         },
45745         items : [ ... list of content panels or nested layout panels.. ]
45746    }
45747 );
45748 </code></pre>
45749      * @param {Object} cfg Xtype definition of item to add.
45750      */
45751     addxtype : function(cfg) {
45752         return this.layout.addxtype(cfg);
45753     
45754     }
45755 });/*
45756  * Based on:
45757  * Ext JS Library 1.1.1
45758  * Copyright(c) 2006-2007, Ext JS, LLC.
45759  *
45760  * Originally Released Under LGPL - original licence link has changed is not relivant.
45761  *
45762  * Fork - LGPL
45763  * <script type="text/javascript">
45764  */
45765 /**
45766  * @class Roo.TabPanel
45767  * @extends Roo.util.Observable
45768  * A lightweight tab container.
45769  * <br><br>
45770  * Usage:
45771  * <pre><code>
45772 // basic tabs 1, built from existing content
45773 var tabs = new Roo.TabPanel("tabs1");
45774 tabs.addTab("script", "View Script");
45775 tabs.addTab("markup", "View Markup");
45776 tabs.activate("script");
45777
45778 // more advanced tabs, built from javascript
45779 var jtabs = new Roo.TabPanel("jtabs");
45780 jtabs.addTab("jtabs-1", "Normal Tab", "My content was added during construction.");
45781
45782 // set up the UpdateManager
45783 var tab2 = jtabs.addTab("jtabs-2", "Ajax Tab 1");
45784 var updater = tab2.getUpdateManager();
45785 updater.setDefaultUrl("ajax1.htm");
45786 tab2.on('activate', updater.refresh, updater, true);
45787
45788 // Use setUrl for Ajax loading
45789 var tab3 = jtabs.addTab("jtabs-3", "Ajax Tab 2");
45790 tab3.setUrl("ajax2.htm", null, true);
45791
45792 // Disabled tab
45793 var tab4 = jtabs.addTab("tabs1-5", "Disabled Tab", "Can't see me cause I'm disabled");
45794 tab4.disable();
45795
45796 jtabs.activate("jtabs-1");
45797  * </code></pre>
45798  * @constructor
45799  * Create a new TabPanel.
45800  * @param {String/HTMLElement/Roo.Element} container The id, DOM element or Roo.Element container where this TabPanel is to be rendered.
45801  * @param {Object/Boolean} config Config object to set any properties for this TabPanel, or true to render the tabs on the bottom.
45802  */
45803 Roo.bootstrap.panel.Tabs = function(config){
45804     /**
45805     * The container element for this TabPanel.
45806     * @type Roo.Element
45807     */
45808     this.el = Roo.get(config.el);
45809     delete config.el;
45810     if(config){
45811         if(typeof config == "boolean"){
45812             this.tabPosition = config ? "bottom" : "top";
45813         }else{
45814             Roo.apply(this, config);
45815         }
45816     }
45817     
45818     if(this.tabPosition == "bottom"){
45819         // if tabs are at the bottom = create the body first.
45820         this.bodyEl = Roo.get(this.createBody(this.el.dom));
45821         this.el.addClass("roo-tabs-bottom");
45822     }
45823     // next create the tabs holders
45824     
45825     if (this.tabPosition == "west"){
45826         
45827         var reg = this.region; // fake it..
45828         while (reg) {
45829             if (!reg.mgr.parent) {
45830                 break;
45831             }
45832             reg = reg.mgr.parent.region;
45833         }
45834         Roo.log("got nest?");
45835         Roo.log(reg);
45836         if (reg.mgr.getRegion('west')) {
45837             var ctrdom = reg.mgr.getRegion('west').bodyEl.dom;
45838             this.stripWrap = Roo.get(this.createStrip(ctrdom ), true);
45839             this.stripEl = Roo.get(this.createStripList(this.stripWrap.dom), true);
45840             this.stripEl.setVisibilityMode(Roo.Element.DISPLAY);
45841             this.stripBody = Roo.get(this.stripWrap.dom.firstChild.firstChild, true);
45842         
45843             
45844         }
45845         
45846         
45847     } else {
45848      
45849         this.stripWrap = Roo.get(this.createStrip(this.el.dom), true);
45850         this.stripEl = Roo.get(this.createStripList(this.stripWrap.dom), true);
45851         this.stripEl.setVisibilityMode(Roo.Element.DISPLAY);
45852         this.stripBody = Roo.get(this.stripWrap.dom.firstChild.firstChild, true);
45853     }
45854     
45855     
45856     if(Roo.isIE){
45857         Roo.fly(this.stripWrap.dom.firstChild).setStyle("overflow-x", "hidden");
45858     }
45859     
45860     // finally - if tabs are at the top, then create the body last..
45861     if(this.tabPosition != "bottom"){
45862         /** The body element that contains {@link Roo.TabPanelItem} bodies. +
45863          * @type Roo.Element
45864          */
45865         this.bodyEl = Roo.get(this.createBody(this.el.dom));
45866         this.el.addClass("roo-tabs-top");
45867     }
45868     this.items = [];
45869
45870     this.bodyEl.setStyle("position", "relative");
45871
45872     this.active = null;
45873     this.activateDelegate = this.activate.createDelegate(this);
45874
45875     this.addEvents({
45876         /**
45877          * @event tabchange
45878          * Fires when the active tab changes
45879          * @param {Roo.TabPanel} this
45880          * @param {Roo.TabPanelItem} activePanel The new active tab
45881          */
45882         "tabchange": true,
45883         /**
45884          * @event beforetabchange
45885          * Fires before the active tab changes, set cancel to true on the "e" parameter to cancel the change
45886          * @param {Roo.TabPanel} this
45887          * @param {Object} e Set cancel to true on this object to cancel the tab change
45888          * @param {Roo.TabPanelItem} tab The tab being changed to
45889          */
45890         "beforetabchange" : true
45891     });
45892
45893     Roo.EventManager.onWindowResize(this.onResize, this);
45894     this.cpad = this.el.getPadding("lr");
45895     this.hiddenCount = 0;
45896
45897
45898     // toolbar on the tabbar support...
45899     if (this.toolbar) {
45900         alert("no toolbar support yet");
45901         this.toolbar  = false;
45902         /*
45903         var tcfg = this.toolbar;
45904         tcfg.container = this.stripEl.child('td.x-tab-strip-toolbar');  
45905         this.toolbar = new Roo.Toolbar(tcfg);
45906         if (Roo.isSafari) {
45907             var tbl = tcfg.container.child('table', true);
45908             tbl.setAttribute('width', '100%');
45909         }
45910         */
45911         
45912     }
45913    
45914
45915
45916     Roo.bootstrap.panel.Tabs.superclass.constructor.call(this);
45917 };
45918
45919 Roo.extend(Roo.bootstrap.panel.Tabs, Roo.util.Observable, {
45920     /*
45921      *@cfg {String} tabPosition "top" or "bottom" (defaults to "top")
45922      */
45923     tabPosition : "top",
45924     /*
45925      *@cfg {Number} currentTabWidth The width of the current tab (defaults to 0)
45926      */
45927     currentTabWidth : 0,
45928     /*
45929      *@cfg {Number} minTabWidth The minimum width of a tab (defaults to 40) (ignored if {@link #resizeTabs} is not true)
45930      */
45931     minTabWidth : 40,
45932     /*
45933      *@cfg {Number} maxTabWidth The maximum width of a tab (defaults to 250) (ignored if {@link #resizeTabs} is not true)
45934      */
45935     maxTabWidth : 250,
45936     /*
45937      *@cfg {Number} preferredTabWidth The preferred (default) width of a tab (defaults to 175) (ignored if {@link #resizeTabs} is not true)
45938      */
45939     preferredTabWidth : 175,
45940     /*
45941      *@cfg {Boolean} resizeTabs True to enable dynamic tab resizing (defaults to false)
45942      */
45943     resizeTabs : false,
45944     /*
45945      *@cfg {Boolean} monitorResize Set this to true to turn on window resize monitoring (ignored if {@link #resizeTabs} is not true) (defaults to true)
45946      */
45947     monitorResize : true,
45948     /*
45949      *@cfg {Object} toolbar xtype description of toolbar to show at the right of the tab bar. 
45950      */
45951     toolbar : false,  // set by caller..
45952     
45953     region : false, /// set by caller
45954     
45955     disableTooltips : true, // not used yet...
45956
45957     /**
45958      * Creates a new {@link Roo.TabPanelItem} by looking for an existing element with the provided id -- if it's not found it creates one.
45959      * @param {String} id The id of the div to use <b>or create</b>
45960      * @param {String} text The text for the tab
45961      * @param {String} content (optional) Content to put in the TabPanelItem body
45962      * @param {Boolean} closable (optional) True to create a close icon on the tab
45963      * @return {Roo.TabPanelItem} The created TabPanelItem
45964      */
45965     addTab : function(id, text, content, closable, tpl)
45966     {
45967         var item = new Roo.bootstrap.panel.TabItem({
45968             panel: this,
45969             id : id,
45970             text : text,
45971             closable : closable,
45972             tpl : tpl
45973         });
45974         this.addTabItem(item);
45975         if(content){
45976             item.setContent(content);
45977         }
45978         return item;
45979     },
45980
45981     /**
45982      * Returns the {@link Roo.TabPanelItem} with the specified id/index
45983      * @param {String/Number} id The id or index of the TabPanelItem to fetch.
45984      * @return {Roo.TabPanelItem}
45985      */
45986     getTab : function(id){
45987         return this.items[id];
45988     },
45989
45990     /**
45991      * Hides the {@link Roo.TabPanelItem} with the specified id/index
45992      * @param {String/Number} id The id or index of the TabPanelItem to hide.
45993      */
45994     hideTab : function(id){
45995         var t = this.items[id];
45996         if(!t.isHidden()){
45997            t.setHidden(true);
45998            this.hiddenCount++;
45999            this.autoSizeTabs();
46000         }
46001     },
46002
46003     /**
46004      * "Unhides" the {@link Roo.TabPanelItem} with the specified id/index.
46005      * @param {String/Number} id The id or index of the TabPanelItem to unhide.
46006      */
46007     unhideTab : function(id){
46008         var t = this.items[id];
46009         if(t.isHidden()){
46010            t.setHidden(false);
46011            this.hiddenCount--;
46012            this.autoSizeTabs();
46013         }
46014     },
46015
46016     /**
46017      * Adds an existing {@link Roo.TabPanelItem}.
46018      * @param {Roo.TabPanelItem} item The TabPanelItem to add
46019      */
46020     addTabItem : function(item)
46021     {
46022         this.items[item.id] = item;
46023         this.items.push(item);
46024         this.autoSizeTabs();
46025       //  if(this.resizeTabs){
46026     //       item.setWidth(this.currentTabWidth || this.preferredTabWidth);
46027   //         this.autoSizeTabs();
46028 //        }else{
46029 //            item.autoSize();
46030        // }
46031     },
46032
46033     /**
46034      * Removes a {@link Roo.TabPanelItem}.
46035      * @param {String/Number} id The id or index of the TabPanelItem to remove.
46036      */
46037     removeTab : function(id){
46038         var items = this.items;
46039         var tab = items[id];
46040         if(!tab) { return; }
46041         var index = items.indexOf(tab);
46042         if(this.active == tab && items.length > 1){
46043             var newTab = this.getNextAvailable(index);
46044             if(newTab) {
46045                 newTab.activate();
46046             }
46047         }
46048         this.stripEl.dom.removeChild(tab.pnode.dom);
46049         if(tab.bodyEl.dom.parentNode == this.bodyEl.dom){ // if it was moved already prevent error
46050             this.bodyEl.dom.removeChild(tab.bodyEl.dom);
46051         }
46052         items.splice(index, 1);
46053         delete this.items[tab.id];
46054         tab.fireEvent("close", tab);
46055         tab.purgeListeners();
46056         this.autoSizeTabs();
46057     },
46058
46059     getNextAvailable : function(start){
46060         var items = this.items;
46061         var index = start;
46062         // look for a next tab that will slide over to
46063         // replace the one being removed
46064         while(index < items.length){
46065             var item = items[++index];
46066             if(item && !item.isHidden()){
46067                 return item;
46068             }
46069         }
46070         // if one isn't found select the previous tab (on the left)
46071         index = start;
46072         while(index >= 0){
46073             var item = items[--index];
46074             if(item && !item.isHidden()){
46075                 return item;
46076             }
46077         }
46078         return null;
46079     },
46080
46081     /**
46082      * Disables a {@link Roo.TabPanelItem}. It cannot be the active tab, if it is this call is ignored.
46083      * @param {String/Number} id The id or index of the TabPanelItem to disable.
46084      */
46085     disableTab : function(id){
46086         var tab = this.items[id];
46087         if(tab && this.active != tab){
46088             tab.disable();
46089         }
46090     },
46091
46092     /**
46093      * Enables a {@link Roo.TabPanelItem} that is disabled.
46094      * @param {String/Number} id The id or index of the TabPanelItem to enable.
46095      */
46096     enableTab : function(id){
46097         var tab = this.items[id];
46098         tab.enable();
46099     },
46100
46101     /**
46102      * Activates a {@link Roo.TabPanelItem}. The currently active one will be deactivated.
46103      * @param {String/Number} id The id or index of the TabPanelItem to activate.
46104      * @return {Roo.TabPanelItem} The TabPanelItem.
46105      */
46106     activate : function(id)
46107     {
46108         //Roo.log('activite:'  + id);
46109         
46110         var tab = this.items[id];
46111         if(!tab){
46112             return null;
46113         }
46114         if(tab == this.active || tab.disabled){
46115             return tab;
46116         }
46117         var e = {};
46118         this.fireEvent("beforetabchange", this, e, tab);
46119         if(e.cancel !== true && !tab.disabled){
46120             if(this.active){
46121                 this.active.hide();
46122             }
46123             this.active = this.items[id];
46124             this.active.show();
46125             this.fireEvent("tabchange", this, this.active);
46126         }
46127         return tab;
46128     },
46129
46130     /**
46131      * Gets the active {@link Roo.TabPanelItem}.
46132      * @return {Roo.TabPanelItem} The active TabPanelItem or null if none are active.
46133      */
46134     getActiveTab : function(){
46135         return this.active;
46136     },
46137
46138     /**
46139      * Updates the tab body element to fit the height of the container element
46140      * for overflow scrolling
46141      * @param {Number} targetHeight (optional) Override the starting height from the elements height
46142      */
46143     syncHeight : function(targetHeight){
46144         var height = (targetHeight || this.el.getHeight())-this.el.getBorderWidth("tb")-this.el.getPadding("tb");
46145         var bm = this.bodyEl.getMargins();
46146         var newHeight = height-(this.stripWrap.getHeight()||0)-(bm.top+bm.bottom);
46147         this.bodyEl.setHeight(newHeight);
46148         return newHeight;
46149     },
46150
46151     onResize : function(){
46152         if(this.monitorResize){
46153             this.autoSizeTabs();
46154         }
46155     },
46156
46157     /**
46158      * Disables tab resizing while tabs are being added (if {@link #resizeTabs} is false this does nothing)
46159      */
46160     beginUpdate : function(){
46161         this.updating = true;
46162     },
46163
46164     /**
46165      * Stops an update and resizes the tabs (if {@link #resizeTabs} is false this does nothing)
46166      */
46167     endUpdate : function(){
46168         this.updating = false;
46169         this.autoSizeTabs();
46170     },
46171
46172     /**
46173      * Manual call to resize the tabs (if {@link #resizeTabs} is false this does nothing)
46174      */
46175     autoSizeTabs : function()
46176     {
46177         var count = this.items.length;
46178         var vcount = count - this.hiddenCount;
46179         
46180         if (vcount < 2) {
46181             this.stripEl.hide();
46182         } else {
46183             this.stripEl.show();
46184         }
46185         
46186         if(!this.resizeTabs || count < 1 || vcount < 1 || this.updating) {
46187             return;
46188         }
46189         
46190         
46191         var w = Math.max(this.el.getWidth() - this.cpad, 10);
46192         var availWidth = Math.floor(w / vcount);
46193         var b = this.stripBody;
46194         if(b.getWidth() > w){
46195             var tabs = this.items;
46196             this.setTabWidth(Math.max(availWidth, this.minTabWidth)-2);
46197             if(availWidth < this.minTabWidth){
46198                 /*if(!this.sleft){    // incomplete scrolling code
46199                     this.createScrollButtons();
46200                 }
46201                 this.showScroll();
46202                 this.stripClip.setWidth(w - (this.sleft.getWidth()+this.sright.getWidth()));*/
46203             }
46204         }else{
46205             if(this.currentTabWidth < this.preferredTabWidth){
46206                 this.setTabWidth(Math.min(availWidth, this.preferredTabWidth)-2);
46207             }
46208         }
46209     },
46210
46211     /**
46212      * Returns the number of tabs in this TabPanel.
46213      * @return {Number}
46214      */
46215      getCount : function(){
46216          return this.items.length;
46217      },
46218
46219     /**
46220      * Resizes all the tabs to the passed width
46221      * @param {Number} The new width
46222      */
46223     setTabWidth : function(width){
46224         this.currentTabWidth = width;
46225         for(var i = 0, len = this.items.length; i < len; i++) {
46226                 if(!this.items[i].isHidden()) {
46227                 this.items[i].setWidth(width);
46228             }
46229         }
46230     },
46231
46232     /**
46233      * Destroys this TabPanel
46234      * @param {Boolean} removeEl (optional) True to remove the element from the DOM as well (defaults to undefined)
46235      */
46236     destroy : function(removeEl){
46237         Roo.EventManager.removeResizeListener(this.onResize, this);
46238         for(var i = 0, len = this.items.length; i < len; i++){
46239             this.items[i].purgeListeners();
46240         }
46241         if(removeEl === true){
46242             this.el.update("");
46243             this.el.remove();
46244         }
46245     },
46246     
46247     createStrip : function(container)
46248     {
46249         var strip = document.createElement("nav");
46250         strip.className = Roo.bootstrap.version == 4 ?
46251             "navbar-light bg-light" : 
46252             "navbar navbar-default"; //"x-tabs-wrap";
46253         container.appendChild(strip);
46254         return strip;
46255     },
46256     
46257     createStripList : function(strip)
46258     {
46259         // div wrapper for retard IE
46260         // returns the "tr" element.
46261         strip.innerHTML = '<ul class="nav nav-tabs" role="tablist"></ul>';
46262         //'<div class="x-tabs-strip-wrap">'+
46263           //  '<table class="x-tabs-strip" cellspacing="0" cellpadding="0" border="0"><tbody><tr>'+
46264           //  '<td class="x-tab-strip-toolbar"></td></tr></tbody></table></div>';
46265         return strip.firstChild; //.firstChild.firstChild.firstChild;
46266     },
46267     createBody : function(container)
46268     {
46269         var body = document.createElement("div");
46270         Roo.id(body, "tab-body");
46271         //Roo.fly(body).addClass("x-tabs-body");
46272         Roo.fly(body).addClass("tab-content");
46273         container.appendChild(body);
46274         return body;
46275     },
46276     createItemBody :function(bodyEl, id){
46277         var body = Roo.getDom(id);
46278         if(!body){
46279             body = document.createElement("div");
46280             body.id = id;
46281         }
46282         //Roo.fly(body).addClass("x-tabs-item-body");
46283         Roo.fly(body).addClass("tab-pane");
46284          bodyEl.insertBefore(body, bodyEl.firstChild);
46285         return body;
46286     },
46287     /** @private */
46288     createStripElements :  function(stripEl, text, closable, tpl)
46289     {
46290         var td = document.createElement("li"); // was td..
46291         td.className = 'nav-item';
46292         
46293         //stripEl.insertBefore(td, stripEl.childNodes[stripEl.childNodes.length-1]);
46294         
46295         
46296         stripEl.appendChild(td);
46297         /*if(closable){
46298             td.className = "x-tabs-closable";
46299             if(!this.closeTpl){
46300                 this.closeTpl = new Roo.Template(
46301                    '<a href="#" class="x-tabs-right"><span class="x-tabs-left"><em class="x-tabs-inner">' +
46302                    '<span unselectable="on"' + (this.disableTooltips ? '' : ' title="{text}"') +' class="x-tabs-text">{text}</span>' +
46303                    '<div unselectable="on" class="close-icon">&#160;</div></em></span></a>'
46304                 );
46305             }
46306             var el = this.closeTpl.overwrite(td, {"text": text});
46307             var close = el.getElementsByTagName("div")[0];
46308             var inner = el.getElementsByTagName("em")[0];
46309             return {"el": el, "close": close, "inner": inner};
46310         } else {
46311         */
46312         // not sure what this is..
46313 //            if(!this.tabTpl){
46314                 //this.tabTpl = new Roo.Template(
46315                 //   '<a href="#" class="x-tabs-right"><span class="x-tabs-left"><em class="x-tabs-inner">' +
46316                 //   '<span unselectable="on"' + (this.disableTooltips ? '' : ' title="{text}"') +' class="x-tabs-text">{text}</span></em></span></a>'
46317                 //);
46318 //                this.tabTpl = new Roo.Template(
46319 //                   '<a href="#">' +
46320 //                   '<span unselectable="on"' +
46321 //                            (this.disableTooltips ? '' : ' title="{text}"') +
46322 //                            ' >{text}</span></a>'
46323 //                );
46324 //                
46325 //            }
46326
46327
46328             var template = tpl || this.tabTpl || false;
46329             
46330             if(!template){
46331                 template =  new Roo.Template(
46332                         Roo.bootstrap.version == 4 ? 
46333                             (
46334                                 '<a class="nav-link" href="#" unselectable="on"' +
46335                                      (this.disableTooltips ? '' : ' title="{text}"') +
46336                                      ' >{text}</a>'
46337                             ) : (
46338                                 '<a class="nav-link" href="#">' +
46339                                 '<span unselectable="on"' +
46340                                          (this.disableTooltips ? '' : ' title="{text}"') +
46341                                     ' >{text}</span></a>'
46342                             )
46343                 );
46344             }
46345             
46346             switch (typeof(template)) {
46347                 case 'object' :
46348                     break;
46349                 case 'string' :
46350                     template = new Roo.Template(template);
46351                     break;
46352                 default :
46353                     break;
46354             }
46355             
46356             var el = template.overwrite(td, {"text": text});
46357             
46358             var inner = el.getElementsByTagName("span")[0];
46359             
46360             return {"el": el, "inner": inner};
46361             
46362     }
46363         
46364     
46365 });
46366
46367 /**
46368  * @class Roo.TabPanelItem
46369  * @extends Roo.util.Observable
46370  * Represents an individual item (tab plus body) in a TabPanel.
46371  * @param {Roo.TabPanel} tabPanel The {@link Roo.TabPanel} this TabPanelItem belongs to
46372  * @param {String} id The id of this TabPanelItem
46373  * @param {String} text The text for the tab of this TabPanelItem
46374  * @param {Boolean} closable True to allow this TabPanelItem to be closable (defaults to false)
46375  */
46376 Roo.bootstrap.panel.TabItem = function(config){
46377     /**
46378      * The {@link Roo.TabPanel} this TabPanelItem belongs to
46379      * @type Roo.TabPanel
46380      */
46381     this.tabPanel = config.panel;
46382     /**
46383      * The id for this TabPanelItem
46384      * @type String
46385      */
46386     this.id = config.id;
46387     /** @private */
46388     this.disabled = false;
46389     /** @private */
46390     this.text = config.text;
46391     /** @private */
46392     this.loaded = false;
46393     this.closable = config.closable;
46394
46395     /**
46396      * The body element for this TabPanelItem.
46397      * @type Roo.Element
46398      */
46399     this.bodyEl = Roo.get(this.tabPanel.createItemBody(this.tabPanel.bodyEl.dom, config.id));
46400     this.bodyEl.setVisibilityMode(Roo.Element.VISIBILITY);
46401     this.bodyEl.setStyle("display", "block");
46402     this.bodyEl.setStyle("zoom", "1");
46403     //this.hideAction();
46404
46405     var els = this.tabPanel.createStripElements(this.tabPanel.stripEl.dom, config.text, config.closable, config.tpl);
46406     /** @private */
46407     this.el = Roo.get(els.el);
46408     this.inner = Roo.get(els.inner, true);
46409      this.textEl = Roo.bootstrap.version == 4 ?
46410         this.el : Roo.get(this.el.dom.firstChild, true);
46411
46412     this.pnode = this.linode = Roo.get(els.el.parentNode, true);
46413     this.status_node = Roo.bootstrap.version == 4 ? this.el : this.linode;
46414
46415     
46416 //    this.el.on("mousedown", this.onTabMouseDown, this);
46417     this.el.on("click", this.onTabClick, this);
46418     /** @private */
46419     if(config.closable){
46420         var c = Roo.get(els.close, true);
46421         c.dom.title = this.closeText;
46422         c.addClassOnOver("close-over");
46423         c.on("click", this.closeClick, this);
46424      }
46425
46426     this.addEvents({
46427          /**
46428          * @event activate
46429          * Fires when this tab becomes the active tab.
46430          * @param {Roo.TabPanel} tabPanel The parent TabPanel
46431          * @param {Roo.TabPanelItem} this
46432          */
46433         "activate": true,
46434         /**
46435          * @event beforeclose
46436          * Fires before this tab is closed. To cancel the close, set cancel to true on e (e.cancel = true).
46437          * @param {Roo.TabPanelItem} this
46438          * @param {Object} e Set cancel to true on this object to cancel the close.
46439          */
46440         "beforeclose": true,
46441         /**
46442          * @event close
46443          * Fires when this tab is closed.
46444          * @param {Roo.TabPanelItem} this
46445          */
46446          "close": true,
46447         /**
46448          * @event deactivate
46449          * Fires when this tab is no longer the active tab.
46450          * @param {Roo.TabPanel} tabPanel The parent TabPanel
46451          * @param {Roo.TabPanelItem} this
46452          */
46453          "deactivate" : true
46454     });
46455     this.hidden = false;
46456
46457     Roo.bootstrap.panel.TabItem.superclass.constructor.call(this);
46458 };
46459
46460 Roo.extend(Roo.bootstrap.panel.TabItem, Roo.util.Observable,
46461            {
46462     purgeListeners : function(){
46463        Roo.util.Observable.prototype.purgeListeners.call(this);
46464        this.el.removeAllListeners();
46465     },
46466     /**
46467      * Shows this TabPanelItem -- this <b>does not</b> deactivate the currently active TabPanelItem.
46468      */
46469     show : function(){
46470         this.status_node.addClass("active");
46471         this.showAction();
46472         if(Roo.isOpera){
46473             this.tabPanel.stripWrap.repaint();
46474         }
46475         this.fireEvent("activate", this.tabPanel, this);
46476     },
46477
46478     /**
46479      * Returns true if this tab is the active tab.
46480      * @return {Boolean}
46481      */
46482     isActive : function(){
46483         return this.tabPanel.getActiveTab() == this;
46484     },
46485
46486     /**
46487      * Hides this TabPanelItem -- if you don't activate another TabPanelItem this could look odd.
46488      */
46489     hide : function(){
46490         this.status_node.removeClass("active");
46491         this.hideAction();
46492         this.fireEvent("deactivate", this.tabPanel, this);
46493     },
46494
46495     hideAction : function(){
46496         this.bodyEl.hide();
46497         this.bodyEl.setStyle("position", "absolute");
46498         this.bodyEl.setLeft("-20000px");
46499         this.bodyEl.setTop("-20000px");
46500     },
46501
46502     showAction : function(){
46503         this.bodyEl.setStyle("position", "relative");
46504         this.bodyEl.setTop("");
46505         this.bodyEl.setLeft("");
46506         this.bodyEl.show();
46507     },
46508
46509     /**
46510      * Set the tooltip for the tab.
46511      * @param {String} tooltip The tab's tooltip
46512      */
46513     setTooltip : function(text){
46514         if(Roo.QuickTips && Roo.QuickTips.isEnabled()){
46515             this.textEl.dom.qtip = text;
46516             this.textEl.dom.removeAttribute('title');
46517         }else{
46518             this.textEl.dom.title = text;
46519         }
46520     },
46521
46522     onTabClick : function(e){
46523         e.preventDefault();
46524         this.tabPanel.activate(this.id);
46525     },
46526
46527     onTabMouseDown : function(e){
46528         e.preventDefault();
46529         this.tabPanel.activate(this.id);
46530     },
46531 /*
46532     getWidth : function(){
46533         return this.inner.getWidth();
46534     },
46535
46536     setWidth : function(width){
46537         var iwidth = width - this.linode.getPadding("lr");
46538         this.inner.setWidth(iwidth);
46539         this.textEl.setWidth(iwidth-this.inner.getPadding("lr"));
46540         this.linode.setWidth(width);
46541     },
46542 */
46543     /**
46544      * Show or hide the tab
46545      * @param {Boolean} hidden True to hide or false to show.
46546      */
46547     setHidden : function(hidden){
46548         this.hidden = hidden;
46549         this.linode.setStyle("display", hidden ? "none" : "");
46550     },
46551
46552     /**
46553      * Returns true if this tab is "hidden"
46554      * @return {Boolean}
46555      */
46556     isHidden : function(){
46557         return this.hidden;
46558     },
46559
46560     /**
46561      * Returns the text for this tab
46562      * @return {String}
46563      */
46564     getText : function(){
46565         return this.text;
46566     },
46567     /*
46568     autoSize : function(){
46569         //this.el.beginMeasure();
46570         this.textEl.setWidth(1);
46571         /*
46572          *  #2804 [new] Tabs in Roojs
46573          *  increase the width by 2-4 pixels to prevent the ellipssis showing in chrome
46574          */
46575         //this.setWidth(this.textEl.dom.scrollWidth+this.linode.getPadding("lr")+this.inner.getPadding("lr") + 2);
46576         //this.el.endMeasure();
46577     //},
46578
46579     /**
46580      * Sets the text for the tab (Note: this also sets the tooltip text)
46581      * @param {String} text The tab's text and tooltip
46582      */
46583     setText : function(text){
46584         this.text = text;
46585         this.textEl.update(text);
46586         this.setTooltip(text);
46587         //if(!this.tabPanel.resizeTabs){
46588         //    this.autoSize();
46589         //}
46590     },
46591     /**
46592      * Activates this TabPanelItem -- this <b>does</b> deactivate the currently active TabPanelItem.
46593      */
46594     activate : function(){
46595         this.tabPanel.activate(this.id);
46596     },
46597
46598     /**
46599      * Disables this TabPanelItem -- this does nothing if this is the active TabPanelItem.
46600      */
46601     disable : function(){
46602         if(this.tabPanel.active != this){
46603             this.disabled = true;
46604             this.status_node.addClass("disabled");
46605         }
46606     },
46607
46608     /**
46609      * Enables this TabPanelItem if it was previously disabled.
46610      */
46611     enable : function(){
46612         this.disabled = false;
46613         this.status_node.removeClass("disabled");
46614     },
46615
46616     /**
46617      * Sets the content for this TabPanelItem.
46618      * @param {String} content The content
46619      * @param {Boolean} loadScripts true to look for and load scripts
46620      */
46621     setContent : function(content, loadScripts){
46622         this.bodyEl.update(content, loadScripts);
46623     },
46624
46625     /**
46626      * Gets the {@link Roo.UpdateManager} for the body of this TabPanelItem. Enables you to perform Ajax updates.
46627      * @return {Roo.UpdateManager} The UpdateManager
46628      */
46629     getUpdateManager : function(){
46630         return this.bodyEl.getUpdateManager();
46631     },
46632
46633     /**
46634      * Set a URL to be used to load the content for this TabPanelItem.
46635      * @param {String/Function} url The URL to load the content from, or a function to call to get the URL
46636      * @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)
46637      * @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)
46638      * @return {Roo.UpdateManager} The UpdateManager
46639      */
46640     setUrl : function(url, params, loadOnce){
46641         if(this.refreshDelegate){
46642             this.un('activate', this.refreshDelegate);
46643         }
46644         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
46645         this.on("activate", this.refreshDelegate);
46646         return this.bodyEl.getUpdateManager();
46647     },
46648
46649     /** @private */
46650     _handleRefresh : function(url, params, loadOnce){
46651         if(!loadOnce || !this.loaded){
46652             var updater = this.bodyEl.getUpdateManager();
46653             updater.update(url, params, this._setLoaded.createDelegate(this));
46654         }
46655     },
46656
46657     /**
46658      *   Forces a content refresh from the URL specified in the {@link #setUrl} method.
46659      *   Will fail silently if the setUrl method has not been called.
46660      *   This does not activate the panel, just updates its content.
46661      */
46662     refresh : function(){
46663         if(this.refreshDelegate){
46664            this.loaded = false;
46665            this.refreshDelegate();
46666         }
46667     },
46668
46669     /** @private */
46670     _setLoaded : function(){
46671         this.loaded = true;
46672     },
46673
46674     /** @private */
46675     closeClick : function(e){
46676         var o = {};
46677         e.stopEvent();
46678         this.fireEvent("beforeclose", this, o);
46679         if(o.cancel !== true){
46680             this.tabPanel.removeTab(this.id);
46681         }
46682     },
46683     /**
46684      * The text displayed in the tooltip for the close icon.
46685      * @type String
46686      */
46687     closeText : "Close this tab"
46688 });
46689 /**
46690 *    This script refer to:
46691 *    Title: International Telephone Input
46692 *    Author: Jack O'Connor
46693 *    Code version:  v12.1.12
46694 *    Availability: https://github.com/jackocnr/intl-tel-input.git
46695 **/
46696
46697 Roo.bootstrap.form.PhoneInputData = function() {
46698     var d = [
46699       [
46700         "Afghanistan (‫افغانستان‬‎)",
46701         "af",
46702         "93"
46703       ],
46704       [
46705         "Albania (Shqipëri)",
46706         "al",
46707         "355"
46708       ],
46709       [
46710         "Algeria (‫الجزائر‬‎)",
46711         "dz",
46712         "213"
46713       ],
46714       [
46715         "American Samoa",
46716         "as",
46717         "1684"
46718       ],
46719       [
46720         "Andorra",
46721         "ad",
46722         "376"
46723       ],
46724       [
46725         "Angola",
46726         "ao",
46727         "244"
46728       ],
46729       [
46730         "Anguilla",
46731         "ai",
46732         "1264"
46733       ],
46734       [
46735         "Antigua and Barbuda",
46736         "ag",
46737         "1268"
46738       ],
46739       [
46740         "Argentina",
46741         "ar",
46742         "54"
46743       ],
46744       [
46745         "Armenia (Հայաստան)",
46746         "am",
46747         "374"
46748       ],
46749       [
46750         "Aruba",
46751         "aw",
46752         "297"
46753       ],
46754       [
46755         "Australia",
46756         "au",
46757         "61",
46758         0
46759       ],
46760       [
46761         "Austria (Österreich)",
46762         "at",
46763         "43"
46764       ],
46765       [
46766         "Azerbaijan (Azərbaycan)",
46767         "az",
46768         "994"
46769       ],
46770       [
46771         "Bahamas",
46772         "bs",
46773         "1242"
46774       ],
46775       [
46776         "Bahrain (‫البحرين‬‎)",
46777         "bh",
46778         "973"
46779       ],
46780       [
46781         "Bangladesh (বাংলাদেশ)",
46782         "bd",
46783         "880"
46784       ],
46785       [
46786         "Barbados",
46787         "bb",
46788         "1246"
46789       ],
46790       [
46791         "Belarus (Беларусь)",
46792         "by",
46793         "375"
46794       ],
46795       [
46796         "Belgium (België)",
46797         "be",
46798         "32"
46799       ],
46800       [
46801         "Belize",
46802         "bz",
46803         "501"
46804       ],
46805       [
46806         "Benin (Bénin)",
46807         "bj",
46808         "229"
46809       ],
46810       [
46811         "Bermuda",
46812         "bm",
46813         "1441"
46814       ],
46815       [
46816         "Bhutan (འབྲུག)",
46817         "bt",
46818         "975"
46819       ],
46820       [
46821         "Bolivia",
46822         "bo",
46823         "591"
46824       ],
46825       [
46826         "Bosnia and Herzegovina (Босна и Херцеговина)",
46827         "ba",
46828         "387"
46829       ],
46830       [
46831         "Botswana",
46832         "bw",
46833         "267"
46834       ],
46835       [
46836         "Brazil (Brasil)",
46837         "br",
46838         "55"
46839       ],
46840       [
46841         "British Indian Ocean Territory",
46842         "io",
46843         "246"
46844       ],
46845       [
46846         "British Virgin Islands",
46847         "vg",
46848         "1284"
46849       ],
46850       [
46851         "Brunei",
46852         "bn",
46853         "673"
46854       ],
46855       [
46856         "Bulgaria (България)",
46857         "bg",
46858         "359"
46859       ],
46860       [
46861         "Burkina Faso",
46862         "bf",
46863         "226"
46864       ],
46865       [
46866         "Burundi (Uburundi)",
46867         "bi",
46868         "257"
46869       ],
46870       [
46871         "Cambodia (កម្ពុជា)",
46872         "kh",
46873         "855"
46874       ],
46875       [
46876         "Cameroon (Cameroun)",
46877         "cm",
46878         "237"
46879       ],
46880       [
46881         "Canada",
46882         "ca",
46883         "1",
46884         1,
46885         ["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"]
46886       ],
46887       [
46888         "Cape Verde (Kabu Verdi)",
46889         "cv",
46890         "238"
46891       ],
46892       [
46893         "Caribbean Netherlands",
46894         "bq",
46895         "599",
46896         1
46897       ],
46898       [
46899         "Cayman Islands",
46900         "ky",
46901         "1345"
46902       ],
46903       [
46904         "Central African Republic (République centrafricaine)",
46905         "cf",
46906         "236"
46907       ],
46908       [
46909         "Chad (Tchad)",
46910         "td",
46911         "235"
46912       ],
46913       [
46914         "Chile",
46915         "cl",
46916         "56"
46917       ],
46918       [
46919         "China (中国)",
46920         "cn",
46921         "86"
46922       ],
46923       [
46924         "Christmas Island",
46925         "cx",
46926         "61",
46927         2
46928       ],
46929       [
46930         "Cocos (Keeling) Islands",
46931         "cc",
46932         "61",
46933         1
46934       ],
46935       [
46936         "Colombia",
46937         "co",
46938         "57"
46939       ],
46940       [
46941         "Comoros (‫جزر القمر‬‎)",
46942         "km",
46943         "269"
46944       ],
46945       [
46946         "Congo (DRC) (Jamhuri ya Kidemokrasia ya Kongo)",
46947         "cd",
46948         "243"
46949       ],
46950       [
46951         "Congo (Republic) (Congo-Brazzaville)",
46952         "cg",
46953         "242"
46954       ],
46955       [
46956         "Cook Islands",
46957         "ck",
46958         "682"
46959       ],
46960       [
46961         "Costa Rica",
46962         "cr",
46963         "506"
46964       ],
46965       [
46966         "Côte d’Ivoire",
46967         "ci",
46968         "225"
46969       ],
46970       [
46971         "Croatia (Hrvatska)",
46972         "hr",
46973         "385"
46974       ],
46975       [
46976         "Cuba",
46977         "cu",
46978         "53"
46979       ],
46980       [
46981         "Curaçao",
46982         "cw",
46983         "599",
46984         0
46985       ],
46986       [
46987         "Cyprus (Κύπρος)",
46988         "cy",
46989         "357"
46990       ],
46991       [
46992         "Czech Republic (Česká republika)",
46993         "cz",
46994         "420"
46995       ],
46996       [
46997         "Denmark (Danmark)",
46998         "dk",
46999         "45"
47000       ],
47001       [
47002         "Djibouti",
47003         "dj",
47004         "253"
47005       ],
47006       [
47007         "Dominica",
47008         "dm",
47009         "1767"
47010       ],
47011       [
47012         "Dominican Republic (República Dominicana)",
47013         "do",
47014         "1",
47015         2,
47016         ["809", "829", "849"]
47017       ],
47018       [
47019         "Ecuador",
47020         "ec",
47021         "593"
47022       ],
47023       [
47024         "Egypt (‫مصر‬‎)",
47025         "eg",
47026         "20"
47027       ],
47028       [
47029         "El Salvador",
47030         "sv",
47031         "503"
47032       ],
47033       [
47034         "Equatorial Guinea (Guinea Ecuatorial)",
47035         "gq",
47036         "240"
47037       ],
47038       [
47039         "Eritrea",
47040         "er",
47041         "291"
47042       ],
47043       [
47044         "Estonia (Eesti)",
47045         "ee",
47046         "372"
47047       ],
47048       [
47049         "Ethiopia",
47050         "et",
47051         "251"
47052       ],
47053       [
47054         "Falkland Islands (Islas Malvinas)",
47055         "fk",
47056         "500"
47057       ],
47058       [
47059         "Faroe Islands (Føroyar)",
47060         "fo",
47061         "298"
47062       ],
47063       [
47064         "Fiji",
47065         "fj",
47066         "679"
47067       ],
47068       [
47069         "Finland (Suomi)",
47070         "fi",
47071         "358",
47072         0
47073       ],
47074       [
47075         "France",
47076         "fr",
47077         "33"
47078       ],
47079       [
47080         "French Guiana (Guyane française)",
47081         "gf",
47082         "594"
47083       ],
47084       [
47085         "French Polynesia (Polynésie française)",
47086         "pf",
47087         "689"
47088       ],
47089       [
47090         "Gabon",
47091         "ga",
47092         "241"
47093       ],
47094       [
47095         "Gambia",
47096         "gm",
47097         "220"
47098       ],
47099       [
47100         "Georgia (საქართველო)",
47101         "ge",
47102         "995"
47103       ],
47104       [
47105         "Germany (Deutschland)",
47106         "de",
47107         "49"
47108       ],
47109       [
47110         "Ghana (Gaana)",
47111         "gh",
47112         "233"
47113       ],
47114       [
47115         "Gibraltar",
47116         "gi",
47117         "350"
47118       ],
47119       [
47120         "Greece (Ελλάδα)",
47121         "gr",
47122         "30"
47123       ],
47124       [
47125         "Greenland (Kalaallit Nunaat)",
47126         "gl",
47127         "299"
47128       ],
47129       [
47130         "Grenada",
47131         "gd",
47132         "1473"
47133       ],
47134       [
47135         "Guadeloupe",
47136         "gp",
47137         "590",
47138         0
47139       ],
47140       [
47141         "Guam",
47142         "gu",
47143         "1671"
47144       ],
47145       [
47146         "Guatemala",
47147         "gt",
47148         "502"
47149       ],
47150       [
47151         "Guernsey",
47152         "gg",
47153         "44",
47154         1
47155       ],
47156       [
47157         "Guinea (Guinée)",
47158         "gn",
47159         "224"
47160       ],
47161       [
47162         "Guinea-Bissau (Guiné Bissau)",
47163         "gw",
47164         "245"
47165       ],
47166       [
47167         "Guyana",
47168         "gy",
47169         "592"
47170       ],
47171       [
47172         "Haiti",
47173         "ht",
47174         "509"
47175       ],
47176       [
47177         "Honduras",
47178         "hn",
47179         "504"
47180       ],
47181       [
47182         "Hong Kong (香港)",
47183         "hk",
47184         "852"
47185       ],
47186       [
47187         "Hungary (Magyarország)",
47188         "hu",
47189         "36"
47190       ],
47191       [
47192         "Iceland (Ísland)",
47193         "is",
47194         "354"
47195       ],
47196       [
47197         "India (भारत)",
47198         "in",
47199         "91"
47200       ],
47201       [
47202         "Indonesia",
47203         "id",
47204         "62"
47205       ],
47206       [
47207         "Iran (‫ایران‬‎)",
47208         "ir",
47209         "98"
47210       ],
47211       [
47212         "Iraq (‫العراق‬‎)",
47213         "iq",
47214         "964"
47215       ],
47216       [
47217         "Ireland",
47218         "ie",
47219         "353"
47220       ],
47221       [
47222         "Isle of Man",
47223         "im",
47224         "44",
47225         2
47226       ],
47227       [
47228         "Israel (‫ישראל‬‎)",
47229         "il",
47230         "972"
47231       ],
47232       [
47233         "Italy (Italia)",
47234         "it",
47235         "39",
47236         0
47237       ],
47238       [
47239         "Jamaica",
47240         "jm",
47241         "1876"
47242       ],
47243       [
47244         "Japan (日本)",
47245         "jp",
47246         "81"
47247       ],
47248       [
47249         "Jersey",
47250         "je",
47251         "44",
47252         3
47253       ],
47254       [
47255         "Jordan (‫الأردن‬‎)",
47256         "jo",
47257         "962"
47258       ],
47259       [
47260         "Kazakhstan (Казахстан)",
47261         "kz",
47262         "7",
47263         1
47264       ],
47265       [
47266         "Kenya",
47267         "ke",
47268         "254"
47269       ],
47270       [
47271         "Kiribati",
47272         "ki",
47273         "686"
47274       ],
47275       [
47276         "Kosovo",
47277         "xk",
47278         "383"
47279       ],
47280       [
47281         "Kuwait (‫الكويت‬‎)",
47282         "kw",
47283         "965"
47284       ],
47285       [
47286         "Kyrgyzstan (Кыргызстан)",
47287         "kg",
47288         "996"
47289       ],
47290       [
47291         "Laos (ລາວ)",
47292         "la",
47293         "856"
47294       ],
47295       [
47296         "Latvia (Latvija)",
47297         "lv",
47298         "371"
47299       ],
47300       [
47301         "Lebanon (‫لبنان‬‎)",
47302         "lb",
47303         "961"
47304       ],
47305       [
47306         "Lesotho",
47307         "ls",
47308         "266"
47309       ],
47310       [
47311         "Liberia",
47312         "lr",
47313         "231"
47314       ],
47315       [
47316         "Libya (‫ليبيا‬‎)",
47317         "ly",
47318         "218"
47319       ],
47320       [
47321         "Liechtenstein",
47322         "li",
47323         "423"
47324       ],
47325       [
47326         "Lithuania (Lietuva)",
47327         "lt",
47328         "370"
47329       ],
47330       [
47331         "Luxembourg",
47332         "lu",
47333         "352"
47334       ],
47335       [
47336         "Macau (澳門)",
47337         "mo",
47338         "853"
47339       ],
47340       [
47341         "Macedonia (FYROM) (Македонија)",
47342         "mk",
47343         "389"
47344       ],
47345       [
47346         "Madagascar (Madagasikara)",
47347         "mg",
47348         "261"
47349       ],
47350       [
47351         "Malawi",
47352         "mw",
47353         "265"
47354       ],
47355       [
47356         "Malaysia",
47357         "my",
47358         "60"
47359       ],
47360       [
47361         "Maldives",
47362         "mv",
47363         "960"
47364       ],
47365       [
47366         "Mali",
47367         "ml",
47368         "223"
47369       ],
47370       [
47371         "Malta",
47372         "mt",
47373         "356"
47374       ],
47375       [
47376         "Marshall Islands",
47377         "mh",
47378         "692"
47379       ],
47380       [
47381         "Martinique",
47382         "mq",
47383         "596"
47384       ],
47385       [
47386         "Mauritania (‫موريتانيا‬‎)",
47387         "mr",
47388         "222"
47389       ],
47390       [
47391         "Mauritius (Moris)",
47392         "mu",
47393         "230"
47394       ],
47395       [
47396         "Mayotte",
47397         "yt",
47398         "262",
47399         1
47400       ],
47401       [
47402         "Mexico (México)",
47403         "mx",
47404         "52"
47405       ],
47406       [
47407         "Micronesia",
47408         "fm",
47409         "691"
47410       ],
47411       [
47412         "Moldova (Republica Moldova)",
47413         "md",
47414         "373"
47415       ],
47416       [
47417         "Monaco",
47418         "mc",
47419         "377"
47420       ],
47421       [
47422         "Mongolia (Монгол)",
47423         "mn",
47424         "976"
47425       ],
47426       [
47427         "Montenegro (Crna Gora)",
47428         "me",
47429         "382"
47430       ],
47431       [
47432         "Montserrat",
47433         "ms",
47434         "1664"
47435       ],
47436       [
47437         "Morocco (‫المغرب‬‎)",
47438         "ma",
47439         "212",
47440         0
47441       ],
47442       [
47443         "Mozambique (Moçambique)",
47444         "mz",
47445         "258"
47446       ],
47447       [
47448         "Myanmar (Burma) (မြန်မာ)",
47449         "mm",
47450         "95"
47451       ],
47452       [
47453         "Namibia (Namibië)",
47454         "na",
47455         "264"
47456       ],
47457       [
47458         "Nauru",
47459         "nr",
47460         "674"
47461       ],
47462       [
47463         "Nepal (नेपाल)",
47464         "np",
47465         "977"
47466       ],
47467       [
47468         "Netherlands (Nederland)",
47469         "nl",
47470         "31"
47471       ],
47472       [
47473         "New Caledonia (Nouvelle-Calédonie)",
47474         "nc",
47475         "687"
47476       ],
47477       [
47478         "New Zealand",
47479         "nz",
47480         "64"
47481       ],
47482       [
47483         "Nicaragua",
47484         "ni",
47485         "505"
47486       ],
47487       [
47488         "Niger (Nijar)",
47489         "ne",
47490         "227"
47491       ],
47492       [
47493         "Nigeria",
47494         "ng",
47495         "234"
47496       ],
47497       [
47498         "Niue",
47499         "nu",
47500         "683"
47501       ],
47502       [
47503         "Norfolk Island",
47504         "nf",
47505         "672"
47506       ],
47507       [
47508         "North Korea (조선 민주주의 인민 공화국)",
47509         "kp",
47510         "850"
47511       ],
47512       [
47513         "Northern Mariana Islands",
47514         "mp",
47515         "1670"
47516       ],
47517       [
47518         "Norway (Norge)",
47519         "no",
47520         "47",
47521         0
47522       ],
47523       [
47524         "Oman (‫عُمان‬‎)",
47525         "om",
47526         "968"
47527       ],
47528       [
47529         "Pakistan (‫پاکستان‬‎)",
47530         "pk",
47531         "92"
47532       ],
47533       [
47534         "Palau",
47535         "pw",
47536         "680"
47537       ],
47538       [
47539         "Palestine (‫فلسطين‬‎)",
47540         "ps",
47541         "970"
47542       ],
47543       [
47544         "Panama (Panamá)",
47545         "pa",
47546         "507"
47547       ],
47548       [
47549         "Papua New Guinea",
47550         "pg",
47551         "675"
47552       ],
47553       [
47554         "Paraguay",
47555         "py",
47556         "595"
47557       ],
47558       [
47559         "Peru (Perú)",
47560         "pe",
47561         "51"
47562       ],
47563       [
47564         "Philippines",
47565         "ph",
47566         "63"
47567       ],
47568       [
47569         "Poland (Polska)",
47570         "pl",
47571         "48"
47572       ],
47573       [
47574         "Portugal",
47575         "pt",
47576         "351"
47577       ],
47578       [
47579         "Puerto Rico",
47580         "pr",
47581         "1",
47582         3,
47583         ["787", "939"]
47584       ],
47585       [
47586         "Qatar (‫قطر‬‎)",
47587         "qa",
47588         "974"
47589       ],
47590       [
47591         "Réunion (La Réunion)",
47592         "re",
47593         "262",
47594         0
47595       ],
47596       [
47597         "Romania (România)",
47598         "ro",
47599         "40"
47600       ],
47601       [
47602         "Russia (Россия)",
47603         "ru",
47604         "7",
47605         0
47606       ],
47607       [
47608         "Rwanda",
47609         "rw",
47610         "250"
47611       ],
47612       [
47613         "Saint Barthélemy",
47614         "bl",
47615         "590",
47616         1
47617       ],
47618       [
47619         "Saint Helena",
47620         "sh",
47621         "290"
47622       ],
47623       [
47624         "Saint Kitts and Nevis",
47625         "kn",
47626         "1869"
47627       ],
47628       [
47629         "Saint Lucia",
47630         "lc",
47631         "1758"
47632       ],
47633       [
47634         "Saint Martin (Saint-Martin (partie française))",
47635         "mf",
47636         "590",
47637         2
47638       ],
47639       [
47640         "Saint Pierre and Miquelon (Saint-Pierre-et-Miquelon)",
47641         "pm",
47642         "508"
47643       ],
47644       [
47645         "Saint Vincent and the Grenadines",
47646         "vc",
47647         "1784"
47648       ],
47649       [
47650         "Samoa",
47651         "ws",
47652         "685"
47653       ],
47654       [
47655         "San Marino",
47656         "sm",
47657         "378"
47658       ],
47659       [
47660         "São Tomé and Príncipe (São Tomé e Príncipe)",
47661         "st",
47662         "239"
47663       ],
47664       [
47665         "Saudi Arabia (‫المملكة العربية السعودية‬‎)",
47666         "sa",
47667         "966"
47668       ],
47669       [
47670         "Senegal (Sénégal)",
47671         "sn",
47672         "221"
47673       ],
47674       [
47675         "Serbia (Србија)",
47676         "rs",
47677         "381"
47678       ],
47679       [
47680         "Seychelles",
47681         "sc",
47682         "248"
47683       ],
47684       [
47685         "Sierra Leone",
47686         "sl",
47687         "232"
47688       ],
47689       [
47690         "Singapore",
47691         "sg",
47692         "65"
47693       ],
47694       [
47695         "Sint Maarten",
47696         "sx",
47697         "1721"
47698       ],
47699       [
47700         "Slovakia (Slovensko)",
47701         "sk",
47702         "421"
47703       ],
47704       [
47705         "Slovenia (Slovenija)",
47706         "si",
47707         "386"
47708       ],
47709       [
47710         "Solomon Islands",
47711         "sb",
47712         "677"
47713       ],
47714       [
47715         "Somalia (Soomaaliya)",
47716         "so",
47717         "252"
47718       ],
47719       [
47720         "South Africa",
47721         "za",
47722         "27"
47723       ],
47724       [
47725         "South Korea (대한민국)",
47726         "kr",
47727         "82"
47728       ],
47729       [
47730         "South Sudan (‫جنوب السودان‬‎)",
47731         "ss",
47732         "211"
47733       ],
47734       [
47735         "Spain (España)",
47736         "es",
47737         "34"
47738       ],
47739       [
47740         "Sri Lanka (ශ්‍රී ලංකාව)",
47741         "lk",
47742         "94"
47743       ],
47744       [
47745         "Sudan (‫السودان‬‎)",
47746         "sd",
47747         "249"
47748       ],
47749       [
47750         "Suriname",
47751         "sr",
47752         "597"
47753       ],
47754       [
47755         "Svalbard and Jan Mayen",
47756         "sj",
47757         "47",
47758         1
47759       ],
47760       [
47761         "Swaziland",
47762         "sz",
47763         "268"
47764       ],
47765       [
47766         "Sweden (Sverige)",
47767         "se",
47768         "46"
47769       ],
47770       [
47771         "Switzerland (Schweiz)",
47772         "ch",
47773         "41"
47774       ],
47775       [
47776         "Syria (‫سوريا‬‎)",
47777         "sy",
47778         "963"
47779       ],
47780       [
47781         "Taiwan (台灣)",
47782         "tw",
47783         "886"
47784       ],
47785       [
47786         "Tajikistan",
47787         "tj",
47788         "992"
47789       ],
47790       [
47791         "Tanzania",
47792         "tz",
47793         "255"
47794       ],
47795       [
47796         "Thailand (ไทย)",
47797         "th",
47798         "66"
47799       ],
47800       [
47801         "Timor-Leste",
47802         "tl",
47803         "670"
47804       ],
47805       [
47806         "Togo",
47807         "tg",
47808         "228"
47809       ],
47810       [
47811         "Tokelau",
47812         "tk",
47813         "690"
47814       ],
47815       [
47816         "Tonga",
47817         "to",
47818         "676"
47819       ],
47820       [
47821         "Trinidad and Tobago",
47822         "tt",
47823         "1868"
47824       ],
47825       [
47826         "Tunisia (‫تونس‬‎)",
47827         "tn",
47828         "216"
47829       ],
47830       [
47831         "Turkey (Türkiye)",
47832         "tr",
47833         "90"
47834       ],
47835       [
47836         "Turkmenistan",
47837         "tm",
47838         "993"
47839       ],
47840       [
47841         "Turks and Caicos Islands",
47842         "tc",
47843         "1649"
47844       ],
47845       [
47846         "Tuvalu",
47847         "tv",
47848         "688"
47849       ],
47850       [
47851         "U.S. Virgin Islands",
47852         "vi",
47853         "1340"
47854       ],
47855       [
47856         "Uganda",
47857         "ug",
47858         "256"
47859       ],
47860       [
47861         "Ukraine (Україна)",
47862         "ua",
47863         "380"
47864       ],
47865       [
47866         "United Arab Emirates (‫الإمارات العربية المتحدة‬‎)",
47867         "ae",
47868         "971"
47869       ],
47870       [
47871         "United Kingdom",
47872         "gb",
47873         "44",
47874         0
47875       ],
47876       [
47877         "United States",
47878         "us",
47879         "1",
47880         0
47881       ],
47882       [
47883         "Uruguay",
47884         "uy",
47885         "598"
47886       ],
47887       [
47888         "Uzbekistan (Oʻzbekiston)",
47889         "uz",
47890         "998"
47891       ],
47892       [
47893         "Vanuatu",
47894         "vu",
47895         "678"
47896       ],
47897       [
47898         "Vatican City (Città del Vaticano)",
47899         "va",
47900         "39",
47901         1
47902       ],
47903       [
47904         "Venezuela",
47905         "ve",
47906         "58"
47907       ],
47908       [
47909         "Vietnam (Việt Nam)",
47910         "vn",
47911         "84"
47912       ],
47913       [
47914         "Wallis and Futuna (Wallis-et-Futuna)",
47915         "wf",
47916         "681"
47917       ],
47918       [
47919         "Western Sahara (‫الصحراء الغربية‬‎)",
47920         "eh",
47921         "212",
47922         1
47923       ],
47924       [
47925         "Yemen (‫اليمن‬‎)",
47926         "ye",
47927         "967"
47928       ],
47929       [
47930         "Zambia",
47931         "zm",
47932         "260"
47933       ],
47934       [
47935         "Zimbabwe",
47936         "zw",
47937         "263"
47938       ],
47939       [
47940         "Åland Islands",
47941         "ax",
47942         "358",
47943         1
47944       ]
47945   ];
47946   
47947   return d;
47948 }/**
47949 *    This script refer to:
47950 *    Title: International Telephone Input
47951 *    Author: Jack O'Connor
47952 *    Code version:  v12.1.12
47953 *    Availability: https://github.com/jackocnr/intl-tel-input.git
47954 **/
47955
47956 /**
47957  * @class Roo.bootstrap.form.PhoneInput
47958  * @extends Roo.bootstrap.form.TriggerField
47959  * An input with International dial-code selection
47960  
47961  * @cfg {String} defaultDialCode default '+852'
47962  * @cfg {Array} preferedCountries default []
47963   
47964  * @constructor
47965  * Create a new PhoneInput.
47966  * @param {Object} config Configuration options
47967  */
47968
47969 Roo.bootstrap.form.PhoneInput = function(config) {
47970     Roo.bootstrap.form.PhoneInput.superclass.constructor.call(this, config);
47971 };
47972
47973 Roo.extend(Roo.bootstrap.form.PhoneInput, Roo.bootstrap.form.TriggerField, {
47974         /**
47975         * @cfg {Roo.data.Store} store [required] The data store to which this combo is bound (defaults to undefined)
47976         */
47977         listWidth: undefined,
47978         
47979         selectedClass: 'active',
47980         
47981         invalidClass : "has-warning",
47982         
47983         validClass: 'has-success',
47984         
47985         allowed: '0123456789',
47986         
47987         max_length: 15,
47988         
47989         /**
47990          * @cfg {String} defaultDialCode The default dial code when initializing the input
47991          */
47992         defaultDialCode: '+852',
47993         
47994         /**
47995          * @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
47996          */
47997         preferedCountries: false,
47998         
47999         getAutoCreate : function()
48000         {
48001             var data = Roo.bootstrap.form.PhoneInputData();
48002             var align = this.labelAlign || this.parentLabelAlign();
48003             var id = Roo.id();
48004             
48005             this.allCountries = [];
48006             this.dialCodeMapping = [];
48007             
48008             for (var i = 0; i < data.length; i++) {
48009               var c = data[i];
48010               this.allCountries[i] = {
48011                 name: c[0],
48012                 iso2: c[1],
48013                 dialCode: c[2],
48014                 priority: c[3] || 0,
48015                 areaCodes: c[4] || null
48016               };
48017               this.dialCodeMapping[c[2]] = {
48018                   name: c[0],
48019                   iso2: c[1],
48020                   priority: c[3] || 0,
48021                   areaCodes: c[4] || null
48022               };
48023             }
48024             
48025             var cfg = {
48026                 cls: 'form-group',
48027                 cn: []
48028             };
48029             
48030             var input =  {
48031                 tag: 'input',
48032                 id : id,
48033                 // type: 'number', -- do not use number - we get the flaky up/down arrows.
48034                 maxlength: this.max_length,
48035                 cls : 'form-control tel-input',
48036                 autocomplete: 'new-password'
48037             };
48038             
48039             var hiddenInput = {
48040                 tag: 'input',
48041                 type: 'hidden',
48042                 cls: 'hidden-tel-input'
48043             };
48044             
48045             if (this.name) {
48046                 hiddenInput.name = this.name;
48047             }
48048             
48049             if (this.disabled) {
48050                 input.disabled = true;
48051             }
48052             
48053             var flag_container = {
48054                 tag: 'div',
48055                 cls: 'flag-box',
48056                 cn: [
48057                     {
48058                         tag: 'div',
48059                         cls: 'flag'
48060                     },
48061                     {
48062                         tag: 'div',
48063                         cls: 'caret'
48064                     }
48065                 ]
48066             };
48067             
48068             var box = {
48069                 tag: 'div',
48070                 cls: this.hasFeedback ? 'has-feedback' : '',
48071                 cn: [
48072                     hiddenInput,
48073                     input,
48074                     {
48075                         tag: 'input',
48076                         cls: 'dial-code-holder',
48077                         disabled: true
48078                     }
48079                 ]
48080             };
48081             
48082             var container = {
48083                 cls: 'roo-select2-container input-group',
48084                 cn: [
48085                     flag_container,
48086                     box
48087                 ]
48088             };
48089             
48090             if (this.fieldLabel.length) {
48091                 var indicator = {
48092                     tag: 'i',
48093                     tooltip: 'This field is required'
48094                 };
48095                 
48096                 var label = {
48097                     tag: 'label',
48098                     'for':  id,
48099                     cls: 'control-label',
48100                     cn: []
48101                 };
48102                 
48103                 var label_text = {
48104                     tag: 'span',
48105                     html: this.fieldLabel
48106                 };
48107                 
48108                 indicator.cls = 'roo-required-indicator text-danger fa fa-lg fa-star left-indicator';
48109                 label.cn = [
48110                     indicator,
48111                     label_text
48112                 ];
48113                 
48114                 if(this.indicatorpos == 'right') {
48115                     indicator.cls = 'roo-required-indicator text-danger fa fa-lg fa-star right-indicator';
48116                     label.cn = [
48117                         label_text,
48118                         indicator
48119                     ];
48120                 }
48121                 
48122                 if(align == 'left') {
48123                     container = {
48124                         tag: 'div',
48125                         cn: [
48126                             container
48127                         ]
48128                     };
48129                     
48130                     if(this.labelWidth > 12){
48131                         label.style = "width: " + this.labelWidth + 'px';
48132                     }
48133                     if(this.labelWidth < 13 && this.labelmd == 0){
48134                         this.labelmd = this.labelWidth;
48135                     }
48136                     if(this.labellg > 0){
48137                         label.cls += ' col-lg-' + this.labellg;
48138                         input.cls += ' col-lg-' + (12 - this.labellg);
48139                     }
48140                     if(this.labelmd > 0){
48141                         label.cls += ' col-md-' + this.labelmd;
48142                         container.cls += ' col-md-' + (12 - this.labelmd);
48143                     }
48144                     if(this.labelsm > 0){
48145                         label.cls += ' col-sm-' + this.labelsm;
48146                         container.cls += ' col-sm-' + (12 - this.labelsm);
48147                     }
48148                     if(this.labelxs > 0){
48149                         label.cls += ' col-xs-' + this.labelxs;
48150                         container.cls += ' col-xs-' + (12 - this.labelxs);
48151                     }
48152                 }
48153             }
48154             
48155             cfg.cn = [
48156                 label,
48157                 container
48158             ];
48159             
48160             var settings = this;
48161             
48162             ['xs','sm','md','lg'].map(function(size){
48163                 if (settings[size]) {
48164                     cfg.cls += ' col-' + size + '-' + settings[size];
48165                 }
48166             });
48167             
48168             this.store = new Roo.data.Store({
48169                 proxy : new Roo.data.MemoryProxy({}),
48170                 reader : new Roo.data.JsonReader({
48171                     fields : [
48172                         {
48173                             'name' : 'name',
48174                             'type' : 'string'
48175                         },
48176                         {
48177                             'name' : 'iso2',
48178                             'type' : 'string'
48179                         },
48180                         {
48181                             'name' : 'dialCode',
48182                             'type' : 'string'
48183                         },
48184                         {
48185                             'name' : 'priority',
48186                             'type' : 'string'
48187                         },
48188                         {
48189                             'name' : 'areaCodes',
48190                             'type' : 'string'
48191                         }
48192                     ]
48193                 })
48194             });
48195             
48196             if(!this.preferedCountries) {
48197                 this.preferedCountries = [
48198                     'hk',
48199                     'gb',
48200                     'us'
48201                 ];
48202             }
48203             
48204             var p = this.preferedCountries.reverse();
48205             
48206             if(p) {
48207                 for (var i = 0; i < p.length; i++) {
48208                     for (var j = 0; j < this.allCountries.length; j++) {
48209                         if(this.allCountries[j].iso2 == p[i]) {
48210                             var t = this.allCountries[j];
48211                             this.allCountries.splice(j,1);
48212                             this.allCountries.unshift(t);
48213                         }
48214                     } 
48215                 }
48216             }
48217             
48218             this.store.proxy.data = {
48219                 success: true,
48220                 data: this.allCountries
48221             };
48222             
48223             return cfg;
48224         },
48225         
48226         initEvents : function()
48227         {
48228             this.createList();
48229             Roo.bootstrap.form.PhoneInput.superclass.initEvents.call(this);
48230             
48231             this.indicator = this.indicatorEl();
48232             this.flag = this.flagEl();
48233             this.dialCodeHolder = this.dialCodeHolderEl();
48234             
48235             this.trigger = this.el.select('div.flag-box',true).first();
48236             this.trigger.on("click", this.onTriggerClick, this, {preventDefault:true});
48237             
48238             var _this = this;
48239             
48240             (function(){
48241                 var lw = _this.listWidth || Math.max(_this.inputEl().getWidth(), _this.minListWidth);
48242                 _this.list.setWidth(lw);
48243             }).defer(100);
48244             
48245             this.list.on('mouseover', this.onViewOver, this);
48246             this.list.on('mousemove', this.onViewMove, this);
48247             this.inputEl().on("keyup", this.onKeyUp, this);
48248             this.inputEl().on("keypress", this.onKeyPress, this);
48249             
48250             this.tpl = '<li><a href="#"><div class="flag {iso2}"></div>{name} <span class="dial-code">+{dialCode}</span></a></li>';
48251
48252             this.view = new Roo.View(this.list, this.tpl, {
48253                 singleSelect:true, store: this.store, selectedClass: this.selectedClass
48254             });
48255             
48256             this.view.on('click', this.onViewClick, this);
48257             this.setValue(this.defaultDialCode);
48258         },
48259         
48260         onTriggerClick : function(e)
48261         {
48262             Roo.log('trigger click');
48263             if(this.disabled){
48264                 return;
48265             }
48266             
48267             if(this.isExpanded()){
48268                 this.collapse();
48269                 this.hasFocus = false;
48270             }else {
48271                 this.store.load({});
48272                 this.hasFocus = true;
48273                 this.expand();
48274             }
48275         },
48276         
48277         isExpanded : function()
48278         {
48279             return this.list.isVisible();
48280         },
48281         
48282         collapse : function()
48283         {
48284             if(!this.isExpanded()){
48285                 return;
48286             }
48287             this.list.hide();
48288             Roo.get(document).un('mousedown', this.collapseIf, this);
48289             Roo.get(document).un('mousewheel', this.collapseIf, this);
48290             this.fireEvent('collapse', this);
48291             this.validate();
48292         },
48293         
48294         expand : function()
48295         {
48296             Roo.log('expand');
48297
48298             if(this.isExpanded() || !this.hasFocus){
48299                 return;
48300             }
48301             
48302             var lw = this.listWidth || Math.max(this.inputEl().getWidth(), this.minListWidth);
48303             this.list.setWidth(lw);
48304             
48305             this.list.show();
48306             this.restrictHeight();
48307             
48308             Roo.get(document).on('mousedown', this.collapseIf, this);
48309             Roo.get(document).on('mousewheel', this.collapseIf, this);
48310             
48311             this.fireEvent('expand', this);
48312         },
48313         
48314         restrictHeight : function()
48315         {
48316             this.list.alignTo(this.inputEl(), this.listAlign);
48317             this.list.alignTo(this.inputEl(), this.listAlign);
48318         },
48319         
48320         onViewOver : function(e, t)
48321         {
48322             if(this.inKeyMode){
48323                 return;
48324             }
48325             var item = this.view.findItemFromChild(t);
48326             
48327             if(item){
48328                 var index = this.view.indexOf(item);
48329                 this.select(index, false);
48330             }
48331         },
48332
48333         // private
48334         onViewClick : function(view, doFocus, el, e)
48335         {
48336             var index = this.view.getSelectedIndexes()[0];
48337             
48338             var r = this.store.getAt(index);
48339             
48340             if(r){
48341                 this.onSelect(r, index);
48342             }
48343             if(doFocus !== false && !this.blockFocus){
48344                 this.inputEl().focus();
48345             }
48346         },
48347         
48348         onViewMove : function(e, t)
48349         {
48350             this.inKeyMode = false;
48351         },
48352         
48353         select : function(index, scrollIntoView)
48354         {
48355             this.selectedIndex = index;
48356             this.view.select(index);
48357             if(scrollIntoView !== false){
48358                 var el = this.view.getNode(index);
48359                 if(el){
48360                     this.list.scrollChildIntoView(el, false);
48361                 }
48362             }
48363         },
48364         
48365         createList : function()
48366         {
48367             this.list = Roo.get(document.body).createChild({
48368                 tag: 'ul',
48369                 cls: 'typeahead typeahead-long dropdown-menu tel-list',
48370                 style: 'display:none'
48371             });
48372             
48373             this.list.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
48374         },
48375         
48376         collapseIf : function(e)
48377         {
48378             var in_combo  = e.within(this.el);
48379             var in_list =  e.within(this.list);
48380             var is_list = (Roo.get(e.getTarget()).id == this.list.id) ? true : false;
48381             
48382             if (in_combo || in_list || is_list) {
48383                 return;
48384             }
48385             this.collapse();
48386         },
48387         
48388         onSelect : function(record, index)
48389         {
48390             if(this.fireEvent('beforeselect', this, record, index) !== false){
48391                 
48392                 this.setFlagClass(record.data.iso2);
48393                 this.setDialCode(record.data.dialCode);
48394                 this.hasFocus = false;
48395                 this.collapse();
48396                 this.fireEvent('select', this, record, index);
48397             }
48398         },
48399         
48400         flagEl : function()
48401         {
48402             var flag = this.el.select('div.flag',true).first();
48403             if(!flag){
48404                 return false;
48405             }
48406             return flag;
48407         },
48408         
48409         dialCodeHolderEl : function()
48410         {
48411             var d = this.el.select('input.dial-code-holder',true).first();
48412             if(!d){
48413                 return false;
48414             }
48415             return d;
48416         },
48417         
48418         setDialCode : function(v)
48419         {
48420             this.dialCodeHolder.dom.value = '+'+v;
48421         },
48422         
48423         setFlagClass : function(n)
48424         {
48425             this.flag.dom.className = 'flag '+n;
48426         },
48427         
48428         getValue : function()
48429         {
48430             var v = this.inputEl().getValue();
48431             if(this.dialCodeHolder) {
48432                 v = this.dialCodeHolder.dom.value+this.inputEl().getValue();
48433             }
48434             return v;
48435         },
48436         
48437         setValue : function(v)
48438         {
48439             var d = this.getDialCode(v);
48440             
48441             //invalid dial code
48442             if(v.length == 0 || !d || d.length == 0) {
48443                 if(this.rendered){
48444                     this.inputEl().dom.value = (v === null || v === undefined ? '' : v);
48445                     this.hiddenEl().dom.value = (v === null || v === undefined ? '' : v);
48446                 }
48447                 return;
48448             }
48449             
48450             //valid dial code
48451             this.setFlagClass(this.dialCodeMapping[d].iso2);
48452             this.setDialCode(d);
48453             this.inputEl().dom.value = v.replace('+'+d,'');
48454             this.hiddenEl().dom.value = this.getValue();
48455             
48456             this.validate();
48457         },
48458         
48459         getDialCode : function(v)
48460         {
48461             v = v ||  '';
48462             
48463             if (v.length == 0) {
48464                 return this.dialCodeHolder.dom.value;
48465             }
48466             
48467             var dialCode = "";
48468             if (v.charAt(0) != "+") {
48469                 return false;
48470             }
48471             var numericChars = "";
48472             for (var i = 1; i < v.length; i++) {
48473               var c = v.charAt(i);
48474               if (!isNaN(c)) {
48475                 numericChars += c;
48476                 if (this.dialCodeMapping[numericChars]) {
48477                   dialCode = v.substr(1, i);
48478                 }
48479                 if (numericChars.length == 4) {
48480                   break;
48481                 }
48482               }
48483             }
48484             return dialCode;
48485         },
48486         
48487         reset : function()
48488         {
48489             this.setValue(this.defaultDialCode);
48490             this.validate();
48491         },
48492         
48493         hiddenEl : function()
48494         {
48495             return this.el.select('input.hidden-tel-input',true).first();
48496         },
48497         
48498         // after setting val
48499         onKeyUp : function(e){
48500             this.setValue(this.getValue());
48501         },
48502         
48503         onKeyPress : function(e){
48504             if(this.allowed.indexOf(String.fromCharCode(e.getCharCode())) === -1){
48505                 e.stopEvent();
48506             }
48507         }
48508         
48509 });
48510 /**
48511  * @class Roo.bootstrap.form.MoneyField
48512  * @extends Roo.bootstrap.form.ComboBox
48513  * Bootstrap MoneyField class
48514  * 
48515  * @constructor
48516  * Create a new MoneyField.
48517  * @param {Object} config Configuration options
48518  */
48519
48520 Roo.bootstrap.form.MoneyField = function(config) {
48521     
48522     Roo.bootstrap.form.MoneyField.superclass.constructor.call(this, config);
48523     
48524 };
48525
48526 Roo.extend(Roo.bootstrap.form.MoneyField, Roo.bootstrap.form.ComboBox, {
48527     
48528     /**
48529      * @cfg {Boolean} allowDecimals False to disallow decimal values (defaults to true)
48530      */
48531     allowDecimals : true,
48532     /**
48533      * @cfg {String} decimalSeparator Character(s) to allow as the decimal separator (defaults to '.')
48534      */
48535     decimalSeparator : ".",
48536     /**
48537      * @cfg {Number} decimalPrecision The maximum precision to display after the decimal separator (defaults to 2)
48538      */
48539     decimalPrecision : 0,
48540     /**
48541      * @cfg {Boolean} allowNegative False to prevent entering a negative sign (defaults to true)
48542      */
48543     allowNegative : true,
48544     /**
48545      * @cfg {Boolean} allowZero False to blank out if the user enters '0' (defaults to true)
48546      */
48547     allowZero: true,
48548     /**
48549      * @cfg {Number} minValue The minimum allowed value (defaults to Number.NEGATIVE_INFINITY)
48550      */
48551     minValue : Number.NEGATIVE_INFINITY,
48552     /**
48553      * @cfg {Number} maxValue The maximum allowed value (defaults to Number.MAX_VALUE)
48554      */
48555     maxValue : Number.MAX_VALUE,
48556     /**
48557      * @cfg {String} minText Error text to display if the minimum value validation fails (defaults to "The minimum value for this field is {minValue}")
48558      */
48559     minText : "The minimum value for this field is {0}",
48560     /**
48561      * @cfg {String} maxText Error text to display if the maximum value validation fails (defaults to "The maximum value for this field is {maxValue}")
48562      */
48563     maxText : "The maximum value for this field is {0}",
48564     /**
48565      * @cfg {String} nanText Error text to display if the value is not a valid number.  For example, this can happen
48566      * if a valid character like '.' or '-' is left in the field with no number (defaults to "{value} is not a valid number")
48567      */
48568     nanText : "{0} is not a valid number",
48569     /**
48570      * @cfg {Boolean} castInt (true|false) cast int if true (defalut true)
48571      */
48572     castInt : true,
48573     /**
48574      * @cfg {String} defaults currency of the MoneyField
48575      * value should be in lkey
48576      */
48577     defaultCurrency : false,
48578     /**
48579      * @cfg {String} thousandsDelimiter Symbol of thousandsDelimiter
48580      */
48581     thousandsDelimiter : false,
48582     /**
48583      * @cfg {Number} max_length Maximum input field length allowed (defaults to Number.MAX_VALUE)
48584      */
48585     max_length: false,
48586     
48587     inputlg : 9,
48588     inputmd : 9,
48589     inputsm : 9,
48590     inputxs : 6,
48591      /**
48592      * @cfg {Roo.data.Store} store  Store to lookup currency??
48593      */
48594     store : false,
48595     
48596     getAutoCreate : function()
48597     {
48598         var align = this.labelAlign || this.parentLabelAlign();
48599         
48600         var id = Roo.id();
48601
48602         var cfg = {
48603             cls: 'form-group',
48604             cn: []
48605         };
48606
48607         var input =  {
48608             tag: 'input',
48609             id : id,
48610             cls : 'form-control roo-money-amount-input',
48611             autocomplete: 'new-password'
48612         };
48613         
48614         var hiddenInput = {
48615             tag: 'input',
48616             type: 'hidden',
48617             id: Roo.id(),
48618             cls: 'hidden-number-input'
48619         };
48620         
48621         if(this.max_length) {
48622             input.maxlength = this.max_length; 
48623         }
48624         
48625         if (this.name) {
48626             hiddenInput.name = this.name;
48627         }
48628
48629         if (this.disabled) {
48630             input.disabled = true;
48631         }
48632
48633         var clg = 12 - this.inputlg;
48634         var cmd = 12 - this.inputmd;
48635         var csm = 12 - this.inputsm;
48636         var cxs = 12 - this.inputxs;
48637         
48638         var container = {
48639             tag : 'div',
48640             cls : 'row roo-money-field',
48641             cn : [
48642                 {
48643                     tag : 'div',
48644                     cls : 'roo-money-currency column col-lg-' + clg + ' col-md-' + cmd + ' col-sm-' + csm + ' col-xs-' + cxs,
48645                     cn : [
48646                         {
48647                             tag : 'div',
48648                             cls: 'roo-select2-container input-group',
48649                             cn: [
48650                                 {
48651                                     tag : 'input',
48652                                     cls : 'form-control roo-money-currency-input',
48653                                     autocomplete: 'new-password',
48654                                     readOnly : 1,
48655                                     name : this.currencyName
48656                                 },
48657                                 {
48658                                     tag :'span',
48659                                     cls : 'input-group-addon',
48660                                     cn : [
48661                                         {
48662                                             tag: 'span',
48663                                             cls: 'caret'
48664                                         }
48665                                     ]
48666                                 }
48667                             ]
48668                         }
48669                     ]
48670                 },
48671                 {
48672                     tag : 'div',
48673                     cls : 'roo-money-amount column col-lg-' + this.inputlg + ' col-md-' + this.inputmd + ' col-sm-' + this.inputsm + ' col-xs-' + this.inputxs,
48674                     cn : [
48675                         {
48676                             tag: 'div',
48677                             cls: this.hasFeedback ? 'has-feedback' : '',
48678                             cn: [
48679                                 input
48680                             ]
48681                         }
48682                     ]
48683                 }
48684             ]
48685             
48686         };
48687         
48688         if (this.fieldLabel.length) {
48689             var indicator = {
48690                 tag: 'i',
48691                 tooltip: 'This field is required'
48692             };
48693
48694             var label = {
48695                 tag: 'label',
48696                 'for':  id,
48697                 cls: 'control-label',
48698                 cn: []
48699             };
48700
48701             var label_text = {
48702                 tag: 'span',
48703                 html: this.fieldLabel
48704             };
48705
48706             indicator.cls = 'roo-required-indicator text-danger fa fa-lg fa-star left-indicator';
48707             label.cn = [
48708                 indicator,
48709                 label_text
48710             ];
48711
48712             if(this.indicatorpos == 'right') {
48713                 indicator.cls = 'roo-required-indicator text-danger fa fa-lg fa-star right-indicator';
48714                 label.cn = [
48715                     label_text,
48716                     indicator
48717                 ];
48718             }
48719
48720             if(align == 'left') {
48721                 container = {
48722                     tag: 'div',
48723                     cn: [
48724                         container
48725                     ]
48726                 };
48727
48728                 if(this.labelWidth > 12){
48729                     label.style = "width: " + this.labelWidth + 'px';
48730                 }
48731                 if(this.labelWidth < 13 && this.labelmd == 0){
48732                     this.labelmd = this.labelWidth;
48733                 }
48734                 if(this.labellg > 0){
48735                     label.cls += ' col-lg-' + this.labellg;
48736                     input.cls += ' col-lg-' + (12 - this.labellg);
48737                 }
48738                 if(this.labelmd > 0){
48739                     label.cls += ' col-md-' + this.labelmd;
48740                     container.cls += ' col-md-' + (12 - this.labelmd);
48741                 }
48742                 if(this.labelsm > 0){
48743                     label.cls += ' col-sm-' + this.labelsm;
48744                     container.cls += ' col-sm-' + (12 - this.labelsm);
48745                 }
48746                 if(this.labelxs > 0){
48747                     label.cls += ' col-xs-' + this.labelxs;
48748                     container.cls += ' col-xs-' + (12 - this.labelxs);
48749                 }
48750             }
48751         }
48752
48753         cfg.cn = [
48754             label,
48755             container,
48756             hiddenInput
48757         ];
48758         
48759         var settings = this;
48760
48761         ['xs','sm','md','lg'].map(function(size){
48762             if (settings[size]) {
48763                 cfg.cls += ' col-' + size + '-' + settings[size];
48764             }
48765         });
48766         
48767         return cfg;
48768     },
48769     
48770     initEvents : function()
48771     {
48772         this.indicator = this.indicatorEl();
48773         
48774         this.initCurrencyEvent();
48775         
48776         this.initNumberEvent();
48777     },
48778     
48779     initCurrencyEvent : function()
48780     {
48781         if (!this.store) {
48782             throw "can not find store for combo";
48783         }
48784         
48785         this.store = Roo.factory(this.store, Roo.data);
48786         this.store.parent = this;
48787         
48788         this.createList();
48789         
48790         this.triggerEl = this.el.select('.input-group-addon', true).first();
48791         
48792         this.triggerEl.on("click", this.onTriggerClick, this, { preventDefault : true });
48793         
48794         var _this = this;
48795         
48796         (function(){
48797             var lw = _this.listWidth || Math.max(_this.inputEl().getWidth(), _this.minListWidth);
48798             _this.list.setWidth(lw);
48799         }).defer(100);
48800         
48801         this.list.on('mouseover', this.onViewOver, this);
48802         this.list.on('mousemove', this.onViewMove, this);
48803         this.list.on('scroll', this.onViewScroll, this);
48804         
48805         if(!this.tpl){
48806             this.tpl = '<li><a href="#">{' + this.currencyField + '}</a></li>';
48807         }
48808         
48809         this.view = new Roo.View(this.list, this.tpl, {
48810             singleSelect:true, store: this.store, selectedClass: this.selectedClass
48811         });
48812         
48813         this.view.on('click', this.onViewClick, this);
48814         
48815         this.store.on('beforeload', this.onBeforeLoad, this);
48816         this.store.on('load', this.onLoad, this);
48817         this.store.on('loadexception', this.onLoadException, this);
48818         
48819         this.keyNav = new Roo.KeyNav(this.currencyEl(), {
48820             "up" : function(e){
48821                 this.inKeyMode = true;
48822                 this.selectPrev();
48823             },
48824
48825             "down" : function(e){
48826                 if(!this.isExpanded()){
48827                     this.onTriggerClick();
48828                 }else{
48829                     this.inKeyMode = true;
48830                     this.selectNext();
48831                 }
48832             },
48833
48834             "enter" : function(e){
48835                 this.collapse();
48836                 
48837                 if(this.fireEvent("specialkey", this, e)){
48838                     this.onViewClick(false);
48839                 }
48840                 
48841                 return true;
48842             },
48843
48844             "esc" : function(e){
48845                 this.collapse();
48846             },
48847
48848             "tab" : function(e){
48849                 this.collapse();
48850                 
48851                 if(this.fireEvent("specialkey", this, e)){
48852                     this.onViewClick(false);
48853                 }
48854                 
48855                 return true;
48856             },
48857
48858             scope : this,
48859
48860             doRelay : function(foo, bar, hname){
48861                 if(hname == 'down' || this.scope.isExpanded()){
48862                    return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
48863                 }
48864                 return true;
48865             },
48866
48867             forceKeyDown: true
48868         });
48869         
48870         this.currencyEl().on("click", this.onTriggerClick, this, { preventDefault : true });
48871         
48872     },
48873     
48874     initNumberEvent : function(e)
48875     {
48876         this.inputEl().on("keydown" , this.fireKey,  this);
48877         this.inputEl().on("focus", this.onFocus,  this);
48878         this.inputEl().on("blur", this.onBlur,  this);
48879         
48880         this.inputEl().relayEvent('keyup', this);
48881         
48882         if(this.indicator){
48883             this.indicator.addClass('invisible');
48884         }
48885  
48886         this.originalValue = this.getValue();
48887         
48888         if(this.validationEvent == 'keyup'){
48889             this.validationTask = new Roo.util.DelayedTask(this.validate, this);
48890             this.inputEl().on('keyup', this.filterValidation, this);
48891         }
48892         else if(this.validationEvent !== false){
48893             this.inputEl().on(this.validationEvent, this.validate, this, {buffer: this.validationDelay});
48894         }
48895         
48896         if(this.selectOnFocus){
48897             this.on("focus", this.preFocus, this);
48898             
48899         }
48900         if(this.maskRe || (this.vtype && this.disableKeyFilter !== true && (this.maskRe = Roo.form.VTypes[this.vtype+'Mask']))){
48901             this.inputEl().on("keypress", this.filterKeys, this);
48902         } else {
48903             this.inputEl().relayEvent('keypress', this);
48904         }
48905         
48906         var allowed = "0123456789";
48907         
48908         if(this.allowDecimals){
48909             allowed += this.decimalSeparator;
48910         }
48911         
48912         if(this.allowNegative){
48913             allowed += "-";
48914         }
48915         
48916         if(this.thousandsDelimiter) {
48917             allowed += ",";
48918         }
48919         
48920         this.stripCharsRe = new RegExp('[^'+allowed+']', 'gi');
48921         
48922         var keyPress = function(e){
48923             
48924             var k = e.getKey();
48925             
48926             var c = e.getCharCode();
48927             
48928             if(
48929                     (String.fromCharCode(c) == '.' || String.fromCharCode(c) == '-') &&
48930                     allowed.indexOf(String.fromCharCode(c)) === -1
48931             ){
48932                 e.stopEvent();
48933                 return;
48934             }
48935             
48936             if(!Roo.isIE && (e.isSpecialKey() || k == e.BACKSPACE || k == e.DELETE)){
48937                 return;
48938             }
48939             
48940             if(allowed.indexOf(String.fromCharCode(c)) === -1){
48941                 e.stopEvent();
48942             }
48943         };
48944         
48945         this.inputEl().on("keypress", keyPress, this);
48946         
48947     },
48948     
48949     onTriggerClick : function(e)
48950     {   
48951         if(this.disabled){
48952             return;
48953         }
48954         
48955         this.page = 0;
48956         this.loadNext = false;
48957         
48958         if(this.isExpanded()){
48959             this.collapse();
48960             return;
48961         }
48962         
48963         this.hasFocus = true;
48964         
48965         if(this.triggerAction == 'all') {
48966             this.doQuery(this.allQuery, true);
48967             return;
48968         }
48969         
48970         this.doQuery(this.getRawValue());
48971     },
48972     
48973     getCurrency : function()
48974     {   
48975         var v = this.currencyEl().getValue();
48976         
48977         return v;
48978     },
48979     
48980     restrictHeight : function()
48981     {
48982         this.list.alignTo(this.currencyEl(), this.listAlign);
48983         this.list.alignTo(this.currencyEl(), this.listAlign);
48984     },
48985     
48986     onViewClick : function(view, doFocus, el, e)
48987     {
48988         var index = this.view.getSelectedIndexes()[0];
48989         
48990         var r = this.store.getAt(index);
48991         
48992         if(r){
48993             this.onSelect(r, index);
48994         }
48995     },
48996     
48997     onSelect : function(record, index){
48998         
48999         if(this.fireEvent('beforeselect', this, record, index) !== false){
49000         
49001             this.setFromCurrencyData(index > -1 ? record.data : false);
49002             
49003             this.collapse();
49004             
49005             this.fireEvent('select', this, record, index);
49006         }
49007     },
49008     
49009     setFromCurrencyData : function(o)
49010     {
49011         var currency = '';
49012         
49013         this.lastCurrency = o;
49014         
49015         if (this.currencyField) {
49016             currency = !o || typeof(o[this.currencyField]) == 'undefined' ? '' : o[this.currencyField];
49017         } else {
49018             Roo.log('no  currencyField value set for '+ (this.name ? this.name : this.id));
49019         }
49020         
49021         this.lastSelectionText = currency;
49022         
49023         //setting default currency
49024         if(o[this.currencyField] * 1 == 0 && this.defaultCurrency) {
49025             this.setCurrency(this.defaultCurrency);
49026             return;
49027         }
49028         
49029         this.setCurrency(currency);
49030     },
49031     
49032     setFromData : function(o)
49033     {
49034         var c = {};
49035         
49036         c[this.currencyField] = !o || typeof(o[this.currencyName]) == 'undefined' ? '' : o[this.currencyName];
49037         
49038         this.setFromCurrencyData(c);
49039         
49040         var value = '';
49041         
49042         if (this.name) {
49043             value = !o || typeof(o[this.name]) == 'undefined' ? '' : o[this.name];
49044         } else {
49045             Roo.log('no value set for '+ (this.name ? this.name : this.id));
49046         }
49047         
49048         this.setValue(value);
49049         
49050     },
49051     
49052     setCurrency : function(v)
49053     {   
49054         this.currencyValue = v;
49055         
49056         if(this.rendered){
49057             this.currencyEl().dom.value = (v === null || v === undefined ? '' : v);
49058             this.validate();
49059         }
49060     },
49061     
49062     setValue : function(v)
49063     {
49064         v = String(this.fixPrecision(v)).replace(".", this.decimalSeparator);
49065         
49066         this.value = v;
49067         
49068         if(this.rendered){
49069             
49070             this.hiddenEl().dom.value = (v === null || v === undefined ? '' : v);
49071             
49072             this.inputEl().dom.value = (v == '') ? '' :
49073                 Roo.util.Format.number(v, this.decimalPrecision, this.thousandsDelimiter || '');
49074             
49075             if(!this.allowZero && v === '0') {
49076                 this.hiddenEl().dom.value = '';
49077                 this.inputEl().dom.value = '';
49078             }
49079             
49080             this.validate();
49081         }
49082     },
49083     
49084     getRawValue : function()
49085     {
49086         var v = this.inputEl().getValue();
49087         
49088         return v;
49089     },
49090     
49091     getValue : function()
49092     {
49093         return this.fixPrecision(this.parseValue(this.getRawValue()));
49094     },
49095     
49096     parseValue : function(value)
49097     {
49098         if(this.thousandsDelimiter) {
49099             value += "";
49100             r = new RegExp(",", "g");
49101             value = value.replace(r, "");
49102         }
49103         
49104         value = parseFloat(String(value).replace(this.decimalSeparator, "."));
49105         return isNaN(value) ? '' : value;
49106         
49107     },
49108     
49109     fixPrecision : function(value)
49110     {
49111         if(this.thousandsDelimiter) {
49112             value += "";
49113             r = new RegExp(",", "g");
49114             value = value.replace(r, "");
49115         }
49116         
49117         var nan = isNaN(value);
49118         
49119         if(!this.allowDecimals || this.decimalPrecision == -1 || nan || !value){
49120             return nan ? '' : value;
49121         }
49122         return parseFloat(value).toFixed(this.decimalPrecision);
49123     },
49124     
49125     decimalPrecisionFcn : function(v)
49126     {
49127         return Math.floor(v);
49128     },
49129     
49130     validateValue : function(value)
49131     {
49132         if(!Roo.bootstrap.form.MoneyField.superclass.validateValue.call(this, value)){
49133             return false;
49134         }
49135         
49136         var num = this.parseValue(value);
49137         
49138         if(isNaN(num)){
49139             this.markInvalid(String.format(this.nanText, value));
49140             return false;
49141         }
49142         
49143         if(num < this.minValue){
49144             this.markInvalid(String.format(this.minText, this.minValue));
49145             return false;
49146         }
49147         
49148         if(num > this.maxValue){
49149             this.markInvalid(String.format(this.maxText, this.maxValue));
49150             return false;
49151         }
49152         
49153         return true;
49154     },
49155     
49156     validate : function()
49157     {
49158         if(this.disabled || this.allowBlank){
49159             this.markValid();
49160             return true;
49161         }
49162         
49163         var currency = this.getCurrency();
49164         
49165         if(this.validateValue(this.getRawValue()) && currency.length){
49166             this.markValid();
49167             return true;
49168         }
49169         
49170         this.markInvalid();
49171         return false;
49172     },
49173     
49174     getName: function()
49175     {
49176         return this.name;
49177     },
49178     
49179     beforeBlur : function()
49180     {
49181         if(!this.castInt){
49182             return;
49183         }
49184         
49185         var v = this.parseValue(this.getRawValue());
49186         
49187         if(v || v == 0){
49188             this.setValue(v);
49189         }
49190     },
49191     
49192     onBlur : function()
49193     {
49194         this.beforeBlur();
49195         
49196         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
49197             //this.el.removeClass(this.focusClass);
49198         }
49199         
49200         this.hasFocus = false;
49201         
49202         if(this.validationEvent !== false && this.validateOnBlur && this.validationEvent != "blur"){
49203             this.validate();
49204         }
49205         
49206         var v = this.getValue();
49207         
49208         if(String(v) !== String(this.startValue)){
49209             this.fireEvent('change', this, v, this.startValue);
49210         }
49211         
49212         this.fireEvent("blur", this);
49213     },
49214     
49215     inputEl : function()
49216     {
49217         return this.el.select('.roo-money-amount-input', true).first();
49218     },
49219     
49220     currencyEl : function()
49221     {
49222         return this.el.select('.roo-money-currency-input', true).first();
49223     },
49224     
49225     hiddenEl : function()
49226     {
49227         return this.el.select('input.hidden-number-input',true).first();
49228     }
49229     
49230 });/**
49231  * @class Roo.bootstrap.BezierSignature
49232  * @extends Roo.bootstrap.Component
49233  * Bootstrap BezierSignature class
49234  * This script refer to:
49235  *    Title: Signature Pad
49236  *    Author: szimek
49237  *    Availability: https://github.com/szimek/signature_pad
49238  *
49239  * @constructor
49240  * Create a new BezierSignature
49241  * @param {Object} config The config object
49242  */
49243
49244 Roo.bootstrap.BezierSignature = function(config){
49245     Roo.bootstrap.BezierSignature.superclass.constructor.call(this, config);
49246     this.addEvents({
49247         "resize" : true
49248     });
49249 };
49250
49251 Roo.extend(Roo.bootstrap.BezierSignature, Roo.bootstrap.Component,
49252 {
49253      
49254     curve_data: [],
49255     
49256     is_empty: true,
49257     
49258     mouse_btn_down: true,
49259     
49260     /**
49261      * @cfg {int} canvas height
49262      */
49263     canvas_height: '200px',
49264     
49265     /**
49266      * @cfg {float|function} Radius of a single dot.
49267      */ 
49268     dot_size: false,
49269     
49270     /**
49271      * @cfg {float} Minimum width of a line. Defaults to 0.5.
49272      */
49273     min_width: 0.5,
49274     
49275     /**
49276      * @cfg {float} Maximum width of a line. Defaults to 2.5.
49277      */
49278     max_width: 2.5,
49279     
49280     /**
49281      * @cfg {integer} Draw the next point at most once per every x milliseconds. Set it to 0 to turn off throttling. Defaults to 16.
49282      */
49283     throttle: 16,
49284     
49285     /**
49286      * @cfg {integer} Add the next point only if the previous one is farther than x pixels. Defaults to 5.
49287      */
49288     min_distance: 5,
49289     
49290     /**
49291      * @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.
49292      */
49293     bg_color: 'rgba(0, 0, 0, 0)',
49294     
49295     /**
49296      * @cfg {string} Color used to draw the lines. Can be any color format accepted by context.fillStyle. Defaults to "black".
49297      */
49298     dot_color: 'black',
49299     
49300     /**
49301      * @cfg {float} Weight used to modify new velocity based on the previous velocity. Defaults to 0.7.
49302      */ 
49303     velocity_filter_weight: 0.7,
49304     
49305     /**
49306      * @cfg {function} Callback when stroke begin. 
49307      */
49308     onBegin: false,
49309     
49310     /**
49311      * @cfg {function} Callback when stroke end.
49312      */
49313     onEnd: false,
49314     
49315     getAutoCreate : function()
49316     {
49317         var cls = 'roo-signature column';
49318         
49319         if(this.cls){
49320             cls += ' ' + this.cls;
49321         }
49322         
49323         var col_sizes = [
49324             'lg',
49325             'md',
49326             'sm',
49327             'xs'
49328         ];
49329         
49330         for(var i = 0; i < col_sizes.length; i++) {
49331             if(this[col_sizes[i]]) {
49332                 cls += " col-"+col_sizes[i]+"-"+this[col_sizes[i]];
49333             }
49334         }
49335         
49336         var cfg = {
49337             tag: 'div',
49338             cls: cls,
49339             cn: [
49340                 {
49341                     tag: 'div',
49342                     cls: 'roo-signature-body',
49343                     cn: [
49344                         {
49345                             tag: 'canvas',
49346                             cls: 'roo-signature-body-canvas',
49347                             height: this.canvas_height,
49348                             width: this.canvas_width
49349                         }
49350                     ]
49351                 },
49352                 {
49353                     tag: 'input',
49354                     type: 'file',
49355                     style: 'display: none'
49356                 }
49357             ]
49358         };
49359         
49360         return cfg;
49361     },
49362     
49363     initEvents: function() 
49364     {
49365         Roo.bootstrap.BezierSignature.superclass.initEvents.call(this);
49366         
49367         var canvas = this.canvasEl();
49368         
49369         // mouse && touch event swapping...
49370         canvas.dom.style.touchAction = 'none';
49371         canvas.dom.style.msTouchAction = 'none';
49372         
49373         this.mouse_btn_down = false;
49374         canvas.on('mousedown', this._handleMouseDown, this);
49375         canvas.on('mousemove', this._handleMouseMove, this);
49376         Roo.select('html').first().on('mouseup', this._handleMouseUp, this);
49377         
49378         if (window.PointerEvent) {
49379             canvas.on('pointerdown', this._handleMouseDown, this);
49380             canvas.on('pointermove', this._handleMouseMove, this);
49381             Roo.select('html').first().on('pointerup', this._handleMouseUp, this);
49382         }
49383         
49384         if ('ontouchstart' in window) {
49385             canvas.on('touchstart', this._handleTouchStart, this);
49386             canvas.on('touchmove', this._handleTouchMove, this);
49387             canvas.on('touchend', this._handleTouchEnd, this);
49388         }
49389         
49390         Roo.EventManager.onWindowResize(this.resize, this, true);
49391         
49392         // file input event
49393         this.fileEl().on('change', this.uploadImage, this);
49394         
49395         this.clear();
49396         
49397         this.resize();
49398     },
49399     
49400     resize: function(){
49401         
49402         var canvas = this.canvasEl().dom;
49403         var ctx = this.canvasElCtx();
49404         var img_data = false;
49405         
49406         if(canvas.width > 0) {
49407             var img_data = ctx.getImageData(0, 0, canvas.width, canvas.height);
49408         }
49409         // setting canvas width will clean img data
49410         canvas.width = 0;
49411         
49412         var style = window.getComputedStyle ? 
49413             getComputedStyle(this.el.dom, null) : this.el.dom.currentStyle;
49414             
49415         var padding_left = parseInt(style.paddingLeft) || 0;
49416         var padding_right = parseInt(style.paddingRight) || 0;
49417         
49418         canvas.width = this.el.dom.clientWidth - padding_left - padding_right;
49419         
49420         if(img_data) {
49421             ctx.putImageData(img_data, 0, 0);
49422         }
49423     },
49424     
49425     _handleMouseDown: function(e)
49426     {
49427         if (e.browserEvent.which === 1) {
49428             this.mouse_btn_down = true;
49429             this.strokeBegin(e);
49430         }
49431     },
49432     
49433     _handleMouseMove: function (e)
49434     {
49435         if (this.mouse_btn_down) {
49436             this.strokeMoveUpdate(e);
49437         }
49438     },
49439     
49440     _handleMouseUp: function (e)
49441     {
49442         if (e.browserEvent.which === 1 && this.mouse_btn_down) {
49443             this.mouse_btn_down = false;
49444             this.strokeEnd(e);
49445         }
49446     },
49447     
49448     _handleTouchStart: function (e) {
49449         
49450         e.preventDefault();
49451         if (e.browserEvent.targetTouches.length === 1) {
49452             // var touch = e.browserEvent.changedTouches[0];
49453             // this.strokeBegin(touch);
49454             
49455              this.strokeBegin(e); // assume e catching the correct xy...
49456         }
49457     },
49458     
49459     _handleTouchMove: function (e) {
49460         e.preventDefault();
49461         // var touch = event.targetTouches[0];
49462         // _this._strokeMoveUpdate(touch);
49463         this.strokeMoveUpdate(e);
49464     },
49465     
49466     _handleTouchEnd: function (e) {
49467         var wasCanvasTouched = e.target === this.canvasEl().dom;
49468         if (wasCanvasTouched) {
49469             e.preventDefault();
49470             // var touch = event.changedTouches[0];
49471             // _this._strokeEnd(touch);
49472             this.strokeEnd(e);
49473         }
49474     },
49475     
49476     reset: function () {
49477         this._lastPoints = [];
49478         this._lastVelocity = 0;
49479         this._lastWidth = (this.min_width + this.max_width) / 2;
49480         this.canvasElCtx().fillStyle = this.dot_color;
49481     },
49482     
49483     strokeMoveUpdate: function(e)
49484     {
49485         this.strokeUpdate(e);
49486         
49487         if (this.throttle) {
49488             this.throttleStroke(this.strokeUpdate, this.throttle);
49489         }
49490         else {
49491             this.strokeUpdate(e);
49492         }
49493     },
49494     
49495     strokeBegin: function(e)
49496     {
49497         var newPointGroup = {
49498             color: this.dot_color,
49499             points: []
49500         };
49501         
49502         if (typeof this.onBegin === 'function') {
49503             this.onBegin(e);
49504         }
49505         
49506         this.curve_data.push(newPointGroup);
49507         this.reset();
49508         this.strokeUpdate(e);
49509     },
49510     
49511     strokeUpdate: function(e)
49512     {
49513         var rect = this.canvasEl().dom.getBoundingClientRect();
49514         var point = new this.Point(e.xy[0] - rect.left, e.xy[1] - rect.top, new Date().getTime());
49515         var lastPointGroup = this.curve_data[this.curve_data.length - 1];
49516         var lastPoints = lastPointGroup.points;
49517         var lastPoint = lastPoints.length > 0 && lastPoints[lastPoints.length - 1];
49518         var isLastPointTooClose = lastPoint
49519             ? point.distanceTo(lastPoint) <= this.min_distance
49520             : false;
49521         var color = lastPointGroup.color;
49522         if (!lastPoint || !(lastPoint && isLastPointTooClose)) {
49523             var curve = this.addPoint(point);
49524             if (!lastPoint) {
49525                 this.drawDot({color: color, point: point});
49526             }
49527             else if (curve) {
49528                 this.drawCurve({color: color, curve: curve});
49529             }
49530             lastPoints.push({
49531                 time: point.time,
49532                 x: point.x,
49533                 y: point.y
49534             });
49535         }
49536     },
49537     
49538     strokeEnd: function(e)
49539     {
49540         this.strokeUpdate(e);
49541         if (typeof this.onEnd === 'function') {
49542             this.onEnd(e);
49543         }
49544     },
49545     
49546     addPoint:  function (point) {
49547         var _lastPoints = this._lastPoints;
49548         _lastPoints.push(point);
49549         if (_lastPoints.length > 2) {
49550             if (_lastPoints.length === 3) {
49551                 _lastPoints.unshift(_lastPoints[0]);
49552             }
49553             var widths = this.calculateCurveWidths(_lastPoints[1], _lastPoints[2]);
49554             var curve = this.Bezier.fromPoints(_lastPoints, widths, this);
49555             _lastPoints.shift();
49556             return curve;
49557         }
49558         return null;
49559     },
49560     
49561     calculateCurveWidths: function (startPoint, endPoint) {
49562         var velocity = this.velocity_filter_weight * endPoint.velocityFrom(startPoint) +
49563             (1 - this.velocity_filter_weight) * this._lastVelocity;
49564
49565         var newWidth = Math.max(this.max_width / (velocity + 1), this.min_width);
49566         var widths = {
49567             end: newWidth,
49568             start: this._lastWidth
49569         };
49570         
49571         this._lastVelocity = velocity;
49572         this._lastWidth = newWidth;
49573         return widths;
49574     },
49575     
49576     drawDot: function (_a) {
49577         var color = _a.color, point = _a.point;
49578         var ctx = this.canvasElCtx();
49579         var width = typeof this.dot_size === 'function' ? this.dot_size() : this.dot_size;
49580         ctx.beginPath();
49581         this.drawCurveSegment(point.x, point.y, width);
49582         ctx.closePath();
49583         ctx.fillStyle = color;
49584         ctx.fill();
49585     },
49586     
49587     drawCurve: function (_a) {
49588         var color = _a.color, curve = _a.curve;
49589         var ctx = this.canvasElCtx();
49590         var widthDelta = curve.endWidth - curve.startWidth;
49591         var drawSteps = Math.floor(curve.length()) * 2;
49592         ctx.beginPath();
49593         ctx.fillStyle = color;
49594         for (var i = 0; i < drawSteps; i += 1) {
49595         var t = i / drawSteps;
49596         var tt = t * t;
49597         var ttt = tt * t;
49598         var u = 1 - t;
49599         var uu = u * u;
49600         var uuu = uu * u;
49601         var x = uuu * curve.startPoint.x;
49602         x += 3 * uu * t * curve.control1.x;
49603         x += 3 * u * tt * curve.control2.x;
49604         x += ttt * curve.endPoint.x;
49605         var y = uuu * curve.startPoint.y;
49606         y += 3 * uu * t * curve.control1.y;
49607         y += 3 * u * tt * curve.control2.y;
49608         y += ttt * curve.endPoint.y;
49609         var width = curve.startWidth + ttt * widthDelta;
49610         this.drawCurveSegment(x, y, width);
49611         }
49612         ctx.closePath();
49613         ctx.fill();
49614     },
49615     
49616     drawCurveSegment: function (x, y, width) {
49617         var ctx = this.canvasElCtx();
49618         ctx.moveTo(x, y);
49619         ctx.arc(x, y, width, 0, 2 * Math.PI, false);
49620         this.is_empty = false;
49621     },
49622     
49623     clear: function()
49624     {
49625         var ctx = this.canvasElCtx();
49626         var canvas = this.canvasEl().dom;
49627         ctx.fillStyle = this.bg_color;
49628         ctx.clearRect(0, 0, canvas.width, canvas.height);
49629         ctx.fillRect(0, 0, canvas.width, canvas.height);
49630         this.curve_data = [];
49631         this.reset();
49632         this.is_empty = true;
49633     },
49634     
49635     fileEl: function()
49636     {
49637         return  this.el.select('input',true).first();
49638     },
49639     
49640     canvasEl: function()
49641     {
49642         return this.el.select('canvas',true).first();
49643     },
49644     
49645     canvasElCtx: function()
49646     {
49647         return this.el.select('canvas',true).first().dom.getContext('2d');
49648     },
49649     
49650     getImage: function(type)
49651     {
49652         if(this.is_empty) {
49653             return false;
49654         }
49655         
49656         // encryption ?
49657         return this.canvasEl().dom.toDataURL('image/'+type, 1);
49658     },
49659     
49660     drawFromImage: function(img_src)
49661     {
49662         var img = new Image();
49663         
49664         img.onload = function(){
49665             this.canvasElCtx().drawImage(img, 0, 0);
49666         }.bind(this);
49667         
49668         img.src = img_src;
49669         
49670         this.is_empty = false;
49671     },
49672     
49673     selectImage: function()
49674     {
49675         this.fileEl().dom.click();
49676     },
49677     
49678     uploadImage: function(e)
49679     {
49680         var reader = new FileReader();
49681         
49682         reader.onload = function(e){
49683             var img = new Image();
49684             img.onload = function(){
49685                 this.reset();
49686                 this.canvasElCtx().drawImage(img, 0, 0);
49687             }.bind(this);
49688             img.src = e.target.result;
49689         }.bind(this);
49690         
49691         reader.readAsDataURL(e.target.files[0]);
49692     },
49693     
49694     // Bezier Point Constructor
49695     Point: (function () {
49696         function Point(x, y, time) {
49697             this.x = x;
49698             this.y = y;
49699             this.time = time || Date.now();
49700         }
49701         Point.prototype.distanceTo = function (start) {
49702             return Math.sqrt(Math.pow(this.x - start.x, 2) + Math.pow(this.y - start.y, 2));
49703         };
49704         Point.prototype.equals = function (other) {
49705             return this.x === other.x && this.y === other.y && this.time === other.time;
49706         };
49707         Point.prototype.velocityFrom = function (start) {
49708             return this.time !== start.time
49709             ? this.distanceTo(start) / (this.time - start.time)
49710             : 0;
49711         };
49712         return Point;
49713     }()),
49714     
49715     
49716     // Bezier Constructor
49717     Bezier: (function () {
49718         function Bezier(startPoint, control2, control1, endPoint, startWidth, endWidth) {
49719             this.startPoint = startPoint;
49720             this.control2 = control2;
49721             this.control1 = control1;
49722             this.endPoint = endPoint;
49723             this.startWidth = startWidth;
49724             this.endWidth = endWidth;
49725         }
49726         Bezier.fromPoints = function (points, widths, scope) {
49727             var c2 = this.calculateControlPoints(points[0], points[1], points[2], scope).c2;
49728             var c3 = this.calculateControlPoints(points[1], points[2], points[3], scope).c1;
49729             return new Bezier(points[1], c2, c3, points[2], widths.start, widths.end);
49730         };
49731         Bezier.calculateControlPoints = function (s1, s2, s3, scope) {
49732             var dx1 = s1.x - s2.x;
49733             var dy1 = s1.y - s2.y;
49734             var dx2 = s2.x - s3.x;
49735             var dy2 = s2.y - s3.y;
49736             var m1 = { x: (s1.x + s2.x) / 2.0, y: (s1.y + s2.y) / 2.0 };
49737             var m2 = { x: (s2.x + s3.x) / 2.0, y: (s2.y + s3.y) / 2.0 };
49738             var l1 = Math.sqrt(dx1 * dx1 + dy1 * dy1);
49739             var l2 = Math.sqrt(dx2 * dx2 + dy2 * dy2);
49740             var dxm = m1.x - m2.x;
49741             var dym = m1.y - m2.y;
49742             var k = l2 / (l1 + l2);
49743             var cm = { x: m2.x + dxm * k, y: m2.y + dym * k };
49744             var tx = s2.x - cm.x;
49745             var ty = s2.y - cm.y;
49746             return {
49747                 c1: new scope.Point(m1.x + tx, m1.y + ty),
49748                 c2: new scope.Point(m2.x + tx, m2.y + ty)
49749             };
49750         };
49751         Bezier.prototype.length = function () {
49752             var steps = 10;
49753             var length = 0;
49754             var px;
49755             var py;
49756             for (var i = 0; i <= steps; i += 1) {
49757                 var t = i / steps;
49758                 var cx = this.point(t, this.startPoint.x, this.control1.x, this.control2.x, this.endPoint.x);
49759                 var cy = this.point(t, this.startPoint.y, this.control1.y, this.control2.y, this.endPoint.y);
49760                 if (i > 0) {
49761                     var xdiff = cx - px;
49762                     var ydiff = cy - py;
49763                     length += Math.sqrt(xdiff * xdiff + ydiff * ydiff);
49764                 }
49765                 px = cx;
49766                 py = cy;
49767             }
49768             return length;
49769         };
49770         Bezier.prototype.point = function (t, start, c1, c2, end) {
49771             return (start * (1.0 - t) * (1.0 - t) * (1.0 - t))
49772             + (3.0 * c1 * (1.0 - t) * (1.0 - t) * t)
49773             + (3.0 * c2 * (1.0 - t) * t * t)
49774             + (end * t * t * t);
49775         };
49776         return Bezier;
49777     }()),
49778     
49779     throttleStroke: function(fn, wait) {
49780       if (wait === void 0) { wait = 250; }
49781       var previous = 0;
49782       var timeout = null;
49783       var result;
49784       var storedContext;
49785       var storedArgs;
49786       var later = function () {
49787           previous = Date.now();
49788           timeout = null;
49789           result = fn.apply(storedContext, storedArgs);
49790           if (!timeout) {
49791               storedContext = null;
49792               storedArgs = [];
49793           }
49794       };
49795       return function wrapper() {
49796           var args = [];
49797           for (var _i = 0; _i < arguments.length; _i++) {
49798               args[_i] = arguments[_i];
49799           }
49800           var now = Date.now();
49801           var remaining = wait - (now - previous);
49802           storedContext = this;
49803           storedArgs = args;
49804           if (remaining <= 0 || remaining > wait) {
49805               if (timeout) {
49806                   clearTimeout(timeout);
49807                   timeout = null;
49808               }
49809               previous = now;
49810               result = fn.apply(storedContext, storedArgs);
49811               if (!timeout) {
49812                   storedContext = null;
49813                   storedArgs = [];
49814               }
49815           }
49816           else if (!timeout) {
49817               timeout = window.setTimeout(later, remaining);
49818           }
49819           return result;
49820       };
49821   }
49822   
49823 });
49824
49825  
49826
49827  // old names for form elements
49828 Roo.bootstrap.Form          =   Roo.bootstrap.form.Form;
49829 Roo.bootstrap.Input         =   Roo.bootstrap.form.Input;
49830 Roo.bootstrap.TextArea      =   Roo.bootstrap.form.TextArea;
49831 Roo.bootstrap.TriggerField  =   Roo.bootstrap.form.TriggerField;
49832 Roo.bootstrap.ComboBox      =   Roo.bootstrap.form.ComboBox;
49833 Roo.bootstrap.DateField     =   Roo.bootstrap.form.DateField;
49834 Roo.bootstrap.TimeField     =   Roo.bootstrap.form.TimeField;
49835 Roo.bootstrap.MonthField    =   Roo.bootstrap.form.MonthField;
49836 Roo.bootstrap.CheckBox      =   Roo.bootstrap.form.CheckBox;
49837 Roo.bootstrap.Radio         =   Roo.bootstrap.form.Radio;
49838 Roo.bootstrap.RadioSet      =   Roo.bootstrap.form.RadioSet;
49839 Roo.bootstrap.SecurePass    =   Roo.bootstrap.form.SecurePass;
49840 Roo.bootstrap.FieldLabel    =   Roo.bootstrap.form.FieldLabel;
49841 Roo.bootstrap.DateSplitField=   Roo.bootstrap.form.DateSplitField;
49842 Roo.bootstrap.NumberField   =   Roo.bootstrap.form.NumberField;
49843 Roo.bootstrap.PhoneInput    =   Roo.bootstrap.form.PhoneInput;
49844 Roo.bootstrap.PhoneInputData=   Roo.bootstrap.form.PhoneInputData;
49845 Roo.bootstrap.MoneyField    =   Roo.bootstrap.form.MoneyField;
49846 Roo.bootstrap.HtmlEditor    =   Roo.bootstrap.form.HtmlEditor;
49847 Roo.bootstrap.HtmlEditor.ToolbarStandard =   Roo.bootstrap.form.HtmlEditorToolbarStandard;
49848 Roo.bootstrap.Markdown      = Roo.bootstrap.form.Markdown;
49849 Roo.bootstrap.CardUploader  = Roo.bootstrap.form.CardUploader;// depricated.
49850 Roo.bootstrap.Navbar            = Roo.bootstrap.nav.Bar;
49851 Roo.bootstrap.NavGroup          = Roo.bootstrap.nav.Group;
49852 Roo.bootstrap.NavHeaderbar      = Roo.bootstrap.nav.Headerbar;
49853 Roo.bootstrap.NavItem           = Roo.bootstrap.nav.Item;
49854
49855 Roo.bootstrap.NavProgressBar     = Roo.bootstrap.nav.ProgressBar;
49856 Roo.bootstrap.NavProgressBarItem = Roo.bootstrap.nav.ProgressBarItem;
49857
49858 Roo.bootstrap.NavSidebar        = Roo.bootstrap.nav.Sidebar;
49859 Roo.bootstrap.NavSidebarItem    = Roo.bootstrap.nav.SidebarItem;
49860
49861 Roo.bootstrap.NavSimplebar      = Roo.bootstrap.nav.Simplebar;// deprciated 
49862 Roo.bootstrap.Menu = Roo.bootstrap.menu.Menu;
49863 Roo.bootstrap.MenuItem =  Roo.bootstrap.menu.Item;
49864 Roo.bootstrap.MenuSeparator = Roo.bootstrap.menu.Separator
49865